Package com.google.cloud.workflows.executions.v1beta (2.2.0)

The interfaces provided are listed below, along with usage samples.

ExecutionsClient

Service Description: Executions is used to start and manage running instances of Workflows called executions.

Sample for ExecutionsClient:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (ExecutionsClient executionsClient = ExecutionsClient.create()) {
   WorkflowName parent = WorkflowName.of("[PROJECT]", "[LOCATION]", "[WORKFLOW]");
   Execution execution = Execution.newBuilder().build();
   Execution response = executionsClient.createExecution(parent, execution);
 }
 

Classes

CancelExecutionRequest

Request for the CancelExecution method.

Protobuf type google.cloud.workflows.executions.v1beta.CancelExecutionRequest

CancelExecutionRequest.Builder

Request for the CancelExecution method.

Protobuf type google.cloud.workflows.executions.v1beta.CancelExecutionRequest

CreateExecutionRequest

Request for the CreateExecution method.

Protobuf type google.cloud.workflows.executions.v1beta.CreateExecutionRequest

CreateExecutionRequest.Builder

Request for the CreateExecution method.

Protobuf type google.cloud.workflows.executions.v1beta.CreateExecutionRequest

Execution

A running instance of a Workflow.

Protobuf type google.cloud.workflows.executions.v1beta.Execution

Execution.Builder

A running instance of a Workflow.

Protobuf type google.cloud.workflows.executions.v1beta.Execution

Execution.Error

Error describes why the execution was abnormally terminated.

Protobuf type google.cloud.workflows.executions.v1beta.Execution.Error

Execution.Error.Builder

Error describes why the execution was abnormally terminated.

Protobuf type google.cloud.workflows.executions.v1beta.Execution.Error

ExecutionName

ExecutionName.Builder

Builder for projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}.

ExecutionsClient

Service Description: Executions is used to start and manage running instances of Workflows called executions.

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 for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (ExecutionsClient executionsClient = ExecutionsClient.create()) {
   WorkflowName parent = WorkflowName.of("[PROJECT]", "[LOCATION]", "[WORKFLOW]");
   Execution execution = Execution.newBuilder().build();
   Execution response = executionsClient.createExecution(parent, execution);
 }
 

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

The surface of this class includes several types of Java methods for each of the API's methods:

  1. A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
  2. A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
  3. A "callable" method. This type of method takes no parameters and returns 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 ExecutionsSettings to create(). For example:

To customize credentials:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 ExecutionsSettings executionsSettings =
     ExecutionsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ExecutionsClient executionsClient = ExecutionsClient.create(executionsSettings);
 

To customize the endpoint:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 ExecutionsSettings executionsSettings =
     ExecutionsSettings.newBuilder().setEndpoint(myEndpoint).build();
 ExecutionsClient executionsClient = ExecutionsClient.create(executionsSettings);
 

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

ExecutionsClient.ListExecutionsFixedSizeCollection

ExecutionsClient.ListExecutionsPage

ExecutionsClient.ListExecutionsPagedResponse

ExecutionsGrpc

Executions is used to start and manage running instances of Workflows called executions.

ExecutionsGrpc.ExecutionsBlockingStub

Executions is used to start and manage running instances of Workflows called executions.

ExecutionsGrpc.ExecutionsFutureStub

Executions is used to start and manage running instances of Workflows called executions.

ExecutionsGrpc.ExecutionsImplBase

Executions is used to start and manage running instances of Workflows called executions.

ExecutionsGrpc.ExecutionsStub

Executions is used to start and manage running instances of Workflows called executions.

ExecutionsProto

ExecutionsSettings

Settings class to configure an instance of ExecutionsClient.

The default instance has everything set to sensible defaults:

  • The default service address (workflowexecutions.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of createExecution to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 ExecutionsSettings.Builder executionsSettingsBuilder = ExecutionsSettings.newBuilder();
 executionsSettingsBuilder
     .createExecutionSettings()
     .setRetrySettings(
         executionsSettingsBuilder
             .createExecutionSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ExecutionsSettings executionsSettings = executionsSettingsBuilder.build();
 

ExecutionsSettings.Builder

Builder for ExecutionsSettings.

GetExecutionRequest

Request for the GetExecution method.

Protobuf type google.cloud.workflows.executions.v1beta.GetExecutionRequest

GetExecutionRequest.Builder

Request for the GetExecution method.

Protobuf type google.cloud.workflows.executions.v1beta.GetExecutionRequest

ListExecutionsRequest

Request for the ListExecutions method.

Protobuf type google.cloud.workflows.executions.v1beta.ListExecutionsRequest

ListExecutionsRequest.Builder

Request for the ListExecutions method.

Protobuf type google.cloud.workflows.executions.v1beta.ListExecutionsRequest

ListExecutionsResponse

Response for the ListExecutions method.

Protobuf type google.cloud.workflows.executions.v1beta.ListExecutionsResponse

ListExecutionsResponse.Builder

Response for the ListExecutions method.

Protobuf type google.cloud.workflows.executions.v1beta.ListExecutionsResponse

WorkflowName

WorkflowName.Builder

Builder for projects/{project}/locations/{location}/workflows/{workflow}.

Interfaces

CancelExecutionRequestOrBuilder

CreateExecutionRequestOrBuilder

Execution.ErrorOrBuilder

ExecutionOrBuilder

GetExecutionRequestOrBuilder

ListExecutionsRequestOrBuilder

ListExecutionsResponseOrBuilder

Enums

Execution.State

Describes the current state of the execution. More states may be added in the future.

Protobuf enum google.cloud.workflows.executions.v1beta.Execution.State

ExecutionView

Defines possible views for execution resource.

Protobuf enum google.cloud.workflows.executions.v1beta.ExecutionView