@Generated(value="by gapic-generator-java") public class VertexRagServiceClient 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
RagQuery query = RagQuery.newBuilder().build();
RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(parent, query);
}
Note: close() needs to be called on the VertexRagServiceClient 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 |
|---|---|---|
RetrieveContexts |
Retrieves relevant contexts for a query. |
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.
|
AugmentPrompt |
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses. |
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.
|
CorroborateContent |
Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts. |
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 VertexRagServiceSettings 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
VertexRagServiceSettings vertexRagServiceSettings =
VertexRagServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
VertexRagServiceClient vertexRagServiceClient =
VertexRagServiceClient.create(vertexRagServiceSettings);
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
VertexRagServiceSettings vertexRagServiceSettings =
VertexRagServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
VertexRagServiceClient vertexRagServiceClient =
VertexRagServiceClient.create(vertexRagServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
VertexRagServiceClient.ListLocationsFixedSizeCollection |
static class |
VertexRagServiceClient.ListLocationsPage |
static class |
VertexRagServiceClient.ListLocationsPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
VertexRagServiceClient(VertexRagServiceSettings settings)
Constructs an instance of VertexRagServiceClient, using the given settings.
|
protected |
VertexRagServiceClient(VertexRagServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
AugmentPromptResponse |
augmentPrompt(AugmentPromptRequest request)
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards
generating grounded responses.
|
AugmentPromptResponse |
augmentPrompt(LocationName parent,
AugmentPromptRequest.Model model,
VertexRagStore vertexRagStore)
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards
generating grounded responses.
|
AugmentPromptResponse |
augmentPrompt(String parent,
AugmentPromptRequest.Model model,
VertexRagStore vertexRagStore)
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards
generating grounded responses.
|
com.google.api.gax.rpc.UnaryCallable<AugmentPromptRequest,AugmentPromptResponse> |
augmentPromptCallable()
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards
generating grounded responses.
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
CorroborateContentResponse |
corroborateContent(CorroborateContentRequest request)
Given an input text, it returns a score that evaluates the factuality of the text.
|
CorroborateContentResponse |
corroborateContent(LocationName parent,
Content content,
List<Fact> facts)
Given an input text, it returns a score that evaluates the factuality of the text.
|
CorroborateContentResponse |
corroborateContent(String parent,
Content content,
List<Fact> facts)
Given an input text, it returns a score that evaluates the factuality of the text.
|
com.google.api.gax.rpc.UnaryCallable<CorroborateContentRequest,CorroborateContentResponse> |
corroborateContentCallable()
Given an input text, it returns a score that evaluates the factuality of the text.
|
static VertexRagServiceClient |
create()
Constructs an instance of VertexRagServiceClient with default settings.
|
static VertexRagServiceClient |
create(VertexRagServiceSettings settings)
Constructs an instance of VertexRagServiceClient, using the given settings.
|
static VertexRagServiceClient |
create(VertexRagServiceStub stub)
Constructs an instance of VertexRagServiceClient, using the given stub for making calls.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getIamPolicyCallable()
Gets the access control policy for a resource.
|
com.google.cloud.location.Location |
getLocation(com.google.cloud.location.GetLocationRequest request)
Gets information about a location.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
getLocationCallable()
Gets information about a location.
|
VertexRagServiceSettings |
getSettings() |
VertexRagServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
VertexRagServiceClient.ListLocationsPagedResponse |
listLocations(com.google.cloud.location.ListLocationsRequest request)
Lists information about the supported locations for this service.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
listLocationsCallable()
Lists information about the supported locations for this service.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,VertexRagServiceClient.ListLocationsPagedResponse> |
listLocationsPagedCallable()
Lists information about the supported locations for this service.
|
RetrieveContextsResponse |
retrieveContexts(LocationName parent,
RagQuery query)
Retrieves relevant contexts for a query.
|
RetrieveContextsResponse |
retrieveContexts(RetrieveContextsRequest request)
Retrieves relevant contexts for a query.
|
RetrieveContextsResponse |
retrieveContexts(String parent,
RagQuery query)
Retrieves relevant contexts for a query.
|
com.google.api.gax.rpc.UnaryCallable<RetrieveContextsRequest,RetrieveContextsResponse> |
retrieveContextsCallable()
Retrieves relevant contexts for a query.
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
setIamPolicyCallable()
Sets the access control policy on the specified resource.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified resource.
|
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 resource.
|
protected VertexRagServiceClient(VertexRagServiceSettings settings) throws IOException
IOExceptionprotected VertexRagServiceClient(VertexRagServiceStub stub)
public static final VertexRagServiceClient create() throws IOException
IOExceptionpublic static final VertexRagServiceClient create(VertexRagServiceSettings settings) throws IOException
IOExceptionpublic static final VertexRagServiceClient create(VertexRagServiceStub stub)
public final VertexRagServiceSettings getSettings()
public VertexRagServiceStub getStub()
public final RetrieveContextsResponse retrieveContexts(LocationName parent, RagQuery query)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
RagQuery query = RagQuery.newBuilder().build();
RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(parent, query);
}
parent - Required. The resource name of the Location from which to retrieve RagContexts.
The users must have permission to make a call in the project. Format:
`projects/{project}/locations/{location}`.query - Required. Single RAG retrieve query.com.google.api.gax.rpc.ApiException - if the remote call failspublic final RetrieveContextsResponse retrieveContexts(String parent, RagQuery query)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
RagQuery query = RagQuery.newBuilder().build();
RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(parent, query);
}
parent - Required. The resource name of the Location from which to retrieve RagContexts.
The users must have permission to make a call in the project. Format:
`projects/{project}/locations/{location}`.query - Required. Single RAG retrieve query.com.google.api.gax.rpc.ApiException - if the remote call failspublic final RetrieveContextsResponse retrieveContexts(RetrieveContextsRequest 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
RetrieveContextsRequest request =
RetrieveContextsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setQuery(RagQuery.newBuilder().build())
.build();
RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(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<RetrieveContextsRequest,RetrieveContextsResponse> retrieveContextsCallable()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
RetrieveContextsRequest request =
RetrieveContextsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setQuery(RagQuery.newBuilder().build())
.build();
ApiFuture<RetrieveContextsResponse> future =
vertexRagServiceClient.retrieveContextsCallable().futureCall(request);
// Do something.
RetrieveContextsResponse response = future.get();
}
public final AugmentPromptResponse augmentPrompt(LocationName parent, AugmentPromptRequest.Model model, VertexRagStore vertexRagStore)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
AugmentPromptRequest.Model model = AugmentPromptRequest.Model.newBuilder().build();
VertexRagStore vertexRagStore = VertexRagStore.newBuilder().build();
AugmentPromptResponse response =
vertexRagServiceClient.augmentPrompt(parent, model, vertexRagStore);
}
parent - Required. The resource name of the Location from which to augment prompt. The
users must have permission to make a call in the project. Format:
`projects/{project}/locations/{location}`.model - Optional. Metadata of the backend deployed model.vertexRagStore - Optional. Retrieves contexts from the Vertex RagStore.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AugmentPromptResponse augmentPrompt(String parent, AugmentPromptRequest.Model model, VertexRagStore vertexRagStore)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
AugmentPromptRequest.Model model = AugmentPromptRequest.Model.newBuilder().build();
VertexRagStore vertexRagStore = VertexRagStore.newBuilder().build();
AugmentPromptResponse response =
vertexRagServiceClient.augmentPrompt(parent, model, vertexRagStore);
}
parent - Required. The resource name of the Location from which to augment prompt. The
users must have permission to make a call in the project. Format:
`projects/{project}/locations/{location}`.model - Optional. Metadata of the backend deployed model.vertexRagStore - Optional. Retrieves contexts from the Vertex RagStore.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AugmentPromptResponse augmentPrompt(AugmentPromptRequest 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
AugmentPromptRequest request =
AugmentPromptRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.addAllContents(new ArrayList<Content>())
.setModel(AugmentPromptRequest.Model.newBuilder().build())
.build();
AugmentPromptResponse response = vertexRagServiceClient.augmentPrompt(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<AugmentPromptRequest,AugmentPromptResponse> augmentPromptCallable()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
AugmentPromptRequest request =
AugmentPromptRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.addAllContents(new ArrayList<Content>())
.setModel(AugmentPromptRequest.Model.newBuilder().build())
.build();
ApiFuture<AugmentPromptResponse> future =
vertexRagServiceClient.augmentPromptCallable().futureCall(request);
// Do something.
AugmentPromptResponse response = future.get();
}
public final CorroborateContentResponse corroborateContent(LocationName parent, Content content, List<Fact> facts)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Content content = Content.newBuilder().build();
List<Fact> facts = new ArrayList<>();
CorroborateContentResponse response =
vertexRagServiceClient.corroborateContent(parent, content, facts);
}
parent - Required. The resource name of the Location from which to corroborate text. The
users must have permission to make a call in the project. Format:
`projects/{project}/locations/{location}`.content - Optional. Input content to corroborate, only text format is supported for now.facts - Optional. Facts used to generate the text can also be used to corroborate the
text.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CorroborateContentResponse corroborateContent(String parent, Content content, List<Fact> facts)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Content content = Content.newBuilder().build();
List<Fact> facts = new ArrayList<>();
CorroborateContentResponse response =
vertexRagServiceClient.corroborateContent(parent, content, facts);
}
parent - Required. The resource name of the Location from which to corroborate text. The
users must have permission to make a call in the project. Format:
`projects/{project}/locations/{location}`.content - Optional. Input content to corroborate, only text format is supported for now.facts - Optional. Facts used to generate the text can also be used to corroborate the
text.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CorroborateContentResponse corroborateContent(CorroborateContentRequest 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
CorroborateContentRequest request =
CorroborateContentRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setContent(Content.newBuilder().build())
.addAllFacts(new ArrayList<Fact>())
.setParameters(CorroborateContentRequest.Parameters.newBuilder().build())
.build();
CorroborateContentResponse response = vertexRagServiceClient.corroborateContent(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<CorroborateContentRequest,CorroborateContentResponse> corroborateContentCallable()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
CorroborateContentRequest request =
CorroborateContentRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setContent(Content.newBuilder().build())
.addAllFacts(new ArrayList<Fact>())
.setParameters(CorroborateContentRequest.Parameters.newBuilder().build())
.build();
ApiFuture<CorroborateContentResponse> future =
vertexRagServiceClient.corroborateContentCallable().futureCall(request);
// Do something.
CorroborateContentResponse response = future.get();
}
public final VertexRagServiceClient.ListLocationsPagedResponse listLocations(com.google.cloud.location.ListLocationsRequest 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : vertexRagServiceClient.listLocations(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<com.google.cloud.location.ListLocationsRequest,VertexRagServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future =
vertexRagServiceClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> listLocationsCallable()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response =
vertexRagServiceClient.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;
}
}
}
public final com.google.cloud.location.Location getLocation(com.google.cloud.location.GetLocationRequest 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = vertexRagServiceClient.getLocation(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.cloud.location.GetLocationRequest,com.google.cloud.location.Location> getLocationCallable()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future = vertexRagServiceClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
public final com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = vertexRagServiceClient.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()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future = vertexRagServiceClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public 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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = vertexRagServiceClient.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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future = vertexRagServiceClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response = vertexRagServiceClient.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()
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 (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
vertexRagServiceClient.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 © 2025 Google LLC. All rights reserved.