Class ServicesClient (0.7.0)
Stay organized with collections
Save and categorize content based on your preferences.
- 0.78.0 (latest)
- 0.76.0
- 0.75.0
- 0.74.0
- 0.73.0
- 0.72.0
- 0.70.0
- 0.68.0
- 0.67.0
- 0.64.0
- 0.63.0
- 0.62.0
- 0.60.0
- 0.59.0
- 0.58.0
- 0.57.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.49.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.9.0
- 0.8.0
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.5
- 0.2.1
- 0.1.2
publicclass ServicesClientimplementsBackgroundResourceService Description: Cloud Run Service Control Plane API
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
ServiceNamename=ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]");
Serviceresponse=servicesClient.getService(name);
}
Note: close() needs to be called on the ServicesClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of ServicesSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ServicesSettingsservicesSettings=
ServicesSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ServicesClientservicesClient=ServicesClient.create(servicesSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ServicesSettingsservicesSettings=
ServicesSettings.newBuilder().setEndpoint(myEndpoint).build();
ServicesClientservicesClient=ServicesClient.create(servicesSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ServicesSettingsservicesSettings=ServicesSettings.newHttpJsonBuilder().build();
ServicesClientservicesClient=ServicesClient.create(servicesSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceInherited Members
Static Methods
create()
publicstaticfinalServicesClientcreate()Constructs an instance of ServicesClient with default settings.
create(ServicesSettings settings)
publicstaticfinalServicesClientcreate(ServicesSettingssettings)Constructs an instance of ServicesClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
create(ServicesStub stub)
publicstaticfinalServicesClientcreate(ServicesStubstub)Constructs an instance of ServicesClient, using the given stub for making calls. This is for advanced usage - prefer using create(ServicesSettings).
Constructors
ServicesClient(ServicesSettings settings)
protectedServicesClient(ServicesSettingssettings)Constructs an instance of ServicesClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
ServicesClient(ServicesStub stub)
protectedServicesClient(ServicesStubstub)Methods
awaitTermination(long duration, TimeUnit unit)
publicbooleanawaitTermination(longduration,TimeUnitunit)close()
publicfinalvoidclose()createServiceAsync(CreateServiceRequest request)
publicfinalOperationFuture<Service,Service>createServiceAsync(CreateServiceRequestrequest)Creates a new Service in a given project and location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
CreateServiceRequestrequest=
CreateServiceRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setService(Service.newBuilder().build())
.setServiceId("serviceId-194185552")
.setValidateOnly(true)
.build();
Serviceresponse=servicesClient.createServiceAsync(request).get();
}
createServiceAsync(LocationName parent, Service service, String serviceId)
publicfinalOperationFuture<Service,Service>createServiceAsync(LocationNameparent,Serviceservice,StringserviceId)Creates a new Service in a given project and location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
LocationNameparent=LocationName.of("[PROJECT]","[LOCATION]");
Serviceservice=Service.newBuilder().build();
StringserviceId="serviceId-194185552";
Serviceresponse=servicesClient.createServiceAsync(parent,service,serviceId).get();
}
LocationName Required. The location and project in which this service should be created. Format: projects/{project}/locations/{location}, where {project} can be project id or number. Only lowercase characters, digits, and hyphens.
String Required. The unique identifier for the Service. It must begin with letter, and cannot end with hyphen; must contain fewer than 50 characters. The name of the service becomes {parent}/services/{service_id}.
createServiceAsync(String parent, Service service, String serviceId)
publicfinalOperationFuture<Service,Service>createServiceAsync(Stringparent,Serviceservice,StringserviceId)Creates a new Service in a given project and location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
Stringparent=LocationName.of("[PROJECT]","[LOCATION]").toString();
Serviceservice=Service.newBuilder().build();
StringserviceId="serviceId-194185552";
Serviceresponse=servicesClient.createServiceAsync(parent,service,serviceId).get();
}
String Required. The location and project in which this service should be created. Format: projects/{project}/locations/{location}, where {project} can be project id or number. Only lowercase characters, digits, and hyphens.
String Required. The unique identifier for the Service. It must begin with letter, and cannot end with hyphen; must contain fewer than 50 characters. The name of the service becomes {parent}/services/{service_id}.
createServiceCallable()
publicfinalUnaryCallable<CreateServiceRequest,Operation>createServiceCallable()Creates a new Service in a given project and location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
CreateServiceRequestrequest=
CreateServiceRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setService(Service.newBuilder().build())
.setServiceId("serviceId-194185552")
.setValidateOnly(true)
.build();
ApiFuture<Operation>future=servicesClient.createServiceCallable().futureCall(request);
// Do something.
Operationresponse=future.get();
}
createServiceOperationCallable()
publicfinalOperationCallable<CreateServiceRequest,Service,Service>createServiceOperationCallable()Creates a new Service in a given project and location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
CreateServiceRequestrequest=
CreateServiceRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setService(Service.newBuilder().build())
.setServiceId("serviceId-194185552")
.setValidateOnly(true)
.build();
OperationFuture<Service,Service>future=
servicesClient.createServiceOperationCallable().futureCall(request);
// Do something.
Serviceresponse=future.get();
}
deleteServiceAsync(DeleteServiceRequest request)
publicfinalOperationFuture<Service,Service>deleteServiceAsync(DeleteServiceRequestrequest)Deletes a Service. This will cause the Service to stop serving traffic and will delete all revisions.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
DeleteServiceRequestrequest=
DeleteServiceRequest.newBuilder()
.setName(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setValidateOnly(true)
.setEtag("etag3123477")
.build();
Serviceresponse=servicesClient.deleteServiceAsync(request).get();
}
deleteServiceAsync(ServiceName name)
publicfinalOperationFuture<Service,Service>deleteServiceAsync(ServiceNamename)Deletes a Service. This will cause the Service to stop serving traffic and will delete all revisions.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
ServiceNamename=ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]");
Serviceresponse=servicesClient.deleteServiceAsync(name).get();
}
ServiceName Required. The full name of the Service. Format: projects/{project}/locations/{location}/services/{service}, where {project} can be project id or number.
deleteServiceAsync(String name)
publicfinalOperationFuture<Service,Service>deleteServiceAsync(Stringname)Deletes a Service. This will cause the Service to stop serving traffic and will delete all revisions.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
Stringname=ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString();
Serviceresponse=servicesClient.deleteServiceAsync(name).get();
}
String Required. The full name of the Service. Format: projects/{project}/locations/{location}/services/{service}, where {project} can be project id or number.
deleteServiceCallable()
publicfinalUnaryCallable<DeleteServiceRequest,Operation>deleteServiceCallable()Deletes a Service. This will cause the Service to stop serving traffic and will delete all revisions.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
DeleteServiceRequestrequest=
DeleteServiceRequest.newBuilder()
.setName(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setValidateOnly(true)
.setEtag("etag3123477")
.build();
ApiFuture<Operation>future=servicesClient.deleteServiceCallable().futureCall(request);
// Do something.
Operationresponse=future.get();
}
deleteServiceOperationCallable()
publicfinalOperationCallable<DeleteServiceRequest,Service,Service>deleteServiceOperationCallable()Deletes a Service. This will cause the Service to stop serving traffic and will delete all revisions.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
DeleteServiceRequestrequest=
DeleteServiceRequest.newBuilder()
.setName(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setValidateOnly(true)
.setEtag("etag3123477")
.build();
OperationFuture<Service,Service>future=
servicesClient.deleteServiceOperationCallable().futureCall(request);
// Do something.
Serviceresponse=future.get();
}
getHttpJsonOperationsClient()
publicfinalOperationsClientgetHttpJsonOperationsClient()Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
getIamPolicy(GetIamPolicyRequest request)
publicfinalPolicygetIamPolicy(GetIamPolicyRequestrequest)Gets the IAM Access Control policy currently in effect for the given Cloud Run Service. This result does not include any inherited policies.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
GetIamPolicyRequestrequest=
GetIamPolicyRequest.newBuilder()
.setResource(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policyresponse=servicesClient.getIamPolicy(request);
}
com.google.iam.v1.GetIamPolicyRequestThe request object containing all of the parameters for the API call.
getIamPolicyCallable()
publicfinalUnaryCallable<GetIamPolicyRequest,Policy>getIamPolicyCallable()Gets the IAM Access Control policy currently in effect for the given Cloud Run Service. This result does not include any inherited policies.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
GetIamPolicyRequestrequest=
GetIamPolicyRequest.newBuilder()
.setResource(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy>future=servicesClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policyresponse=future.get();
}
getOperationsClient()
publicfinalOperationsClientgetOperationsClient()Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
getService(GetServiceRequest request)
publicfinalServicegetService(GetServiceRequestrequest)Gets information about a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
GetServiceRequestrequest=
GetServiceRequest.newBuilder()
.setName(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.build();
Serviceresponse=servicesClient.getService(request);
}
getService(ServiceName name)
publicfinalServicegetService(ServiceNamename)Gets information about a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
ServiceNamename=ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]");
Serviceresponse=servicesClient.getService(name);
}
ServiceName Required. The full name of the Service. Format: projects/{project}/locations/{location}/services/{service}, where {project} can be project id or number.
getService(String name)
publicfinalServicegetService(Stringname)Gets information about a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
Stringname=ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString();
Serviceresponse=servicesClient.getService(name);
}
String Required. The full name of the Service. Format: projects/{project}/locations/{location}/services/{service}, where {project} can be project id or number.
getServiceCallable()
publicfinalUnaryCallable<GetServiceRequest,Service>getServiceCallable()Gets information about a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
GetServiceRequestrequest=
GetServiceRequest.newBuilder()
.setName(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.build();
ApiFuture<Service>future=servicesClient.getServiceCallable().futureCall(request);
// Do something.
Serviceresponse=future.get();
}
getSettings()
publicfinalServicesSettingsgetSettings()getStub()
publicServicesStubgetStub()isShutdown()
publicbooleanisShutdown()isTerminated()
publicbooleanisTerminated()listServices(ListServicesRequest request)
publicfinalServicesClient.ListServicesPagedResponselistServices(ListServicesRequestrequest)Lists Services.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
ListServicesRequestrequest=
ListServicesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setShowDeleted(true)
.build();
for(Serviceelement:servicesClient.listServices(request).iterateAll()){
// doThingsWith(element);
}
}
listServices(LocationName parent)
publicfinalServicesClient.ListServicesPagedResponselistServices(LocationNameparent)Lists Services.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
LocationNameparent=LocationName.of("[PROJECT]","[LOCATION]");
for(Serviceelement:servicesClient.listServices(parent).iterateAll()){
// doThingsWith(element);
}
}
LocationName Required. The location and project to list resources on. Location must be a valid GCP region, and cannot be the "-" wildcard. Format: projects/{project}/locations/{location}, where {project} can be project id or number.
listServices(String parent)
publicfinalServicesClient.ListServicesPagedResponselistServices(Stringparent)Lists Services.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
Stringparent=LocationName.of("[PROJECT]","[LOCATION]").toString();
for(Serviceelement:servicesClient.listServices(parent).iterateAll()){
// doThingsWith(element);
}
}
String Required. The location and project to list resources on. Location must be a valid GCP region, and cannot be the "-" wildcard. Format: projects/{project}/locations/{location}, where {project} can be project id or number.
listServicesCallable()
publicfinalUnaryCallable<ListServicesRequest,ListServicesResponse>listServicesCallable()Lists Services.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
ListServicesRequestrequest=
ListServicesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setShowDeleted(true)
.build();
while(true){
ListServicesResponseresponse=servicesClient.listServicesCallable().call(request);
for(Serviceelement:response.getServicesList()){
// doThingsWith(element);
}
StringnextPageToken=response.getNextPageToken();
if(!Strings.isNullOrEmpty(nextPageToken)){
request=request.toBuilder().setPageToken(nextPageToken).build();
}else{
break;
}
}
}
listServicesPagedCallable()
publicfinalUnaryCallable<ListServicesRequest,ServicesClient.ListServicesPagedResponse>listServicesPagedCallable()Lists Services.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
ListServicesRequestrequest=
ListServicesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]","[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setShowDeleted(true)
.build();
ApiFuture<Service>future=servicesClient.listServicesPagedCallable().futureCall(request);
// Do something.
for(Serviceelement:future.get().iterateAll()){
// doThingsWith(element);
}
}
setIamPolicy(SetIamPolicyRequest request)
publicfinalPolicysetIamPolicy(SetIamPolicyRequestrequest)Sets the IAM Access control policy for the specified Service. Overwrites any existing policy.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
SetIamPolicyRequestrequest=
SetIamPolicyRequest.newBuilder()
.setResource(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policyresponse=servicesClient.setIamPolicy(request);
}
com.google.iam.v1.SetIamPolicyRequestThe request object containing all of the parameters for the API call.
setIamPolicyCallable()
publicfinalUnaryCallable<SetIamPolicyRequest,Policy>setIamPolicyCallable()Sets the IAM Access control policy for the specified Service. Overwrites any existing policy.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
SetIamPolicyRequestrequest=
SetIamPolicyRequest.newBuilder()
.setResource(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy>future=servicesClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policyresponse=future.get();
}
shutdown()
publicvoidshutdown()shutdownNow()
publicvoidshutdownNow()testIamPermissions(TestIamPermissionsRequest request)
publicfinalTestIamPermissionsResponsetestIamPermissions(TestIamPermissionsRequestrequest)Returns permissions that a caller has on the specified Project.
There are no permissions required for making this API call.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
TestIamPermissionsRequestrequest=
TestIamPermissionsRequest.newBuilder()
.setResource(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.addAllPermissions(newArrayList<String>())
.build();
TestIamPermissionsResponseresponse=servicesClient.testIamPermissions(request);
}
com.google.iam.v1.TestIamPermissionsRequestThe request object containing all of the parameters for the API call.
testIamPermissionsCallable()
publicfinalUnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse>testIamPermissionsCallable()Returns permissions that a caller has on the specified Project.
There are no permissions required for making this API call.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
TestIamPermissionsRequestrequest=
TestIamPermissionsRequest.newBuilder()
.setResource(ServiceName.of("[PROJECT]","[LOCATION]","[SERVICE]").toString())
.addAllPermissions(newArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse>future=
servicesClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponseresponse=future.get();
}
updateServiceAsync(Service service)
publicfinalOperationFuture<Service,Service>updateServiceAsync(Serviceservice)Updates a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
Serviceservice=Service.newBuilder().build();
Serviceresponse=servicesClient.updateServiceAsync(service).get();
}
updateServiceAsync(UpdateServiceRequest request)
publicfinalOperationFuture<Service,Service>updateServiceAsync(UpdateServiceRequestrequest)Updates a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
UpdateServiceRequestrequest=
UpdateServiceRequest.newBuilder()
.setService(Service.newBuilder().build())
.setValidateOnly(true)
.setAllowMissing(true)
.build();
Serviceresponse=servicesClient.updateServiceAsync(request).get();
}
updateServiceCallable()
publicfinalUnaryCallable<UpdateServiceRequest,Operation>updateServiceCallable()Updates a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
UpdateServiceRequestrequest=
UpdateServiceRequest.newBuilder()
.setService(Service.newBuilder().build())
.setValidateOnly(true)
.setAllowMissing(true)
.build();
ApiFuture<Operation>future=servicesClient.updateServiceCallable().futureCall(request);
// Do something.
Operationresponse=future.get();
}
updateServiceOperationCallable()
publicfinalOperationCallable<UpdateServiceRequest,Service,Service>updateServiceOperationCallable()Updates a Service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(ServicesClientservicesClient=ServicesClient.create()){
UpdateServiceRequestrequest=
UpdateServiceRequest.newBuilder()
.setService(Service.newBuilder().build())
.setValidateOnly(true)
.setAllowMissing(true)
.build();
OperationFuture<Service,Service>future=
servicesClient.updateServiceOperationCallable().futureCall(request);
// Do something.
Serviceresponse=future.get();
}