Class SessionEntityTypesClient (0.48.0)

GitHub RepositoryProduct ReferenceREST DocumentationRPC Documentation

Service Description: Service for managing SessionEntityTypes.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   SessionEntityTypeName name =
       SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
           "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]");
   SessionEntityType response = sessionEntityTypesClient.getSessionEntityType(name);
 }
 

Note: close() needs to be called on the SessionEntityTypesClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
MethodDescriptionMethod Variants

ListSessionEntityTypes

Returns the list of all session entity types in the specified session.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listSessionEntityTypes(ListSessionEntityTypesRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listSessionEntityTypes(SessionName parent)

  • listSessionEntityTypes(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listSessionEntityTypesPagedCallable()

  • listSessionEntityTypesCallable()

GetSessionEntityType

Retrieves the specified session entity type.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getSessionEntityType(GetSessionEntityTypeRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getSessionEntityType(SessionEntityTypeName name)

  • getSessionEntityType(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getSessionEntityTypeCallable()

CreateSessionEntityType

Creates a session entity type.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • createSessionEntityType(CreateSessionEntityTypeRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • createSessionEntityType(SessionName parent, SessionEntityType sessionEntityType)

  • createSessionEntityType(String parent, SessionEntityType sessionEntityType)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • createSessionEntityTypeCallable()

UpdateSessionEntityType

Updates the specified session entity type.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updateSessionEntityType(UpdateSessionEntityTypeRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • updateSessionEntityType(SessionEntityType sessionEntityType, FieldMask updateMask)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updateSessionEntityTypeCallable()

DeleteSessionEntityType

Deletes the specified session entity type.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteSessionEntityType(DeleteSessionEntityTypeRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • deleteSessionEntityType(SessionEntityTypeName name)

  • deleteSessionEntityType(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteSessionEntityTypeCallable()

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.

  • listLocations(ListLocationsRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listLocationsPagedCallable()

  • listLocationsCallable()

GetLocation

Gets information about a location.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getLocation(GetLocationRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getLocationCallable()

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 SessionEntityTypesSettings 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
 SessionEntityTypesSettings sessionEntityTypesSettings =
     SessionEntityTypesSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 SessionEntityTypesClient sessionEntityTypesClient =
     SessionEntityTypesClient.create(sessionEntityTypesSettings);
 

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
 SessionEntityTypesSettings sessionEntityTypesSettings =
     SessionEntityTypesSettings.newBuilder().setEndpoint(myEndpoint).build();
 SessionEntityTypesClient sessionEntityTypesClient =
     SessionEntityTypesClient.create(sessionEntityTypesSettings);
 

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
 SessionEntityTypesSettings sessionEntityTypesSettings =
     SessionEntityTypesSettings.newHttpJsonBuilder().build();
 SessionEntityTypesClient sessionEntityTypesClient =
     SessionEntityTypesClient.create(sessionEntityTypesSettings);
 

Please refer to the GitHub repository's samples for more quickstart code snippets.

Inheritance

java.lang.Object > SessionEntityTypesClient

Static Methods

create()

public static final SessionEntityTypesClient create()

Constructs an instance of SessionEntityTypesClient with default settings.

Returns
TypeDescription
SessionEntityTypesClient
Exceptions
TypeDescription
IOException

create(SessionEntityTypesSettings settings)

public static final SessionEntityTypesClient create(SessionEntityTypesSettings settings)

Constructs an instance of SessionEntityTypesClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsSessionEntityTypesSettings
Returns
TypeDescription
SessionEntityTypesClient
Exceptions
TypeDescription
IOException

create(SessionEntityTypesStub stub)

public static final SessionEntityTypesClient create(SessionEntityTypesStub stub)

Constructs an instance of SessionEntityTypesClient, using the given stub for making calls. This is for advanced usage - prefer using create(SessionEntityTypesSettings).

Parameter
NameDescription
stubSessionEntityTypesStub
Returns
TypeDescription
SessionEntityTypesClient

Constructors

SessionEntityTypesClient(SessionEntityTypesSettings settings)

protected SessionEntityTypesClient(SessionEntityTypesSettings settings)

Constructs an instance of SessionEntityTypesClient, 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.

Parameter
NameDescription
settingsSessionEntityTypesSettings

SessionEntityTypesClient(SessionEntityTypesStub stub)

protected SessionEntityTypesClient(SessionEntityTypesStub stub)
Parameter
NameDescription
stubSessionEntityTypesStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

createSessionEntityType(CreateSessionEntityTypeRequest request)

public final SessionEntityType createSessionEntityType(CreateSessionEntityTypeRequest request)

Creates a session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   CreateSessionEntityTypeRequest request =
       CreateSessionEntityTypeRequest.newBuilder()
           .setParent(
               SessionName.ofProjectLocationAgentSessionName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
                   .toString())
           .setSessionEntityType(SessionEntityType.newBuilder().build())
           .build();
   SessionEntityType response = sessionEntityTypesClient.createSessionEntityType(request);
 }
 
Parameter
NameDescription
requestCreateSessionEntityTypeRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
SessionEntityType

createSessionEntityType(SessionName parent, SessionEntityType sessionEntityType)

public final SessionEntityType createSessionEntityType(SessionName parent, SessionEntityType sessionEntityType)

Creates a session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   SessionName parent =
       SessionName.ofProjectLocationAgentSessionName(
           "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]");
   SessionEntityType sessionEntityType = SessionEntityType.newBuilder().build();
   SessionEntityType response =
       sessionEntityTypesClient.createSessionEntityType(parent, sessionEntityType);
 }
 
Parameters
NameDescription
parentSessionName

Required. The session to create a session entity type for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>. If Environment ID is not specified, we assume default 'draft' environment.

sessionEntityTypeSessionEntityType

Required. The session entity type to create.

Returns
TypeDescription
SessionEntityType

createSessionEntityType(String parent, SessionEntityType sessionEntityType)

public final SessionEntityType createSessionEntityType(String parent, SessionEntityType sessionEntityType)

Creates a session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   String parent =
       SessionName.ofProjectLocationAgentSessionName(
               "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
           .toString();
   SessionEntityType sessionEntityType = SessionEntityType.newBuilder().build();
   SessionEntityType response =
       sessionEntityTypesClient.createSessionEntityType(parent, sessionEntityType);
 }
 
Parameters
NameDescription
parentString

Required. The session to create a session entity type for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>. If Environment ID is not specified, we assume default 'draft' environment.

sessionEntityTypeSessionEntityType

Required. The session entity type to create.

Returns
TypeDescription
SessionEntityType

createSessionEntityTypeCallable()

public final UnaryCallable<CreateSessionEntityTypeRequest,SessionEntityType> createSessionEntityTypeCallable()

Creates a session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   CreateSessionEntityTypeRequest request =
       CreateSessionEntityTypeRequest.newBuilder()
           .setParent(
               SessionName.ofProjectLocationAgentSessionName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
                   .toString())
           .setSessionEntityType(SessionEntityType.newBuilder().build())
           .build();
   ApiFuture<SessionEntityType> future =
       sessionEntityTypesClient.createSessionEntityTypeCallable().futureCall(request);
   // Do something.
   SessionEntityType response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateSessionEntityTypeRequest,SessionEntityType>

deleteSessionEntityType(DeleteSessionEntityTypeRequest request)

public final void deleteSessionEntityType(DeleteSessionEntityTypeRequest request)

Deletes the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   DeleteSessionEntityTypeRequest request =
       DeleteSessionEntityTypeRequest.newBuilder()
           .setName(
               SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]")
                   .toString())
           .build();
   sessionEntityTypesClient.deleteSessionEntityType(request);
 }
 
Parameter
NameDescription
requestDeleteSessionEntityTypeRequest

The request object containing all of the parameters for the API call.

deleteSessionEntityType(SessionEntityTypeName name)

public final void deleteSessionEntityType(SessionEntityTypeName name)

Deletes the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   SessionEntityTypeName name =
       SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
           "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]");
   sessionEntityTypesClient.deleteSessionEntityType(name);
 }
 
Parameter
NameDescription
nameSessionEntityTypeName

Required. The name of the session entity type to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>/entityTypes/<Entity Type ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>/entityTypes/<Entity Type ID>. If Environment ID is not specified, we assume default 'draft' environment.

deleteSessionEntityType(String name)

public final void deleteSessionEntityType(String name)

Deletes the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   String name =
       SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
               "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]")
           .toString();
   sessionEntityTypesClient.deleteSessionEntityType(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the session entity type to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>/entityTypes/<Entity Type ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>/entityTypes/<Entity Type ID>. If Environment ID is not specified, we assume default 'draft' environment.

deleteSessionEntityTypeCallable()

public final UnaryCallable<DeleteSessionEntityTypeRequest,Empty> deleteSessionEntityTypeCallable()

Deletes the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   DeleteSessionEntityTypeRequest request =
       DeleteSessionEntityTypeRequest.newBuilder()
           .setName(
               SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]")
                   .toString())
           .build();
   ApiFuture<Empty> future =
       sessionEntityTypesClient.deleteSessionEntityTypeCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteSessionEntityTypeRequest,Empty>

getLocation(GetLocationRequest request)

public final Location getLocation(GetLocationRequest request)

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   Location response = sessionEntityTypesClient.getLocation(request);
 }
 
Parameter
NameDescription
requestcom.google.cloud.location.GetLocationRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
com.google.cloud.location.Location

getLocationCallable()

public final UnaryCallable<GetLocationRequest,Location> 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   ApiFuture<Location> future =
       sessionEntityTypesClient.getLocationCallable().futureCall(request);
   // Do something.
   Location response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location>

getSessionEntityType(GetSessionEntityTypeRequest request)

public final SessionEntityType getSessionEntityType(GetSessionEntityTypeRequest request)

Retrieves the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   GetSessionEntityTypeRequest request =
       GetSessionEntityTypeRequest.newBuilder()
           .setName(
               SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]")
                   .toString())
           .build();
   SessionEntityType response = sessionEntityTypesClient.getSessionEntityType(request);
 }
 
Parameter
NameDescription
requestGetSessionEntityTypeRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
SessionEntityType

getSessionEntityType(SessionEntityTypeName name)

public final SessionEntityType getSessionEntityType(SessionEntityTypeName name)

Retrieves the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   SessionEntityTypeName name =
       SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
           "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]");
   SessionEntityType response = sessionEntityTypesClient.getSessionEntityType(name);
 }
 
Parameter
NameDescription
nameSessionEntityTypeName

Required. The name of the session entity type. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>/entityTypes/<Entity Type ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>/entityTypes/<Entity Type ID>. If Environment ID is not specified, we assume default 'draft' environment.

Returns
TypeDescription
SessionEntityType

getSessionEntityType(String name)

public final SessionEntityType getSessionEntityType(String name)

Retrieves the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   String name =
       SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
               "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]")
           .toString();
   SessionEntityType response = sessionEntityTypesClient.getSessionEntityType(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the session entity type. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>/entityTypes/<Entity Type ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>/entityTypes/<Entity Type ID>. If Environment ID is not specified, we assume default 'draft' environment.

Returns
TypeDescription
SessionEntityType

getSessionEntityTypeCallable()

public final UnaryCallable<GetSessionEntityTypeRequest,SessionEntityType> getSessionEntityTypeCallable()

Retrieves the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   GetSessionEntityTypeRequest request =
       GetSessionEntityTypeRequest.newBuilder()
           .setName(
               SessionEntityTypeName.ofProjectLocationAgentSessionEntityTypeName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]", "[ENTITY_TYPE]")
                   .toString())
           .build();
   ApiFuture<SessionEntityType> future =
       sessionEntityTypesClient.getSessionEntityTypeCallable().futureCall(request);
   // Do something.
   SessionEntityType response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetSessionEntityTypeRequest,SessionEntityType>

getSettings()

public final SessionEntityTypesSettings getSettings()
Returns
TypeDescription
SessionEntityTypesSettings

getStub()

public SessionEntityTypesStub getStub()
Returns
TypeDescription
SessionEntityTypesStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listLocations(ListLocationsRequest request)

public final SessionEntityTypesClient.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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Location element : sessionEntityTypesClient.listLocations(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestcom.google.cloud.location.ListLocationsRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
SessionEntityTypesClient.ListLocationsPagedResponse

listLocationsCallable()

public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListLocationsResponse response =
         sessionEntityTypesClient.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;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse>

listLocationsPagedCallable()

public final UnaryCallable<ListLocationsRequest,SessionEntityTypesClient.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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Location> future =
       sessionEntityTypesClient.listLocationsPagedCallable().futureCall(request);
   // Do something.
   for (Location element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse>

listSessionEntityTypes(ListSessionEntityTypesRequest request)

public final SessionEntityTypesClient.ListSessionEntityTypesPagedResponse listSessionEntityTypes(ListSessionEntityTypesRequest request)

Returns the list of all session entity types in the specified 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   ListSessionEntityTypesRequest request =
       ListSessionEntityTypesRequest.newBuilder()
           .setParent(
               SessionName.ofProjectLocationAgentSessionName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (SessionEntityType element :
       sessionEntityTypesClient.listSessionEntityTypes(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListSessionEntityTypesRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
SessionEntityTypesClient.ListSessionEntityTypesPagedResponse

listSessionEntityTypes(SessionName parent)

public final SessionEntityTypesClient.ListSessionEntityTypesPagedResponse listSessionEntityTypes(SessionName parent)

Returns the list of all session entity types in the specified 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   SessionName parent =
       SessionName.ofProjectLocationAgentSessionName(
           "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]");
   for (SessionEntityType element :
       sessionEntityTypesClient.listSessionEntityTypes(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentSessionName

Required. The session to list all session entity types from. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>. If Environment ID is not specified, we assume default 'draft' environment.

Returns
TypeDescription
SessionEntityTypesClient.ListSessionEntityTypesPagedResponse

listSessionEntityTypes(String parent)

public final SessionEntityTypesClient.ListSessionEntityTypesPagedResponse listSessionEntityTypes(String parent)

Returns the list of all session entity types in the specified 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   String parent =
       SessionName.ofProjectLocationAgentSessionName(
               "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
           .toString();
   for (SessionEntityType element :
       sessionEntityTypesClient.listSessionEntityTypes(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The session to list all session entity types from. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>. If Environment ID is not specified, we assume default 'draft' environment.

Returns
TypeDescription
SessionEntityTypesClient.ListSessionEntityTypesPagedResponse

listSessionEntityTypesCallable()

public final UnaryCallable<ListSessionEntityTypesRequest,ListSessionEntityTypesResponse> listSessionEntityTypesCallable()

Returns the list of all session entity types in the specified 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   ListSessionEntityTypesRequest request =
       ListSessionEntityTypesRequest.newBuilder()
           .setParent(
               SessionName.ofProjectLocationAgentSessionName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListSessionEntityTypesResponse response =
         sessionEntityTypesClient.listSessionEntityTypesCallable().call(request);
     for (SessionEntityType element : response.getSessionEntityTypesList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListSessionEntityTypesRequest,ListSessionEntityTypesResponse>

listSessionEntityTypesPagedCallable()

public final UnaryCallable<ListSessionEntityTypesRequest,SessionEntityTypesClient.ListSessionEntityTypesPagedResponse> listSessionEntityTypesPagedCallable()

Returns the list of all session entity types in the specified 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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   ListSessionEntityTypesRequest request =
       ListSessionEntityTypesRequest.newBuilder()
           .setParent(
               SessionName.ofProjectLocationAgentSessionName(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[SESSION]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<SessionEntityType> future =
       sessionEntityTypesClient.listSessionEntityTypesPagedCallable().futureCall(request);
   // Do something.
   for (SessionEntityType element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListSessionEntityTypesRequest,ListSessionEntityTypesPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateSessionEntityType(SessionEntityType sessionEntityType, FieldMask updateMask)

public final SessionEntityType updateSessionEntityType(SessionEntityType sessionEntityType, FieldMask updateMask)

Updates the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   SessionEntityType sessionEntityType = SessionEntityType.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   SessionEntityType response =
       sessionEntityTypesClient.updateSessionEntityType(sessionEntityType, updateMask);
 }
 
Parameters
NameDescription
sessionEntityTypeSessionEntityType

Required. The session entity type to update. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/sessions/<Session ID>/entityTypes/<Entity Type ID> or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/sessions/<Session ID>/entityTypes/<Entity Type ID>. If Environment ID is not specified, we assume default 'draft' environment.

updateMaskFieldMask

The mask to control which fields get updated.

Returns
TypeDescription
SessionEntityType

updateSessionEntityType(UpdateSessionEntityTypeRequest request)

public final SessionEntityType updateSessionEntityType(UpdateSessionEntityTypeRequest request)

Updates the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   UpdateSessionEntityTypeRequest request =
       UpdateSessionEntityTypeRequest.newBuilder()
           .setSessionEntityType(SessionEntityType.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   SessionEntityType response = sessionEntityTypesClient.updateSessionEntityType(request);
 }
 
Parameter
NameDescription
requestUpdateSessionEntityTypeRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
SessionEntityType

updateSessionEntityTypeCallable()

public final UnaryCallable<UpdateSessionEntityTypeRequest,SessionEntityType> updateSessionEntityTypeCallable()

Updates the specified session entity type.

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 (SessionEntityTypesClient sessionEntityTypesClient = SessionEntityTypesClient.create()) {
   UpdateSessionEntityTypeRequest request =
       UpdateSessionEntityTypeRequest.newBuilder()
           .setSessionEntityType(SessionEntityType.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<SessionEntityType> future =
       sessionEntityTypesClient.updateSessionEntityTypeCallable().futureCall(request);
   // Do something.
   SessionEntityType response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateSessionEntityTypeRequest,SessionEntityType>