Class: Azure::ARM::Logic::Models::WorkflowRunTrigger
- Inherits:
-
Object
- Object
- Azure::ARM::Logic::Models::WorkflowRunTrigger
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb
Overview
The workflow run trigger.
Instance Attribute Summary collapse
-
#code ⇒ String
Gets the code.
-
#correlation ⇒ Correlation
The run correlation.
-
#end_time ⇒ DateTime
Gets the end time.
-
#error ⇒ Object
Gets the error.
-
#inputs ⇒ Object
Gets the inputs.
-
#inputs_link ⇒ ContentLink
Gets the link to inputs.
-
#name ⇒ String
Gets the name.
-
#outputs ⇒ Object
Gets the outputs.
-
#outputs_link ⇒ ContentLink
Gets the link to outputs.
-
#start_time ⇒ DateTime
Gets the start time.
-
#status ⇒ WorkflowStatus
‘NotSpecified’, ‘Paused’, ‘Running’, ‘Waiting’, ‘Succeeded’, ‘Skipped’, ‘Suspended’, ‘Cancelled’, ‘Failed’, ‘Faulted’, ‘TimedOut’, ‘Aborted’, ‘Ignored’.
-
#tracked_properties ⇒ Object
Gets the tracked properties.
-
#tracking_id ⇒ String
Gets the tracking id.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkflowRunTrigger class as Ruby Hash.
Instance Attribute Details
#code ⇒ String
Returns Gets the code.
44 45 46 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 44 def code @code end |
#correlation ⇒ Correlation
Returns The run correlation.
41 42 43 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 41 def correlation @correlation end |
#end_time ⇒ DateTime
Returns Gets the end time.
35 36 37 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 35 def end_time @end_time end |
#error ⇒ Object
Returns Gets the error.
53 54 55 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 53 def error @error end |
#inputs ⇒ Object
Returns Gets the inputs.
20 21 22 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 20 def inputs @inputs end |
#inputs_link ⇒ ContentLink
Returns Gets the link to inputs.
23 24 25 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 23 def inputs_link @inputs_link end |
#name ⇒ String
Returns Gets the name.
17 18 19 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 17 def name @name end |
#outputs ⇒ Object
Returns Gets the outputs.
26 27 28 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 26 def outputs @outputs end |
#outputs_link ⇒ ContentLink
Returns Gets the link to outputs.
29 30 31 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 29 def outputs_link @outputs_link end |
#start_time ⇒ DateTime
Returns Gets the start time.
32 33 34 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 32 def start_time @start_time end |
#status ⇒ WorkflowStatus
‘NotSpecified’, ‘Paused’, ‘Running’, ‘Waiting’, ‘Succeeded’, ‘Skipped’, ‘Suspended’, ‘Cancelled’, ‘Failed’, ‘Faulted’, ‘TimedOut’, ‘Aborted’, ‘Ignored’
50 51 52 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 50 def status @status end |
#tracked_properties ⇒ Object
Returns Gets the tracked properties.
56 57 58 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 56 def tracked_properties @tracked_properties end |
#tracking_id ⇒ String
Returns Gets the tracking id.
38 39 40 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 38 def tracking_id @tracking_id end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkflowRunTrigger class as Ruby Hash. This will be used for serialization/deserialization.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/generated/azure_mgmt_logic/models/workflow_run_trigger.rb', line 63 def self.mapper() { required: false, serialized_name: 'WorkflowRunTrigger', type: { name: 'Composite', class_name: 'WorkflowRunTrigger', model_properties: { name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, inputs: { required: false, read_only: true, serialized_name: 'inputs', type: { name: 'Object' } }, inputs_link: { required: false, read_only: true, serialized_name: 'inputsLink', type: { name: 'Composite', class_name: 'ContentLink' } }, outputs: { required: false, read_only: true, serialized_name: 'outputs', type: { name: 'Object' } }, outputs_link: { required: false, read_only: true, serialized_name: 'outputsLink', type: { name: 'Composite', class_name: 'ContentLink' } }, start_time: { required: false, read_only: true, serialized_name: 'startTime', type: { name: 'DateTime' } }, end_time: { required: false, read_only: true, serialized_name: 'endTime', type: { name: 'DateTime' } }, tracking_id: { required: false, read_only: true, serialized_name: 'trackingId', type: { name: 'String' } }, correlation: { required: false, serialized_name: 'correlation', type: { name: 'Composite', class_name: 'Correlation' } }, code: { required: false, read_only: true, serialized_name: 'code', type: { name: 'String' } }, status: { required: false, read_only: true, serialized_name: 'status', type: { name: 'Enum', module: 'WorkflowStatus' } }, error: { required: false, read_only: true, serialized_name: 'error', type: { name: 'Object' } }, tracked_properties: { required: false, read_only: true, serialized_name: 'trackedProperties', type: { name: 'Object' } } } } } end |