@Generated(value="by gapic-generator-java") public class SessionControllerClient 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]");
Session response = sessionControllerClient.getSession(name);
}
Note: close() needs to be called on the SessionControllerClient 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 |
Create an interactive session asynchronously. |
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 the resource representation for an interactive 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 interactive sessions. |
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.
|
TerminateSession |
Terminates the interactive 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.
|
DeleteSession |
Deletes the interactive session resource. If the session is not in terminal state, it is terminated, and then deleted. |
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.
|
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 SessionControllerSettings 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
SessionControllerSettings sessionControllerSettings =
SessionControllerSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
SessionControllerClient sessionControllerClient =
SessionControllerClient.create(sessionControllerSettings);
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
SessionControllerSettings sessionControllerSettings =
SessionControllerSettings.newBuilder().setEndpoint(myEndpoint).build();
SessionControllerClient sessionControllerClient =
SessionControllerClient.create(sessionControllerSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
SessionControllerSettings sessionControllerSettings =
SessionControllerSettings.newHttpJsonBuilder().build();
SessionControllerClient sessionControllerClient =
SessionControllerClient.create(sessionControllerSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
SessionControllerClient.ListSessionsFixedSizeCollection |
static class |
SessionControllerClient.ListSessionsPage |
static class |
SessionControllerClient.ListSessionsPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
SessionControllerClient(SessionControllerSettings settings)
Constructs an instance of SessionControllerClient, using the given settings.
|
protected |
SessionControllerClient(SessionControllerStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static SessionControllerClient |
create()
Constructs an instance of SessionControllerClient with default settings.
|
static SessionControllerClient |
create(SessionControllerSettings settings)
Constructs an instance of SessionControllerClient, using the given settings.
|
static SessionControllerClient |
create(SessionControllerStub stub)
Constructs an instance of SessionControllerClient, using the given stub for making calls.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
createSessionAsync(CreateSessionRequest request)
Create an interactive session asynchronously.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
createSessionAsync(LocationName parent,
Session session,
String sessionId)
Create an interactive session asynchronously.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
createSessionAsync(String parent,
Session session,
String sessionId)
Create an interactive session asynchronously.
|
com.google.api.gax.rpc.UnaryCallable<CreateSessionRequest,com.google.longrunning.Operation> |
createSessionCallable()
Create an interactive session asynchronously.
|
com.google.api.gax.rpc.OperationCallable<CreateSessionRequest,Session,SessionOperationMetadata> |
createSessionOperationCallable()
Create an interactive session asynchronously.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
deleteSessionAsync(DeleteSessionRequest request)
Deletes the interactive session resource.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
deleteSessionAsync(SessionName name)
Deletes the interactive session resource.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
deleteSessionAsync(String name)
Deletes the interactive session resource.
|
com.google.api.gax.rpc.UnaryCallable<DeleteSessionRequest,com.google.longrunning.Operation> |
deleteSessionCallable()
Deletes the interactive session resource.
|
com.google.api.gax.rpc.OperationCallable<DeleteSessionRequest,Session,SessionOperationMetadata> |
deleteSessionOperationCallable()
Deletes the interactive session resource.
|
com.google.api.gax.httpjson.longrunning.OperationsClient |
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a 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.longrunning.OperationsClient |
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
Session |
getSession(GetSessionRequest request)
Gets the resource representation for an interactive session.
|
Session |
getSession(SessionName name)
Gets the resource representation for an interactive session.
|
Session |
getSession(String name)
Gets the resource representation for an interactive session.
|
com.google.api.gax.rpc.UnaryCallable<GetSessionRequest,Session> |
getSessionCallable()
Gets the resource representation for an interactive session.
|
SessionControllerSettings |
getSettings() |
SessionControllerStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
SessionControllerClient.ListSessionsPagedResponse |
listSessions(ListSessionsRequest request)
Lists interactive sessions.
|
SessionControllerClient.ListSessionsPagedResponse |
listSessions(LocationName parent)
Lists interactive sessions.
|
SessionControllerClient.ListSessionsPagedResponse |
listSessions(String parent)
Lists interactive sessions.
|
com.google.api.gax.rpc.UnaryCallable<ListSessionsRequest,ListSessionsResponse> |
listSessionsCallable()
Lists interactive sessions.
|
com.google.api.gax.rpc.UnaryCallable<ListSessionsRequest,SessionControllerClient.ListSessionsPagedResponse> |
listSessionsPagedCallable()
Lists interactive sessions.
|
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.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
terminateSessionAsync(SessionName name)
Terminates the interactive session.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
terminateSessionAsync(String name)
Terminates the interactive session.
|
com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> |
terminateSessionAsync(TerminateSessionRequest request)
Terminates the interactive session.
|
com.google.api.gax.rpc.UnaryCallable<TerminateSessionRequest,com.google.longrunning.Operation> |
terminateSessionCallable()
Terminates the interactive session.
|
com.google.api.gax.rpc.OperationCallable<TerminateSessionRequest,Session,SessionOperationMetadata> |
terminateSessionOperationCallable()
Terminates the interactive session.
|
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 SessionControllerClient(SessionControllerSettings settings) throws IOException
IOExceptionprotected SessionControllerClient(SessionControllerStub stub)
public static final SessionControllerClient create() throws IOException
IOExceptionpublic static final SessionControllerClient create(SessionControllerSettings settings) throws IOException
IOExceptionpublic static final SessionControllerClient create(SessionControllerStub stub)
public final SessionControllerSettings getSettings()
public SessionControllerStub getStub()
public final com.google.longrunning.OperationsClient getOperationsClient()
@BetaApi public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
public final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> createSessionAsync(LocationName parent, Session session, String sessionId)
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Session session = Session.newBuilder().build();
String sessionId = "sessionId607796817";
Session response =
sessionControllerClient.createSessionAsync(parent, session, sessionId).get();
}
parent - Required. The parent resource where this session will be created.session - Required. The interactive session to create.sessionId - Required. The ID to use for the session, which becomes the final component of
the session's resource name.
This value must be 4-63 characters. Valid characters are /[a-z][0-9]-/.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> createSessionAsync(String parent, Session session, String sessionId)
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Session session = Session.newBuilder().build();
String sessionId = "sessionId607796817";
Session response =
sessionControllerClient.createSessionAsync(parent, session, sessionId).get();
}
parent - Required. The parent resource where this session will be created.session - Required. The interactive session to create.sessionId - Required. The ID to use for the session, which becomes the final component of
the session's resource name.
This value must be 4-63 characters. Valid characters are /[a-z][0-9]-/.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> createSessionAsync(CreateSessionRequest 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
CreateSessionRequest request =
CreateSessionRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setSession(Session.newBuilder().build())
.setSessionId("sessionId607796817")
.setRequestId("requestId693933066")
.build();
Session response = sessionControllerClient.createSessionAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<CreateSessionRequest,Session,SessionOperationMetadata> createSessionOperationCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
CreateSessionRequest request =
CreateSessionRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setSession(Session.newBuilder().build())
.setSessionId("sessionId607796817")
.setRequestId("requestId693933066")
.build();
OperationFuture<Session, SessionOperationMetadata> future =
sessionControllerClient.createSessionOperationCallable().futureCall(request);
// Do something.
Session response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<CreateSessionRequest,com.google.longrunning.Operation> createSessionCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
CreateSessionRequest request =
CreateSessionRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setSession(Session.newBuilder().build())
.setSessionId("sessionId607796817")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
sessionControllerClient.createSessionCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final Session getSession(SessionName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]");
Session response = sessionControllerClient.getSession(name);
}
name - Required. The name of the session to retrieve.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Session getSession(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
String name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString();
Session response = sessionControllerClient.getSession(name);
}
name - Required. The name of the session to retrieve.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Session getSession(GetSessionRequest 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
GetSessionRequest request =
GetSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.build();
Session response = sessionControllerClient.getSession(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<GetSessionRequest,Session> getSessionCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
GetSessionRequest request =
GetSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.build();
ApiFuture<Session> future = sessionControllerClient.getSessionCallable().futureCall(request);
// Do something.
Session response = future.get();
}
public final SessionControllerClient.ListSessionsPagedResponse listSessions(LocationName parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Session element : sessionControllerClient.listSessions(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The parent, which owns this collection of sessions.com.google.api.gax.rpc.ApiException - if the remote call failspublic final SessionControllerClient.ListSessionsPagedResponse listSessions(String parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Session element : sessionControllerClient.listSessions(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The parent, which owns this collection of sessions.com.google.api.gax.rpc.ApiException - if the remote call failspublic final SessionControllerClient.ListSessionsPagedResponse listSessions(ListSessionsRequest 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
ListSessionsRequest request =
ListSessionsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.build();
for (Session element : sessionControllerClient.listSessions(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<ListSessionsRequest,SessionControllerClient.ListSessionsPagedResponse> listSessionsPagedCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
ListSessionsRequest request =
ListSessionsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.build();
ApiFuture<Session> future =
sessionControllerClient.listSessionsPagedCallable().futureCall(request);
// Do something.
for (Session element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListSessionsRequest,ListSessionsResponse> listSessionsCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
ListSessionsRequest request =
ListSessionsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.build();
while (true) {
ListSessionsResponse response =
sessionControllerClient.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;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> terminateSessionAsync(SessionName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]");
Session response = sessionControllerClient.terminateSessionAsync(name).get();
}
name - Required. The name of the session resource to terminate.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> terminateSessionAsync(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
String name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString();
Session response = sessionControllerClient.terminateSessionAsync(name).get();
}
name - Required. The name of the session resource to terminate.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> terminateSessionAsync(TerminateSessionRequest 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
TerminateSessionRequest request =
TerminateSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.setRequestId("requestId693933066")
.build();
Session response = sessionControllerClient.terminateSessionAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<TerminateSessionRequest,Session,SessionOperationMetadata> terminateSessionOperationCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
TerminateSessionRequest request =
TerminateSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.setRequestId("requestId693933066")
.build();
OperationFuture<Session, SessionOperationMetadata> future =
sessionControllerClient.terminateSessionOperationCallable().futureCall(request);
// Do something.
Session response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<TerminateSessionRequest,com.google.longrunning.Operation> terminateSessionCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
TerminateSessionRequest request =
TerminateSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
sessionControllerClient.terminateSessionCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> deleteSessionAsync(SessionName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
SessionName name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]");
Session response = sessionControllerClient.deleteSessionAsync(name).get();
}
name - Required. The name of the session resource to delete.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> deleteSessionAsync(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
String name = SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString();
Session response = sessionControllerClient.deleteSessionAsync(name).get();
}
name - Required. The name of the session resource to delete.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Session,SessionOperationMetadata> deleteSessionAsync(DeleteSessionRequest 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
DeleteSessionRequest request =
DeleteSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.setRequestId("requestId693933066")
.build();
Session response = sessionControllerClient.deleteSessionAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteSessionRequest,Session,SessionOperationMetadata> deleteSessionOperationCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
DeleteSessionRequest request =
DeleteSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.setRequestId("requestId693933066")
.build();
OperationFuture<Session, SessionOperationMetadata> future =
sessionControllerClient.deleteSessionOperationCallable().futureCall(request);
// Do something.
Session response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteSessionRequest,com.google.longrunning.Operation> deleteSessionCallable()
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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
DeleteSessionRequest request =
DeleteSessionRequest.newBuilder()
.setName(SessionName.of("[PROJECT]", "[LOCATION]", "[SESSION]").toString())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
sessionControllerClient.deleteSessionCallable().futureCall(request);
// Do something.
Operation 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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = sessionControllerClient.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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future = sessionControllerClient.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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = sessionControllerClient.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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future = sessionControllerClient.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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response = sessionControllerClient.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 (SessionControllerClient sessionControllerClient = SessionControllerClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
"[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
sessionControllerClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.