[BindServiceMethod(typeof(Workflows), "BindService")]
public abstract class Workflows.WorkflowsBase
Reference documentation and code samples for the Workflows v1 API class Workflows.WorkflowsBase.
Base class for server-side implementations of Workflows
Namespace
Google.Cloud.Workflows.V1Assembly
Google.Cloud.Workflows.V1.dll
Methods
CreateWorkflow(CreateWorkflowRequest, ServerCallContext)
public virtual Task<Operation> CreateWorkflow(CreateWorkflowRequest request, ServerCallContext context)
Creates a new workflow. If a workflow with the specified name already exists in the specified project and location, the long running operation returns a [ALREADY_EXISTS][google.rpc.Code.ALREADY_EXISTS] error.
Parameters | |
---|---|
Name | Description |
request |
CreateWorkflowRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |
DeleteWorkflow(DeleteWorkflowRequest, ServerCallContext)
public virtual Task<Operation> DeleteWorkflow(DeleteWorkflowRequest request, ServerCallContext context)
Deletes a workflow with the specified name. This method also cancels and deletes all running executions of the workflow.
Parameters | |
---|---|
Name | Description |
request |
DeleteWorkflowRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |
GetWorkflow(GetWorkflowRequest, ServerCallContext)
public virtual Task<Workflow> GetWorkflow(GetWorkflowRequest request, ServerCallContext context)
Gets details of a single workflow.
Parameters | |
---|---|
Name | Description |
request |
GetWorkflowRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskWorkflow |
The response to send back to the client (wrapped by a task). |
ListWorkflows(ListWorkflowsRequest, ServerCallContext)
public virtual Task<ListWorkflowsResponse> ListWorkflows(ListWorkflowsRequest request, ServerCallContext context)
Lists workflows in a given project and location. The default order is not specified.
Parameters | |
---|---|
Name | Description |
request |
ListWorkflowsRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskListWorkflowsResponse |
The response to send back to the client (wrapped by a task). |
UpdateWorkflow(UpdateWorkflowRequest, ServerCallContext)
public virtual Task<Operation> UpdateWorkflow(UpdateWorkflowRequest request, ServerCallContext context)
Updates an existing workflow. Running this method has no impact on already running executions of the workflow. A new revision of the workflow might be created as a result of a successful update operation. In that case, the new revision is used in new workflow executions.
Parameters | |
---|---|
Name | Description |
request |
UpdateWorkflowRequest The request received from the client. |
context |
ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskOperation |
The response to send back to the client (wrapped by a task). |