Reference documentation and code samples for the Workflows Executions V1 API class Google::Cloud::Workflows::Executions::V1::Executions::Rest::Client.
REST client for the Executions service.
Executions is used to start and manage running instances of [Workflows][google.cloud.workflows.v1.Workflow] called executions.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the Executions Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all Executions clients ::Google::Cloud::Workflows::Executions::V1::Executions::Rest::Client.configure do |config| config.timeout = 10.0 end
#cancel_execution
def cancel_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
def cancel_execution(name: nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
Cancels an execution of the given name.
def cancel_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
cancel_execution
via a request object, either of type
CancelExecutionRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1::CancelExecutionRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def cancel_execution(name: nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
cancel_execution
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Name of the execution to be cancelled. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Workflows::Executions::V1::Execution)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the Executions Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_execution
def create_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
def create_execution(parent: nil, execution: nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
Creates a new execution using the latest revision of the given workflow.
def create_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
create_execution
via a request object, either of type
CreateExecutionRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1::CreateExecutionRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def create_execution(parent: nil, execution: nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
create_execution
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- parent (::String) — Required. Name of the workflow for which an execution should be created. Format: projects/{project}/locations/{location}/workflows/{workflow} The latest revision of the workflow will be used.
- execution (::Google::Cloud::Workflows::Executions::V1::Execution, ::Hash) — Required. Execution to be created.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Workflows::Executions::V1::Execution)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
#get_execution
def get_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
def get_execution(name: nil, view: nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
Returns an execution of the given name.
def get_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
get_execution
via a request object, either of type
GetExecutionRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1::GetExecutionRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_execution(name: nil, view: nil) -> ::Google::Cloud::Workflows::Executions::V1::Execution
get_execution
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Name of the execution to be retrieved. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
- view (::Google::Cloud::Workflows::Executions::V1::ExecutionView) — Optional. A view defining which fields should be filled in the returned execution. The API will default to the FULL view.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Workflows::Executions::V1::Execution)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
#initialize
def initialize() { |config| ... } -> Client
Create a new Executions REST client object.
- (config) — Configure the Executions client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Workflows::Executions::V1::Executions::Rest::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Workflows::Executions::V1::Executions::Rest::Client.new do |config| config.timeout = 10.0 end
#list_executions
def list_executions(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1::Execution>
def list_executions(parent: nil, page_size: nil, page_token: nil, view: nil, filter: nil, order_by: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1::Execution>
Returns a list of executions which belong to the workflow with the given name. The method returns executions of all workflow revisions. Returned executions are ordered by their start time (newest first).
def list_executions(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1::Execution>
list_executions
via a request object, either of type
ListExecutionsRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1::ListExecutionsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_executions(parent: nil, page_size: nil, page_token: nil, view: nil, filter: nil, order_by: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1::Execution>
list_executions
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- parent (::String) — Required. Name of the workflow for which the executions should be listed. Format: projects/{project}/locations/{location}/workflows/{workflow}
- page_size (::Integer) — Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 1000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it.
-
page_token (::String) — A page token, received from a previous
ListExecutions
call. Provide this to retrieve the subsequent page.When paginating, all other parameters provided to
ListExecutions
must match the call that provided the page token.Note that pagination is applied to dynamic data. The list of executions returned can change between page requests.
- view (::Google::Cloud::Workflows::Executions::V1::ExecutionView) — Optional. A view defining which fields should be filled in the returned executions. The API will default to the BASIC view.
- filter (::String) — Optional. Filters applied to the [Executions.ListExecutions] results. The following fields are supported for filtering: executionID, state, startTime, endTime, duration, workflowRevisionID, stepName, and label.
- order_by (::String) — Optional. The ordering applied to the [Executions.ListExecutions] results. By default the ordering is based on descending start time. The following fields are supported for order by: executionID, startTime, endTime, duration, state, and workflowRevisionID.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1::Execution>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1::Execution>)
- (::Google::Cloud::Error) — if the REST call is aborted.