Class ServingConfigServiceClient (2.43.0)

GitHub RepositoryProduct Reference

Service Description: Service for modifying ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
   ServingConfig servingConfig = ServingConfig.newBuilder().build();
   String servingConfigId = "servingConfigId-831052759";
   ServingConfig response =
       servingConfigServiceClient.createServingConfig(parent, servingConfig, servingConfigId);
 }
 

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

Methods
MethodDescriptionMethod Variants

CreateServingConfig

Creates a ServingConfig.

A maximum of 100 ServingConfigs are allowed in a Catalog, otherwise a FAILED_PRECONDITION error is returned.

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

  • createServingConfig(CreateServingConfigRequest request)

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

  • createServingConfig(CatalogName parent, ServingConfig servingConfig, String servingConfigId)

  • createServingConfig(String parent, ServingConfig servingConfig, String servingConfigId)

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

  • createServingConfigCallable()

DeleteServingConfig

Deletes a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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

  • deleteServingConfig(DeleteServingConfigRequest request)

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

  • deleteServingConfig(ServingConfigName name)

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

  • deleteServingConfigCallable()

UpdateServingConfig

Updates a ServingConfig.

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

  • updateServingConfig(UpdateServingConfigRequest request)

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

  • updateServingConfig(ServingConfig servingConfig, 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.

  • updateServingConfigCallable()

GetServingConfig

Gets a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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

  • getServingConfig(GetServingConfigRequest request)

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

  • getServingConfig(ServingConfigName name)

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

  • getServingConfigCallable()

ListServingConfigs

Lists all ServingConfigs linked to this catalog.

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

  • listServingConfigs(ListServingConfigsRequest request)

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

  • listServingConfigs(CatalogName parent)

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

  • listServingConfigsPagedCallable()

  • listServingConfigsCallable()

AddControl

Enables a Control on the specified ServingConfig. The control is added in the last position of the list of controls it belongs to (e.g. if it's a facet spec control it will be applied in the last position of servingConfig.facetSpecIds) Returns a ALREADY_EXISTS error if the control has already been applied. Returns a FAILED_PRECONDITION error if the addition could exceed maximum number of control allowed for that type of control.

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

  • addControl(AddControlRequest request)

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

  • addControl(ServingConfigName servingConfig)

  • addControl(String servingConfig)

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

  • addControlCallable()

RemoveControl

Disables a Control on the specified ServingConfig. The control is removed from the ServingConfig. Returns a NOT_FOUND error if the Control is not enabled for the ServingConfig.

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

  • removeControl(RemoveControlRequest request)

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

  • removeControl(ServingConfigName servingConfig)

  • removeControl(String servingConfig)

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

  • removeControlCallable()

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 ServingConfigServiceSettings 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
 ServingConfigServiceSettings servingConfigServiceSettings =
     ServingConfigServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create(servingConfigServiceSettings);
 

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
 ServingConfigServiceSettings servingConfigServiceSettings =
     ServingConfigServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create(servingConfigServiceSettings);
 

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
 ServingConfigServiceSettings servingConfigServiceSettings =
     ServingConfigServiceSettings.newHttpJsonBuilder().build();
 ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create(servingConfigServiceSettings);
 

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

Inheritance

java.lang.Object > ServingConfigServiceClient

Static Methods

create()

public static final ServingConfigServiceClient create()

Constructs an instance of ServingConfigServiceClient with default settings.

Returns
TypeDescription
ServingConfigServiceClient
Exceptions
TypeDescription
IOException

create(ServingConfigServiceSettings settings)

public static final ServingConfigServiceClient create(ServingConfigServiceSettings settings)

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

create(ServingConfigServiceStub stub)

public static final ServingConfigServiceClient create(ServingConfigServiceStub stub)

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

Parameter
NameDescription
stubServingConfigServiceStub
Returns
TypeDescription
ServingConfigServiceClient

Constructors

ServingConfigServiceClient(ServingConfigServiceSettings settings)

protected ServingConfigServiceClient(ServingConfigServiceSettings settings)

Constructs an instance of ServingConfigServiceClient, 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
settingsServingConfigServiceSettings

ServingConfigServiceClient(ServingConfigServiceStub stub)

protected ServingConfigServiceClient(ServingConfigServiceStub stub)
Parameter
NameDescription
stubServingConfigServiceStub

Methods

addControl(AddControlRequest request)

public final ServingConfig addControl(AddControlRequest request)

Enables a Control on the specified ServingConfig. The control is added in the last position of the list of controls it belongs to (e.g. if it's a facet spec control it will be applied in the last position of servingConfig.facetSpecIds) Returns a ALREADY_EXISTS error if the control has already been applied. Returns a FAILED_PRECONDITION error if the addition could exceed maximum number of control allowed for that type of control.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   AddControlRequest request =
       AddControlRequest.newBuilder()
           .setServingConfig(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .setControlId("controlId-395080872")
           .build();
   ServingConfig response = servingConfigServiceClient.addControl(request);
 }
 
Parameter
NameDescription
requestAddControlRequest

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

Returns
TypeDescription
ServingConfig

addControl(ServingConfigName servingConfig)

public final ServingConfig addControl(ServingConfigName servingConfig)

Enables a Control on the specified ServingConfig. The control is added in the last position of the list of controls it belongs to (e.g. if it's a facet spec control it will be applied in the last position of servingConfig.facetSpecIds) Returns a ALREADY_EXISTS error if the control has already been applied. Returns a FAILED_PRECONDITION error if the addition could exceed maximum number of control allowed for that type of control.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ServingConfigName servingConfig =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]");
   ServingConfig response = servingConfigServiceClient.addControl(servingConfig);
 }
 
Parameter
NameDescription
servingConfigServingConfigName

Required. The source ServingConfig resource name . Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

Returns
TypeDescription
ServingConfig

addControl(String servingConfig)

public final ServingConfig addControl(String servingConfig)

Enables a Control on the specified ServingConfig. The control is added in the last position of the list of controls it belongs to (e.g. if it's a facet spec control it will be applied in the last position of servingConfig.facetSpecIds) Returns a ALREADY_EXISTS error if the control has already been applied. Returns a FAILED_PRECONDITION error if the addition could exceed maximum number of control allowed for that type of control.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   String servingConfig =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
           .toString();
   ServingConfig response = servingConfigServiceClient.addControl(servingConfig);
 }
 
Parameter
NameDescription
servingConfigString

Required. The source ServingConfig resource name . Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

Returns
TypeDescription
ServingConfig

addControlCallable()

public final UnaryCallable<AddControlRequest,ServingConfig> addControlCallable()

Enables a Control on the specified ServingConfig. The control is added in the last position of the list of controls it belongs to (e.g. if it's a facet spec control it will be applied in the last position of servingConfig.facetSpecIds) Returns a ALREADY_EXISTS error if the control has already been applied. Returns a FAILED_PRECONDITION error if the addition could exceed maximum number of control allowed for that type of control.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   AddControlRequest request =
       AddControlRequest.newBuilder()
           .setServingConfig(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .setControlId("controlId-395080872")
           .build();
   ApiFuture<ServingConfig> future =
       servingConfigServiceClient.addControlCallable().futureCall(request);
   // Do something.
   ServingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<AddControlRequest,ServingConfig>

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

createServingConfig(CatalogName parent, ServingConfig servingConfig, String servingConfigId)

public final ServingConfig createServingConfig(CatalogName parent, ServingConfig servingConfig, String servingConfigId)

Creates a ServingConfig.

A maximum of 100 ServingConfigs are allowed in a Catalog, otherwise a FAILED_PRECONDITION error is returned.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
   ServingConfig servingConfig = ServingConfig.newBuilder().build();
   String servingConfigId = "servingConfigId-831052759";
   ServingConfig response =
       servingConfigServiceClient.createServingConfig(parent, servingConfig, servingConfigId);
 }
 
Parameters
NameDescription
parentCatalogName

Required. Full resource name of parent. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

servingConfigServingConfig

Required. The ServingConfig to create.

servingConfigIdString

Required. The ID to use for the ServingConfig, which will become the final component of the ServingConfig's resource name.

This value should be 4-63 characters, and valid characters are /a-z-_/.

Returns
TypeDescription
ServingConfig

createServingConfig(CreateServingConfigRequest request)

public final ServingConfig createServingConfig(CreateServingConfigRequest request)

Creates a ServingConfig.

A maximum of 100 ServingConfigs are allowed in a Catalog, otherwise a FAILED_PRECONDITION error is returned.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   CreateServingConfigRequest request =
       CreateServingConfigRequest.newBuilder()
           .setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
           .setServingConfig(ServingConfig.newBuilder().build())
           .setServingConfigId("servingConfigId-831052759")
           .build();
   ServingConfig response = servingConfigServiceClient.createServingConfig(request);
 }
 
Parameter
NameDescription
requestCreateServingConfigRequest

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

Returns
TypeDescription
ServingConfig

createServingConfig(String parent, ServingConfig servingConfig, String servingConfigId)

public final ServingConfig createServingConfig(String parent, ServingConfig servingConfig, String servingConfigId)

Creates a ServingConfig.

A maximum of 100 ServingConfigs are allowed in a Catalog, otherwise a FAILED_PRECONDITION error is returned.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   String parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString();
   ServingConfig servingConfig = ServingConfig.newBuilder().build();
   String servingConfigId = "servingConfigId-831052759";
   ServingConfig response =
       servingConfigServiceClient.createServingConfig(parent, servingConfig, servingConfigId);
 }
 
Parameters
NameDescription
parentString

Required. Full resource name of parent. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

servingConfigServingConfig

Required. The ServingConfig to create.

servingConfigIdString

Required. The ID to use for the ServingConfig, which will become the final component of the ServingConfig's resource name.

This value should be 4-63 characters, and valid characters are /a-z-_/.

Returns
TypeDescription
ServingConfig

createServingConfigCallable()

public final UnaryCallable<CreateServingConfigRequest,ServingConfig> createServingConfigCallable()

Creates a ServingConfig.

A maximum of 100 ServingConfigs are allowed in a Catalog, otherwise a FAILED_PRECONDITION error is returned.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   CreateServingConfigRequest request =
       CreateServingConfigRequest.newBuilder()
           .setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
           .setServingConfig(ServingConfig.newBuilder().build())
           .setServingConfigId("servingConfigId-831052759")
           .build();
   ApiFuture<ServingConfig> future =
       servingConfigServiceClient.createServingConfigCallable().futureCall(request);
   // Do something.
   ServingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateServingConfigRequest,ServingConfig>

deleteServingConfig(DeleteServingConfigRequest request)

public final void deleteServingConfig(DeleteServingConfigRequest request)

Deletes a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   DeleteServingConfigRequest request =
       DeleteServingConfigRequest.newBuilder()
           .setName(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .build();
   servingConfigServiceClient.deleteServingConfig(request);
 }
 
Parameter
NameDescription
requestDeleteServingConfigRequest

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

deleteServingConfig(ServingConfigName name)

public final void deleteServingConfig(ServingConfigName name)

Deletes a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ServingConfigName name =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]");
   servingConfigServiceClient.deleteServingConfig(name);
 }
 
Parameter
NameDescription
nameServingConfigName

Required. The resource name of the ServingConfig to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

deleteServingConfig(String name)

public final void deleteServingConfig(String name)

Deletes a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   String name =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
           .toString();
   servingConfigServiceClient.deleteServingConfig(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the ServingConfig to delete. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

deleteServingConfigCallable()

public final UnaryCallable<DeleteServingConfigRequest,Empty> deleteServingConfigCallable()

Deletes a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   DeleteServingConfigRequest request =
       DeleteServingConfigRequest.newBuilder()
           .setName(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .build();
   ApiFuture<Empty> future =
       servingConfigServiceClient.deleteServingConfigCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteServingConfigRequest,Empty>

getServingConfig(GetServingConfigRequest request)

public final ServingConfig getServingConfig(GetServingConfigRequest request)

Gets a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   GetServingConfigRequest request =
       GetServingConfigRequest.newBuilder()
           .setName(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .build();
   ServingConfig response = servingConfigServiceClient.getServingConfig(request);
 }
 
Parameter
NameDescription
requestGetServingConfigRequest

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

Returns
TypeDescription
ServingConfig

getServingConfig(ServingConfigName name)

public final ServingConfig getServingConfig(ServingConfigName name)

Gets a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ServingConfigName name =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]");
   ServingConfig response = servingConfigServiceClient.getServingConfig(name);
 }
 
Parameter
NameDescription
nameServingConfigName

Required. The resource name of the ServingConfig to get. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

Returns
TypeDescription
ServingConfig

getServingConfig(String name)

public final ServingConfig getServingConfig(String name)

Gets a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   String name =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
           .toString();
   ServingConfig response = servingConfigServiceClient.getServingConfig(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the ServingConfig to get. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

Returns
TypeDescription
ServingConfig

getServingConfigCallable()

public final UnaryCallable<GetServingConfigRequest,ServingConfig> getServingConfigCallable()

Gets a ServingConfig.

Returns a NotFound error if the ServingConfig does not exist.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   GetServingConfigRequest request =
       GetServingConfigRequest.newBuilder()
           .setName(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .build();
   ApiFuture<ServingConfig> future =
       servingConfigServiceClient.getServingConfigCallable().futureCall(request);
   // Do something.
   ServingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetServingConfigRequest,ServingConfig>

getSettings()

public final ServingConfigServiceSettings getSettings()
Returns
TypeDescription
ServingConfigServiceSettings

getStub()

public ServingConfigServiceStub getStub()
Returns
TypeDescription
ServingConfigServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listServingConfigs(CatalogName parent)

public final ServingConfigServiceClient.ListServingConfigsPagedResponse listServingConfigs(CatalogName parent)

Lists all ServingConfigs linked to this catalog.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
   for (ServingConfig element :
       servingConfigServiceClient.listServingConfigs(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentCatalogName

Required. The catalog resource name. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

Returns
TypeDescription
ServingConfigServiceClient.ListServingConfigsPagedResponse

listServingConfigs(ListServingConfigsRequest request)

public final ServingConfigServiceClient.ListServingConfigsPagedResponse listServingConfigs(ListServingConfigsRequest request)

Lists all ServingConfigs linked to this catalog.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ListServingConfigsRequest request =
       ListServingConfigsRequest.newBuilder()
           .setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (ServingConfig element :
       servingConfigServiceClient.listServingConfigs(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListServingConfigsRequest

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

Returns
TypeDescription
ServingConfigServiceClient.ListServingConfigsPagedResponse

listServingConfigs(String parent)

public final ServingConfigServiceClient.ListServingConfigsPagedResponse listServingConfigs(String parent)

Lists all ServingConfigs linked to this catalog.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   String parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString();
   for (ServingConfig element :
       servingConfigServiceClient.listServingConfigs(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The catalog resource name. Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}

Returns
TypeDescription
ServingConfigServiceClient.ListServingConfigsPagedResponse

listServingConfigsCallable()

public final UnaryCallable<ListServingConfigsRequest,ListServingConfigsResponse> listServingConfigsCallable()

Lists all ServingConfigs linked to this catalog.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ListServingConfigsRequest request =
       ListServingConfigsRequest.newBuilder()
           .setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListServingConfigsResponse response =
         servingConfigServiceClient.listServingConfigsCallable().call(request);
     for (ServingConfig element : response.getServingConfigsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListServingConfigsRequest,ListServingConfigsResponse>

listServingConfigsPagedCallable()

public final UnaryCallable<ListServingConfigsRequest,ServingConfigServiceClient.ListServingConfigsPagedResponse> listServingConfigsPagedCallable()

Lists all ServingConfigs linked to this catalog.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ListServingConfigsRequest request =
       ListServingConfigsRequest.newBuilder()
           .setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<ServingConfig> future =
       servingConfigServiceClient.listServingConfigsPagedCallable().futureCall(request);
   // Do something.
   for (ServingConfig element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListServingConfigsRequest,ListServingConfigsPagedResponse>

removeControl(RemoveControlRequest request)

public final ServingConfig removeControl(RemoveControlRequest request)

Disables a Control on the specified ServingConfig. The control is removed from the ServingConfig. Returns a NOT_FOUND error if the Control is not enabled for the ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   RemoveControlRequest request =
       RemoveControlRequest.newBuilder()
           .setServingConfig(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .setControlId("controlId-395080872")
           .build();
   ServingConfig response = servingConfigServiceClient.removeControl(request);
 }
 
Parameter
NameDescription
requestRemoveControlRequest

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

Returns
TypeDescription
ServingConfig

removeControl(ServingConfigName servingConfig)

public final ServingConfig removeControl(ServingConfigName servingConfig)

Disables a Control on the specified ServingConfig. The control is removed from the ServingConfig. Returns a NOT_FOUND error if the Control is not enabled for the ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ServingConfigName servingConfig =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]");
   ServingConfig response = servingConfigServiceClient.removeControl(servingConfig);
 }
 
Parameter
NameDescription
servingConfigServingConfigName

Required. The source ServingConfig resource name . Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

Returns
TypeDescription
ServingConfig

removeControl(String servingConfig)

public final ServingConfig removeControl(String servingConfig)

Disables a Control on the specified ServingConfig. The control is removed from the ServingConfig. Returns a NOT_FOUND error if the Control is not enabled for the ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   String servingConfig =
       ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
           .toString();
   ServingConfig response = servingConfigServiceClient.removeControl(servingConfig);
 }
 
Parameter
NameDescription
servingConfigString

Required. The source ServingConfig resource name . Format: projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/servingConfigs/{serving_config_id}

Returns
TypeDescription
ServingConfig

removeControlCallable()

public final UnaryCallable<RemoveControlRequest,ServingConfig> removeControlCallable()

Disables a Control on the specified ServingConfig. The control is removed from the ServingConfig. Returns a NOT_FOUND error if the Control is not enabled for the ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   RemoveControlRequest request =
       RemoveControlRequest.newBuilder()
           .setServingConfig(
               ServingConfigName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[SERVING_CONFIG]")
                   .toString())
           .setControlId("controlId-395080872")
           .build();
   ApiFuture<ServingConfig> future =
       servingConfigServiceClient.removeControlCallable().futureCall(request);
   // Do something.
   ServingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<RemoveControlRequest,ServingConfig>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateServingConfig(ServingConfig servingConfig, FieldMask updateMask)

public final ServingConfig updateServingConfig(ServingConfig servingConfig, FieldMask updateMask)

Updates a ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   ServingConfig servingConfig = ServingConfig.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   ServingConfig response =
       servingConfigServiceClient.updateServingConfig(servingConfig, updateMask);
 }
 
Parameters
NameDescription
servingConfigServingConfig

Required. The ServingConfig to update.

updateMaskFieldMask

Indicates which fields in the provided ServingConfig to update. The following are NOT supported:

  • ServingConfig.name

If not set, all supported fields are updated.

Returns
TypeDescription
ServingConfig

updateServingConfig(UpdateServingConfigRequest request)

public final ServingConfig updateServingConfig(UpdateServingConfigRequest request)

Updates a ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   UpdateServingConfigRequest request =
       UpdateServingConfigRequest.newBuilder()
           .setServingConfig(ServingConfig.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ServingConfig response = servingConfigServiceClient.updateServingConfig(request);
 }
 
Parameter
NameDescription
requestUpdateServingConfigRequest

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

Returns
TypeDescription
ServingConfig

updateServingConfigCallable()

public final UnaryCallable<UpdateServingConfigRequest,ServingConfig> updateServingConfigCallable()

Updates a ServingConfig.

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 (ServingConfigServiceClient servingConfigServiceClient =
     ServingConfigServiceClient.create()) {
   UpdateServingConfigRequest request =
       UpdateServingConfigRequest.newBuilder()
           .setServingConfig(ServingConfig.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<ServingConfig> future =
       servingConfigServiceClient.updateServingConfigCallable().futureCall(request);
   // Do something.
   ServingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateServingConfigRequest,ServingConfig>