Class GeneratorEvaluationsClient (4.87.0)

GitHub RepositoryProduct Reference

Service Description: Service for managing generator evaluations.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GeneratorEvaluationName name =
       GeneratorEvaluationName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]");
   GeneratorEvaluation response = generatorEvaluationsClient.getGeneratorEvaluation(name);
 }
 

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

Methods
Method Description Method Variants

CreateGeneratorEvaluation

Creates evaluation of a generator.

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

  • createGeneratorEvaluationAsync(CreateGeneratorEvaluationRequest request)

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

  • createGeneratorEvaluationAsync(GeneratorName parent, GeneratorEvaluation generatorEvaluation)

  • createGeneratorEvaluationAsync(String parent, GeneratorEvaluation generatorEvaluation)

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

  • createGeneratorEvaluationOperationCallable()

  • createGeneratorEvaluationCallable()

GetGeneratorEvaluation

Gets an evaluation of generator.

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

  • getGeneratorEvaluation(GetGeneratorEvaluationRequest request)

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

  • getGeneratorEvaluation(GeneratorEvaluationName name)

  • getGeneratorEvaluation(String name)

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

  • getGeneratorEvaluationCallable()

ListGeneratorEvaluations

Lists evaluations of generator.

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

  • listGeneratorEvaluations(ListGeneratorEvaluationsRequest request)

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

  • listGeneratorEvaluations(GeneratorName parent)

  • listGeneratorEvaluations(String parent)

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

  • listGeneratorEvaluationsPagedCallable()

  • listGeneratorEvaluationsCallable()

DeleteGeneratorEvaluation

Deletes an evaluation of generator.

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

  • deleteGeneratorEvaluation(DeleteGeneratorEvaluationRequest request)

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

  • deleteGeneratorEvaluation(GeneratorEvaluationName name)

  • deleteGeneratorEvaluation(String name)

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

  • deleteGeneratorEvaluationCallable()

ListLocations

Lists information about the supported locations for this service.

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

  • listLocations(ListLocationsRequest request)

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

  • listLocationsPagedCallable()

  • listLocationsCallable()

GetLocation

Gets information about a location.

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

  • getLocation(GetLocationRequest request)

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

  • getLocationCallable()

See the individual methods for example code.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

This class can be customized by passing in a custom instance of GeneratorEvaluationsSettings 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
 GeneratorEvaluationsSettings generatorEvaluationsSettings =
     GeneratorEvaluationsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create(generatorEvaluationsSettings);
 

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
 GeneratorEvaluationsSettings generatorEvaluationsSettings =
     GeneratorEvaluationsSettings.newBuilder().setEndpoint(myEndpoint).build();
 GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create(generatorEvaluationsSettings);
 

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
 GeneratorEvaluationsSettings generatorEvaluationsSettings =
     GeneratorEvaluationsSettings.newHttpJsonBuilder().build();
 GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create(generatorEvaluationsSettings);
 

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

Inheritance

java.lang.Object > GeneratorEvaluationsClient

Static Methods

create()

public static final GeneratorEvaluationsClient create()

Constructs an instance of GeneratorEvaluationsClient with default settings.

Returns
Type Description
GeneratorEvaluationsClient
Exceptions
Type Description
IOException

create(GeneratorEvaluationsSettings settings)

public static final GeneratorEvaluationsClient create(GeneratorEvaluationsSettings settings)

Constructs an instance of GeneratorEvaluationsClient, 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 GeneratorEvaluationsSettings
Returns
Type Description
GeneratorEvaluationsClient
Exceptions
Type Description
IOException

create(GeneratorEvaluationsStub stub)

public static final GeneratorEvaluationsClient create(GeneratorEvaluationsStub stub)

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

Parameter
Name Description
stub GeneratorEvaluationsStub
Returns
Type Description
GeneratorEvaluationsClient

Constructors

GeneratorEvaluationsClient(GeneratorEvaluationsSettings settings)

protected GeneratorEvaluationsClient(GeneratorEvaluationsSettings settings)

Constructs an instance of GeneratorEvaluationsClient, 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 GeneratorEvaluationsSettings

GeneratorEvaluationsClient(GeneratorEvaluationsStub stub)

protected GeneratorEvaluationsClient(GeneratorEvaluationsStub stub)
Parameter
Name Description
stub GeneratorEvaluationsStub

Methods

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

createGeneratorEvaluationAsync(CreateGeneratorEvaluationRequest request)

public final OperationFuture<GeneratorEvaluation,GeneratorEvaluationOperationMetadata> createGeneratorEvaluationAsync(CreateGeneratorEvaluationRequest request)

Creates evaluation of a generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   CreateGeneratorEvaluationRequest request =
       CreateGeneratorEvaluationRequest.newBuilder()
           .setParent(GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString())
           .setGeneratorEvaluation(GeneratorEvaluation.newBuilder().build())
           .build();
   GeneratorEvaluation response =
       generatorEvaluationsClient.createGeneratorEvaluationAsync(request).get();
 }
 
Parameter
Name Description
request CreateGeneratorEvaluationRequest

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

Returns
Type Description
OperationFuture<GeneratorEvaluation,GeneratorEvaluationOperationMetadata>

createGeneratorEvaluationAsync(GeneratorName parent, GeneratorEvaluation generatorEvaluation)

public final OperationFuture<GeneratorEvaluation,GeneratorEvaluationOperationMetadata> createGeneratorEvaluationAsync(GeneratorName parent, GeneratorEvaluation generatorEvaluation)

Creates evaluation of a generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GeneratorName parent = GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]");
   GeneratorEvaluation generatorEvaluation = GeneratorEvaluation.newBuilder().build();
   GeneratorEvaluation response =
       generatorEvaluationsClient
           .createGeneratorEvaluationAsync(parent, generatorEvaluation)
           .get();
 }
 
Parameters
Name Description
parent GeneratorName

Required. The generator resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID>

generatorEvaluation GeneratorEvaluation

Required. The generator evaluation to be created.

Returns
Type Description
OperationFuture<GeneratorEvaluation,GeneratorEvaluationOperationMetadata>

createGeneratorEvaluationAsync(String parent, GeneratorEvaluation generatorEvaluation)

public final OperationFuture<GeneratorEvaluation,GeneratorEvaluationOperationMetadata> createGeneratorEvaluationAsync(String parent, GeneratorEvaluation generatorEvaluation)

Creates evaluation of a generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   String parent = GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString();
   GeneratorEvaluation generatorEvaluation = GeneratorEvaluation.newBuilder().build();
   GeneratorEvaluation response =
       generatorEvaluationsClient
           .createGeneratorEvaluationAsync(parent, generatorEvaluation)
           .get();
 }
 
Parameters
Name Description
parent String

Required. The generator resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID>

generatorEvaluation GeneratorEvaluation

Required. The generator evaluation to be created.

Returns
Type Description
OperationFuture<GeneratorEvaluation,GeneratorEvaluationOperationMetadata>

createGeneratorEvaluationCallable()

public final UnaryCallable<CreateGeneratorEvaluationRequest,Operation> createGeneratorEvaluationCallable()

Creates evaluation of a generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   CreateGeneratorEvaluationRequest request =
       CreateGeneratorEvaluationRequest.newBuilder()
           .setParent(GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString())
           .setGeneratorEvaluation(GeneratorEvaluation.newBuilder().build())
           .build();
   ApiFuture<Operation> future =
       generatorEvaluationsClient.createGeneratorEvaluationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<CreateGeneratorEvaluationRequest,Operation>

createGeneratorEvaluationOperationCallable()

public final OperationCallable<CreateGeneratorEvaluationRequest,GeneratorEvaluation,GeneratorEvaluationOperationMetadata> createGeneratorEvaluationOperationCallable()

Creates evaluation of a generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   CreateGeneratorEvaluationRequest request =
       CreateGeneratorEvaluationRequest.newBuilder()
           .setParent(GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString())
           .setGeneratorEvaluation(GeneratorEvaluation.newBuilder().build())
           .build();
   OperationFuture<GeneratorEvaluation, GeneratorEvaluationOperationMetadata> future =
       generatorEvaluationsClient
           .createGeneratorEvaluationOperationCallable()
           .futureCall(request);
   // Do something.
   GeneratorEvaluation response = future.get();
 }
 
Returns
Type Description
OperationCallable<CreateGeneratorEvaluationRequest,GeneratorEvaluation,GeneratorEvaluationOperationMetadata>

deleteGeneratorEvaluation(DeleteGeneratorEvaluationRequest request)

public final void deleteGeneratorEvaluation(DeleteGeneratorEvaluationRequest request)

Deletes an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   DeleteGeneratorEvaluationRequest request =
       DeleteGeneratorEvaluationRequest.newBuilder()
           .setName(
               GeneratorEvaluationName.of(
                       "[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]")
                   .toString())
           .build();
   generatorEvaluationsClient.deleteGeneratorEvaluation(request);
 }
 
Parameter
Name Description
request DeleteGeneratorEvaluationRequest

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

deleteGeneratorEvaluation(GeneratorEvaluationName name)

public final void deleteGeneratorEvaluation(GeneratorEvaluationName name)

Deletes an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GeneratorEvaluationName name =
       GeneratorEvaluationName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]");
   generatorEvaluationsClient.deleteGeneratorEvaluation(name);
 }
 
Parameter
Name Description
name GeneratorEvaluationName

Required. The generator evaluation resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID>/ evaluations/<Evaluation ID>

deleteGeneratorEvaluation(String name)

public final void deleteGeneratorEvaluation(String name)

Deletes an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   String name =
       GeneratorEvaluationName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]")
           .toString();
   generatorEvaluationsClient.deleteGeneratorEvaluation(name);
 }
 
Parameter
Name Description
name String

Required. The generator evaluation resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID>/ evaluations/<Evaluation ID>

deleteGeneratorEvaluationCallable()

public final UnaryCallable<DeleteGeneratorEvaluationRequest,Empty> deleteGeneratorEvaluationCallable()

Deletes an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   DeleteGeneratorEvaluationRequest request =
       DeleteGeneratorEvaluationRequest.newBuilder()
           .setName(
               GeneratorEvaluationName.of(
                       "[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]")
                   .toString())
           .build();
   ApiFuture<Empty> future =
       generatorEvaluationsClient.deleteGeneratorEvaluationCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
Type Description
UnaryCallable<DeleteGeneratorEvaluationRequest,Empty>

getGeneratorEvaluation(GeneratorEvaluationName name)

public final GeneratorEvaluation getGeneratorEvaluation(GeneratorEvaluationName name)

Gets an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GeneratorEvaluationName name =
       GeneratorEvaluationName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]");
   GeneratorEvaluation response = generatorEvaluationsClient.getGeneratorEvaluation(name);
 }
 
Parameter
Name Description
name GeneratorEvaluationName

Required. The generator evaluation resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID>/evaluations/<Evaluation ID>

Returns
Type Description
GeneratorEvaluation

getGeneratorEvaluation(GetGeneratorEvaluationRequest request)

public final GeneratorEvaluation getGeneratorEvaluation(GetGeneratorEvaluationRequest request)

Gets an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GetGeneratorEvaluationRequest request =
       GetGeneratorEvaluationRequest.newBuilder()
           .setName(
               GeneratorEvaluationName.of(
                       "[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]")
                   .toString())
           .build();
   GeneratorEvaluation response = generatorEvaluationsClient.getGeneratorEvaluation(request);
 }
 
Parameter
Name Description
request GetGeneratorEvaluationRequest

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

Returns
Type Description
GeneratorEvaluation

getGeneratorEvaluation(String name)

public final GeneratorEvaluation getGeneratorEvaluation(String name)

Gets an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   String name =
       GeneratorEvaluationName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]")
           .toString();
   GeneratorEvaluation response = generatorEvaluationsClient.getGeneratorEvaluation(name);
 }
 
Parameter
Name Description
name String

Required. The generator evaluation resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID>/evaluations/<Evaluation ID>

Returns
Type Description
GeneratorEvaluation

getGeneratorEvaluationCallable()

public final UnaryCallable<GetGeneratorEvaluationRequest,GeneratorEvaluation> getGeneratorEvaluationCallable()

Gets an evaluation of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GetGeneratorEvaluationRequest request =
       GetGeneratorEvaluationRequest.newBuilder()
           .setName(
               GeneratorEvaluationName.of(
                       "[PROJECT]", "[LOCATION]", "[GENERATOR]", "[EVALUATION]")
                   .toString())
           .build();
   ApiFuture<GeneratorEvaluation> future =
       generatorEvaluationsClient.getGeneratorEvaluationCallable().futureCall(request);
   // Do something.
   GeneratorEvaluation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<GetGeneratorEvaluationRequest,GeneratorEvaluation>

getHttpJsonOperationsClient()

public final OperationsClient getHttpJsonOperationsClient()

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

Returns
Type Description
OperationsClient

getLocation(GetLocationRequest request)

public final Location getLocation(GetLocationRequest request)

Gets information about a location.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   Location response = generatorEvaluationsClient.getLocation(request);
 }
 
Parameter
Name Description
request com.google.cloud.location.GetLocationRequest

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

Returns
Type Description
com.google.cloud.location.Location

getLocationCallable()

public final UnaryCallable<GetLocationRequest,Location> getLocationCallable()

Gets information about a location.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   ApiFuture<Location> future =
       generatorEvaluationsClient.getLocationCallable().futureCall(request);
   // Do something.
   Location response = future.get();
 }
 
Returns
Type Description
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location>

getOperationsClient()

public final OperationsClient getOperationsClient()

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

Returns
Type Description
OperationsClient

getSettings()

public final GeneratorEvaluationsSettings getSettings()
Returns
Type Description
GeneratorEvaluationsSettings

getStub()

public GeneratorEvaluationsStub getStub()
Returns
Type Description
GeneratorEvaluationsStub

isShutdown()

public boolean isShutdown()
Returns
Type Description
boolean

isTerminated()

public boolean isTerminated()
Returns
Type Description
boolean

listGeneratorEvaluations(GeneratorName parent)

public final GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse listGeneratorEvaluations(GeneratorName parent)

Lists evaluations of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   GeneratorName parent = GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]");
   for (GeneratorEvaluation element :
       generatorEvaluationsClient.listGeneratorEvaluations(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
parent GeneratorName

Required. The generator resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID> Wildcard value - is supported on generator_id to list evaluations across all generators under same project.

Returns
Type Description
GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse

listGeneratorEvaluations(ListGeneratorEvaluationsRequest request)

public final GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse listGeneratorEvaluations(ListGeneratorEvaluationsRequest request)

Lists evaluations of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   ListGeneratorEvaluationsRequest request =
       ListGeneratorEvaluationsRequest.newBuilder()
           .setParent(GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (GeneratorEvaluation element :
       generatorEvaluationsClient.listGeneratorEvaluations(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
request ListGeneratorEvaluationsRequest

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

Returns
Type Description
GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse

listGeneratorEvaluations(String parent)

public final GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse listGeneratorEvaluations(String parent)

Lists evaluations of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   String parent = GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString();
   for (GeneratorEvaluation element :
       generatorEvaluationsClient.listGeneratorEvaluations(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
parent String

Required. The generator resource name. Format: projects/<Project ID>/locations/<Location ID>/generators/<Generator ID> Wildcard value - is supported on generator_id to list evaluations across all generators under same project.

Returns
Type Description
GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse

listGeneratorEvaluationsCallable()

public final UnaryCallable<ListGeneratorEvaluationsRequest,ListGeneratorEvaluationsResponse> listGeneratorEvaluationsCallable()

Lists evaluations of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   ListGeneratorEvaluationsRequest request =
       ListGeneratorEvaluationsRequest.newBuilder()
           .setParent(GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListGeneratorEvaluationsResponse response =
         generatorEvaluationsClient.listGeneratorEvaluationsCallable().call(request);
     for (GeneratorEvaluation element : response.getGeneratorEvaluationsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
Type Description
UnaryCallable<ListGeneratorEvaluationsRequest,ListGeneratorEvaluationsResponse>

listGeneratorEvaluationsPagedCallable()

public final UnaryCallable<ListGeneratorEvaluationsRequest,GeneratorEvaluationsClient.ListGeneratorEvaluationsPagedResponse> listGeneratorEvaluationsPagedCallable()

Lists evaluations of generator.

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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   ListGeneratorEvaluationsRequest request =
       ListGeneratorEvaluationsRequest.newBuilder()
           .setParent(GeneratorName.of("[PROJECT]", "[LOCATION]", "[GENERATOR]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<GeneratorEvaluation> future =
       generatorEvaluationsClient.listGeneratorEvaluationsPagedCallable().futureCall(request);
   // Do something.
   for (GeneratorEvaluation element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
Type Description
UnaryCallable<ListGeneratorEvaluationsRequest,ListGeneratorEvaluationsPagedResponse>

listLocations(ListLocationsRequest request)

public final GeneratorEvaluationsClient.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 (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Location element : generatorEvaluationsClient.listLocations(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
request com.google.cloud.location.ListLocationsRequest

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

Returns
Type Description
GeneratorEvaluationsClient.ListLocationsPagedResponse

listLocationsCallable()

public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> listLocationsCallable()

Lists information about the supported locations for this service.

Sample code:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (GeneratorEvaluationsClient generatorEvaluationsClient =
     GeneratorEvaluationsClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListLocationsResponse response =
         generatorEvaluationsClient.listLocationsCallable().call(request);
     for (Location element : response.getLocationsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
Type Description
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse>

listLocationsPagedCallable()

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

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()