Class OnlineEvaluatorServiceClient
- All Implemented Interfaces:
BackgroundResource,AutoCloseable
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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient =
OnlineEvaluatorServiceClient.create()) {
OnlineEvaluatorName name =
OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]");
OnlineEvaluator response = onlineEvaluatorServiceClient.getOnlineEvaluator(name);
}
Note: close() needs to be called on the OnlineEvaluatorServiceClient 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 |
|---|---|---|
CreateOnlineEvaluator |
Creates an OnlineEvaluator in the given project and location. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetOnlineEvaluator |
Gets details of an OnlineEvaluator. |
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.
|
UpdateOnlineEvaluator |
Updates the fields of an OnlineEvaluator. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteOnlineEvaluator |
Deletes an OnlineEvaluator. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListOnlineEvaluators |
Lists the OnlineEvaluators for the given project and location. |
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.
|
ActivateOnlineEvaluator |
Activates an OnlineEvaluator. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
SuspendOnlineEvaluator |
Suspends an OnlineEvaluator. When an OnlineEvaluator is suspended, it won't run any evaluations until it is activated again. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListLocations |
Lists information about the supported locations for this service. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetLocation |
Gets information about a location. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
SetIamPolicy |
Sets the access control policy on the specified resource. Replacesany existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetIamPolicy |
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
TestIamPermissions |
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 OnlineEvaluatorServiceSettings 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
OnlineEvaluatorServiceSettings onlineEvaluatorServiceSettings =
OnlineEvaluatorServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
OnlineEvaluatorServiceClient onlineEvaluatorServiceClient =
OnlineEvaluatorServiceClient.create(onlineEvaluatorServiceSettings);
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
OnlineEvaluatorServiceSettings onlineEvaluatorServiceSettings =
OnlineEvaluatorServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
OnlineEvaluatorServiceClient onlineEvaluatorServiceClient =
OnlineEvaluatorServiceClient.create(onlineEvaluatorServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic classstatic classstatic classstatic class -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructs an instance of OnlineEvaluatorServiceClient, using the given settings.protected -
Method Summary
Modifier and TypeMethodDescriptionActivates an OnlineEvaluator.Activates an OnlineEvaluator.Activates an OnlineEvaluator.Activates an OnlineEvaluator.final OperationCallable<ActivateOnlineEvaluatorRequest,OnlineEvaluator, ActivateOnlineEvaluatorOperationMetadata> Activates an OnlineEvaluator.booleanawaitTermination(long duration, TimeUnit unit) final voidclose()static final OnlineEvaluatorServiceClientcreate()Constructs an instance of OnlineEvaluatorServiceClient with default settings.static final OnlineEvaluatorServiceClientcreate(OnlineEvaluatorServiceSettings settings) Constructs an instance of OnlineEvaluatorServiceClient, using the given settings.static final OnlineEvaluatorServiceClientConstructs an instance of OnlineEvaluatorServiceClient, using the given stub for making calls.Creates an OnlineEvaluator in the given project and location.createOnlineEvaluatorAsync(LocationName parent, OnlineEvaluator onlineEvaluator) Creates an OnlineEvaluator in the given project and location.createOnlineEvaluatorAsync(String parent, OnlineEvaluator onlineEvaluator) Creates an OnlineEvaluator in the given project and location.Creates an OnlineEvaluator in the given project and location.final OperationCallable<CreateOnlineEvaluatorRequest,OnlineEvaluator, CreateOnlineEvaluatorOperationMetadata> Creates an OnlineEvaluator in the given project and location.final OperationFuture<com.google.protobuf.Empty,DeleteOnlineEvaluatorOperationMetadata> Deletes an OnlineEvaluator.final OperationFuture<com.google.protobuf.Empty,DeleteOnlineEvaluatorOperationMetadata> Deletes an OnlineEvaluator.final OperationFuture<com.google.protobuf.Empty,DeleteOnlineEvaluatorOperationMetadata> Deletes an OnlineEvaluator.Deletes an OnlineEvaluator.final OperationCallable<DeleteOnlineEvaluatorRequest,com.google.protobuf.Empty, DeleteOnlineEvaluatorOperationMetadata> Deletes an OnlineEvaluator.final PolicygetIamPolicy(GetIamPolicyRequest request) Gets the access control policy for a resource.Gets the access control policy for a resource.final LocationgetLocation(GetLocationRequest request) Gets information about a location.Gets information about a location.final OnlineEvaluatorGets details of an OnlineEvaluator.final OnlineEvaluatorGets details of an OnlineEvaluator.final OnlineEvaluatorgetOnlineEvaluator(String name) Gets details of an OnlineEvaluator.Gets details of an OnlineEvaluator.final OperationsClientReturns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.getStub()booleanbooleanlistLocations(ListLocationsRequest request) Lists information about the supported locations for this service.Lists information about the supported locations for this service.Lists information about the supported locations for this service.Lists the OnlineEvaluators for the given project and location.listOnlineEvaluators(LocationName parent) Lists the OnlineEvaluators for the given project and location.listOnlineEvaluators(String parent) Lists the OnlineEvaluators for the given project and location.Lists the OnlineEvaluators for the given project and location.final UnaryCallable<ListOnlineEvaluatorsRequest,OnlineEvaluatorServiceClient.ListOnlineEvaluatorsPagedResponse> Lists the OnlineEvaluators for the given project and location.final PolicysetIamPolicy(SetIamPolicyRequest request) Sets the access control policy on the specified resource.Sets the access control policy on the specified resource.voidshutdown()voidSuspends an OnlineEvaluator.Suspends an OnlineEvaluator.Suspends an OnlineEvaluator.Suspends an OnlineEvaluator.final OperationCallable<SuspendOnlineEvaluatorRequest,OnlineEvaluator, SuspendOnlineEvaluatorOperationMetadata> Suspends an OnlineEvaluator.Returns permissions that a caller has on the specified resource.Returns permissions that a caller has on the specified resource.updateOnlineEvaluatorAsync(OnlineEvaluator onlineEvaluator, com.google.protobuf.FieldMask updateMask) Updates the fields of an OnlineEvaluator.Updates the fields of an OnlineEvaluator.Updates the fields of an OnlineEvaluator.final OperationCallable<UpdateOnlineEvaluatorRequest,OnlineEvaluator, UpdateOnlineEvaluatorOperationMetadata> Updates the fields of an OnlineEvaluator.
-
Constructor Details
-
OnlineEvaluatorServiceClient
Constructs an instance of OnlineEvaluatorServiceClient, 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.- Throws:
IOException
-
OnlineEvaluatorServiceClient
-
-
Method Details
-
create
Constructs an instance of OnlineEvaluatorServiceClient with default settings.- Throws:
IOException
-
create
public static final OnlineEvaluatorServiceClient create(OnlineEvaluatorServiceSettings settings) throws IOException Constructs an instance of OnlineEvaluatorServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.- Throws:
IOException
-
create
Constructs an instance of OnlineEvaluatorServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(OnlineEvaluatorServiceSettings). -
getSettings
-
getStub
-
getOperationsClient
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call. -
createOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,CreateOnlineEvaluatorOperationMetadata> createOnlineEvaluatorAsync(LocationName parent, OnlineEvaluator onlineEvaluator) Creates an OnlineEvaluator in the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); OnlineEvaluator onlineEvaluator = OnlineEvaluator.newBuilder().build(); OnlineEvaluator response = onlineEvaluatorServiceClient.createOnlineEvaluatorAsync(parent, onlineEvaluator).get(); }- Parameters:
parent- Required. The parent resource where the OnlineEvaluator will be created. Format: projects/{project}/locations/{location}.onlineEvaluator- Required. The OnlineEvaluator to create.- Throws:
ApiException- if the remote call fails
-
createOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,CreateOnlineEvaluatorOperationMetadata> createOnlineEvaluatorAsync(String parent, OnlineEvaluator onlineEvaluator) Creates an OnlineEvaluator in the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); OnlineEvaluator onlineEvaluator = OnlineEvaluator.newBuilder().build(); OnlineEvaluator response = onlineEvaluatorServiceClient.createOnlineEvaluatorAsync(parent, onlineEvaluator).get(); }- Parameters:
parent- Required. The parent resource where the OnlineEvaluator will be created. Format: projects/{project}/locations/{location}.onlineEvaluator- Required. The OnlineEvaluator to create.- Throws:
ApiException- if the remote call fails
-
createOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,CreateOnlineEvaluatorOperationMetadata> createOnlineEvaluatorAsync(CreateOnlineEvaluatorRequest request) Creates an OnlineEvaluator in the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { CreateOnlineEvaluatorRequest request = CreateOnlineEvaluatorRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setOnlineEvaluator(OnlineEvaluator.newBuilder().build()) .build(); OnlineEvaluator response = onlineEvaluatorServiceClient.createOnlineEvaluatorAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
createOnlineEvaluatorOperationCallable
public final OperationCallable<CreateOnlineEvaluatorRequest,OnlineEvaluator, createOnlineEvaluatorOperationCallable()CreateOnlineEvaluatorOperationMetadata> Creates an OnlineEvaluator in the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { CreateOnlineEvaluatorRequest request = CreateOnlineEvaluatorRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setOnlineEvaluator(OnlineEvaluator.newBuilder().build()) .build(); OperationFuture<OnlineEvaluator, CreateOnlineEvaluatorOperationMetadata> future = onlineEvaluatorServiceClient.createOnlineEvaluatorOperationCallable().futureCall(request); // Do something. OnlineEvaluator response = future.get(); } -
createOnlineEvaluatorCallable
Creates an OnlineEvaluator in the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { CreateOnlineEvaluatorRequest request = CreateOnlineEvaluatorRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setOnlineEvaluator(OnlineEvaluator.newBuilder().build()) .build(); ApiFuture<Operation> future = onlineEvaluatorServiceClient.createOnlineEvaluatorCallable().futureCall(request); // Do something. Operation response = future.get(); } -
getOnlineEvaluator
Gets details of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { OnlineEvaluatorName name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]"); OnlineEvaluator response = onlineEvaluatorServiceClient.getOnlineEvaluator(name); }- Parameters:
name- Required. The name of the OnlineEvaluator to retrieve. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
getOnlineEvaluator
Gets details of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { String name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]").toString(); OnlineEvaluator response = onlineEvaluatorServiceClient.getOnlineEvaluator(name); }- Parameters:
name- Required. The name of the OnlineEvaluator to retrieve. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
getOnlineEvaluator
Gets details of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { GetOnlineEvaluatorRequest request = GetOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); OnlineEvaluator response = onlineEvaluatorServiceClient.getOnlineEvaluator(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getOnlineEvaluatorCallable
Gets details of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { GetOnlineEvaluatorRequest request = GetOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); ApiFuture<OnlineEvaluator> future = onlineEvaluatorServiceClient.getOnlineEvaluatorCallable().futureCall(request); // Do something. OnlineEvaluator response = future.get(); } -
updateOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,UpdateOnlineEvaluatorOperationMetadata> updateOnlineEvaluatorAsync(OnlineEvaluator onlineEvaluator, com.google.protobuf.FieldMask updateMask) Updates the fields of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { OnlineEvaluator onlineEvaluator = OnlineEvaluator.newBuilder().build(); FieldMask updateMask = FieldMask.newBuilder().build(); OnlineEvaluator response = onlineEvaluatorServiceClient .updateOnlineEvaluatorAsync(onlineEvaluator, updateMask) .get(); }- Parameters:
onlineEvaluator- Required. The OnlineEvaluator to update. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.updateMask- Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated.- Throws:
ApiException- if the remote call fails
-
updateOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,UpdateOnlineEvaluatorOperationMetadata> updateOnlineEvaluatorAsync(UpdateOnlineEvaluatorRequest request) Updates the fields of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { UpdateOnlineEvaluatorRequest request = UpdateOnlineEvaluatorRequest.newBuilder() .setOnlineEvaluator(OnlineEvaluator.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); OnlineEvaluator response = onlineEvaluatorServiceClient.updateOnlineEvaluatorAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
updateOnlineEvaluatorOperationCallable
public final OperationCallable<UpdateOnlineEvaluatorRequest,OnlineEvaluator, updateOnlineEvaluatorOperationCallable()UpdateOnlineEvaluatorOperationMetadata> Updates the fields of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { UpdateOnlineEvaluatorRequest request = UpdateOnlineEvaluatorRequest.newBuilder() .setOnlineEvaluator(OnlineEvaluator.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); OperationFuture<OnlineEvaluator, UpdateOnlineEvaluatorOperationMetadata> future = onlineEvaluatorServiceClient.updateOnlineEvaluatorOperationCallable().futureCall(request); // Do something. OnlineEvaluator response = future.get(); } -
updateOnlineEvaluatorCallable
Updates the fields of an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { UpdateOnlineEvaluatorRequest request = UpdateOnlineEvaluatorRequest.newBuilder() .setOnlineEvaluator(OnlineEvaluator.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<Operation> future = onlineEvaluatorServiceClient.updateOnlineEvaluatorCallable().futureCall(request); // Do something. Operation response = future.get(); } -
deleteOnlineEvaluatorAsync
public final OperationFuture<com.google.protobuf.Empty,DeleteOnlineEvaluatorOperationMetadata> deleteOnlineEvaluatorAsync(OnlineEvaluatorName name) Deletes an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { OnlineEvaluatorName name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]"); onlineEvaluatorServiceClient.deleteOnlineEvaluatorAsync(name).get(); }- Parameters:
name- Required. The name of the OnlineEvaluator to delete. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
deleteOnlineEvaluatorAsync
public final OperationFuture<com.google.protobuf.Empty,DeleteOnlineEvaluatorOperationMetadata> deleteOnlineEvaluatorAsync(String name) Deletes an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { String name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]").toString(); onlineEvaluatorServiceClient.deleteOnlineEvaluatorAsync(name).get(); }- Parameters:
name- Required. The name of the OnlineEvaluator to delete. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
deleteOnlineEvaluatorAsync
public final OperationFuture<com.google.protobuf.Empty,DeleteOnlineEvaluatorOperationMetadata> deleteOnlineEvaluatorAsync(DeleteOnlineEvaluatorRequest request) Deletes an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { DeleteOnlineEvaluatorRequest request = DeleteOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); onlineEvaluatorServiceClient.deleteOnlineEvaluatorAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
deleteOnlineEvaluatorOperationCallable
public final OperationCallable<DeleteOnlineEvaluatorRequest,com.google.protobuf.Empty, deleteOnlineEvaluatorOperationCallable()DeleteOnlineEvaluatorOperationMetadata> Deletes an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { DeleteOnlineEvaluatorRequest request = DeleteOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); OperationFuture<Empty, DeleteOnlineEvaluatorOperationMetadata> future = onlineEvaluatorServiceClient.deleteOnlineEvaluatorOperationCallable().futureCall(request); // Do something. future.get(); } -
deleteOnlineEvaluatorCallable
Deletes an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { DeleteOnlineEvaluatorRequest request = DeleteOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); ApiFuture<Operation> future = onlineEvaluatorServiceClient.deleteOnlineEvaluatorCallable().futureCall(request); // Do something. future.get(); } -
listOnlineEvaluators
public final OnlineEvaluatorServiceClient.ListOnlineEvaluatorsPagedResponse listOnlineEvaluators(LocationName parent) Lists the OnlineEvaluators for the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); for (OnlineEvaluator element : onlineEvaluatorServiceClient.listOnlineEvaluators(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The parent resource of the OnlineEvaluators to list. Format: projects/{project}/locations/{location}.- Throws:
ApiException- if the remote call fails
-
listOnlineEvaluators
public final OnlineEvaluatorServiceClient.ListOnlineEvaluatorsPagedResponse listOnlineEvaluators(String parent) Lists the OnlineEvaluators for the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); for (OnlineEvaluator element : onlineEvaluatorServiceClient.listOnlineEvaluators(parent).iterateAll()) { // doThingsWith(element); } }- Parameters:
parent- Required. The parent resource of the OnlineEvaluators to list. Format: projects/{project}/locations/{location}.- Throws:
ApiException- if the remote call fails
-
listOnlineEvaluators
public final OnlineEvaluatorServiceClient.ListOnlineEvaluatorsPagedResponse listOnlineEvaluators(ListOnlineEvaluatorsRequest request) Lists the OnlineEvaluators for the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ListOnlineEvaluatorsRequest request = ListOnlineEvaluatorsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); for (OnlineEvaluator element : onlineEvaluatorServiceClient.listOnlineEvaluators(request).iterateAll()) { // doThingsWith(element); } }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
listOnlineEvaluatorsPagedCallable
public final UnaryCallable<ListOnlineEvaluatorsRequest,OnlineEvaluatorServiceClient.ListOnlineEvaluatorsPagedResponse> listOnlineEvaluatorsPagedCallable()Lists the OnlineEvaluators for the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ListOnlineEvaluatorsRequest request = ListOnlineEvaluatorsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); ApiFuture<OnlineEvaluator> future = onlineEvaluatorServiceClient.listOnlineEvaluatorsPagedCallable().futureCall(request); // Do something. for (OnlineEvaluator element : future.get().iterateAll()) { // doThingsWith(element); } } -
listOnlineEvaluatorsCallable
public final UnaryCallable<ListOnlineEvaluatorsRequest,ListOnlineEvaluatorsResponse> listOnlineEvaluatorsCallable()Lists the OnlineEvaluators for the given project and location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ListOnlineEvaluatorsRequest request = ListOnlineEvaluatorsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .setFilter("filter-1274492040") .setOrderBy("orderBy-1207110587") .build(); while (true) { ListOnlineEvaluatorsResponse response = onlineEvaluatorServiceClient.listOnlineEvaluatorsCallable().call(request); for (OnlineEvaluator element : response.getOnlineEvaluatorsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
activateOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,ActivateOnlineEvaluatorOperationMetadata> activateOnlineEvaluatorAsync(OnlineEvaluatorName name) Activates an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { OnlineEvaluatorName name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]"); OnlineEvaluator response = onlineEvaluatorServiceClient.activateOnlineEvaluatorAsync(name).get(); }- Parameters:
name- Required. The name of the OnlineEvaluator to activate. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
activateOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,ActivateOnlineEvaluatorOperationMetadata> activateOnlineEvaluatorAsync(String name) Activates an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { String name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]").toString(); OnlineEvaluator response = onlineEvaluatorServiceClient.activateOnlineEvaluatorAsync(name).get(); }- Parameters:
name- Required. The name of the OnlineEvaluator to activate. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
activateOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,ActivateOnlineEvaluatorOperationMetadata> activateOnlineEvaluatorAsync(ActivateOnlineEvaluatorRequest request) Activates an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ActivateOnlineEvaluatorRequest request = ActivateOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); OnlineEvaluator response = onlineEvaluatorServiceClient.activateOnlineEvaluatorAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
activateOnlineEvaluatorOperationCallable
public final OperationCallable<ActivateOnlineEvaluatorRequest,OnlineEvaluator, activateOnlineEvaluatorOperationCallable()ActivateOnlineEvaluatorOperationMetadata> Activates an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ActivateOnlineEvaluatorRequest request = ActivateOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); OperationFuture<OnlineEvaluator, ActivateOnlineEvaluatorOperationMetadata> future = onlineEvaluatorServiceClient .activateOnlineEvaluatorOperationCallable() .futureCall(request); // Do something. OnlineEvaluator response = future.get(); } -
activateOnlineEvaluatorCallable
public final UnaryCallable<ActivateOnlineEvaluatorRequest,Operation> activateOnlineEvaluatorCallable()Activates an OnlineEvaluator.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ActivateOnlineEvaluatorRequest request = ActivateOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); ApiFuture<Operation> future = onlineEvaluatorServiceClient.activateOnlineEvaluatorCallable().futureCall(request); // Do something. Operation response = future.get(); } -
suspendOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,SuspendOnlineEvaluatorOperationMetadata> suspendOnlineEvaluatorAsync(OnlineEvaluatorName name) Suspends an OnlineEvaluator. When an OnlineEvaluator is suspended, it won't run any evaluations until it is activated again.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { OnlineEvaluatorName name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]"); OnlineEvaluator response = onlineEvaluatorServiceClient.suspendOnlineEvaluatorAsync(name).get(); }- Parameters:
name- Required. The name of the OnlineEvaluator to suspend. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
suspendOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,SuspendOnlineEvaluatorOperationMetadata> suspendOnlineEvaluatorAsync(String name) Suspends an OnlineEvaluator. When an OnlineEvaluator is suspended, it won't run any evaluations until it is activated again.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { String name = OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]").toString(); OnlineEvaluator response = onlineEvaluatorServiceClient.suspendOnlineEvaluatorAsync(name).get(); }- Parameters:
name- Required. The name of the OnlineEvaluator to suspend. Format: projects/{project}/locations/{location}/onlineEvaluators/{id}.- Throws:
ApiException- if the remote call fails
-
suspendOnlineEvaluatorAsync
public final OperationFuture<OnlineEvaluator,SuspendOnlineEvaluatorOperationMetadata> suspendOnlineEvaluatorAsync(SuspendOnlineEvaluatorRequest request) Suspends an OnlineEvaluator. When an OnlineEvaluator is suspended, it won't run any evaluations until it is activated again.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { SuspendOnlineEvaluatorRequest request = SuspendOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); OnlineEvaluator response = onlineEvaluatorServiceClient.suspendOnlineEvaluatorAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
suspendOnlineEvaluatorOperationCallable
public final OperationCallable<SuspendOnlineEvaluatorRequest,OnlineEvaluator, suspendOnlineEvaluatorOperationCallable()SuspendOnlineEvaluatorOperationMetadata> Suspends an OnlineEvaluator. When an OnlineEvaluator is suspended, it won't run any evaluations until it is activated again.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { SuspendOnlineEvaluatorRequest request = SuspendOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); OperationFuture<OnlineEvaluator, SuspendOnlineEvaluatorOperationMetadata> future = onlineEvaluatorServiceClient .suspendOnlineEvaluatorOperationCallable() .futureCall(request); // Do something. OnlineEvaluator response = future.get(); } -
suspendOnlineEvaluatorCallable
public final UnaryCallable<SuspendOnlineEvaluatorRequest,Operation> suspendOnlineEvaluatorCallable()Suspends an OnlineEvaluator. When an OnlineEvaluator is suspended, it won't run any evaluations until it is activated again.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { SuspendOnlineEvaluatorRequest request = SuspendOnlineEvaluatorRequest.newBuilder() .setName( OnlineEvaluatorName.of("[PROJECT]", "[LOCATION]", "[ONLINE_EVALUATOR]") .toString()) .build(); ApiFuture<Operation> future = onlineEvaluatorServiceClient.suspendOnlineEvaluatorCallable().futureCall(request); // Do something. Operation response = future.get(); } -
listLocations
public final OnlineEvaluatorServiceClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request) Lists information about the supported locations for this service.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); for (Location element : onlineEvaluatorServiceClient.listLocations(request).iterateAll()) { // doThingsWith(element); } }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
listLocationsPagedCallable
public final UnaryCallable<ListLocationsRequest,OnlineEvaluatorServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()Lists information about the supported locations for this service.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); ApiFuture<Location> future = onlineEvaluatorServiceClient.listLocationsPagedCallable().futureCall(request); // Do something. for (Location element : future.get().iterateAll()) { // doThingsWith(element); } } -
listLocationsCallable
Lists information about the supported locations for this service.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); while (true) { ListLocationsResponse response = onlineEvaluatorServiceClient.listLocationsCallable().call(request); for (Location element : response.getLocationsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
getLocation
Gets information about a location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); Location response = onlineEvaluatorServiceClient.getLocation(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getLocationCallable
Gets information about a location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); ApiFuture<Location> future = onlineEvaluatorServiceClient.getLocationCallable().futureCall(request); // Do something. Location response = future.get(); } -
setIamPolicy
Sets the access control policy on the specified resource. Replacesany existing policy.Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); Policy response = onlineEvaluatorServiceClient.setIamPolicy(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
setIamPolicyCallable
Sets the access control policy on the specified resource. Replacesany existing policy.Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<Policy> future = onlineEvaluatorServiceClient.setIamPolicyCallable().futureCall(request); // Do something. Policy response = future.get(); } -
getIamPolicy
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); Policy response = onlineEvaluatorServiceClient.getIamPolicy(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getIamPolicyCallable
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); ApiFuture<Policy> future = onlineEvaluatorServiceClient.getIamPolicyCallable().futureCall(request); // Do something. Policy response = future.get(); } -
testIamPermissions
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); TestIamPermissionsResponse response = onlineEvaluatorServiceClient.testIamPermissions(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
testIamPermissionsCallable
public final UnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsCallable()Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (OnlineEvaluatorServiceClient onlineEvaluatorServiceClient = OnlineEvaluatorServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); ApiFuture<TestIamPermissionsResponse> future = onlineEvaluatorServiceClient.testIamPermissionsCallable().futureCall(request); // Do something. TestIamPermissionsResponse response = future.get(); } -
close
public final void close()- Specified by:
closein interfaceAutoCloseable
-
shutdown
public void shutdown()- Specified by:
shutdownin interfaceBackgroundResource
-
isShutdown
public boolean isShutdown()- Specified by:
isShutdownin interfaceBackgroundResource
-
isTerminated
public boolean isTerminated()- Specified by:
isTerminatedin interfaceBackgroundResource
-
shutdownNow
public void shutdownNow()- Specified by:
shutdownNowin interfaceBackgroundResource
-
awaitTermination
- Specified by:
awaitTerminationin interfaceBackgroundResource- Throws:
InterruptedException
-