class Azure::Logic::Mgmt::V2015_02_01_preview::Models::WorkflowRunFilter

Model object.

Attributes

status[RW]

@return [WorkflowStatus] Gets or sets the status of workflow run. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted'

Public Class Methods

mapper() click to toggle source

Mapper for WorkflowRunFilter class as Ruby Hash. This will be used for serialization/deserialization.

# 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