Class GenAiCacheServiceClient
- All Implemented Interfaces:
BackgroundResource,AutoCloseable
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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
CachedContent cachedContent = CachedContent.newBuilder().build();
CachedContent response = genAiCacheServiceClient.createCachedContent(parent, cachedContent);
}
Note: close() needs to be called on the GenAiCacheServiceClient 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 |
|---|---|---|
CreateCachedContent |
Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage. |
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.
|
GetCachedContent |
Gets cached content configurations |
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.
|
UpdateCachedContent |
Updates cached content configurations |
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.
|
DeleteCachedContent |
Deletes cached content |
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.
|
ListCachedContents |
Lists cached contents in a 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.
|
ListLocations |
Lists information about the supported locations for this service. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetLocation |
Gets information about a location. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 the specified resource. Replacesany existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 resource. Returns an empty policyif the resource exists and does not have a policy set. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 GenAiCacheServiceSettings 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
GenAiCacheServiceSettings genAiCacheServiceSettings =
GenAiCacheServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
GenAiCacheServiceClient genAiCacheServiceClient =
GenAiCacheServiceClient.create(genAiCacheServiceSettings);
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
GenAiCacheServiceSettings genAiCacheServiceSettings =
GenAiCacheServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
GenAiCacheServiceClient genAiCacheServiceClient =
GenAiCacheServiceClient.create(genAiCacheServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic classstatic classstatic classstatic class -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructs an instance of GenAiCacheServiceClient, using the given settings.protected -
Method Summary
Modifier and TypeMethodDescriptionbooleanawaitTermination(long duration, TimeUnit unit) final voidclose()static final GenAiCacheServiceClientcreate()Constructs an instance of GenAiCacheServiceClient with default settings.static final GenAiCacheServiceClientcreate(GenAiCacheServiceSettings settings) Constructs an instance of GenAiCacheServiceClient, using the given settings.static final GenAiCacheServiceClientcreate(GenAiCacheServiceStub stub) Constructs an instance of GenAiCacheServiceClient, using the given stub for making calls.final CachedContentCreates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.final CachedContentcreateCachedContent(LocationName parent, CachedContent cachedContent) Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.final CachedContentcreateCachedContent(String parent, CachedContent cachedContent) Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.final voidDeletes cached contentfinal voidDeletes cached contentfinal voiddeleteCachedContent(String name) Deletes cached contentfinal UnaryCallable<DeleteCachedContentRequest,com.google.protobuf.Empty> Deletes cached contentfinal CachedContentGets cached content configurationsfinal CachedContentgetCachedContent(GetCachedContentRequest request) Gets cached content configurationsfinal CachedContentgetCachedContent(String name) Gets cached content configurationsGets cached content configurationsfinal PolicygetIamPolicy(GetIamPolicyRequest request) Gets the access control policy for a resource.Gets the access control policy for a resource.final LocationgetLocation(GetLocationRequest request) Gets information about a location.Gets information about a location.getStub()booleanbooleanLists cached contents in a projectlistCachedContents(LocationName parent) Lists cached contents in a projectlistCachedContents(String parent) Lists cached contents in a projectLists cached contents in a projectfinal UnaryCallable<ListCachedContentsRequest,GenAiCacheServiceClient.ListCachedContentsPagedResponse> Lists cached contents in a projectlistLocations(ListLocationsRequest request) Lists information about the supported locations for this service.Lists information about the supported locations for this service.Lists information about the supported locations for this service.final PolicysetIamPolicy(SetIamPolicyRequest request) Sets the access control policy on the specified resource.Sets the access control policy on the specified resource.voidshutdown()voidReturns permissions that a caller has on the specified resource.Returns permissions that a caller has on the specified resource.final CachedContentupdateCachedContent(CachedContent cachedContent, com.google.protobuf.FieldMask updateMask) Updates cached content configurationsfinal CachedContentUpdates cached content configurationsUpdates cached content configurations
-
Constructor Details
-
GenAiCacheServiceClient
Constructs an instance of GenAiCacheServiceClient, 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.- Throws:
IOException
-
GenAiCacheServiceClient
-
-
Method Details
-
create
Constructs an instance of GenAiCacheServiceClient with default settings.- Throws:
IOException
-
create
public static final GenAiCacheServiceClient create(GenAiCacheServiceSettings settings) throws IOException Constructs an instance of GenAiCacheServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.- Throws:
IOException
-
create
Constructs an instance of GenAiCacheServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(GenAiCacheServiceSettings). -
getSettings
-
getStub
-
createCachedContent
Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); CachedContent cachedContent = CachedContent.newBuilder().build(); CachedContent response = genAiCacheServiceClient.createCachedContent(parent, cachedContent); }- Parameters:
parent- Required. The parent resource where the cached content will be createdcachedContent- Required. The cached content to create- Throws:
ApiException- if the remote call fails
-
createCachedContent
Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); CachedContent cachedContent = CachedContent.newBuilder().build(); CachedContent response = genAiCacheServiceClient.createCachedContent(parent, cachedContent); }- Parameters:
parent- Required. The parent resource where the cached content will be createdcachedContent- Required. The cached content to create- Throws:
ApiException- if the remote call fails
-
createCachedContent
Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { CreateCachedContentRequest request = CreateCachedContentRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setCachedContent(CachedContent.newBuilder().build()) .build(); CachedContent response = genAiCacheServiceClient.createCachedContent(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
createCachedContentCallable
Creates cached content, this call will initialize the cached content in the data storage, and users need to pay for the cache data storage.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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { CreateCachedContentRequest request = CreateCachedContentRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setCachedContent(CachedContent.newBuilder().build()) .build(); ApiFuture<CachedContent> future = genAiCacheServiceClient.createCachedContentCallable().futureCall(request); // Do something. CachedContent response = future.get(); } -
getCachedContent
Gets cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { CachedContentName name = CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]"); CachedContent response = genAiCacheServiceClient.getCachedContent(name); }- Parameters:
name- Required. The resource name referring to the cached content- Throws:
ApiException- if the remote call fails
-
getCachedContent
Gets cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { String name = CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]").toString(); CachedContent response = genAiCacheServiceClient.getCachedContent(name); }- Parameters:
name- Required. The resource name referring to the cached content- Throws:
ApiException- if the remote call fails
-
getCachedContent
Gets cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { GetCachedContentRequest request = GetCachedContentRequest.newBuilder() .setName( CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]").toString()) .build(); CachedContent response = genAiCacheServiceClient.getCachedContent(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getCachedContentCallable
Gets cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { GetCachedContentRequest request = GetCachedContentRequest.newBuilder() .setName( CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]").toString()) .build(); ApiFuture<CachedContent> future = genAiCacheServiceClient.getCachedContentCallable().futureCall(request); // Do something. CachedContent response = future.get(); } -
updateCachedContent
public final CachedContent updateCachedContent(CachedContent cachedContent, com.google.protobuf.FieldMask updateMask) Updates cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { CachedContent cachedContent = CachedContent.newBuilder().build(); FieldMask updateMask = FieldMask.newBuilder().build(); CachedContent response = genAiCacheServiceClient.updateCachedContent(cachedContent, updateMask); }- Parameters:
cachedContent- Required. The cached content to updateupdateMask- Required. The list of fields to update.- Throws:
ApiException- if the remote call fails
-
updateCachedContent
Updates cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { UpdateCachedContentRequest request = UpdateCachedContentRequest.newBuilder() .setCachedContent(CachedContent.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); CachedContent response = genAiCacheServiceClient.updateCachedContent(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
updateCachedContentCallable
Updates cached content configurationsSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { UpdateCachedContentRequest request = UpdateCachedContentRequest.newBuilder() .setCachedContent(CachedContent.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<CachedContent> future = genAiCacheServiceClient.updateCachedContentCallable().futureCall(request); // Do something. CachedContent response = future.get(); } -
deleteCachedContent
Deletes cached contentSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { CachedContentName name = CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]"); genAiCacheServiceClient.deleteCachedContent(name); }- Parameters:
name- Required. The resource name referring to the cached content- Throws:
ApiException- if the remote call fails
-
deleteCachedContent
Deletes cached contentSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { String name = CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]").toString(); genAiCacheServiceClient.deleteCachedContent(name); }- Parameters:
name- Required. The resource name referring to the cached content- Throws:
ApiException- if the remote call fails
-
deleteCachedContent
Deletes cached contentSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { DeleteCachedContentRequest request = DeleteCachedContentRequest.newBuilder() .setName( CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]").toString()) .build(); genAiCacheServiceClient.deleteCachedContent(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
deleteCachedContentCallable
public final UnaryCallable<DeleteCachedContentRequest,com.google.protobuf.Empty> deleteCachedContentCallable()Deletes cached contentSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { DeleteCachedContentRequest request = DeleteCachedContentRequest.newBuilder() .setName( CachedContentName.of("[PROJECT]", "[LOCATION]", "[CACHED_CONTENT]").toString()) .build(); ApiFuture<Empty> future = genAiCacheServiceClient.deleteCachedContentCallable().futureCall(request); // Do something. future.get(); } -
listCachedContents
public final GenAiCacheServiceClient.ListCachedContentsPagedResponse listCachedContents(LocationName parent) Lists cached contents in a projectSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); for (CachedContent element : genAiCacheServiceClient.listCachedContents(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The parent, which owns this collection of cached contents.- Throws:
ApiException- if the remote call fails
-
listCachedContents
public final GenAiCacheServiceClient.ListCachedContentsPagedResponse listCachedContents(String parent) Lists cached contents in a projectSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); for (CachedContent element : genAiCacheServiceClient.listCachedContents(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The parent, which owns this collection of cached contents.- Throws:
ApiException- if the remote call fails
-
listCachedContents
public final GenAiCacheServiceClient.ListCachedContentsPagedResponse listCachedContents(ListCachedContentsRequest request) Lists cached contents in a projectSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { ListCachedContentsRequest request = ListCachedContentsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); for (CachedContent element : genAiCacheServiceClient.listCachedContents(request).iterateAll()) { // doThingsWith(element); } }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
listCachedContentsPagedCallable
public final UnaryCallable<ListCachedContentsRequest,GenAiCacheServiceClient.ListCachedContentsPagedResponse> listCachedContentsPagedCallable()Lists cached contents in a projectSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { ListCachedContentsRequest request = ListCachedContentsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); ApiFuture<CachedContent> future = genAiCacheServiceClient.listCachedContentsPagedCallable().futureCall(request); // Do something. for (CachedContent element : future.get().iterateAll()) { // doThingsWith(element); } } -
listCachedContentsCallable
public final UnaryCallable<ListCachedContentsRequest,ListCachedContentsResponse> listCachedContentsCallable()Lists cached contents in a projectSample 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { ListCachedContentsRequest request = ListCachedContentsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); while (true) { ListCachedContentsResponse response = genAiCacheServiceClient.listCachedContentsCallable().call(request); for (CachedContent element : response.getCachedContentsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
listLocations
public final GenAiCacheServiceClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request) Lists information about the supported locations for this 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); for (Location element : genAiCacheServiceClient.listLocations(request).iterateAll()) { // doThingsWith(element); } }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
listLocationsPagedCallable
public final UnaryCallable<ListLocationsRequest,GenAiCacheServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()Lists information about the supported locations for this 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); ApiFuture<Location> future = genAiCacheServiceClient.listLocationsPagedCallable().futureCall(request); // Do something. for (Location element : future.get().iterateAll()) { // doThingsWith(element); } } -
listLocationsCallable
Lists information about the supported locations for this 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); while (true) { ListLocationsResponse response = genAiCacheServiceClient.listLocationsCallable().call(request); for (Location element : response.getLocationsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
getLocation
Gets information about a 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); Location response = genAiCacheServiceClient.getLocation(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getLocationCallable
Gets information about a 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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); ApiFuture<Location> future = genAiCacheServiceClient.getLocationCallable().futureCall(request); // Do something. Location response = future.get(); } -
setIamPolicy
Sets the access control policy on the specified resource. Replacesany existing policy.Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); Policy response = genAiCacheServiceClient.setIamPolicy(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
setIamPolicyCallable
Sets the access control policy on the specified resource. Replacesany existing policy.Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<Policy> future = genAiCacheServiceClient.setIamPolicyCallable().futureCall(request); // Do something. Policy response = future.get(); } -
getIamPolicy
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); Policy response = genAiCacheServiceClient.getIamPolicy(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getIamPolicyCallable
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); ApiFuture<Policy> future = genAiCacheServiceClient.getIamPolicyCallable().futureCall(request); // Do something. Policy response = future.get(); } -
testIamPermissions
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); TestIamPermissionsResponse response = genAiCacheServiceClient.testIamPermissions(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
testIamPermissionsCallable
public final UnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsCallable()Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (GenAiCacheServiceClient genAiCacheServiceClient = GenAiCacheServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); ApiFuture<TestIamPermissionsResponse> future = genAiCacheServiceClient.testIamPermissionsCallable().futureCall(request); // Do something. TestIamPermissionsResponse response = future.get(); } -
close
public final void close()- Specified by:
closein interfaceAutoCloseable
-
shutdown
public void shutdown()- Specified by:
shutdownin interfaceBackgroundResource
-
isShutdown
public boolean isShutdown()- Specified by:
isShutdownin interfaceBackgroundResource
-
isTerminated
public boolean isTerminated()- Specified by:
isTerminatedin interfaceBackgroundResource
-
shutdownNow
public void shutdownNow()- Specified by:
shutdownNowin interfaceBackgroundResource
-
awaitTermination
- Specified by:
awaitTerminationin interfaceBackgroundResource- Throws:
InterruptedException
-