google-cloud-workflow-executions overview (2.1.7)

com.google.cloud.workflows.executions.v1

A client to Workflow Executions API

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:


 try (ExecutionsClient executionsClient = ExecutionsClient.create()) {
   WorkflowName parent = WorkflowName.of("[PROJECT]", "[LOCATION]", "[WORKFLOW]");
   Execution execution = Execution.newBuilder().build();
   Execution response = executionsClient.createExecution(parent, execution);
 }
 

com.google.cloud.workflows.executions.v1.stub

com.google.cloud.workflows.executions.v1beta

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:


 try (ExecutionsClient executionsClient = ExecutionsClient.create()) {
   WorkflowName parent = WorkflowName.of("[PROJECT]", "[LOCATION]", "[WORKFLOW]");
   Execution execution = Execution.newBuilder().build();
   Execution response = executionsClient.createExecution(parent, execution);
 }
 

com.google.cloud.workflows.executions.v1beta.stub