Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::SelfHostedIntegrationRuntimeStatus

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

Overview

Self-hosted 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

#initializeSelfHostedIntegrationRuntimeStatus

Returns a new instance of SelfHostedIntegrationRuntimeStatus.



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

def initialize
  @type = "SelfHosted"
end

Instance Attribute Details

#auto_updateIntegrationRuntimeAutoUpdate

runtime auto update has been turned on. Possible values include: ‘On’, ‘Off’

Returns:



64
65
66
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 64

def auto_update
  @auto_update
end

#capabilitiesHash{String => String}

about integration runtime capabilities.

Returns:

  • (Hash{String => String})

    Object with additional information



55
56
57
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 55

def capabilities
  @capabilities
end

#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/self_hosted_integration_runtime_status.rb', line 24

def create_time
  @create_time
end

#internal_channel_encryptionIntegrationRuntimeInternalChannelEncryptionMode

set the encryption mode for node-node communication channel (when more than 2 self-hosted integration runtime nodes exist). Possible values include: ‘NotSet’, ‘SslEncrypted’, ‘NotEncrypted’



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

def internal_channel_encryption
  @internal_channel_encryption
end

integration runtimes that are created to share with this integration runtime.

Returns:



72
73
74
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 72

def links
  @links
end

#local_time_zone_offsetString

Returns The local time zone offset in hours.

Returns:

  • (String)

    The local time zone offset in hours.



51
52
53
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 51

def local_time_zone_offset
  @local_time_zone_offset
end

#nodesArray<SelfHostedIntegrationRuntimeNode>

this integration runtime.

Returns:



40
41
42
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 40

def nodes
  @nodes
end

#scheduled_update_dateDateTime

scheduled to update, in ISO8601 format.

Returns:

  • (DateTime)

    The date at which the integration runtime will be



44
45
46
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 44

def scheduled_update_date
  @scheduled_update_date
end

#service_urlsArray<String>

runtime backend service.

Returns:

  • (Array<String>)

    The URLs for the services used in integration



59
60
61
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 59

def service_urls
  @service_urls
end

#task_queue_idString

Returns The task queue id of the integration runtime.

Returns:

  • (String)

    The task queue id of the integration runtime.



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

def task_queue_id
  @task_queue_id
end

#typeObject

Returns the value of attribute type.



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

def type
  @type
end

#update_delay_offsetString

the integration runtime, e.g., PT03H is 3 hours

Returns:

  • (String)

    The time in the date scheduled by service to update



48
49
50
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 48

def update_delay_offset
  @update_delay_offset
end

#versionString

Returns Version of the integration runtime.

Returns:

  • (String)

    Version of the integration runtime.



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

def version
  @version
end

#version_statusString

Returns Status of the integration runtime version.

Returns:

  • (String)

    Status of the integration runtime version.



67
68
69
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 67

def version_status
  @version_status
end

Class Method Details

.mapperObject

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



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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/self_hosted_integration_runtime_status.rb', line 79

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SelfHosted',
    type: {
      name: 'Composite',
      class_name: 'SelfHostedIntegrationRuntimeStatus',
      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'
          }
        },
        task_queue_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.taskQueueId',
          type: {
            name: 'String'
          }
        },
        internal_channel_encryption: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.internalChannelEncryption',
          type: {
            name: 'String'
          }
        },
        version: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.version',
          type: {
            name: 'String'
          }
        },
        nodes: {
          client_side_validation: true,
          required: false,
          serialized_name: 'typeProperties.nodes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'SelfHostedIntegrationRuntimeNodeElementType',
                type: {
                  name: 'Composite',
                  class_name: 'SelfHostedIntegrationRuntimeNode'
                }
            }
          }
        },
        scheduled_update_date: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.scheduledUpdateDate',
          type: {
            name: 'DateTime'
          }
        },
        update_delay_offset: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.updateDelayOffset',
          type: {
            name: 'String'
          }
        },
        local_time_zone_offset: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.localTimeZoneOffset',
          type: {
            name: 'String'
          }
        },
        capabilities: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.capabilities',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        service_urls: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.serviceUrls',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        auto_update: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.autoUpdate',
          type: {
            name: 'String'
          }
        },
        version_status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'typeProperties.versionStatus',
          type: {
            name: 'String'
          }
        },
        links: {
          client_side_validation: true,
          required: false,
          serialized_name: 'typeProperties.links',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'LinkedIntegrationRuntimeElementType',
                type: {
                  name: 'Composite',
                  class_name: 'LinkedIntegrationRuntime'
                }
            }
          }
        }
      }
    }
  }
end