- 2.54.0 (latest)
- 2.53.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.1
- 2.4.0
- 2.3.0
- 2.2.3
- 2.1.0
- 2.0.19
GitHub Repository | Product 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().
Method | Description | Method 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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateServingConfig |
Updates a ServingConfig. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
Static Methods
create()
public static final ServingConfigServiceClient create()
Constructs an instance of ServingConfigServiceClient with default settings.
Returns | |
---|---|
Type | Description |
ServingConfigServiceClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings |
ServingConfigServiceSettings |
Returns | |
---|---|
Type | Description |
ServingConfigServiceClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
stub |
ServingConfigServiceStub |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings |
ServingConfigServiceSettings |
ServingConfigServiceClient(ServingConfigServiceStub stub)
protected ServingConfigServiceClient(ServingConfigServiceStub stub)
Parameter | |
---|---|
Name | Description |
stub |
ServingConfigServiceStub |
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 | |
---|---|
Name | Description |
request |
AddControlRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
servingConfig |
ServingConfigName Required. The source ServingConfig resource name . Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
servingConfig |
String Required. The source ServingConfig resource name . Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<AddControlRequest,ServingConfig> |
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration |
long |
unit |
TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent |
CatalogName Required. Full resource name of parent. Format:
|
servingConfig |
ServingConfig Required. The ServingConfig to create. |
servingConfigId |
String 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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request |
CreateServingConfigRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent |
String Required. Full resource name of parent. Format:
|
servingConfig |
ServingConfig Required. The ServingConfig to create. |
servingConfigId |
String 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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request |
DeleteServingConfigRequest 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 | |
---|---|
Name | Description |
name |
ServingConfigName Required. The resource name of the ServingConfig to delete. Format:
|
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 | |
---|---|
Name | Description |
name |
String Required. The resource name of the ServingConfig to delete. Format:
|
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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request |
GetServingConfigRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name |
ServingConfigName Required. The resource name of the ServingConfig to get. Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name |
String Required. The resource name of the ServingConfig to get. Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<GetServingConfigRequest,ServingConfig> |
getSettings()
public final ServingConfigServiceSettings getSettings()
Returns | |
---|---|
Type | Description |
ServingConfigServiceSettings |
getStub()
public ServingConfigServiceStub getStub()
Returns | |
---|---|
Type | Description |
ServingConfigServiceStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent |
CatalogName Required. The catalog resource name. Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request |
ListServingConfigsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent |
String Required. The catalog resource name. Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request |
RemoveControlRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
servingConfig |
ServingConfigName Required. The source ServingConfig resource name . Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
servingConfig |
String Required. The source ServingConfig resource name . Format:
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
servingConfig |
ServingConfig Required. The ServingConfig to update. |
updateMask |
FieldMask Indicates which fields in the provided ServingConfig to update. The following are NOT supported:
If not set, all supported fields are updated. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request |
UpdateServingConfigRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<UpdateServingConfigRequest,ServingConfig> |