- 2.55.0 (latest)
- 2.54.0
- 2.53.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.1
- 2.4.0
- 2.3.0
- 2.2.3
- 2.1.0
- 2.0.19
GitHub Repository | Product Reference |
Service Description: Service for settings at Project level.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
AlertConfigName name = AlertConfigName.of("[PROJECT]");
AlertConfig response = projectServiceClient.getAlertConfig(name);
}
Note: close() needs to be called on the ProjectServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
Method | Description | Method Variants |
---|---|---|
GetAlertConfig |
Get the AlertConfig of the requested project. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateAlertConfig |
Update the alert config of the requested project. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return 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 ProjectServiceSettings 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
ProjectServiceSettings projectServiceSettings =
ProjectServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ProjectServiceClient projectServiceClient = ProjectServiceClient.create(projectServiceSettings);
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
ProjectServiceSettings projectServiceSettings =
ProjectServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
ProjectServiceClient projectServiceClient = ProjectServiceClient.create(projectServiceSettings);
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
ProjectServiceSettings projectServiceSettings =
ProjectServiceSettings.newHttpJsonBuilder().build();
ProjectServiceClient projectServiceClient = ProjectServiceClient.create(projectServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final ProjectServiceClient create()
Constructs an instance of ProjectServiceClient with default settings.
Returns | |
---|---|
Type | Description |
ProjectServiceClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(ProjectServiceSettings settings)
public static final ProjectServiceClient create(ProjectServiceSettings settings)
Constructs an instance of ProjectServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Parameter | |
---|---|
Name | Description |
settings |
ProjectServiceSettings |
Returns | |
---|---|
Type | Description |
ProjectServiceClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(ProjectServiceStub stub)
public static final ProjectServiceClient create(ProjectServiceStub stub)
Constructs an instance of ProjectServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ProjectServiceSettings).
Parameter | |
---|---|
Name | Description |
stub |
ProjectServiceStub |
Returns | |
---|---|
Type | Description |
ProjectServiceClient |
Constructors
ProjectServiceClient(ProjectServiceSettings settings)
protected ProjectServiceClient(ProjectServiceSettings settings)
Constructs an instance of ProjectServiceClient, 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.
Parameter | |
---|---|
Name | Description |
settings |
ProjectServiceSettings |
ProjectServiceClient(ProjectServiceStub stub)
protected ProjectServiceClient(ProjectServiceStub stub)
Parameter | |
---|---|
Name | Description |
stub |
ProjectServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration |
long |
unit |
TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
InterruptedException |
close()
public final void close()
getAlertConfig(AlertConfigName name)
public final AlertConfig getAlertConfig(AlertConfigName name)
Get the AlertConfig of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
AlertConfigName name = AlertConfigName.of("[PROJECT]");
AlertConfig response = projectServiceClient.getAlertConfig(name);
}
Parameter | |
---|---|
Name | Description |
name |
AlertConfigName Required. Full AlertConfig resource name. Format: projects/{project_number}/alertConfig |
Returns | |
---|---|
Type | Description |
AlertConfig |
getAlertConfig(GetAlertConfigRequest request)
public final AlertConfig getAlertConfig(GetAlertConfigRequest request)
Get the AlertConfig of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
GetAlertConfigRequest request =
GetAlertConfigRequest.newBuilder()
.setName(AlertConfigName.of("[PROJECT]").toString())
.build();
AlertConfig response = projectServiceClient.getAlertConfig(request);
}
Parameter | |
---|---|
Name | Description |
request |
GetAlertConfigRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
AlertConfig |
getAlertConfig(String name)
public final AlertConfig getAlertConfig(String name)
Get the AlertConfig of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
String name = AlertConfigName.of("[PROJECT]").toString();
AlertConfig response = projectServiceClient.getAlertConfig(name);
}
Parameter | |
---|---|
Name | Description |
name |
String Required. Full AlertConfig resource name. Format: projects/{project_number}/alertConfig |
Returns | |
---|---|
Type | Description |
AlertConfig |
getAlertConfigCallable()
public final UnaryCallable<GetAlertConfigRequest,AlertConfig> getAlertConfigCallable()
Get the AlertConfig of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
GetAlertConfigRequest request =
GetAlertConfigRequest.newBuilder()
.setName(AlertConfigName.of("[PROJECT]").toString())
.build();
ApiFuture<AlertConfig> future =
projectServiceClient.getAlertConfigCallable().futureCall(request);
// Do something.
AlertConfig response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetAlertConfigRequest,AlertConfig> |
getSettings()
public final ProjectServiceSettings getSettings()
Returns | |
---|---|
Type | Description |
ProjectServiceSettings |
getStub()
public ProjectServiceStub getStub()
Returns | |
---|---|
Type | Description |
ProjectServiceStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
updateAlertConfig(AlertConfig alertConfig, FieldMask updateMask)
public final AlertConfig updateAlertConfig(AlertConfig alertConfig, FieldMask updateMask)
Update the alert config of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
AlertConfig alertConfig = AlertConfig.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
AlertConfig response = projectServiceClient.updateAlertConfig(alertConfig, updateMask);
}
Parameters | |
---|---|
Name | Description |
alertConfig |
AlertConfig Required. The AlertConfig to update. If the caller does not have permission to update the AlertConfig, then a PERMISSION_DENIED error is returned. If the AlertConfig to update does not exist, a NOT_FOUND error is returned. |
updateMask |
FieldMask Indicates which fields in the provided AlertConfig to update. If not set, all supported fields are updated. |
Returns | |
---|---|
Type | Description |
AlertConfig |
updateAlertConfig(UpdateAlertConfigRequest request)
public final AlertConfig updateAlertConfig(UpdateAlertConfigRequest request)
Update the alert config of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
UpdateAlertConfigRequest request =
UpdateAlertConfigRequest.newBuilder()
.setAlertConfig(AlertConfig.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
AlertConfig response = projectServiceClient.updateAlertConfig(request);
}
Parameter | |
---|---|
Name | Description |
request |
UpdateAlertConfigRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
AlertConfig |
updateAlertConfigCallable()
public final UnaryCallable<UpdateAlertConfigRequest,AlertConfig> updateAlertConfigCallable()
Update the alert config of the requested project.
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 (ProjectServiceClient projectServiceClient = ProjectServiceClient.create()) {
UpdateAlertConfigRequest request =
UpdateAlertConfigRequest.newBuilder()
.setAlertConfig(AlertConfig.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<AlertConfig> future =
projectServiceClient.updateAlertConfigCallable().futureCall(request);
// Do something.
AlertConfig response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<UpdateAlertConfigRequest,AlertConfig> |