Class ExperimentsClient (0.52.0)

GitHub RepositoryProduct ReferenceREST DocumentationRPC Documentation

Service Description: Service for managing Experiments.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ExperimentName name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]");
   Experiment response = experimentsClient.getExperiment(name);
 }
 

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

Methods
MethodDescriptionMethod Variants

ListExperiments

Returns the list of all experiments in the specified Environment.

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

  • listExperiments(ListExperimentsRequest request)

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

  • listExperiments(EnvironmentName parent)

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

  • listExperimentsPagedCallable()

  • listExperimentsCallable()

GetExperiment

Retrieves the specified Experiment.

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

  • getExperiment(GetExperimentRequest request)

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

  • getExperiment(ExperimentName name)

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

  • getExperimentCallable()

CreateExperiment

Creates an Experiment in the specified Environment.

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

  • createExperiment(CreateExperimentRequest request)

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

  • createExperiment(EnvironmentName parent, Experiment experiment)

  • createExperiment(String parent, Experiment experiment)

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

  • createExperimentCallable()

UpdateExperiment

Updates the specified Experiment.

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

  • updateExperiment(UpdateExperimentRequest request)

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

  • updateExperiment(Experiment experiment, FieldMask updateMask)

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

  • updateExperimentCallable()

DeleteExperiment

Deletes the specified Experiment.

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

  • deleteExperiment(DeleteExperimentRequest request)

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

  • deleteExperiment(ExperimentName name)

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

  • deleteExperimentCallable()

StartExperiment

Starts the specified Experiment. This rpc only changes the state of experiment from PENDING to RUNNING.

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

  • startExperiment(StartExperimentRequest request)

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

  • startExperiment(ExperimentName name)

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

  • startExperimentCallable()

StopExperiment

Stops the specified Experiment. This rpc only changes the state of experiment from RUNNING to DONE.

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

  • stopExperiment(StopExperimentRequest request)

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

  • stopExperiment(ExperimentName name)

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

  • stopExperimentCallable()

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 ExperimentsSettings 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
 ExperimentsSettings experimentsSettings =
     ExperimentsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ExperimentsClient experimentsClient = ExperimentsClient.create(experimentsSettings);
 

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
 ExperimentsSettings experimentsSettings =
     ExperimentsSettings.newBuilder().setEndpoint(myEndpoint).build();
 ExperimentsClient experimentsClient = ExperimentsClient.create(experimentsSettings);
 

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
 ExperimentsSettings experimentsSettings = ExperimentsSettings.newHttpJsonBuilder().build();
 ExperimentsClient experimentsClient = ExperimentsClient.create(experimentsSettings);
 

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

Inheritance

java.lang.Object > ExperimentsClient

Static Methods

create()

public static final ExperimentsClient create()

Constructs an instance of ExperimentsClient with default settings.

Returns
TypeDescription
ExperimentsClient
Exceptions
TypeDescription
IOException

create(ExperimentsSettings settings)

public static final ExperimentsClient create(ExperimentsSettings settings)

Constructs an instance of ExperimentsClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsExperimentsSettings
Returns
TypeDescription
ExperimentsClient
Exceptions
TypeDescription
IOException

create(ExperimentsStub stub)

public static final ExperimentsClient create(ExperimentsStub stub)

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

Parameter
NameDescription
stubExperimentsStub
Returns
TypeDescription
ExperimentsClient

Constructors

ExperimentsClient(ExperimentsSettings settings)

protected ExperimentsClient(ExperimentsSettings settings)

Constructs an instance of ExperimentsClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.

Parameter
NameDescription
settingsExperimentsSettings

ExperimentsClient(ExperimentsStub stub)

protected ExperimentsClient(ExperimentsStub stub)
Parameter
NameDescription
stubExperimentsStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

createExperiment(CreateExperimentRequest request)

public final Experiment createExperiment(CreateExperimentRequest request)

Creates an Experiment in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   CreateExperimentRequest request =
       CreateExperimentRequest.newBuilder()
           .setParent(
               EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]")
                   .toString())
           .setExperiment(Experiment.newBuilder().build())
           .build();
   Experiment response = experimentsClient.createExperiment(request);
 }
 
Parameter
NameDescription
requestCreateExperimentRequest

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

Returns
TypeDescription
Experiment

createExperiment(EnvironmentName parent, Experiment experiment)

public final Experiment createExperiment(EnvironmentName parent, Experiment experiment)

Creates an Experiment in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   EnvironmentName parent =
       EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]");
   Experiment experiment = Experiment.newBuilder().build();
   Experiment response = experimentsClient.createExperiment(parent, experiment);
 }
 
Parameters
NameDescription
parentEnvironmentName

Required. The Agent to create an Environment for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>.

experimentExperiment

Required. The experiment to create.

Returns
TypeDescription
Experiment

createExperiment(String parent, Experiment experiment)

public final Experiment createExperiment(String parent, Experiment experiment)

Creates an Experiment in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   String parent =
       EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]").toString();
   Experiment experiment = Experiment.newBuilder().build();
   Experiment response = experimentsClient.createExperiment(parent, experiment);
 }
 
Parameters
NameDescription
parentString

Required. The Agent to create an Environment for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>.

experimentExperiment

Required. The experiment to create.

Returns
TypeDescription
Experiment

createExperimentCallable()

public final UnaryCallable<CreateExperimentRequest,Experiment> createExperimentCallable()

Creates an Experiment in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   CreateExperimentRequest request =
       CreateExperimentRequest.newBuilder()
           .setParent(
               EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]")
                   .toString())
           .setExperiment(Experiment.newBuilder().build())
           .build();
   ApiFuture<Experiment> future =
       experimentsClient.createExperimentCallable().futureCall(request);
   // Do something.
   Experiment response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateExperimentRequest,Experiment>

deleteExperiment(DeleteExperimentRequest request)

public final void deleteExperiment(DeleteExperimentRequest request)

Deletes the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   DeleteExperimentRequest request =
       DeleteExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   experimentsClient.deleteExperiment(request);
 }
 
Parameter
NameDescription
requestDeleteExperimentRequest

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

deleteExperiment(ExperimentName name)

public final void deleteExperiment(ExperimentName name)

Deletes the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ExperimentName name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]");
   experimentsClient.deleteExperiment(name);
 }
 
Parameter
NameDescription
nameExperimentName

Required. The name of the Environment to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

deleteExperiment(String name)

public final void deleteExperiment(String name)

Deletes the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   String name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
           .toString();
   experimentsClient.deleteExperiment(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the Environment to delete. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

deleteExperimentCallable()

public final UnaryCallable<DeleteExperimentRequest,Empty> deleteExperimentCallable()

Deletes the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   DeleteExperimentRequest request =
       DeleteExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   ApiFuture<Empty> future = experimentsClient.deleteExperimentCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteExperimentRequest,Empty>

getExperiment(ExperimentName name)

public final Experiment getExperiment(ExperimentName name)

Retrieves the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ExperimentName name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]");
   Experiment response = experimentsClient.getExperiment(name);
 }
 
Parameter
NameDescription
nameExperimentName

Required. The name of the Environment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

Returns
TypeDescription
Experiment

getExperiment(GetExperimentRequest request)

public final Experiment getExperiment(GetExperimentRequest request)

Retrieves the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   GetExperimentRequest request =
       GetExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   Experiment response = experimentsClient.getExperiment(request);
 }
 
Parameter
NameDescription
requestGetExperimentRequest

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

Returns
TypeDescription
Experiment

getExperiment(String name)

public final Experiment getExperiment(String name)

Retrieves the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   String name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
           .toString();
   Experiment response = experimentsClient.getExperiment(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the Environment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

Returns
TypeDescription
Experiment

getExperimentCallable()

public final UnaryCallable<GetExperimentRequest,Experiment> getExperimentCallable()

Retrieves the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   GetExperimentRequest request =
       GetExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   ApiFuture<Experiment> future = experimentsClient.getExperimentCallable().futureCall(request);
   // Do something.
   Experiment response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetExperimentRequest,Experiment>

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   Location response = experimentsClient.getLocation(request);
 }
 
Parameter
NameDescription
requestcom.google.cloud.location.GetLocationRequest

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

Returns
TypeDescription
com.google.cloud.location.Location

getLocationCallable()

public final UnaryCallable<GetLocationRequest,Location> getLocationCallable()

Gets information about a location.

Sample code:


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

getSettings()

public final ExperimentsSettings getSettings()
Returns
TypeDescription
ExperimentsSettings

getStub()

public ExperimentsStub getStub()
Returns
TypeDescription
ExperimentsStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listExperiments(EnvironmentName parent)

public final ExperimentsClient.ListExperimentsPagedResponse listExperiments(EnvironmentName parent)

Returns the list of all experiments in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   EnvironmentName parent =
       EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]");
   for (Experiment element : experimentsClient.listExperiments(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentEnvironmentName

Required. The Environment to list all environments for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>.

Returns
TypeDescription
ExperimentsClient.ListExperimentsPagedResponse

listExperiments(ListExperimentsRequest request)

public final ExperimentsClient.ListExperimentsPagedResponse listExperiments(ListExperimentsRequest request)

Returns the list of all experiments in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ListExperimentsRequest request =
       ListExperimentsRequest.newBuilder()
           .setParent(
               EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Experiment element : experimentsClient.listExperiments(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListExperimentsRequest

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

Returns
TypeDescription
ExperimentsClient.ListExperimentsPagedResponse

listExperiments(String parent)

public final ExperimentsClient.ListExperimentsPagedResponse listExperiments(String parent)

Returns the list of all experiments in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   String parent =
       EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]").toString();
   for (Experiment element : experimentsClient.listExperiments(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The Environment to list all environments for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>.

Returns
TypeDescription
ExperimentsClient.ListExperimentsPagedResponse

listExperimentsCallable()

public final UnaryCallable<ListExperimentsRequest,ListExperimentsResponse> listExperimentsCallable()

Returns the list of all experiments in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ListExperimentsRequest request =
       ListExperimentsRequest.newBuilder()
           .setParent(
               EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListExperimentsResponse response =
         experimentsClient.listExperimentsCallable().call(request);
     for (Experiment element : response.getExperimentsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListExperimentsRequest,ListExperimentsResponse>

listExperimentsPagedCallable()

public final UnaryCallable<ListExperimentsRequest,ExperimentsClient.ListExperimentsPagedResponse> listExperimentsPagedCallable()

Returns the list of all experiments in the specified Environment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ListExperimentsRequest request =
       ListExperimentsRequest.newBuilder()
           .setParent(
               EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Experiment> future =
       experimentsClient.listExperimentsPagedCallable().futureCall(request);
   // Do something.
   for (Experiment element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListExperimentsRequest,ListExperimentsPagedResponse>

listLocations(ListLocationsRequest request)

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

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

Returns
TypeDescription
ExperimentsClient.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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListLocationsResponse response = experimentsClient.listLocationsCallable().call(request);
     for (Location element : response.getLocationsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse>

listLocationsPagedCallable()

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

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

startExperiment(ExperimentName name)

public final Experiment startExperiment(ExperimentName name)

Starts the specified Experiment. This rpc only changes the state of experiment from PENDING to RUNNING.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ExperimentName name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]");
   Experiment response = experimentsClient.startExperiment(name);
 }
 
Parameter
NameDescription
nameExperimentName

Required. Resource name of the experiment to start. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

Returns
TypeDescription
Experiment

startExperiment(StartExperimentRequest request)

public final Experiment startExperiment(StartExperimentRequest request)

Starts the specified Experiment. This rpc only changes the state of experiment from PENDING to RUNNING.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   StartExperimentRequest request =
       StartExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   Experiment response = experimentsClient.startExperiment(request);
 }
 
Parameter
NameDescription
requestStartExperimentRequest

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

Returns
TypeDescription
Experiment

startExperiment(String name)

public final Experiment startExperiment(String name)

Starts the specified Experiment. This rpc only changes the state of experiment from PENDING to RUNNING.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   String name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
           .toString();
   Experiment response = experimentsClient.startExperiment(name);
 }
 
Parameter
NameDescription
nameString

Required. Resource name of the experiment to start. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

Returns
TypeDescription
Experiment

startExperimentCallable()

public final UnaryCallable<StartExperimentRequest,Experiment> startExperimentCallable()

Starts the specified Experiment. This rpc only changes the state of experiment from PENDING to RUNNING.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   StartExperimentRequest request =
       StartExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   ApiFuture<Experiment> future =
       experimentsClient.startExperimentCallable().futureCall(request);
   // Do something.
   Experiment response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<StartExperimentRequest,Experiment>

stopExperiment(ExperimentName name)

public final Experiment stopExperiment(ExperimentName name)

Stops the specified Experiment. This rpc only changes the state of experiment from RUNNING to DONE.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   ExperimentName name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]");
   Experiment response = experimentsClient.stopExperiment(name);
 }
 
Parameter
NameDescription
nameExperimentName

Required. Resource name of the experiment to stop. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

Returns
TypeDescription
Experiment

stopExperiment(StopExperimentRequest request)

public final Experiment stopExperiment(StopExperimentRequest request)

Stops the specified Experiment. This rpc only changes the state of experiment from RUNNING to DONE.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   StopExperimentRequest request =
       StopExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   Experiment response = experimentsClient.stopExperiment(request);
 }
 
Parameter
NameDescription
requestStopExperimentRequest

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

Returns
TypeDescription
Experiment

stopExperiment(String name)

public final Experiment stopExperiment(String name)

Stops the specified Experiment. This rpc only changes the state of experiment from RUNNING to DONE.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   String name =
       ExperimentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
           .toString();
   Experiment response = experimentsClient.stopExperiment(name);
 }
 
Parameter
NameDescription
nameString

Required. Resource name of the experiment to stop. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/experiments/<Experiment ID>.

Returns
TypeDescription
Experiment

stopExperimentCallable()

public final UnaryCallable<StopExperimentRequest,Experiment> stopExperimentCallable()

Stops the specified Experiment. This rpc only changes the state of experiment from RUNNING to DONE.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   StopExperimentRequest request =
       StopExperimentRequest.newBuilder()
           .setName(
               ExperimentName.of(
                       "[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]", "[EXPERIMENT]")
                   .toString())
           .build();
   ApiFuture<Experiment> future = experimentsClient.stopExperimentCallable().futureCall(request);
   // Do something.
   Experiment response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<StopExperimentRequest,Experiment>

updateExperiment(Experiment experiment, FieldMask updateMask)

public final Experiment updateExperiment(Experiment experiment, FieldMask updateMask)

Updates the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   Experiment experiment = Experiment.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   Experiment response = experimentsClient.updateExperiment(experiment, updateMask);
 }
 
Parameters
NameDescription
experimentExperiment

Required. The experiment to update.

updateMaskFieldMask

Required. The mask to control which fields get updated.

Returns
TypeDescription
Experiment

updateExperiment(UpdateExperimentRequest request)

public final Experiment updateExperiment(UpdateExperimentRequest request)

Updates the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   UpdateExperimentRequest request =
       UpdateExperimentRequest.newBuilder()
           .setExperiment(Experiment.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   Experiment response = experimentsClient.updateExperiment(request);
 }
 
Parameter
NameDescription
requestUpdateExperimentRequest

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

Returns
TypeDescription
Experiment

updateExperimentCallable()

public final UnaryCallable<UpdateExperimentRequest,Experiment> updateExperimentCallable()

Updates the specified Experiment.

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 (ExperimentsClient experimentsClient = ExperimentsClient.create()) {
   UpdateExperimentRequest request =
       UpdateExperimentRequest.newBuilder()
           .setExperiment(Experiment.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<Experiment> future =
       experimentsClient.updateExperimentCallable().futureCall(request);
   // Do something.
   Experiment response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateExperimentRequest,Experiment>