Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::ManagedIntegrationRuntimeStatus

Inherits:
IntegrationRuntimeStatus
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb

Overview

Managed integration runtime status.

Instance Attribute Summary collapse

Attributes inherited from IntegrationRuntimeStatus

#additional_properties, #data_factory_name, #state

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeManagedIntegrationRuntimeStatus

Returns a new instance of ManagedIntegrationRuntimeStatus.



16
17
18
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 16

def initialize
  @type = "Managed"
end

Instance Attribute Details

#create_timeDateTime

created, in ISO8601 format.

Returns:

  • (DateTime)

    The time at which the integration runtime was



24
25
26
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 24

def create_time
  @create_time
end

#last_operationManagedIntegrationRuntimeOperationResult

result that occurred on this integration runtime.

Returns:



36
37
38
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 36

def last_operation
  @last_operation
end

#nodesArray<ManagedIntegrationRuntimeNode>

managed integration runtime.

Returns:



28
29
30
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 28

def nodes
  @nodes
end

#other_errorsArray<ManagedIntegrationRuntimeError>

occurred on this integration runtime.

Returns:



32
33
34
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 32

def other_errors
  @other_errors
end

#typeObject

Returns the value of attribute type.



20
21
22
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 20

def type
  @type
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/managed_integration_runtime_status.rb', line 43

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Managed',
    type: {
      name: 'Composite',
      class_name: 'ManagedIntegrationRuntimeStatus',
      model_properties: {
        additional_properties: {
          client_side_validation: true,
          required: false,
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        },
        data_factory_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'dataFactoryName',
          type: {
            name: 'String'
          }
        },
        state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'state',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        create_time: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.createTime',
          type: {
            name: 'DateTime'
          }
        },
        nodes: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.nodes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ManagedIntegrationRuntimeNodeElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ManagedIntegrationRuntimeNode'
                }
            }
          }
        },
        other_errors: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.otherErrors',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ManagedIntegrationRuntimeErrorElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ManagedIntegrationRuntimeError'
                }
            }
          }
        },
        last_operation: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.lastOperation',
          type: {
            name: 'Composite',
            class_name: 'ManagedIntegrationRuntimeOperationResult'
          }
        }
      }
    }
  }
end