@Generated(value="by gapic-generator-java") public class TagKeysClient extends Object implements com.google.api.gax.core.BackgroundResource
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TagKeyName name = TagKeyName.of("[TAG_KEY]");
TagKey response = tagKeysClient.getTagKey(name);
}
Note: close() needs to be called on the TagKeysClient 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 |
|---|---|---|
ListTagKeys |
Lists all TagKeys for a parent resource. |
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.
|
GetTagKey |
Retrieves a TagKey. This method will return `PERMISSION_DENIED` if the key does not exist or the user does not have permission to view it. |
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.
|
GetNamespacedTagKey |
Retrieves a TagKey by its namespaced name. This method will return `PERMISSION_DENIED` if the key does not exist or the user does not have permission to view it. |
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.
|
CreateTagKey |
Creates a new TagKey. If another request with the same parameters is sent while the original request is in process, the second request will receive an error. A maximum of 1000 TagKeys can exist under a parent at any given time. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateTagKey |
Updates the attributes of the TagKey resource. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteTagKey |
Deletes a TagKey. The TagKey cannot be deleted if it has any child TagValues. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetIamPolicy |
Gets the access control policy for a TagKey. The returned policy may be empty if no such policy or resource exists. The `resource` field should be the TagKey's resource name. For example, "tagKeys/1234". The caller must have `cloudresourcemanager.googleapis.com/tagKeys.getIamPolicy` permission on the specified TagKey. |
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.
|
SetIamPolicy |
Sets the access control policy on a TagKey, replacing any existing policy. The `resource` field should be the TagKey's resource name. For example, "tagKeys/1234". The caller must have `resourcemanager.tagKeys.setIamPolicy` permission on the identified tagValue. |
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.
|
TestIamPermissions |
Returns permissions that a caller has on the specified TagKey. The `resource` field should be the TagKey's resource name. For example, "tagKeys/1234". There are no permissions required for making this API call. |
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 TagKeysSettings 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
TagKeysSettings tagKeysSettings =
TagKeysSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
TagKeysClient tagKeysClient = TagKeysClient.create(tagKeysSettings);
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
TagKeysSettings tagKeysSettings = TagKeysSettings.newBuilder().setEndpoint(myEndpoint).build();
TagKeysClient tagKeysClient = TagKeysClient.create(tagKeysSettings);
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
TagKeysSettings tagKeysSettings = TagKeysSettings.newHttpJsonBuilder().build();
TagKeysClient tagKeysClient = TagKeysClient.create(tagKeysSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
TagKeysClient.ListTagKeysFixedSizeCollection |
static class |
TagKeysClient.ListTagKeysPage |
static class |
TagKeysClient.ListTagKeysPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
TagKeysClient(TagKeysSettings settings)
Constructs an instance of TagKeysClient, using the given settings.
|
protected |
TagKeysClient(TagKeysStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static TagKeysClient |
create()
Constructs an instance of TagKeysClient with default settings.
|
static TagKeysClient |
create(TagKeysSettings settings)
Constructs an instance of TagKeysClient, using the given settings.
|
static TagKeysClient |
create(TagKeysStub stub)
Constructs an instance of TagKeysClient, using the given stub for making calls.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,CreateTagKeyMetadata> |
createTagKeyAsync(CreateTagKeyRequest request)
Creates a new TagKey.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,CreateTagKeyMetadata> |
createTagKeyAsync(TagKey tagKey)
Creates a new TagKey.
|
com.google.api.gax.rpc.UnaryCallable<CreateTagKeyRequest,com.google.longrunning.Operation> |
createTagKeyCallable()
Creates a new TagKey.
|
com.google.api.gax.rpc.OperationCallable<CreateTagKeyRequest,TagKey,CreateTagKeyMetadata> |
createTagKeyOperationCallable()
Creates a new TagKey.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,DeleteTagKeyMetadata> |
deleteTagKeyAsync(DeleteTagKeyRequest request)
Deletes a TagKey.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,DeleteTagKeyMetadata> |
deleteTagKeyAsync(String name)
Deletes a TagKey.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,DeleteTagKeyMetadata> |
deleteTagKeyAsync(TagKeyName name)
Deletes a TagKey.
|
com.google.api.gax.rpc.UnaryCallable<DeleteTagKeyRequest,com.google.longrunning.Operation> |
deleteTagKeyCallable()
Deletes a TagKey.
|
com.google.api.gax.rpc.OperationCallable<DeleteTagKeyRequest,TagKey,DeleteTagKeyMetadata> |
deleteTagKeyOperationCallable()
Deletes a TagKey.
|
com.google.api.gax.httpjson.longrunning.OperationsClient |
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a TagKey.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.api.resourcenames.ResourceName resource)
Gets the access control policy for a TagKey.
|
com.google.iam.v1.Policy |
getIamPolicy(String resource)
Gets the access control policy for a TagKey.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getIamPolicyCallable()
Gets the access control policy for a TagKey.
|
TagKey |
getNamespacedTagKey(GetNamespacedTagKeyRequest request)
Retrieves a TagKey by its namespaced name.
|
TagKey |
getNamespacedTagKey(String name)
Retrieves a TagKey by its namespaced name.
|
TagKey |
getNamespacedTagKey(TagKeyName name)
Retrieves a TagKey by its namespaced name.
|
com.google.api.gax.rpc.UnaryCallable<GetNamespacedTagKeyRequest,TagKey> |
getNamespacedTagKeyCallable()
Retrieves a TagKey by its namespaced name.
|
com.google.longrunning.OperationsClient |
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
TagKeysSettings |
getSettings() |
TagKeysStub |
getStub() |
TagKey |
getTagKey(GetTagKeyRequest request)
Retrieves a TagKey.
|
TagKey |
getTagKey(String name)
Retrieves a TagKey.
|
TagKey |
getTagKey(TagKeyName name)
Retrieves a TagKey.
|
com.google.api.gax.rpc.UnaryCallable<GetTagKeyRequest,TagKey> |
getTagKeyCallable()
Retrieves a TagKey.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
TagKeysClient.ListTagKeysPagedResponse |
listTagKeys(ListTagKeysRequest request)
Lists all TagKeys for a parent resource.
|
TagKeysClient.ListTagKeysPagedResponse |
listTagKeys(com.google.api.resourcenames.ResourceName parent)
Lists all TagKeys for a parent resource.
|
TagKeysClient.ListTagKeysPagedResponse |
listTagKeys(String parent)
Lists all TagKeys for a parent resource.
|
com.google.api.gax.rpc.UnaryCallable<ListTagKeysRequest,ListTagKeysResponse> |
listTagKeysCallable()
Lists all TagKeys for a parent resource.
|
com.google.api.gax.rpc.UnaryCallable<ListTagKeysRequest,TagKeysClient.ListTagKeysPagedResponse> |
listTagKeysPagedCallable()
Lists all TagKeys for a parent resource.
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.api.resourcenames.ResourceName resource,
com.google.iam.v1.Policy policy)
Sets the access control policy on a TagKey, replacing any existing policy.
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on a TagKey, replacing any existing policy.
|
com.google.iam.v1.Policy |
setIamPolicy(String resource,
com.google.iam.v1.Policy policy)
Sets the access control policy on a TagKey, replacing any existing policy.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
setIamPolicyCallable()
Sets the access control policy on a TagKey, replacing any existing policy.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.api.resourcenames.ResourceName resource,
List<String> permissions)
Returns permissions that a caller has on the specified TagKey.
|
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(String resource,
List<String> permissions)
Returns permissions that a caller has on the specified TagKey.
|
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified TagKey.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
testIamPermissionsCallable()
Returns permissions that a caller has on the specified TagKey.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,UpdateTagKeyMetadata> |
updateTagKeyAsync(TagKey tagKey,
com.google.protobuf.FieldMask updateMask)
Updates the attributes of the TagKey resource.
|
com.google.api.gax.longrunning.OperationFuture<TagKey,UpdateTagKeyMetadata> |
updateTagKeyAsync(UpdateTagKeyRequest request)
Updates the attributes of the TagKey resource.
|
com.google.api.gax.rpc.UnaryCallable<UpdateTagKeyRequest,com.google.longrunning.Operation> |
updateTagKeyCallable()
Updates the attributes of the TagKey resource.
|
com.google.api.gax.rpc.OperationCallable<UpdateTagKeyRequest,TagKey,UpdateTagKeyMetadata> |
updateTagKeyOperationCallable()
Updates the attributes of the TagKey resource.
|
protected TagKeysClient(TagKeysSettings settings) throws IOException
IOExceptionprotected TagKeysClient(TagKeysStub stub)
public static final TagKeysClient create() throws IOException
IOExceptionpublic static final TagKeysClient create(TagKeysSettings settings) throws IOException
IOExceptionpublic static final TagKeysClient create(TagKeysStub stub)
public final TagKeysSettings getSettings()
public TagKeysStub getStub()
public final com.google.longrunning.OperationsClient getOperationsClient()
@BetaApi public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
public final TagKeysClient.ListTagKeysPagedResponse listTagKeys(com.google.api.resourcenames.ResourceName parent)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ResourceName parent = FolderName.of("[FOLDER]");
for (TagKey element : tagKeysClient.listTagKeys(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the TagKey's parent. Must be of the form
`organizations/{org_id}` or `projects/{project_id}` or `projects/{project_number}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final TagKeysClient.ListTagKeysPagedResponse listTagKeys(String parent)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String parent = FolderName.of("[FOLDER]").toString();
for (TagKey element : tagKeysClient.listTagKeys(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the TagKey's parent. Must be of the form
`organizations/{org_id}` or `projects/{project_id}` or `projects/{project_number}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final TagKeysClient.ListTagKeysPagedResponse listTagKeys(ListTagKeysRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ListTagKeysRequest request =
ListTagKeysRequest.newBuilder()
.setParent(FolderName.of("[FOLDER]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (TagKey element : tagKeysClient.listTagKeys(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListTagKeysRequest,TagKeysClient.ListTagKeysPagedResponse> listTagKeysPagedCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ListTagKeysRequest request =
ListTagKeysRequest.newBuilder()
.setParent(FolderName.of("[FOLDER]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<TagKey> future = tagKeysClient.listTagKeysPagedCallable().futureCall(request);
// Do something.
for (TagKey element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListTagKeysRequest,ListTagKeysResponse> listTagKeysCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ListTagKeysRequest request =
ListTagKeysRequest.newBuilder()
.setParent(FolderName.of("[FOLDER]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListTagKeysResponse response = tagKeysClient.listTagKeysCallable().call(request);
for (TagKey element : response.getTagKeysList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final TagKey getTagKey(TagKeyName name)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TagKeyName name = TagKeyName.of("[TAG_KEY]");
TagKey response = tagKeysClient.getTagKey(name);
}
name - Required. A resource name in the format `tagKeys/{id}`, such as `tagKeys/123`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final TagKey getTagKey(String name)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String name = TagKeyName.of("[TAG_KEY]").toString();
TagKey response = tagKeysClient.getTagKey(name);
}
name - Required. A resource name in the format `tagKeys/{id}`, such as `tagKeys/123`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final TagKey getTagKey(GetTagKeyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
GetTagKeyRequest request =
GetTagKeyRequest.newBuilder().setName(TagKeyName.of("[TAG_KEY]").toString()).build();
TagKey response = tagKeysClient.getTagKey(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetTagKeyRequest,TagKey> getTagKeyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
GetTagKeyRequest request =
GetTagKeyRequest.newBuilder().setName(TagKeyName.of("[TAG_KEY]").toString()).build();
ApiFuture<TagKey> future = tagKeysClient.getTagKeyCallable().futureCall(request);
// Do something.
TagKey response = future.get();
}
public final TagKey getNamespacedTagKey(TagKeyName name)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TagKeyName name = TagKeyName.of("[TAG_KEY]");
TagKey response = tagKeysClient.getNamespacedTagKey(name);
}
name - Required. A namespaced tag key name in the format `{parentId}/{tagKeyShort}`, such
as `42/foo` for a key with short name "foo" under the organization with ID 42 or
`r2-d2/bar` for a key with short name "bar" under the project `r2-d2`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final TagKey getNamespacedTagKey(String name)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String name = TagKeyName.of("[TAG_KEY]").toString();
TagKey response = tagKeysClient.getNamespacedTagKey(name);
}
name - Required. A namespaced tag key name in the format `{parentId}/{tagKeyShort}`, such
as `42/foo` for a key with short name "foo" under the organization with ID 42 or
`r2-d2/bar` for a key with short name "bar" under the project `r2-d2`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final TagKey getNamespacedTagKey(GetNamespacedTagKeyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
GetNamespacedTagKeyRequest request =
GetNamespacedTagKeyRequest.newBuilder()
.setName(TagKeyName.of("[TAG_KEY]").toString())
.build();
TagKey response = tagKeysClient.getNamespacedTagKey(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetNamespacedTagKeyRequest,TagKey> getNamespacedTagKeyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
GetNamespacedTagKeyRequest request =
GetNamespacedTagKeyRequest.newBuilder()
.setName(TagKeyName.of("[TAG_KEY]").toString())
.build();
ApiFuture<TagKey> future = tagKeysClient.getNamespacedTagKeyCallable().futureCall(request);
// Do something.
TagKey response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<TagKey,CreateTagKeyMetadata> createTagKeyAsync(TagKey tagKey)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TagKey tagKey = TagKey.newBuilder().build();
TagKey response = tagKeysClient.createTagKeyAsync(tagKey).get();
}
tagKey - Required. The TagKey to be created. Only fields `short_name`, `description`, and
`parent` are considered during the creation request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<TagKey,CreateTagKeyMetadata> createTagKeyAsync(CreateTagKeyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
CreateTagKeyRequest request =
CreateTagKeyRequest.newBuilder()
.setTagKey(TagKey.newBuilder().build())
.setValidateOnly(true)
.build();
TagKey response = tagKeysClient.createTagKeyAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<CreateTagKeyRequest,TagKey,CreateTagKeyMetadata> createTagKeyOperationCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
CreateTagKeyRequest request =
CreateTagKeyRequest.newBuilder()
.setTagKey(TagKey.newBuilder().build())
.setValidateOnly(true)
.build();
OperationFuture<TagKey, CreateTagKeyMetadata> future =
tagKeysClient.createTagKeyOperationCallable().futureCall(request);
// Do something.
TagKey response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<CreateTagKeyRequest,com.google.longrunning.Operation> createTagKeyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
CreateTagKeyRequest request =
CreateTagKeyRequest.newBuilder()
.setTagKey(TagKey.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Operation> future = tagKeysClient.createTagKeyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<TagKey,UpdateTagKeyMetadata> updateTagKeyAsync(TagKey tagKey, com.google.protobuf.FieldMask updateMask)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TagKey tagKey = TagKey.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
TagKey response = tagKeysClient.updateTagKeyAsync(tagKey, updateMask).get();
}
tagKey - Required. The new definition of the TagKey. Only the `description` and `etag`
fields can be updated by this request. If the `etag` field is not empty, it must match the
`etag` field of the existing tag key. Otherwise, `ABORTED` will be returned.updateMask - Fields to be updated. The mask may only contain `description` or `etag`. If
omitted entirely, both `description` and `etag` are assumed to be significant.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<TagKey,UpdateTagKeyMetadata> updateTagKeyAsync(UpdateTagKeyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
UpdateTagKeyRequest request =
UpdateTagKeyRequest.newBuilder()
.setTagKey(TagKey.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
TagKey response = tagKeysClient.updateTagKeyAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateTagKeyRequest,TagKey,UpdateTagKeyMetadata> updateTagKeyOperationCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
UpdateTagKeyRequest request =
UpdateTagKeyRequest.newBuilder()
.setTagKey(TagKey.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
OperationFuture<TagKey, UpdateTagKeyMetadata> future =
tagKeysClient.updateTagKeyOperationCallable().futureCall(request);
// Do something.
TagKey response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateTagKeyRequest,com.google.longrunning.Operation> updateTagKeyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
UpdateTagKeyRequest request =
UpdateTagKeyRequest.newBuilder()
.setTagKey(TagKey.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Operation> future = tagKeysClient.updateTagKeyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<TagKey,DeleteTagKeyMetadata> deleteTagKeyAsync(TagKeyName name)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TagKeyName name = TagKeyName.of("[TAG_KEY]");
TagKey response = tagKeysClient.deleteTagKeyAsync(name).get();
}
name - Required. The resource name of a TagKey to be deleted in the format `tagKeys/123`.
The TagKey cannot be a parent of any existing TagValues or it will not be deleted
successfully.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<TagKey,DeleteTagKeyMetadata> deleteTagKeyAsync(String name)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String name = TagKeyName.of("[TAG_KEY]").toString();
TagKey response = tagKeysClient.deleteTagKeyAsync(name).get();
}
name - Required. The resource name of a TagKey to be deleted in the format `tagKeys/123`.
The TagKey cannot be a parent of any existing TagValues or it will not be deleted
successfully.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<TagKey,DeleteTagKeyMetadata> deleteTagKeyAsync(DeleteTagKeyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
DeleteTagKeyRequest request =
DeleteTagKeyRequest.newBuilder()
.setName(TagKeyName.of("[TAG_KEY]").toString())
.setValidateOnly(true)
.setEtag("etag3123477")
.build();
TagKey response = tagKeysClient.deleteTagKeyAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteTagKeyRequest,TagKey,DeleteTagKeyMetadata> deleteTagKeyOperationCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
DeleteTagKeyRequest request =
DeleteTagKeyRequest.newBuilder()
.setName(TagKeyName.of("[TAG_KEY]").toString())
.setValidateOnly(true)
.setEtag("etag3123477")
.build();
OperationFuture<TagKey, DeleteTagKeyMetadata> future =
tagKeysClient.deleteTagKeyOperationCallable().futureCall(request);
// Do something.
TagKey response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteTagKeyRequest,com.google.longrunning.Operation> deleteTagKeyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
DeleteTagKeyRequest request =
DeleteTagKeyRequest.newBuilder()
.setName(TagKeyName.of("[TAG_KEY]").toString())
.setValidateOnly(true)
.setEtag("etag3123477")
.build();
ApiFuture<Operation> future = tagKeysClient.deleteTagKeyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.iam.v1.Policy getIamPolicy(com.google.api.resourcenames.ResourceName resource)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ResourceName resource = TagKeyName.of("[TAG_KEY]");
Policy response = tagKeysClient.getIamPolicy(resource);
}
resource - REQUIRED: The resource for which the policy is being requested. See the
operation documentation for the appropriate value for this field.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.iam.v1.Policy getIamPolicy(String resource)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String resource = FolderName.of("[FOLDER]").toString();
Policy response = tagKeysClient.getIamPolicy(resource);
}
resource - REQUIRED: The resource for which the policy is being requested. See the
operation documentation for the appropriate value for this field.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(TagKeyName.of("[TAG_KEY]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = tagKeysClient.getIamPolicy(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> getIamPolicyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(TagKeyName.of("[TAG_KEY]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future = tagKeysClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.Policy setIamPolicy(com.google.api.resourcenames.ResourceName resource,
com.google.iam.v1.Policy 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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ResourceName resource = TagKeyName.of("[TAG_KEY]");
Policy policy = Policy.newBuilder().build();
Policy response = tagKeysClient.setIamPolicy(resource, policy);
}
resource - REQUIRED: The resource for which the policy is being specified. See the
operation documentation for the appropriate value for this field.policy - REQUIRED: The complete policy to be applied to the `resource`. The size of the
policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
Platform services (such as Projects) might reject them.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.iam.v1.Policy setIamPolicy(String resource, com.google.iam.v1.Policy 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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String resource = FolderName.of("[FOLDER]").toString();
Policy policy = Policy.newBuilder().build();
Policy response = tagKeysClient.setIamPolicy(resource, policy);
}
resource - REQUIRED: The resource for which the policy is being specified. See the
operation documentation for the appropriate value for this field.policy - REQUIRED: The complete policy to be applied to the `resource`. The size of the
policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
Platform services (such as Projects) might reject them.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(TagKeyName.of("[TAG_KEY]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = tagKeysClient.setIamPolicy(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> setIamPolicyCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(TagKeyName.of("[TAG_KEY]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future = tagKeysClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.api.resourcenames.ResourceName resource,
List<String> permissions)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
ResourceName resource = TagKeyName.of("[TAG_KEY]");
List<String> permissions = new ArrayList<>();
TestIamPermissionsResponse response = tagKeysClient.testIamPermissions(resource, permissions);
}
resource - REQUIRED: The resource for which the policy detail is being requested. See the
operation documentation for the appropriate value for this field.permissions - The set of permissions to check for the `resource`. Permissions with
wildcards (such as '*' or 'storage.*') are not allowed. For more information see
[IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(String resource, List<String> permissions)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
String resource = FolderName.of("[FOLDER]").toString();
List<String> permissions = new ArrayList<>();
TestIamPermissionsResponse response = tagKeysClient.testIamPermissions(resource, permissions);
}
resource - REQUIRED: The resource for which the policy detail is being requested. See the
operation documentation for the appropriate value for this field.permissions - The set of permissions to check for the `resource`. Permissions with
wildcards (such as '*' or 'storage.*') are not allowed. For more information see
[IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(TagKeyName.of("[TAG_KEY]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response = tagKeysClient.testIamPermissions(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> testIamPermissionsCallable()
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 (TagKeysClient tagKeysClient = TagKeysClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(TagKeyName.of("[TAG_KEY]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
tagKeysClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.