Class: Azure::ARM::Logic::Models::WorkflowOutputParameter
- Inherits:
-
WorkflowParameter
- Object
- WorkflowParameter
- Azure::ARM::Logic::Models::WorkflowOutputParameter
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_logic/models/workflow_output_parameter.rb
Overview
The workflow output parameter.
Instance Attribute Summary collapse
-
#error ⇒ Object
Gets the error.
Attributes inherited from WorkflowParameter
#description, #metadata, #type, #value
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkflowOutputParameter class as Ruby Hash.
Instance Attribute Details
#error ⇒ Object
Returns Gets the error.
17 18 19 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_output_parameter.rb', line 17 def error @error end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkflowOutputParameter class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_output_parameter.rb', line 24 def self.mapper() { required: false, serialized_name: 'WorkflowOutputParameter', type: { name: 'Composite', class_name: 'WorkflowOutputParameter', model_properties: { type: { required: false, serialized_name: 'type', type: { name: 'Enum', module: 'ParameterType' } }, value: { required: false, serialized_name: 'value', type: { name: 'Object' } }, metadata: { required: false, serialized_name: 'metadata', type: { name: 'Object' } }, description: { required: false, serialized_name: 'description', type: { name: 'String' } }, error: { required: false, read_only: true, serialized_name: 'error', type: { name: 'Object' } } } } } end |