Class: Azure::Logic::Mgmt::V2015_02_01_preview::Models::WorkflowRunFilter
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2015_02_01_preview::Models::WorkflowRunFilter
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_run_filter.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#status ⇒ WorkflowStatus
Possible values include: ‘NotSpecified’, ‘Paused’, ‘Running’, ‘Waiting’, ‘Succeeded’, ‘Skipped’, ‘Suspended’, ‘Cancelled’, ‘Failed’, ‘Faulted’, ‘TimedOut’, ‘Aborted’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkflowRunFilter class as Ruby Hash.
Instance Attribute Details
#status ⇒ WorkflowStatus
Possible values include: ‘NotSpecified’, ‘Paused’, ‘Running’, ‘Waiting’, ‘Succeeded’, ‘Skipped’, ‘Suspended’, ‘Cancelled’, ‘Failed’, ‘Faulted’, ‘TimedOut’, ‘Aborted’
20 21 22 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_run_filter.rb', line 20 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkflowRunFilter class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_run_filter.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WorkflowRunFilter', type: { name: 'Composite', class_name: 'WorkflowRunFilter', model_properties: { status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'Enum', module: 'WorkflowStatus' } } } } } end |