Class ConversationDatasetsClient (4.47.0)

GitHub RepositoryProduct Reference

Service Description: Conversation datasets.

Conversation datasets contain raw conversation files and their customizable metadata that can be used for model training.

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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   ConversationDatasetName name =
       ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]");
   ConversationDataset response = conversationDatasetsClient.getConversationDataset(name);
 }
 

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

Methods
MethodDescriptionMethod Variants

CreateConversationDataset

Creates a new conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: CreateConversationDatasetOperationMetadata - response: ConversationDataset

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

  • createConversationDatasetAsync(CreateConversationDatasetRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • createConversationDatasetAsync(String parent, ConversationDataset conversationDataset)

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

  • createConversationDatasetOperationCallable()

  • createConversationDatasetCallable()

GetConversationDataset

Retrieves the specified conversation dataset.

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

  • getConversationDataset(GetConversationDatasetRequest request)

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

  • getConversationDataset(ConversationDatasetName name)

  • getConversationDataset(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.

  • getConversationDatasetCallable()

ListConversationDatasets

Returns the list of all conversation datasets in the specified project and location.

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

  • listConversationDatasets(ListConversationDatasetsRequest request)

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

  • listConversationDatasets(LocationName parent)

  • listConversationDatasets(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.

  • listConversationDatasetsPagedCallable()

  • listConversationDatasetsCallable()

DeleteConversationDataset

Deletes the specified conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: DeleteConversationDatasetOperationMetadata - response: An Empty message

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

  • deleteConversationDatasetAsync(DeleteConversationDatasetRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • deleteConversationDatasetAsync(ConversationDatasetName name)

  • deleteConversationDatasetAsync(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.

  • deleteConversationDatasetOperationCallable()

  • deleteConversationDatasetCallable()

ImportConversationData

Import data into the specified conversation dataset. Note that it is not allowed to import data to a conversation dataset that already has data in it.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: ImportConversationDataOperationMetadata - response: ImportConversationDataOperationResponse

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

  • importConversationDataAsync(ImportConversationDataRequest request)

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

  • importConversationDataOperationCallable()

  • importConversationDataCallable()

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 ConversationDatasetsSettings 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
 ConversationDatasetsSettings conversationDatasetsSettings =
     ConversationDatasetsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create(conversationDatasetsSettings);
 

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
 ConversationDatasetsSettings conversationDatasetsSettings =
     ConversationDatasetsSettings.newBuilder().setEndpoint(myEndpoint).build();
 ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create(conversationDatasetsSettings);
 

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
 ConversationDatasetsSettings conversationDatasetsSettings =
     ConversationDatasetsSettings.newHttpJsonBuilder().build();
 ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create(conversationDatasetsSettings);
 

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

Inheritance

java.lang.Object > ConversationDatasetsClient

Static Methods

create()

public static final ConversationDatasetsClient create()

Constructs an instance of ConversationDatasetsClient with default settings.

Returns
TypeDescription
ConversationDatasetsClient
Exceptions
TypeDescription
IOException

create(ConversationDatasetsSettings settings)

public static final ConversationDatasetsClient create(ConversationDatasetsSettings settings)

Constructs an instance of ConversationDatasetsClient, 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
settingsConversationDatasetsSettings
Returns
TypeDescription
ConversationDatasetsClient
Exceptions
TypeDescription
IOException

create(ConversationDatasetsStub stub)

public static final ConversationDatasetsClient create(ConversationDatasetsStub stub)

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

Parameter
NameDescription
stubConversationDatasetsStub
Returns
TypeDescription
ConversationDatasetsClient

Constructors

ConversationDatasetsClient(ConversationDatasetsSettings settings)

protected ConversationDatasetsClient(ConversationDatasetsSettings settings)

Constructs an instance of ConversationDatasetsClient, 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
settingsConversationDatasetsSettings

ConversationDatasetsClient(ConversationDatasetsStub stub)

protected ConversationDatasetsClient(ConversationDatasetsStub stub)
Parameter
NameDescription
stubConversationDatasetsStub

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()

createConversationDatasetAsync(CreateConversationDatasetRequest request)

public final OperationFuture<ConversationDataset,CreateConversationDatasetOperationMetadata> createConversationDatasetAsync(CreateConversationDatasetRequest request)

Creates a new conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: CreateConversationDatasetOperationMetadata

  • response: ConversationDataset

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    CreateConversationDatasetRequest request =
        CreateConversationDatasetRequest.newBuilder()
            .setParent("parent-995424086")
            .setConversationDataset(ConversationDataset.newBuilder().build())
            .build();
    ConversationDataset response =
        conversationDatasetsClient.createConversationDatasetAsync(request).get();
    }
    
Parameter
NameDescription
requestCreateConversationDatasetRequest

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

Returns
TypeDescription
OperationFuture<ConversationDataset,CreateConversationDatasetOperationMetadata>

createConversationDatasetAsync(String parent, ConversationDataset conversationDataset)

public final OperationFuture<ConversationDataset,CreateConversationDatasetOperationMetadata> createConversationDatasetAsync(String parent, ConversationDataset conversationDataset)

Creates a new conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: CreateConversationDatasetOperationMetadata

  • response: ConversationDataset

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    String parent = "parent-995424086";
    ConversationDataset conversationDataset = ConversationDataset.newBuilder().build();
    ConversationDataset response =
        conversationDatasetsClient
            .createConversationDatasetAsync(parent, conversationDataset)
            .get();
    }
    
Parameters
NameDescription
parentString

Required. The project to create conversation dataset for. Format: projects/<Project ID>/locations/<Location ID>

conversationDatasetConversationDataset

Required. The conversation dataset to create.

Returns
TypeDescription
OperationFuture<ConversationDataset,CreateConversationDatasetOperationMetadata>

createConversationDatasetCallable()

public final UnaryCallable<CreateConversationDatasetRequest,Operation> createConversationDatasetCallable()

Creates a new conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: CreateConversationDatasetOperationMetadata

  • response: ConversationDataset

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    CreateConversationDatasetRequest request =
        CreateConversationDatasetRequest.newBuilder()
            .setParent("parent-995424086")
            .setConversationDataset(ConversationDataset.newBuilder().build())
            .build();
    ApiFuture<Operation> future =
        conversationDatasetsClient.createConversationDatasetCallable().futureCall(request);
    // Do something.
    Operation response = future.get();
    }
    
Returns
TypeDescription
UnaryCallable<CreateConversationDatasetRequest,Operation>

createConversationDatasetOperationCallable()

public final OperationCallable<CreateConversationDatasetRequest,ConversationDataset,CreateConversationDatasetOperationMetadata> createConversationDatasetOperationCallable()

Creates a new conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: CreateConversationDatasetOperationMetadata

  • response: ConversationDataset

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    CreateConversationDatasetRequest request =
        CreateConversationDatasetRequest.newBuilder()
            .setParent("parent-995424086")
            .setConversationDataset(ConversationDataset.newBuilder().build())
            .build();
    OperationFuture<ConversationDataset, CreateConversationDatasetOperationMetadata> future =
        conversationDatasetsClient
            .createConversationDatasetOperationCallable()
            .futureCall(request);
    // Do something.
    ConversationDataset response = future.get();
    }
    
Returns
TypeDescription
OperationCallable<CreateConversationDatasetRequest,ConversationDataset,CreateConversationDatasetOperationMetadata>

deleteConversationDatasetAsync(ConversationDatasetName name)

public final OperationFuture<Empty,DeleteConversationDatasetOperationMetadata> deleteConversationDatasetAsync(ConversationDatasetName name)

Deletes the specified conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: DeleteConversationDatasetOperationMetadata

  • response: An Empty message

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    ConversationDatasetName name =
        ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]");
    conversationDatasetsClient.deleteConversationDatasetAsync(name).get();
    }
    
Parameter
NameDescription
nameConversationDatasetName

Required. The conversation dataset to delete. Format: projects/<Project ID>/locations/<Location ID>/conversationDatasets/<Conversation Dataset ID>

Returns
TypeDescription
OperationFuture<Empty,DeleteConversationDatasetOperationMetadata>

deleteConversationDatasetAsync(DeleteConversationDatasetRequest request)

public final OperationFuture<Empty,DeleteConversationDatasetOperationMetadata> deleteConversationDatasetAsync(DeleteConversationDatasetRequest request)

Deletes the specified conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: DeleteConversationDatasetOperationMetadata

  • response: An Empty message

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    DeleteConversationDatasetRequest request =
        DeleteConversationDatasetRequest.newBuilder()
            .setName(
                ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                    .toString())
            .build();
    conversationDatasetsClient.deleteConversationDatasetAsync(request).get();
    }
    
Parameter
NameDescription
requestDeleteConversationDatasetRequest

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

Returns
TypeDescription
OperationFuture<Empty,DeleteConversationDatasetOperationMetadata>

deleteConversationDatasetAsync(String name)

public final OperationFuture<Empty,DeleteConversationDatasetOperationMetadata> deleteConversationDatasetAsync(String name)

Deletes the specified conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: DeleteConversationDatasetOperationMetadata

  • response: An Empty message

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    String name =
        ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
            .toString();
    conversationDatasetsClient.deleteConversationDatasetAsync(name).get();
    }
    
Parameter
NameDescription
nameString

Required. The conversation dataset to delete. Format: projects/<Project ID>/locations/<Location ID>/conversationDatasets/<Conversation Dataset ID>

Returns
TypeDescription
OperationFuture<Empty,DeleteConversationDatasetOperationMetadata>

deleteConversationDatasetCallable()

public final UnaryCallable<DeleteConversationDatasetRequest,Operation> deleteConversationDatasetCallable()

Deletes the specified conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: DeleteConversationDatasetOperationMetadata

  • response: An Empty message

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    DeleteConversationDatasetRequest request =
        DeleteConversationDatasetRequest.newBuilder()
            .setName(
                ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                    .toString())
            .build();
    ApiFuture<Operation> future =
        conversationDatasetsClient.deleteConversationDatasetCallable().futureCall(request);
    // Do something.
    future.get();
    }
    
Returns
TypeDescription
UnaryCallable<DeleteConversationDatasetRequest,Operation>

deleteConversationDatasetOperationCallable()

public final OperationCallable<DeleteConversationDatasetRequest,Empty,DeleteConversationDatasetOperationMetadata> deleteConversationDatasetOperationCallable()

Deletes the specified conversation dataset.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: DeleteConversationDatasetOperationMetadata

  • response: An Empty message

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    DeleteConversationDatasetRequest request =
        DeleteConversationDatasetRequest.newBuilder()
            .setName(
                ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                    .toString())
            .build();
    OperationFuture<Empty, DeleteConversationDatasetOperationMetadata> future =
        conversationDatasetsClient
            .deleteConversationDatasetOperationCallable()
            .futureCall(request);
    // Do something.
    future.get();
    }
    
Returns
TypeDescription
OperationCallable<DeleteConversationDatasetRequest,Empty,DeleteConversationDatasetOperationMetadata>

getConversationDataset(ConversationDatasetName name)

public final ConversationDataset getConversationDataset(ConversationDatasetName name)

Retrieves the specified conversation dataset.

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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   ConversationDatasetName name =
       ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]");
   ConversationDataset response = conversationDatasetsClient.getConversationDataset(name);
 }
 
Parameter
NameDescription
nameConversationDatasetName

Required. The conversation dataset to retrieve. Format: projects/<Project ID>/locations/<Location ID>/conversationDatasets/<Conversation Dataset ID>

Returns
TypeDescription
ConversationDataset

getConversationDataset(GetConversationDatasetRequest request)

public final ConversationDataset getConversationDataset(GetConversationDatasetRequest request)

Retrieves the specified conversation dataset.

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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   GetConversationDatasetRequest request =
       GetConversationDatasetRequest.newBuilder()
           .setName(
               ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                   .toString())
           .build();
   ConversationDataset response = conversationDatasetsClient.getConversationDataset(request);
 }
 
Parameter
NameDescription
requestGetConversationDatasetRequest

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

Returns
TypeDescription
ConversationDataset

getConversationDataset(String name)

public final ConversationDataset getConversationDataset(String name)

Retrieves the specified conversation dataset.

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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   String name =
       ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
           .toString();
   ConversationDataset response = conversationDatasetsClient.getConversationDataset(name);
 }
 
Parameter
NameDescription
nameString

Required. The conversation dataset to retrieve. Format: projects/<Project ID>/locations/<Location ID>/conversationDatasets/<Conversation Dataset ID>

Returns
TypeDescription
ConversationDataset

getConversationDatasetCallable()

public final UnaryCallable<GetConversationDatasetRequest,ConversationDataset> getConversationDatasetCallable()

Retrieves the specified conversation dataset.

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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   GetConversationDatasetRequest request =
       GetConversationDatasetRequest.newBuilder()
           .setName(
               ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                   .toString())
           .build();
   ApiFuture<ConversationDataset> future =
       conversationDatasetsClient.getConversationDatasetCallable().futureCall(request);
   // Do something.
   ConversationDataset response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetConversationDatasetRequest,ConversationDataset>

getHttpJsonOperationsClient()

public final OperationsClient getHttpJsonOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

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

getOperationsClient()

public final OperationsClient getOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getSettings()

public final ConversationDatasetsSettings getSettings()
Returns
TypeDescription
ConversationDatasetsSettings

getStub()

public ConversationDatasetsStub getStub()
Returns
TypeDescription
ConversationDatasetsStub

importConversationDataAsync(ImportConversationDataRequest request)

public final OperationFuture<ImportConversationDataOperationResponse,ImportConversationDataOperationMetadata> importConversationDataAsync(ImportConversationDataRequest request)

Import data into the specified conversation dataset. Note that it is not allowed to import data to a conversation dataset that already has data in it.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: ImportConversationDataOperationMetadata

  • response: ImportConversationDataOperationResponse

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    ImportConversationDataRequest request =
        ImportConversationDataRequest.newBuilder()
            .setName(
                ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                    .toString())
            .setInputConfig(InputConfig.newBuilder().build())
            .build();
    ImportConversationDataOperationResponse response =
        conversationDatasetsClient.importConversationDataAsync(request).get();
    }
    
Parameter
NameDescription
requestImportConversationDataRequest

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

Returns
TypeDescription
OperationFuture<ImportConversationDataOperationResponse,ImportConversationDataOperationMetadata>

importConversationDataCallable()

public final UnaryCallable<ImportConversationDataRequest,Operation> importConversationDataCallable()

Import data into the specified conversation dataset. Note that it is not allowed to import data to a conversation dataset that already has data in it.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: ImportConversationDataOperationMetadata

  • response: ImportConversationDataOperationResponse

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    ImportConversationDataRequest request =
        ImportConversationDataRequest.newBuilder()
            .setName(
                ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                    .toString())
            .setInputConfig(InputConfig.newBuilder().build())
            .build();
    ApiFuture<Operation> future =
        conversationDatasetsClient.importConversationDataCallable().futureCall(request);
    // Do something.
    Operation response = future.get();
    }
    
Returns
TypeDescription
UnaryCallable<ImportConversationDataRequest,Operation>

importConversationDataOperationCallable()

public final OperationCallable<ImportConversationDataRequest,ImportConversationDataOperationResponse,ImportConversationDataOperationMetadata> importConversationDataOperationCallable()

Import data into the specified conversation dataset. Note that it is not allowed to import data to a conversation dataset that already has data in it.

This method is a long-running operation. The returned Operation type has the following method-specific fields:

- metadata: ImportConversationDataOperationMetadata

  • response: ImportConversationDataOperationResponse

    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 (ConversationDatasetsClient conversationDatasetsClient =
      ConversationDatasetsClient.create()) {
    ImportConversationDataRequest request =
        ImportConversationDataRequest.newBuilder()
            .setName(
                ConversationDatasetName.of("[PROJECT]", "[LOCATION]", "[CONVERSATION_DATASET]")
                    .toString())
            .setInputConfig(InputConfig.newBuilder().build())
            .build();
    OperationFuture< importconversationdataoperationresponse,="" importconversationdataoperationmetadata="">
        future =
            conversationDatasetsClient
                .importConversationDataOperationCallable()
                .futureCall(request);
    // Do something.
    ImportConversationDataOperationResponse response = future.get();
    }
    
Returns
TypeDescription
OperationCallable<ImportConversationDataRequest,ImportConversationDataOperationResponse,ImportConversationDataOperationMetadata>

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listConversationDatasets(ListConversationDatasetsRequest request)

public final ConversationDatasetsClient.ListConversationDatasetsPagedResponse listConversationDatasets(ListConversationDatasetsRequest request)

Returns the list of all conversation datasets in the specified project and 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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   ListConversationDatasetsRequest request =
       ListConversationDatasetsRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (ConversationDataset element :
       conversationDatasetsClient.listConversationDatasets(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListConversationDatasetsRequest

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

Returns
TypeDescription
ConversationDatasetsClient.ListConversationDatasetsPagedResponse

listConversationDatasets(LocationName parent)

public final ConversationDatasetsClient.ListConversationDatasetsPagedResponse listConversationDatasets(LocationName parent)

Returns the list of all conversation datasets in the specified project and 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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
   for (ConversationDataset element :
       conversationDatasetsClient.listConversationDatasets(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentLocationName

Required. The project and location name to list all conversation datasets for. Format: projects/<Project ID>/locations/<Location ID>

Returns
TypeDescription
ConversationDatasetsClient.ListConversationDatasetsPagedResponse

listConversationDatasets(String parent)

public final ConversationDatasetsClient.ListConversationDatasetsPagedResponse listConversationDatasets(String parent)

Returns the list of all conversation datasets in the specified project and 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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
   for (ConversationDataset element :
       conversationDatasetsClient.listConversationDatasets(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The project and location name to list all conversation datasets for. Format: projects/<Project ID>/locations/<Location ID>

Returns
TypeDescription
ConversationDatasetsClient.ListConversationDatasetsPagedResponse

listConversationDatasetsCallable()

public final UnaryCallable<ListConversationDatasetsRequest,ListConversationDatasetsResponse> listConversationDatasetsCallable()

Returns the list of all conversation datasets in the specified project and 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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   ListConversationDatasetsRequest request =
       ListConversationDatasetsRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListConversationDatasetsResponse response =
         conversationDatasetsClient.listConversationDatasetsCallable().call(request);
     for (ConversationDataset element : response.getConversationDatasetsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListConversationDatasetsRequest,ListConversationDatasetsResponse>

listConversationDatasetsPagedCallable()

public final UnaryCallable<ListConversationDatasetsRequest,ConversationDatasetsClient.ListConversationDatasetsPagedResponse> listConversationDatasetsPagedCallable()

Returns the list of all conversation datasets in the specified project and 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 (ConversationDatasetsClient conversationDatasetsClient =
     ConversationDatasetsClient.create()) {
   ListConversationDatasetsRequest request =
       ListConversationDatasetsRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<ConversationDataset> future =
       conversationDatasetsClient.listConversationDatasetsPagedCallable().futureCall(request);
   // Do something.
   for (ConversationDataset element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListConversationDatasetsRequest,ListConversationDatasetsPagedResponse>

listLocations(ListLocationsRequest request)

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

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()