Class: DatadogAPIClient::V2::Step
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::Step
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/step.rb
Overview
A Step is a sub-component of a workflow. Each Step performs an action.
Instance Attribute Summary collapse
-
#action_id ⇒ Object
readonly
The unique identifier of an action.
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#completion_gate ⇒ Object
Used to create conditions before running subsequent actions.
-
#connection_label ⇒ Object
The unique identifier of a connection defined in the spec.
-
#display ⇒ Object
The definition of
StepDisplay
object. -
#error_handlers ⇒ Object
The
Step
errorHandlers
. -
#name ⇒ Object
readonly
Name of the step.
-
#outbound_edges ⇒ Object
A list of subsequent actions to run.
-
#parameters ⇒ Object
A list of inputs for an action.
-
#readiness_gate ⇒ Object
Used to merge multiple branches into a single branch.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#action_id ⇒ Object
The unique identifier of an action.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 25 def action_id @action_id end |
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
51 52 53 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 51 def additional_properties @additional_properties end |
#completion_gate ⇒ Object
Used to create conditions before running subsequent actions.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 28 def completion_gate @completion_gate end |
#connection_label ⇒ Object
The unique identifier of a connection defined in the spec.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 31 def connection_label @connection_label end |
#display ⇒ Object
The definition of StepDisplay
object.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 34 def display @display end |
#error_handlers ⇒ Object
The Step
errorHandlers
.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 37 def error_handlers @error_handlers end |
#name ⇒ Object
Name of the step.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 40 def name @name end |
#outbound_edges ⇒ Object
A list of subsequent actions to run.
43 44 45 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 43 def outbound_edges @outbound_edges end |
#parameters ⇒ Object
A list of inputs for an action.
46 47 48 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 46 def parameters @parameters end |
#readiness_gate ⇒ Object
Used to merge multiple branches into a single branch.
49 50 51 |
# File 'lib/datadog_api_client/v2/models/step.rb', line 49 def readiness_gate @readiness_gate end |