Class SessionServiceClient
- 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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) {
SessionName name =
SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]");
Session response = sessionServiceClient.getSession(name);
}
Note: close() needs to be called on the SessionServiceClient 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 |
|---|---|---|
CreateSession |
Creates a new [Session][google.cloud.aiplatform.v1beta1.Session]. |
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.
|
GetSession |
Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session]. |
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.
|
ListSessions |
Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine. |
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.
|
UpdateSession |
Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session]. |
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.
|
DeleteSession |
Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session]. |
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.
|
ListEvents |
Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session. |
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.
|
AppendEvent |
Appends an event to a given session. |
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 SessionServiceSettings 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
SessionServiceSettings sessionServiceSettings =
SessionServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
SessionServiceClient sessionServiceClient = SessionServiceClient.create(sessionServiceSettings);
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
SessionServiceSettings sessionServiceSettings =
SessionServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
SessionServiceClient sessionServiceClient = SessionServiceClient.create(sessionServiceSettings);
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 classstatic classstatic classstatic class -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSessionServiceClient(SessionServiceSettings settings) Constructs an instance of SessionServiceClient, using the given settings.protected -
Method Summary
Modifier and TypeMethodDescriptionfinal AppendEventResponseappendEvent(AppendEventRequest request) Appends an event to a given session.final AppendEventResponseappendEvent(SessionName name, SessionEvent event) Appends an event to a given session.final AppendEventResponseappendEvent(String name, SessionEvent event) Appends an event to a given session.Appends an event to a given session.booleanawaitTermination(long duration, TimeUnit unit) final voidclose()static final SessionServiceClientcreate()Constructs an instance of SessionServiceClient with default settings.static final SessionServiceClientcreate(SessionServiceSettings settings) Constructs an instance of SessionServiceClient, using the given settings.static final SessionServiceClientcreate(SessionServiceStub stub) Constructs an instance of SessionServiceClient, using the given stub for making calls.createSessionAsync(CreateSessionRequest request) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].createSessionAsync(ReasoningEngineName parent, Session session) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].createSessionAsync(ReasoningEngineName parent, Session session, String sessionId) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].createSessionAsync(String parent, Session session) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].createSessionAsync(String parent, Session session, String sessionId) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteSessionAsync(DeleteSessionRequest request) Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteSessionAsync(String name) Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final OperationCallable<DeleteSessionRequest,com.google.protobuf.Empty, DeleteOperationMetadata> Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final 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.final OperationsClientReturns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.final SessiongetSession(GetSessionRequest request) Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final SessiongetSession(SessionName name) Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final SessiongetSession(String name) Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].final SessionServiceSettingsgetStub()booleanbooleanlistEvents(ListEventsRequest request) Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.listEvents(SessionName parent) Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.listEvents(String parent) Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.listLocations(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.listSessions(ListSessionsRequest request) Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.listSessions(ReasoningEngineName parent) Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.listSessions(String parent) Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.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 SessionupdateSession(Session session, com.google.protobuf.FieldMask updateMask) Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session].final SessionupdateSession(UpdateSessionRequest request) Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session].Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session].
-
Constructor Details
-
SessionServiceClient
Constructs an instance of SessionServiceClient, 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
-
SessionServiceClient
-
-
Method Details
-
create
Constructs an instance of SessionServiceClient with default settings.- Throws:
IOException
-
create
Constructs an instance of SessionServiceClient, 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 SessionServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(SessionServiceSettings). -
getSettings
-
getStub
-
getOperationsClient
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call. -
createSessionAsync
public final OperationFuture<Session,CreateSessionOperationMetadata> createSessionAsync(ReasoningEngineName parent, Session session) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ReasoningEngineName parent = ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]"); Session session = Session.newBuilder().build(); Session response = sessionServiceClient.createSessionAsync(parent, session).get(); }- Parameters:
parent- Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`session- Required. The session to create.- Throws:
ApiException- if the remote call fails
-
createSessionAsync
public final OperationFuture<Session,CreateSessionOperationMetadata> createSessionAsync(String parent, Session session) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String parent = ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]").toString(); Session session = Session.newBuilder().build(); Session response = sessionServiceClient.createSessionAsync(parent, session).get(); }- Parameters:
parent- Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`session- Required. The session to create.- Throws:
ApiException- if the remote call fails
-
createSessionAsync
public final OperationFuture<Session,CreateSessionOperationMetadata> createSessionAsync(ReasoningEngineName parent, Session session, String sessionId) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ReasoningEngineName parent = ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]"); Session session = Session.newBuilder().build(); String sessionId = "sessionId607796817"; Session response = sessionServiceClient.createSessionAsync(parent, session, sessionId).get(); }- Parameters:
parent- Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`session- Required. The session to create.sessionId- Optional. The user defined ID to use for session, which will become the final component of the session resource name. If not provided, Vertex AI will generate a value for this ID.This value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The first character must be a letter, and the last character must be a letter or number.
- Throws:
ApiException- if the remote call fails
-
createSessionAsync
public final OperationFuture<Session,CreateSessionOperationMetadata> createSessionAsync(String parent, Session session, String sessionId) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String parent = ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]").toString(); Session session = Session.newBuilder().build(); String sessionId = "sessionId607796817"; Session response = sessionServiceClient.createSessionAsync(parent, session, sessionId).get(); }- Parameters:
parent- Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`session- Required. The session to create.sessionId- Optional. The user defined ID to use for session, which will become the final component of the session resource name. If not provided, Vertex AI will generate a value for this ID.This value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The first character must be a letter, and the last character must be a letter or number.
- Throws:
ApiException- if the remote call fails
-
createSessionAsync
public final OperationFuture<Session,CreateSessionOperationMetadata> createSessionAsync(CreateSessionRequest request) Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { CreateSessionRequest request = CreateSessionRequest.newBuilder() .setParent( ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]") .toString()) .setSession(Session.newBuilder().build()) .setSessionId("sessionId607796817") .build(); Session response = sessionServiceClient.createSessionAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
createSessionOperationCallable
public final OperationCallable<CreateSessionRequest,Session, createSessionOperationCallable()CreateSessionOperationMetadata> Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { CreateSessionRequest request = CreateSessionRequest.newBuilder() .setParent( ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]") .toString()) .setSession(Session.newBuilder().build()) .setSessionId("sessionId607796817") .build(); OperationFuture<Session, CreateSessionOperationMetadata> future = sessionServiceClient.createSessionOperationCallable().futureCall(request); // Do something. Session response = future.get(); } -
createSessionCallable
Creates a new [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { CreateSessionRequest request = CreateSessionRequest.newBuilder() .setParent( ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]") .toString()) .setSession(Session.newBuilder().build()) .setSessionId("sessionId607796817") .build(); ApiFuture<Operation> future = sessionServiceClient.createSessionCallable().futureCall(request); // Do something. Operation response = future.get(); } -
getSession
Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]"); Session response = sessionServiceClient.getSession(name); }- Parameters:
name- Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`- Throws:
ApiException- if the remote call fails
-
getSession
Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String name = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]").toString(); Session response = sessionServiceClient.getSession(name); }- Parameters:
name- Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`- Throws:
ApiException- if the remote call fails
-
getSession
Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { GetSessionRequest request = GetSessionRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .build(); Session response = sessionServiceClient.getSession(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getSessionCallable
Gets details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { GetSessionRequest request = GetSessionRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .build(); ApiFuture<Session> future = sessionServiceClient.getSessionCallable().futureCall(request); // Do something. Session response = future.get(); } -
listSessions
public final SessionServiceClient.ListSessionsPagedResponse listSessions(ReasoningEngineName parent) Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ReasoningEngineName parent = ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]"); for (Session element : sessionServiceClient.listSessions(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The resource name of the location to list sessions from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`- Throws:
ApiException- if the remote call fails
-
listSessions
Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String parent = ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]").toString(); for (Session element : sessionServiceClient.listSessions(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The resource name of the location to list sessions from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`- Throws:
ApiException- if the remote call fails
-
listSessions
public final SessionServiceClient.ListSessionsPagedResponse listSessions(ListSessionsRequest request) Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListSessionsRequest request = ListSessionsRequest.newBuilder() .setParent( ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); for (Session element : sessionServiceClient.listSessions(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
-
listSessionsPagedCallable
public final UnaryCallable<ListSessionsRequest,SessionServiceClient.ListSessionsPagedResponse> listSessionsPagedCallable()Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListSessionsRequest request = ListSessionsRequest.newBuilder() .setParent( ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); ApiFuture<Session> future = sessionServiceClient.listSessionsPagedCallable().futureCall(request); // Do something. for (Session element : future.get().iterateAll()) { // doThingsWith(element); } } -
listSessionsCallable
Lists [Sessions][google.cloud.aiplatform.v1beta1.Session] in a given reasoning engine.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListSessionsRequest request = ListSessionsRequest.newBuilder() .setParent( ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); while (true) { ListSessionsResponse response = sessionServiceClient.listSessionsCallable().call(request); for (Session element : response.getSessionsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
updateSession
Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { Session session = Session.newBuilder().build(); FieldMask updateMask = FieldMask.newBuilder().build(); Session response = sessionServiceClient.updateSession(session, updateMask); }- Parameters:
session- Required. The session to update. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`updateMask- Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated.- Throws:
ApiException- if the remote call fails
-
updateSession
Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { UpdateSessionRequest request = UpdateSessionRequest.newBuilder() .setSession(Session.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); Session response = sessionServiceClient.updateSession(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
updateSessionCallable
Updates the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { UpdateSessionRequest request = UpdateSessionRequest.newBuilder() .setSession(Session.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<Session> future = sessionServiceClient.updateSessionCallable().futureCall(request); // Do something. Session response = future.get(); } -
deleteSessionAsync
public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteSessionAsync(SessionName name) Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]"); sessionServiceClient.deleteSessionAsync(name).get(); }- Parameters:
name- Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`- Throws:
ApiException- if the remote call fails
-
deleteSessionAsync
public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteSessionAsync(String name) Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String name = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]").toString(); sessionServiceClient.deleteSessionAsync(name).get(); }- Parameters:
name- Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`- Throws:
ApiException- if the remote call fails
-
deleteSessionAsync
public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteSessionAsync(DeleteSessionRequest request) Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { DeleteSessionRequest request = DeleteSessionRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .build(); sessionServiceClient.deleteSessionAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
deleteSessionOperationCallable
public final OperationCallable<DeleteSessionRequest,com.google.protobuf.Empty, deleteSessionOperationCallable()DeleteOperationMetadata> Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { DeleteSessionRequest request = DeleteSessionRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .build(); OperationFuture<Empty, DeleteOperationMetadata> future = sessionServiceClient.deleteSessionOperationCallable().futureCall(request); // Do something. future.get(); } -
deleteSessionCallable
Deletes details of the specific [Session][google.cloud.aiplatform.v1beta1.Session].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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { DeleteSessionRequest request = DeleteSessionRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .build(); ApiFuture<Operation> future = sessionServiceClient.deleteSessionCallable().futureCall(request); // Do something. future.get(); } -
listEvents
Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { SessionName parent = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]"); for (SessionEvent element : sessionServiceClient.listEvents(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The resource name of the session to list events from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`- Throws:
ApiException- if the remote call fails
-
listEvents
Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String parent = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]").toString(); for (SessionEvent element : sessionServiceClient.listEvents(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The resource name of the session to list events from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`- Throws:
ApiException- if the remote call fails
-
listEvents
Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListEventsRequest request = ListEventsRequest.newBuilder() .setParent( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); for (SessionEvent element : sessionServiceClient.listEvents(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
-
listEventsPagedCallable
public final UnaryCallable<ListEventsRequest,SessionServiceClient.ListEventsPagedResponse> listEventsPagedCallable()Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListEventsRequest request = ListEventsRequest.newBuilder() .setParent( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); ApiFuture<SessionEvent> future = sessionServiceClient.listEventsPagedCallable().futureCall(request); // Do something. for (SessionEvent element : future.get().iterateAll()) { // doThingsWith(element); } } -
listEventsCallable
Lists [Events][google.cloud.aiplatform.v1beta1.Event] in a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListEventsRequest request = ListEventsRequest.newBuilder() .setParent( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); while (true) { ListEventsResponse response = sessionServiceClient.listEventsCallable().call(request); for (SessionEvent element : response.getSessionEventsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
appendEvent
Appends an event to a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]"); SessionEvent event = SessionEvent.newBuilder().build(); AppendEventResponse response = sessionServiceClient.appendEvent(name, event); }- Parameters:
name- Required. The resource name of the session to append event to. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`event- Required. The event to append to the session.- Throws:
ApiException- if the remote call fails
-
appendEvent
Appends an event to a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { String name = SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]").toString(); SessionEvent event = SessionEvent.newBuilder().build(); AppendEventResponse response = sessionServiceClient.appendEvent(name, event); }- Parameters:
name- Required. The resource name of the session to append event to. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}`event- Required. The event to append to the session.- Throws:
ApiException- if the remote call fails
-
appendEvent
Appends an event to a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { AppendEventRequest request = AppendEventRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .setEvent(SessionEvent.newBuilder().build()) .build(); AppendEventResponse response = sessionServiceClient.appendEvent(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
appendEventCallable
Appends an event to a given session.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { AppendEventRequest request = AppendEventRequest.newBuilder() .setName( SessionName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]", "[SESSION]") .toString()) .setEvent(SessionEvent.newBuilder().build()) .build(); ApiFuture<AppendEventResponse> future = sessionServiceClient.appendEventCallable().futureCall(request); // Do something. AppendEventResponse response = future.get(); } -
listLocations
public final SessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); for (Location element : sessionServiceClient.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,SessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); ApiFuture<Location> future = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); while (true) { ListLocationsResponse response = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); Location response = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); ApiFuture<Location> future = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); Policy response = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<Policy> future = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); Policy response = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); ApiFuture<Policy> future = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); TestIamPermissionsResponse response = sessionServiceClient.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 (SessionServiceClient sessionServiceClient = SessionServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); ApiFuture<TestIamPermissionsResponse> future = sessionServiceClient.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
-