@Generated(value="by gapic-generator-java") public class ContextsClient extends Object implements 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 (ContextsClient contextsClient = ContextsClient.create()) {
ContextName name =
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]");
Context response = contextsClient.getContext(name);
}
Note: close() needs to be called on the ContextsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
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 ContextsSettings 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
ContextsSettings contextsSettings =
ContextsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ContextsClient contextsClient = ContextsClient.create(contextsSettings);
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
ContextsSettings contextsSettings =
ContextsSettings.newBuilder().setEndpoint(myEndpoint).build();
ContextsClient contextsClient = ContextsClient.create(contextsSettings);
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
ContextsSettings contextsSettings =
ContextsSettings.newBuilder()
.setTransportChannelProvider(
ContextsSettings.defaultHttpJsonTransportProviderBuilder().build())
.build();
ContextsClient contextsClient = ContextsClient.create(contextsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Modifier and Type | Class and Description |
---|---|
static class |
ContextsClient.ListContextsFixedSizeCollection |
static class |
ContextsClient.ListContextsPage |
static class |
ContextsClient.ListContextsPagedResponse |
static class |
ContextsClient.ListLocationsFixedSizeCollection |
static class |
ContextsClient.ListLocationsPage |
static class |
ContextsClient.ListLocationsPagedResponse |
Modifier | Constructor and Description |
---|---|
protected |
ContextsClient(ContextsSettings settings)
Constructs an instance of ContextsClient, using the given settings.
|
protected |
ContextsClient(ContextsStub stub) |
Modifier and Type | Method and Description |
---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static ContextsClient |
create()
Constructs an instance of ContextsClient with default settings.
|
static ContextsClient |
create(ContextsSettings settings)
Constructs an instance of ContextsClient, using the given settings.
|
static ContextsClient |
create(ContextsStub stub)
Constructs an instance of ContextsClient, using the given stub for making calls.
|
Context |
createContext(CreateContextRequest request)
Creates a context.
|
Context |
createContext(SessionName parent,
Context context)
Creates a context.
|
Context |
createContext(String parent,
Context context)
Creates a context.
|
UnaryCallable<CreateContextRequest,Context> |
createContextCallable()
Creates a context.
|
void |
deleteAllContexts(DeleteAllContextsRequest request)
Deletes all active contexts in the specified session.
|
void |
deleteAllContexts(SessionName parent)
Deletes all active contexts in the specified session.
|
void |
deleteAllContexts(String parent)
Deletes all active contexts in the specified session.
|
UnaryCallable<DeleteAllContextsRequest,Empty> |
deleteAllContextsCallable()
Deletes all active contexts in the specified session.
|
void |
deleteContext(ContextName name)
Deletes the specified context.
|
void |
deleteContext(DeleteContextRequest request)
Deletes the specified context.
|
void |
deleteContext(String name)
Deletes the specified context.
|
UnaryCallable<DeleteContextRequest,Empty> |
deleteContextCallable()
Deletes the specified context.
|
Context |
getContext(ContextName name)
Retrieves the specified context.
|
Context |
getContext(GetContextRequest request)
Retrieves the specified context.
|
Context |
getContext(String name)
Retrieves the specified context.
|
UnaryCallable<GetContextRequest,Context> |
getContextCallable()
Retrieves the specified context.
|
com.google.cloud.location.Location |
getLocation(com.google.cloud.location.GetLocationRequest request)
Gets information about a location.
|
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
getLocationCallable()
Gets information about a location.
|
ContextsSettings |
getSettings() |
ContextsStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
ContextsClient.ListContextsPagedResponse |
listContexts(ListContextsRequest request)
Returns the list of all contexts in the specified session.
|
ContextsClient.ListContextsPagedResponse |
listContexts(SessionName parent)
Returns the list of all contexts in the specified session.
|
ContextsClient.ListContextsPagedResponse |
listContexts(String parent)
Returns the list of all contexts in the specified session.
|
UnaryCallable<ListContextsRequest,ListContextsResponse> |
listContextsCallable()
Returns the list of all contexts in the specified session.
|
UnaryCallable<ListContextsRequest,ContextsClient.ListContextsPagedResponse> |
listContextsPagedCallable()
Returns the list of all contexts in the specified session.
|
ContextsClient.ListLocationsPagedResponse |
listLocations(com.google.cloud.location.ListLocationsRequest request)
Lists information about the supported locations for this service.
|
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
listLocationsCallable()
Lists information about the supported locations for this service.
|
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ContextsClient.ListLocationsPagedResponse> |
listLocationsPagedCallable()
Lists information about the supported locations for this service.
|
void |
shutdown() |
void |
shutdownNow() |
Context |
updateContext(Context context,
FieldMask updateMask)
Updates the specified context.
|
Context |
updateContext(UpdateContextRequest request)
Updates the specified context.
|
UnaryCallable<UpdateContextRequest,Context> |
updateContextCallable()
Updates the specified context.
|
protected ContextsClient(ContextsSettings settings) throws IOException
IOException
protected ContextsClient(ContextsStub stub)
public static final ContextsClient create() throws IOException
IOException
public static final ContextsClient create(ContextsSettings settings) throws IOException
IOException
public static final ContextsClient create(ContextsStub stub)
public final ContextsSettings getSettings()
public ContextsStub getStub()
public final ContextsClient.ListContextsPagedResponse listContexts(SessionName 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 (ContextsClient contextsClient = ContextsClient.create()) {
SessionName parent = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]");
for (Context element : contextsClient.listContexts(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The session to list all contexts from. Format: `projects/<Project
ID>/agent/sessions/<Session ID>` or `projects/<Project
ID>/agent/environments/<Environment ID>/users/<User ID>/sessions/<Session
ID>`. If `Environment ID` is not specified, we assume default 'draft' environment. If
`User ID` is not specified, we assume default '-' user.ApiException
- if the remote call failspublic final ContextsClient.ListContextsPagedResponse listContexts(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 (ContextsClient contextsClient = ContextsClient.create()) {
String parent = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString();
for (Context element : contextsClient.listContexts(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The session to list all contexts from. Format: `projects/<Project
ID>/agent/sessions/<Session ID>` or `projects/<Project
ID>/agent/environments/<Environment ID>/users/<User ID>/sessions/<Session
ID>`. If `Environment ID` is not specified, we assume default 'draft' environment. If
`User ID` is not specified, we assume default '-' user.ApiException
- if the remote call failspublic final ContextsClient.ListContextsPagedResponse listContexts(ListContextsRequest 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 (ContextsClient contextsClient = ContextsClient.create()) {
ListContextsRequest request =
ListContextsRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Context element : contextsClient.listContexts(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListContextsRequest,ContextsClient.ListContextsPagedResponse> listContextsPagedCallable()
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 (ContextsClient contextsClient = ContextsClient.create()) {
ListContextsRequest request =
ListContextsRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Context> future = contextsClient.listContextsPagedCallable().futureCall(request);
// Do something.
for (Context element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListContextsRequest,ListContextsResponse> listContextsCallable()
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 (ContextsClient contextsClient = ContextsClient.create()) {
ListContextsRequest request =
ListContextsRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListContextsResponse response = contextsClient.listContextsCallable().call(request);
for (Context element : response.getContextsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final Context getContext(ContextName 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 (ContextsClient contextsClient = ContextsClient.create()) {
ContextName name =
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]");
Context response = contextsClient.getContext(name);
}
name
- Required. The name of the context. Format: `projects/<Project
ID>/agent/sessions/<Session ID>/contexts/<Context ID>` or
`projects/<Project ID>/agent/environments/<Environment ID>/users/<User
ID>/sessions/<Session ID>/contexts/<Context ID>`. If `Environment ID` is not
specified, we assume default 'draft' environment. If `User ID` is not specified, we assume
default '-' user.ApiException
- if the remote call failspublic final Context getContext(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 (ContextsClient contextsClient = ContextsClient.create()) {
String name =
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]").toString();
Context response = contextsClient.getContext(name);
}
name
- Required. The name of the context. Format: `projects/<Project
ID>/agent/sessions/<Session ID>/contexts/<Context ID>` or
`projects/<Project ID>/agent/environments/<Environment ID>/users/<User
ID>/sessions/<Session ID>/contexts/<Context ID>`. If `Environment ID` is not
specified, we assume default 'draft' environment. If `User ID` is not specified, we assume
default '-' user.ApiException
- if the remote call failspublic final Context getContext(GetContextRequest 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 (ContextsClient contextsClient = ContextsClient.create()) {
GetContextRequest request =
GetContextRequest.newBuilder()
.setName(
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]")
.toString())
.build();
Context response = contextsClient.getContext(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<GetContextRequest,Context> getContextCallable()
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 (ContextsClient contextsClient = ContextsClient.create()) {
GetContextRequest request =
GetContextRequest.newBuilder()
.setName(
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]")
.toString())
.build();
ApiFuture<Context> future = contextsClient.getContextCallable().futureCall(request);
// Do something.
Context response = future.get();
}
public final Context createContext(SessionName parent, Context context)
If the specified context already exists, overrides the context.
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 (ContextsClient contextsClient = ContextsClient.create()) {
SessionName parent = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]");
Context context = Context.newBuilder().build();
Context response = contextsClient.createContext(parent, context);
}
parent
- Required. The session to create a context for. Format: `projects/<Project
ID>/agent/sessions/<Session ID>` or `projects/<Project
ID>/agent/environments/<Environment ID>/users/<User ID>/sessions/<Session
ID>`. If `Environment ID` is not specified, we assume default 'draft' environment. If
`User ID` is not specified, we assume default '-' user.context
- Required. The context to create.ApiException
- if the remote call failspublic final Context createContext(String parent, Context context)
If the specified context already exists, overrides the context.
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 (ContextsClient contextsClient = ContextsClient.create()) {
String parent = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString();
Context context = Context.newBuilder().build();
Context response = contextsClient.createContext(parent, context);
}
parent
- Required. The session to create a context for. Format: `projects/<Project
ID>/agent/sessions/<Session ID>` or `projects/<Project
ID>/agent/environments/<Environment ID>/users/<User ID>/sessions/<Session
ID>`. If `Environment ID` is not specified, we assume default 'draft' environment. If
`User ID` is not specified, we assume default '-' user.context
- Required. The context to create.ApiException
- if the remote call failspublic final Context createContext(CreateContextRequest request)
If the specified context already exists, overrides the context.
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 (ContextsClient contextsClient = ContextsClient.create()) {
CreateContextRequest request =
CreateContextRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.setContext(Context.newBuilder().build())
.build();
Context response = contextsClient.createContext(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<CreateContextRequest,Context> createContextCallable()
If the specified context already exists, overrides the context.
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 (ContextsClient contextsClient = ContextsClient.create()) {
CreateContextRequest request =
CreateContextRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.setContext(Context.newBuilder().build())
.build();
ApiFuture<Context> future = contextsClient.createContextCallable().futureCall(request);
// Do something.
Context response = future.get();
}
public final Context updateContext(Context context, FieldMask updateMask)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
Context context = Context.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Context response = contextsClient.updateContext(context, updateMask);
}
context
- Required. The context to update.updateMask
- Optional. The mask to control which fields get updated.ApiException
- if the remote call failspublic final Context updateContext(UpdateContextRequest 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 (ContextsClient contextsClient = ContextsClient.create()) {
UpdateContextRequest request =
UpdateContextRequest.newBuilder()
.setContext(Context.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Context response = contextsClient.updateContext(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<UpdateContextRequest,Context> updateContextCallable()
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 (ContextsClient contextsClient = ContextsClient.create()) {
UpdateContextRequest request =
UpdateContextRequest.newBuilder()
.setContext(Context.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Context> future = contextsClient.updateContextCallable().futureCall(request);
// Do something.
Context response = future.get();
}
public final void deleteContext(ContextName 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 (ContextsClient contextsClient = ContextsClient.create()) {
ContextName name =
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]");
contextsClient.deleteContext(name);
}
name
- Required. The name of the context to delete. Format: `projects/<Project
ID>/agent/sessions/<Session ID>/contexts/<Context ID>` or
`projects/<Project ID>/agent/environments/<Environment ID>/users/<User
ID>/sessions/<Session ID>/contexts/<Context ID>`. If `Environment ID` is not
specified, we assume default 'draft' environment. If `User ID` is not specified, we assume
default '-' user.ApiException
- if the remote call failspublic final void deleteContext(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 (ContextsClient contextsClient = ContextsClient.create()) {
String name =
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]").toString();
contextsClient.deleteContext(name);
}
name
- Required. The name of the context to delete. Format: `projects/<Project
ID>/agent/sessions/<Session ID>/contexts/<Context ID>` or
`projects/<Project ID>/agent/environments/<Environment ID>/users/<User
ID>/sessions/<Session ID>/contexts/<Context ID>`. If `Environment ID` is not
specified, we assume default 'draft' environment. If `User ID` is not specified, we assume
default '-' user.ApiException
- if the remote call failspublic final void deleteContext(DeleteContextRequest 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 (ContextsClient contextsClient = ContextsClient.create()) {
DeleteContextRequest request =
DeleteContextRequest.newBuilder()
.setName(
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]")
.toString())
.build();
contextsClient.deleteContext(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteContextRequest,Empty> deleteContextCallable()
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 (ContextsClient contextsClient = ContextsClient.create()) {
DeleteContextRequest request =
DeleteContextRequest.newBuilder()
.setName(
ContextName.ofProjectSessionContextName("[PROJECT]", "[SESSION]", "[CONTEXT]")
.toString())
.build();
ApiFuture<Empty> future = contextsClient.deleteContextCallable().futureCall(request);
// Do something.
future.get();
}
public final void deleteAllContexts(SessionName 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 (ContextsClient contextsClient = ContextsClient.create()) {
SessionName parent = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]");
contextsClient.deleteAllContexts(parent);
}
parent
- Required. The name of the session to delete all contexts from. Format:
`projects/<Project ID>/agent/sessions/<Session ID>` or `projects/<Project
ID>/agent/environments/<Environment ID>/users/<User ID>/sessions/<Session
ID>`. If `Environment ID` is not specified we assume default 'draft' environment. If
`User ID` is not specified, we assume default '-' user.ApiException
- if the remote call failspublic final void deleteAllContexts(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 (ContextsClient contextsClient = ContextsClient.create()) {
String parent = SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString();
contextsClient.deleteAllContexts(parent);
}
parent
- Required. The name of the session to delete all contexts from. Format:
`projects/<Project ID>/agent/sessions/<Session ID>` or `projects/<Project
ID>/agent/environments/<Environment ID>/users/<User ID>/sessions/<Session
ID>`. If `Environment ID` is not specified we assume default 'draft' environment. If
`User ID` is not specified, we assume default '-' user.ApiException
- if the remote call failspublic final void deleteAllContexts(DeleteAllContextsRequest 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 (ContextsClient contextsClient = ContextsClient.create()) {
DeleteAllContextsRequest request =
DeleteAllContextsRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.build();
contextsClient.deleteAllContexts(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteAllContextsRequest,Empty> deleteAllContextsCallable()
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 (ContextsClient contextsClient = ContextsClient.create()) {
DeleteAllContextsRequest request =
DeleteAllContextsRequest.newBuilder()
.setParent(SessionName.ofProjectSessionName("[PROJECT]", "[SESSION]").toString())
.build();
ApiFuture<Empty> future = contextsClient.deleteAllContextsCallable().futureCall(request);
// Do something.
future.get();
}
public final ContextsClient.ListLocationsPagedResponse listLocations(com.google.cloud.location.ListLocationsRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : contextsClient.listLocations(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.cloud.location.ListLocationsRequest,ContextsClient.ListLocationsPagedResponse> listLocationsPagedCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future = contextsClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> listLocationsCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response = contextsClient.listLocationsCallable().call(request);
for (Location element : response.getLocationsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.cloud.location.Location getLocation(com.google.cloud.location.GetLocationRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = contextsClient.getLocation(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> getLocationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ContextsClient contextsClient = ContextsClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future = contextsClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
public final void close()
close
in interface AutoCloseable
public void shutdown()
shutdown
in interface BackgroundResource
public boolean isShutdown()
isShutdown
in interface BackgroundResource
public boolean isTerminated()
isTerminated
in interface BackgroundResource
public void shutdownNow()
shutdownNow
in interface BackgroundResource
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
awaitTermination
in interface BackgroundResource
InterruptedException
Copyright © 2022 Google LLC. All rights reserved.