class Azure::Logic::Mgmt::V2016_06_01::Models::OperationResultProperties
The run operation result properties.
Attributes
code[RW]
@return [String] The workflow scope repetition code.
correlation[RW]
@return [RunActionCorrelation] The correlation properties.
end_time[RW]
@return [DateTime] The end time of the workflow scope repetition.
error[RW]
@return
start_time[RW]
@return [DateTime] The start time of the workflow scope repetition.
status[RW]
@return [WorkflowStatus] The status of the workflow scope repetition. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored'
Public Class Methods
mapper()
click to toggle source
Mapper for OperationResultProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-06-01/generated/azure_mgmt_logic/models/operation_result_properties.rb, line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationResultProperties', type: { name: 'Composite', class_name: 'OperationResultProperties', model_properties: { start_time: { client_side_validation: true, required: false, serialized_name: 'startTime', type: { name: 'DateTime' } }, end_time: { client_side_validation: true, required: false, serialized_name: 'endTime', type: { name: 'DateTime' } }, correlation: { client_side_validation: true, required: false, serialized_name: 'correlation', type: { name: 'Composite', class_name: 'RunActionCorrelation' } }, status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'Enum', module: 'WorkflowStatus' } }, code: { client_side_validation: true, required: false, serialized_name: 'code', type: { name: 'String' } }, error: { client_side_validation: true, required: false, serialized_name: 'error', type: { name: 'Object' } } } } } end