Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::ManagedIntegrationRuntimeOperationResult
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::ManagedIntegrationRuntimeOperationResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb
Overview
Properties of managed integration runtime operation result.
Instance Attribute Summary collapse
-
#activity_id ⇒ String
The activity id for the operation request.
-
#error_code ⇒ String
The error code.
-
#parameters ⇒ Array<String>
Managed integration runtime error parameters.
-
#result ⇒ String
The operation result.
-
#start_time ⇒ DateTime
The start time of the operation.
-
#type ⇒ String
The operation type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ManagedIntegrationRuntimeOperationResult class as Ruby Hash.
Instance Attribute Details
#activity_id ⇒ String
Returns The activity id for the operation request.
31 32 33 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 31 def activity_id @activity_id end |
#error_code ⇒ String
Returns The error code.
25 26 27 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 25 def error_code @error_code end |
#parameters ⇒ Array<String>
Returns Managed integration runtime error parameters.
28 29 30 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 28 def parameters @parameters end |
#result ⇒ String
Returns The operation result.
22 23 24 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 22 def result @result end |
#start_time ⇒ DateTime
Returns The start time of the operation.
19 20 21 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 19 def start_time @start_time end |
#type ⇒ String
Returns The operation type. Could be start or stop.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 16 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ManagedIntegrationRuntimeOperationResult class as Ruby Hash. This will be used for serialization/deserialization.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 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 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_operation_result.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagedIntegrationRuntimeOperationResult', type: { name: 'Composite', class_name: 'ManagedIntegrationRuntimeOperationResult', model_properties: { type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, start_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'startTime', type: { name: 'DateTime' } }, result: { client_side_validation: true, required: false, read_only: true, serialized_name: 'result', type: { name: 'String' } }, error_code: { client_side_validation: true, required: false, read_only: true, serialized_name: 'errorCode', type: { name: 'String' } }, parameters: { client_side_validation: true, required: false, read_only: true, serialized_name: 'parameters', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, activity_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'activityId', type: { name: 'String' } } } } } end |