Class KnowledgeBasesClient (4.47.0)

GitHub RepositoryProduct Reference

Service Description: Service for managing KnowledgeBases.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   KnowledgeBaseName name =
       KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]");
   KnowledgeBase response = knowledgeBasesClient.getKnowledgeBase(name);
 }
 

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

Methods
MethodDescriptionMethod Variants

ListKnowledgeBases

Returns the list of all knowledge bases of the specified agent.

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

  • listKnowledgeBases(ListKnowledgeBasesRequest request)

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

  • listKnowledgeBases(LocationName parent)

  • listKnowledgeBases(ProjectName parent)

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

  • listKnowledgeBasesPagedCallable()

  • listKnowledgeBasesCallable()

GetKnowledgeBase

Retrieves the specified knowledge base.

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

  • getKnowledgeBase(GetKnowledgeBaseRequest request)

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

  • getKnowledgeBase(KnowledgeBaseName name)

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

  • getKnowledgeBaseCallable()

CreateKnowledgeBase

Creates a knowledge base.

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

  • createKnowledgeBase(CreateKnowledgeBaseRequest request)

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

  • createKnowledgeBase(LocationName parent, KnowledgeBase knowledgeBase)

  • createKnowledgeBase(ProjectName parent, KnowledgeBase knowledgeBase)

  • createKnowledgeBase(String parent, KnowledgeBase knowledgeBase)

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

  • createKnowledgeBaseCallable()

DeleteKnowledgeBase

Deletes the specified knowledge base.

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

  • deleteKnowledgeBase(DeleteKnowledgeBaseRequest request)

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

  • deleteKnowledgeBase(KnowledgeBaseName name)

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

  • deleteKnowledgeBaseCallable()

UpdateKnowledgeBase

Updates the specified knowledge base.

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

  • updateKnowledgeBase(UpdateKnowledgeBaseRequest request)

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

  • updateKnowledgeBase(KnowledgeBase knowledgeBase, 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.

  • updateKnowledgeBaseCallable()

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 KnowledgeBasesSettings 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
 KnowledgeBasesSettings knowledgeBasesSettings =
     KnowledgeBasesSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create(knowledgeBasesSettings);
 

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
 KnowledgeBasesSettings knowledgeBasesSettings =
     KnowledgeBasesSettings.newBuilder().setEndpoint(myEndpoint).build();
 KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create(knowledgeBasesSettings);
 

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
 KnowledgeBasesSettings knowledgeBasesSettings =
     KnowledgeBasesSettings.newHttpJsonBuilder().build();
 KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create(knowledgeBasesSettings);
 

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

Inheritance

java.lang.Object > KnowledgeBasesClient

Static Methods

create()

public static final KnowledgeBasesClient create()

Constructs an instance of KnowledgeBasesClient with default settings.

Returns
TypeDescription
KnowledgeBasesClient
Exceptions
TypeDescription
IOException

create(KnowledgeBasesSettings settings)

public static final KnowledgeBasesClient create(KnowledgeBasesSettings settings)

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

create(KnowledgeBasesStub stub)

public static final KnowledgeBasesClient create(KnowledgeBasesStub stub)

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

Parameter
NameDescription
stubKnowledgeBasesStub
Returns
TypeDescription
KnowledgeBasesClient

Constructors

KnowledgeBasesClient(KnowledgeBasesSettings settings)

protected KnowledgeBasesClient(KnowledgeBasesSettings settings)

Constructs an instance of KnowledgeBasesClient, 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
settingsKnowledgeBasesSettings

KnowledgeBasesClient(KnowledgeBasesStub stub)

protected KnowledgeBasesClient(KnowledgeBasesStub stub)
Parameter
NameDescription
stubKnowledgeBasesStub

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

createKnowledgeBase(CreateKnowledgeBaseRequest request)

public final KnowledgeBase createKnowledgeBase(CreateKnowledgeBaseRequest request)

Creates a knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   CreateKnowledgeBaseRequest request =
       CreateKnowledgeBaseRequest.newBuilder()
           .setParent(ProjectName.of("[PROJECT]").toString())
           .setKnowledgeBase(KnowledgeBase.newBuilder().build())
           .build();
   KnowledgeBase response = knowledgeBasesClient.createKnowledgeBase(request);
 }
 
Parameter
NameDescription
requestCreateKnowledgeBaseRequest

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

Returns
TypeDescription
KnowledgeBase

createKnowledgeBase(LocationName parent, KnowledgeBase knowledgeBase)

public final KnowledgeBase createKnowledgeBase(LocationName parent, KnowledgeBase knowledgeBase)

Creates a knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
   KnowledgeBase knowledgeBase = KnowledgeBase.newBuilder().build();
   KnowledgeBase response = knowledgeBasesClient.createKnowledgeBase(parent, knowledgeBase);
 }
 
Parameters
NameDescription
parentLocationName

Required. The project to create a knowledge base for. Format: projects/<Project ID>/locations/<Location ID>.

knowledgeBaseKnowledgeBase

Required. The knowledge base to create.

Returns
TypeDescription
KnowledgeBase

createKnowledgeBase(ProjectName parent, KnowledgeBase knowledgeBase)

public final KnowledgeBase createKnowledgeBase(ProjectName parent, KnowledgeBase knowledgeBase)

Creates a knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ProjectName parent = ProjectName.of("[PROJECT]");
   KnowledgeBase knowledgeBase = KnowledgeBase.newBuilder().build();
   KnowledgeBase response = knowledgeBasesClient.createKnowledgeBase(parent, knowledgeBase);
 }
 
Parameters
NameDescription
parentProjectName

Required. The project to create a knowledge base for. Format: projects/<Project ID>/locations/<Location ID>.

knowledgeBaseKnowledgeBase

Required. The knowledge base to create.

Returns
TypeDescription
KnowledgeBase

createKnowledgeBase(String parent, KnowledgeBase knowledgeBase)

public final KnowledgeBase createKnowledgeBase(String parent, KnowledgeBase knowledgeBase)

Creates a knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   String parent = ProjectName.of("[PROJECT]").toString();
   KnowledgeBase knowledgeBase = KnowledgeBase.newBuilder().build();
   KnowledgeBase response = knowledgeBasesClient.createKnowledgeBase(parent, knowledgeBase);
 }
 
Parameters
NameDescription
parentString

Required. The project to create a knowledge base for. Format: projects/<Project ID>/locations/<Location ID>.

knowledgeBaseKnowledgeBase

Required. The knowledge base to create.

Returns
TypeDescription
KnowledgeBase

createKnowledgeBaseCallable()

public final UnaryCallable<CreateKnowledgeBaseRequest,KnowledgeBase> createKnowledgeBaseCallable()

Creates a knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   CreateKnowledgeBaseRequest request =
       CreateKnowledgeBaseRequest.newBuilder()
           .setParent(ProjectName.of("[PROJECT]").toString())
           .setKnowledgeBase(KnowledgeBase.newBuilder().build())
           .build();
   ApiFuture<KnowledgeBase> future =
       knowledgeBasesClient.createKnowledgeBaseCallable().futureCall(request);
   // Do something.
   KnowledgeBase response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateKnowledgeBaseRequest,KnowledgeBase>

deleteKnowledgeBase(DeleteKnowledgeBaseRequest request)

public final void deleteKnowledgeBase(DeleteKnowledgeBaseRequest request)

Deletes the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   DeleteKnowledgeBaseRequest request =
       DeleteKnowledgeBaseRequest.newBuilder()
           .setName(
               KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]")
                   .toString())
           .setForce(true)
           .build();
   knowledgeBasesClient.deleteKnowledgeBase(request);
 }
 
Parameter
NameDescription
requestDeleteKnowledgeBaseRequest

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

deleteKnowledgeBase(KnowledgeBaseName name)

public final void deleteKnowledgeBase(KnowledgeBaseName name)

Deletes the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   KnowledgeBaseName name =
       KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]");
   knowledgeBasesClient.deleteKnowledgeBase(name);
 }
 
Parameter
NameDescription
nameKnowledgeBaseName

Required. The name of the knowledge base to delete. Format: projects/<Project ID>/locations/<Location ID>/knowledgeBases/<Knowledge Base ID>.

deleteKnowledgeBase(String name)

public final void deleteKnowledgeBase(String name)

Deletes the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   String name =
       KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]").toString();
   knowledgeBasesClient.deleteKnowledgeBase(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the knowledge base to delete. Format: projects/<Project ID>/locations/<Location ID>/knowledgeBases/<Knowledge Base ID>.

deleteKnowledgeBaseCallable()

public final UnaryCallable<DeleteKnowledgeBaseRequest,Empty> deleteKnowledgeBaseCallable()

Deletes the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   DeleteKnowledgeBaseRequest request =
       DeleteKnowledgeBaseRequest.newBuilder()
           .setName(
               KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]")
                   .toString())
           .setForce(true)
           .build();
   ApiFuture<Empty> future =
       knowledgeBasesClient.deleteKnowledgeBaseCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteKnowledgeBaseRequest,Empty>

getKnowledgeBase(GetKnowledgeBaseRequest request)

public final KnowledgeBase getKnowledgeBase(GetKnowledgeBaseRequest request)

Retrieves the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   GetKnowledgeBaseRequest request =
       GetKnowledgeBaseRequest.newBuilder()
           .setName(
               KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]")
                   .toString())
           .build();
   KnowledgeBase response = knowledgeBasesClient.getKnowledgeBase(request);
 }
 
Parameter
NameDescription
requestGetKnowledgeBaseRequest

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

Returns
TypeDescription
KnowledgeBase

getKnowledgeBase(KnowledgeBaseName name)

public final KnowledgeBase getKnowledgeBase(KnowledgeBaseName name)

Retrieves the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   KnowledgeBaseName name =
       KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]");
   KnowledgeBase response = knowledgeBasesClient.getKnowledgeBase(name);
 }
 
Parameter
NameDescription
nameKnowledgeBaseName

Required. The name of the knowledge base to retrieve. Format projects/<Project ID>/locations/<Location ID>/knowledgeBases/<Knowledge Base ID>.

Returns
TypeDescription
KnowledgeBase

getKnowledgeBase(String name)

public final KnowledgeBase getKnowledgeBase(String name)

Retrieves the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   String name =
       KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]").toString();
   KnowledgeBase response = knowledgeBasesClient.getKnowledgeBase(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the knowledge base to retrieve. Format projects/<Project ID>/locations/<Location ID>/knowledgeBases/<Knowledge Base ID>.

Returns
TypeDescription
KnowledgeBase

getKnowledgeBaseCallable()

public final UnaryCallable<GetKnowledgeBaseRequest,KnowledgeBase> getKnowledgeBaseCallable()

Retrieves the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   GetKnowledgeBaseRequest request =
       GetKnowledgeBaseRequest.newBuilder()
           .setName(
               KnowledgeBaseName.ofProjectKnowledgeBaseName("[PROJECT]", "[KNOWLEDGE_BASE]")
                   .toString())
           .build();
   ApiFuture<KnowledgeBase> future =
       knowledgeBasesClient.getKnowledgeBaseCallable().futureCall(request);
   // Do something.
   KnowledgeBase response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetKnowledgeBaseRequest,KnowledgeBase>

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

getSettings()

public final KnowledgeBasesSettings getSettings()
Returns
TypeDescription
KnowledgeBasesSettings

getStub()

public KnowledgeBasesStub getStub()
Returns
TypeDescription
KnowledgeBasesStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listKnowledgeBases(ListKnowledgeBasesRequest request)

public final KnowledgeBasesClient.ListKnowledgeBasesPagedResponse listKnowledgeBases(ListKnowledgeBasesRequest request)

Returns the list of all knowledge bases of the specified agent.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ListKnowledgeBasesRequest request =
       ListKnowledgeBasesRequest.newBuilder()
           .setParent(ProjectName.of("[PROJECT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   for (KnowledgeBase element : knowledgeBasesClient.listKnowledgeBases(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListKnowledgeBasesRequest

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

Returns
TypeDescription
KnowledgeBasesClient.ListKnowledgeBasesPagedResponse

listKnowledgeBases(LocationName parent)

public final KnowledgeBasesClient.ListKnowledgeBasesPagedResponse listKnowledgeBases(LocationName parent)

Returns the list of all knowledge bases of the specified agent.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
   for (KnowledgeBase element : knowledgeBasesClient.listKnowledgeBases(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentLocationName

Required. The project to list of knowledge bases for. Format: projects/<Project ID>/locations/<Location ID>.

Returns
TypeDescription
KnowledgeBasesClient.ListKnowledgeBasesPagedResponse

listKnowledgeBases(ProjectName parent)

public final KnowledgeBasesClient.ListKnowledgeBasesPagedResponse listKnowledgeBases(ProjectName parent)

Returns the list of all knowledge bases of the specified agent.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ProjectName parent = ProjectName.of("[PROJECT]");
   for (KnowledgeBase element : knowledgeBasesClient.listKnowledgeBases(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentProjectName

Required. The project to list of knowledge bases for. Format: projects/<Project ID>/locations/<Location ID>.

Returns
TypeDescription
KnowledgeBasesClient.ListKnowledgeBasesPagedResponse

listKnowledgeBases(String parent)

public final KnowledgeBasesClient.ListKnowledgeBasesPagedResponse listKnowledgeBases(String parent)

Returns the list of all knowledge bases of the specified agent.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   String parent = ProjectName.of("[PROJECT]").toString();
   for (KnowledgeBase element : knowledgeBasesClient.listKnowledgeBases(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The project to list of knowledge bases for. Format: projects/<Project ID>/locations/<Location ID>.

Returns
TypeDescription
KnowledgeBasesClient.ListKnowledgeBasesPagedResponse

listKnowledgeBasesCallable()

public final UnaryCallable<ListKnowledgeBasesRequest,ListKnowledgeBasesResponse> listKnowledgeBasesCallable()

Returns the list of all knowledge bases of the specified agent.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ListKnowledgeBasesRequest request =
       ListKnowledgeBasesRequest.newBuilder()
           .setParent(ProjectName.of("[PROJECT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   while (true) {
     ListKnowledgeBasesResponse response =
         knowledgeBasesClient.listKnowledgeBasesCallable().call(request);
     for (KnowledgeBase element : response.getKnowledgeBasesList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListKnowledgeBasesRequest,ListKnowledgeBasesResponse>

listKnowledgeBasesPagedCallable()

public final UnaryCallable<ListKnowledgeBasesRequest,KnowledgeBasesClient.ListKnowledgeBasesPagedResponse> listKnowledgeBasesPagedCallable()

Returns the list of all knowledge bases of the specified agent.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ListKnowledgeBasesRequest request =
       ListKnowledgeBasesRequest.newBuilder()
           .setParent(ProjectName.of("[PROJECT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   ApiFuture<KnowledgeBase> future =
       knowledgeBasesClient.listKnowledgeBasesPagedCallable().futureCall(request);
   // Do something.
   for (KnowledgeBase element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListKnowledgeBasesRequest,ListKnowledgeBasesPagedResponse>

listLocations(ListLocationsRequest request)

public final KnowledgeBasesClient.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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Location element : knowledgeBasesClient.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
KnowledgeBasesClient.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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListLocationsResponse response = knowledgeBasesClient.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,KnowledgeBasesClient.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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Location> future =
       knowledgeBasesClient.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()

updateKnowledgeBase(KnowledgeBase knowledgeBase, FieldMask updateMask)

public final KnowledgeBase updateKnowledgeBase(KnowledgeBase knowledgeBase, FieldMask updateMask)

Updates the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   KnowledgeBase knowledgeBase = KnowledgeBase.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   KnowledgeBase response = knowledgeBasesClient.updateKnowledgeBase(knowledgeBase, updateMask);
 }
 
Parameters
NameDescription
knowledgeBaseKnowledgeBase

Required. The knowledge base to update.

updateMaskFieldMask

Optional. Not specified means update all. Currently, only display_name can be updated, an InvalidArgument will be returned for attempting to update other fields.

Returns
TypeDescription
KnowledgeBase

updateKnowledgeBase(UpdateKnowledgeBaseRequest request)

public final KnowledgeBase updateKnowledgeBase(UpdateKnowledgeBaseRequest request)

Updates the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   UpdateKnowledgeBaseRequest request =
       UpdateKnowledgeBaseRequest.newBuilder()
           .setKnowledgeBase(KnowledgeBase.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   KnowledgeBase response = knowledgeBasesClient.updateKnowledgeBase(request);
 }
 
Parameter
NameDescription
requestUpdateKnowledgeBaseRequest

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

Returns
TypeDescription
KnowledgeBase

updateKnowledgeBaseCallable()

public final UnaryCallable<UpdateKnowledgeBaseRequest,KnowledgeBase> updateKnowledgeBaseCallable()

Updates the specified knowledge base.

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 (KnowledgeBasesClient knowledgeBasesClient = KnowledgeBasesClient.create()) {
   UpdateKnowledgeBaseRequest request =
       UpdateKnowledgeBaseRequest.newBuilder()
           .setKnowledgeBase(KnowledgeBase.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<KnowledgeBase> future =
       knowledgeBasesClient.updateKnowledgeBaseCallable().futureCall(request);
   // Do something.
   KnowledgeBase response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateKnowledgeBaseRequest,KnowledgeBase>