Class: Google::Cloud::Workflows::Executions::V1::Execution::Status

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/workflows/executions/v1/executions.rb

Overview

Represents the current status of this execution.

Defined Under Namespace

Classes: Step

Instance Attribute Summary collapse

Instance Attribute Details

#current_steps::Array<::Google::Cloud::Workflows::Executions::V1::Execution::Status::Step>

Returns A list of currently executing or last executed step names for the workflow execution currently running. If the workflow has succeeded or failed, this is the last attempted or executed step. Presently, if the current step is inside a subworkflow, the list only includes that step. In the future, the list will contain items for each step in the call stack, starting with the outermost step in the main subworkflow, and ending with the most deeply nested step.

Returns:

  • (::Array<::Google::Cloud::Workflows::Executions::V1::Execution::Status::Step>)

    A list of currently executing or last executed step names for the workflow execution currently running. If the workflow has succeeded or failed, this is the last attempted or executed step. Presently, if the current step is inside a subworkflow, the list only includes that step. In the future, the list will contain items for each step in the call stack, starting with the outermost step in the main subworkflow, and ending with the most deeply nested step.



156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/cloud/workflows/executions/v1/executions.rb', line 156

class Status
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a step of the workflow this execution is running.
  # @!attribute [rw] routine
  #   @return [::String]
  #     Name of a routine within the workflow.
  # @!attribute [rw] step
  #   @return [::String]
  #     Name of a step within the routine.
  class Step
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end