Reference documentation and code samples for the Workflows Executions V1beta API class Google::Cloud::Workflows::Executions::V1beta::Executions::Client.
Client for the Executions service.
Executions is used to start and manage running instances of [Workflows][google.cloud.workflows.v1beta.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::V1beta::Executions::Client.configure do |config| config.timeout = 10.0 end
#cancel_execution
def cancel_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
def cancel_execution(name: nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
Cancels an execution of the given name.
def cancel_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
cancel_execution
via a request object, either of type
CancelExecutionRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1beta::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::V1beta::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}
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Workflows::Executions::V1beta::Execution)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/workflows/executions/v1beta" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Workflows::Executions::V1beta::Executions::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Workflows::Executions::V1beta::CancelExecutionRequest.new # Call the cancel_execution method. result = client.cancel_execution request # The returned object is of type Google::Cloud::Workflows::Executions::V1beta::Execution. p result
#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::V1beta::Execution
def create_execution(parent: nil, execution: nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
Creates a new execution using the latest revision of the given workflow.
def create_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
create_execution
via a request object, either of type
CreateExecutionRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1beta::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::V1beta::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::V1beta::Execution, ::Hash) — Required. Execution to be created.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Workflows::Executions::V1beta::Execution)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/workflows/executions/v1beta" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Workflows::Executions::V1beta::Executions::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Workflows::Executions::V1beta::CreateExecutionRequest.new # Call the create_execution method. result = client.create_execution request # The returned object is of type Google::Cloud::Workflows::Executions::V1beta::Execution. p result
#get_execution
def get_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
def get_execution(name: nil, view: nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
Returns an execution of the given name.
def get_execution(request, options = nil) -> ::Google::Cloud::Workflows::Executions::V1beta::Execution
get_execution
via a request object, either of type
GetExecutionRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1beta::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::V1beta::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::V1beta::ExecutionView) — Optional. A view defining which fields should be filled in the returned execution. The API will default to the FULL view.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Workflows::Executions::V1beta::Execution)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/workflows/executions/v1beta" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Workflows::Executions::V1beta::Executions::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Workflows::Executions::V1beta::GetExecutionRequest.new # Call the get_execution method. result = client.get_execution request # The returned object is of type Google::Cloud::Workflows::Executions::V1beta::Execution. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new Executions 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::V1beta::Executions::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Workflows::Executions::V1beta::Executions::Client.new do |config| config.timeout = 10.0 end
#list_executions
def list_executions(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1beta::Execution>
def list_executions(parent: nil, page_size: nil, page_token: nil, view: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1beta::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::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1beta::Execution>
list_executions
via a request object, either of type
ListExecutionsRequest or an equivalent Hash.
- request (::Google::Cloud::Workflows::Executions::V1beta::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) -> ::Gapic::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1beta::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 10000 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. - view (::Google::Cloud::Workflows::Executions::V1beta::ExecutionView) — Optional. A view defining which fields should be filled in the returned executions. The API will default to the BASIC view.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1beta::Execution>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Workflows::Executions::V1beta::Execution>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/workflows/executions/v1beta" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Workflows::Executions::V1beta::Executions::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Workflows::Executions::V1beta::ListExecutionsRequest.new # Call the list_executions method. result = client.list_executions request # The returned object is of type Gapic::PagedEnumerable. You can # iterate over all elements by calling #each, and the enumerable # will lazily make API calls to fetch subsequent pages. Other # methods are also available for managing paging directly. result.each do |response| # Each element is of type ::Google::Cloud::Workflows::Executions::V1beta::Execution. p response end