Class: DatadogAPIClient::V2::Spec
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::Spec
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/spec.rb
Overview
The spec defines what the workflow does.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#annotations ⇒ Object
A list of annotations used in the workflow.
-
#connection_envs ⇒ Object
A list of connections or connection groups used in the workflow.
-
#handle ⇒ Object
Unique identifier used to trigger workflows automatically in Datadog.
-
#input_schema ⇒ Object
A list of input parameters for the workflow.
-
#output_schema ⇒ Object
A list of output parameters for the workflow.
-
#steps ⇒ Object
A
Step
is a sub-component of a workflow. -
#triggers ⇒ Object
The list of triggers that activate this workflow.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
45 46 47 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 45 def additional_properties @additional_properties end |
#annotations ⇒ Object
A list of annotations used in the workflow. These are like sticky notes for your workflow!
25 26 27 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 25 def annotations @annotations end |
#connection_envs ⇒ Object
A list of connections or connection groups used in the workflow.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 28 def connection_envs @connection_envs end |
#handle ⇒ Object
Unique identifier used to trigger workflows automatically in Datadog.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 31 def handle @handle end |
#input_schema ⇒ Object
A list of input parameters for the workflow. These can be used as dynamic runtime values in your workflow.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 34 def input_schema @input_schema end |
#output_schema ⇒ Object
A list of output parameters for the workflow.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 37 def output_schema @output_schema end |
#steps ⇒ Object
A Step
is a sub-component of a workflow. Each Step
performs an action.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 40 def steps @steps end |
#triggers ⇒ Object
The list of triggers that activate this workflow. At least one trigger is required, and each trigger type may appear at most once.
43 44 45 |
# File 'lib/datadog_api_client/v2/models/spec.rb', line 43 def triggers @triggers end |