Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::ManagedIntegrationRuntimeOperationResult

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#activity_idString

Returns The activity id for the operation request.

Returns:

  • (String)

    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_codeString

Returns The error code.

Returns:

  • (String)

    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

#parametersArray<String>

Returns Managed integration runtime error parameters.

Returns:

  • (Array<String>)

    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

#resultString

Returns The operation result.

Returns:

  • (String)

    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_timeDateTime

Returns The start time of the operation.

Returns:

  • (DateTime)

    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

#typeString

Returns The operation type. Could be start or stop.

Returns:

  • (String)

    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

.mapperObject

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