Class: Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunFilter
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunFilter
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_logic/models/workflow_run_filter.rb
Overview
The workflow run filter.
Instance Attribute Summary collapse
-
#status ⇒ WorkflowStatus
include: ‘NotSpecified’, ‘Paused’, ‘Running’, ‘Waiting’, ‘Succeeded’, ‘Skipped’, ‘Suspended’, ‘Cancelled’, ‘Failed’, ‘Faulted’, ‘TimedOut’, ‘Aborted’, ‘Ignored’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkflowRunFilter class as Ruby Hash.
Instance Attribute Details
#status ⇒ WorkflowStatus
include: ‘NotSpecified’, ‘Paused’, ‘Running’, ‘Waiting’, ‘Succeeded’, ‘Skipped’, ‘Suspended’, ‘Cancelled’, ‘Failed’, ‘Faulted’, ‘TimedOut’, ‘Aborted’, ‘Ignored’
19 20 21 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/workflow_run_filter.rb', line 19 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkflowRunFilter class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/workflow_run_filter.rb', line 26 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 |