azure_mgmt_iot_hub 0.15.2 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,8 +29,8 @@ module Azure::IotHub::Mgmt::V2017_07_01
29
29
  #
30
30
  # @return [Array<Operation>] operation results.
31
31
  #
32
- def list(custom_headers = nil)
33
- first_page = list_as_lazy(custom_headers)
32
+ def list(custom_headers:nil)
33
+ first_page = list_as_lazy(custom_headers:custom_headers)
34
34
  first_page.get_all_items
35
35
  end
36
36
 
@@ -42,8 +42,8 @@ module Azure::IotHub::Mgmt::V2017_07_01
42
42
  #
43
43
  # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
44
44
  #
45
- def list_with_http_info(custom_headers = nil)
46
- list_async(custom_headers).value!
45
+ def list_with_http_info(custom_headers:nil)
46
+ list_async(custom_headers:custom_headers).value!
47
47
  end
48
48
 
49
49
  #
@@ -54,11 +54,12 @@ module Azure::IotHub::Mgmt::V2017_07_01
54
54
  #
55
55
  # @return [Concurrent::Promise] Promise object which holds the HTTP response.
56
56
  #
57
- def list_async(custom_headers = nil)
57
+ def list_async(custom_headers:nil)
58
58
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
59
59
 
60
60
 
61
61
  request_headers = {}
62
+ request_headers['Content-Type'] = 'application/json; charset=utf-8'
62
63
 
63
64
  # Set Headers
64
65
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
@@ -112,8 +113,8 @@ module Azure::IotHub::Mgmt::V2017_07_01
112
113
  #
113
114
  # @return [OperationListResult] operation results.
114
115
  #
115
- def list_next(next_page_link, custom_headers = nil)
116
- response = list_next_async(next_page_link, custom_headers).value!
116
+ def list_next(next_page_link, custom_headers:nil)
117
+ response = list_next_async(next_page_link, custom_headers:custom_headers).value!
117
118
  response.body unless response.nil?
118
119
  end
119
120
 
@@ -127,8 +128,8 @@ module Azure::IotHub::Mgmt::V2017_07_01
127
128
  #
128
129
  # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
129
130
  #
130
- def list_next_with_http_info(next_page_link, custom_headers = nil)
131
- list_next_async(next_page_link, custom_headers).value!
131
+ def list_next_with_http_info(next_page_link, custom_headers:nil)
132
+ list_next_async(next_page_link, custom_headers:custom_headers).value!
132
133
  end
133
134
 
134
135
  #
@@ -141,11 +142,12 @@ module Azure::IotHub::Mgmt::V2017_07_01
141
142
  #
142
143
  # @return [Concurrent::Promise] Promise object which holds the HTTP response.
143
144
  #
144
- def list_next_async(next_page_link, custom_headers = nil)
145
+ def list_next_async(next_page_link, custom_headers:nil)
145
146
  fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
146
147
 
147
148
 
148
149
  request_headers = {}
150
+ request_headers['Content-Type'] = 'application/json; charset=utf-8'
149
151
 
150
152
  # Set Headers
151
153
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
@@ -198,12 +200,12 @@ module Azure::IotHub::Mgmt::V2017_07_01
198
200
  # @return [OperationListResult] which provide lazy access to pages of the
199
201
  # response.
200
202
  #
201
- def list_as_lazy(custom_headers = nil)
202
- response = list_async(custom_headers).value!
203
+ def list_as_lazy(custom_headers:nil)
204
+ response = list_async(custom_headers:custom_headers).value!
203
205
  unless response.nil?
204
206
  page = response.body
205
207
  page.next_method = Proc.new do |next_page_link|
206
- list_next_async(next_page_link, custom_headers)
208
+ list_next_async(next_page_link, custom_headers:custom_headers)
207
209
  end
208
210
  page
209
211
  end
@@ -5,17 +5,36 @@
5
5
  require 'profiles/latest/iothub_module_definition'
6
6
  require 'profiles/latest/modules/iothub_profile_module'
7
7
 
8
- module Azure::IotHub::Profiles::Latest::Mgmt
9
- #
10
- # Client class for the Latest profile SDK.
11
- #
12
- class Client < IotHubClass
13
- include MsRestAzure::Common::Configurable
8
+ module Azure::IotHub::Profiles::Latest
9
+ module Mgmt
10
+ #
11
+ # Client class for the Latest profile SDK.
12
+ #
13
+ class Client < IotHubManagementClass
14
+ include MsRestAzure::Common::Configurable
14
15
 
16
+ #
17
+ # Initializes a new instance of the Client class.
18
+ # @param options [Hash] hash of client options.
19
+ # options = {
20
+ # tenant_id: 'YOUR TENANT ID',
21
+ # client_id: 'YOUR CLIENT ID',
22
+ # client_secret: 'YOUR CLIENT SECRET',
23
+ # subscription_id: 'YOUR SUBSCRIPTION ID',
24
+ # credentials: credentials,
25
+ # active_directory_settings: active_directory_settings,
26
+ # base_url: 'YOUR BASE URL',
27
+ # options: options
28
+ # }
29
+ # 'credentials' are optional and if not passed in the hash, will be obtained
30
+ # from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
31
+ #
32
+ # Also, base_url, active_directory_settings & options are optional.
33
+ #
34
+ def initialize(options = {})
35
+ super(options)
36
+ end
15
37
 
16
- def initialize(options = {})
17
- super(options)
18
38
  end
19
-
20
39
  end
21
40
  end
@@ -6,4 +6,3 @@ module Azure end
6
6
  module Azure::IotHub end
7
7
  module Azure::IotHub::Profiles end
8
8
  module Azure::IotHub::Profiles::Latest end
9
- module Azure::IotHub::Profiles::Latest::Mgmt end
@@ -4,7 +4,8 @@
4
4
 
5
5
  require 'azure_mgmt_iot_hub'
6
6
 
7
- module Azure::IotHub::Profiles::Latest::Mgmt
7
+ module Azure::IotHub::Profiles::Latest
8
+ module Mgmt
8
9
  Operations = Azure::IotHub::Mgmt::V2017_07_01::Operations
9
10
  IotHubResource = Azure::IotHub::Mgmt::V2017_07_01::IotHubResource
10
11
  Certificates = Azure::IotHub::Mgmt::V2017_07_01::Certificates
@@ -71,9 +72,9 @@ module Azure::IotHub::Profiles::Latest::Mgmt
71
72
  end
72
73
 
73
74
  #
74
- # IotHub
75
+ # IotHubManagementClass
75
76
  #
76
- class IotHubClass
77
+ class IotHubManagementClass
77
78
  attr_reader :operations, :iot_hub_resource, :certificates, :configurable, :base_url, :options, :model_classes
78
79
 
79
80
  def initialize(options = {})
@@ -85,194 +86,212 @@ module Azure::IotHub::Profiles::Latest::Mgmt
85
86
 
86
87
  reset!(options)
87
88
 
88
- @configurable, @base_url, @options = self, nil, nil
89
+ @configurable = self
90
+ @base_url = options[:base_url].nil? ? nil:options[:base_url]
91
+ @options = options[:options].nil? ? nil:options[:options]
89
92
 
90
- client_0 = Azure::IotHub::Mgmt::V2017_07_01::IotHubClient.new(configurable.credentials, base_url, options)
91
- if(client_0.respond_to?(:subscription_id))
92
- client_0.subscription_id = configurable.subscription_id
93
- end
94
- @operations = client_0.operations
95
- @iot_hub_resource = client_0.iot_hub_resource
96
- @certificates = client_0.certificates
93
+ @client_0 = Azure::IotHub::Mgmt::V2017_07_01::IotHubClient.new(configurable.credentials, base_url, options)
94
+ if(@client_0.respond_to?(:subscription_id))
95
+ @client_0.subscription_id = configurable.subscription_id
96
+ end
97
+ add_telemetry(@client_0)
98
+ @operations = @client_0.operations
99
+ @iot_hub_resource = @client_0.iot_hub_resource
100
+ @certificates = @client_0.certificates
97
101
 
98
102
  @model_classes = ModelClasses.new
99
103
  end
100
104
 
101
- class ModelClasses
102
- def iot_hub_properties
103
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubProperties
104
- end
105
- def iot_hub_sku_info
106
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuInfo
107
- end
108
- def certificate_body_description
109
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateBodyDescription
110
- end
111
- def certificate_properties
112
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateProperties
113
- end
114
- def certificate_list_description
115
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateListDescription
116
- end
117
- def resource
118
- Azure::IotHub::Mgmt::V2017_07_01::Models::Resource
119
- end
120
- def certificate_with_nonce_description
121
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateWithNonceDescription
122
- end
123
- def shared_access_signature_authorization_rule_list_result
124
- Azure::IotHub::Mgmt::V2017_07_01::Models::SharedAccessSignatureAuthorizationRuleListResult
125
- end
126
- def ip_filter_rule
127
- Azure::IotHub::Mgmt::V2017_07_01::Models::IpFilterRule
128
- end
129
- def operation_display
130
- Azure::IotHub::Mgmt::V2017_07_01::Models::OperationDisplay
131
- end
132
- def routing_service_bus_queue_endpoint_properties
133
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingServiceBusQueueEndpointProperties
134
- end
135
- def operation
136
- Azure::IotHub::Mgmt::V2017_07_01::Models::Operation
137
- end
138
- def routing_event_hub_properties
139
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingEventHubProperties
140
- end
141
- def operation_list_result
142
- Azure::IotHub::Mgmt::V2017_07_01::Models::OperationListResult
143
- end
144
- def routing_endpoints
145
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingEndpoints
146
- end
147
- def error_details
148
- Azure::IotHub::Mgmt::V2017_07_01::Models::ErrorDetails
149
- end
150
- def fallback_route_properties
151
- Azure::IotHub::Mgmt::V2017_07_01::Models::FallbackRouteProperties
152
- end
153
- def iot_hub_quota_metric_info
154
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubQuotaMetricInfo
155
- end
156
- def storage_endpoint_properties
157
- Azure::IotHub::Mgmt::V2017_07_01::Models::StorageEndpointProperties
158
- end
159
- def iot_hub_quota_metric_info_list_result
160
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubQuotaMetricInfoListResult
161
- end
162
- def feedback_properties
163
- Azure::IotHub::Mgmt::V2017_07_01::Models::FeedbackProperties
164
- end
165
- def registry_statistics
166
- Azure::IotHub::Mgmt::V2017_07_01::Models::RegistryStatistics
167
- end
168
- def operations_monitoring_properties
169
- Azure::IotHub::Mgmt::V2017_07_01::Models::OperationsMonitoringProperties
170
- end
171
- def job_response
172
- Azure::IotHub::Mgmt::V2017_07_01::Models::JobResponse
173
- end
174
- def certificate_description
175
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateDescription
176
- end
177
- def job_response_list_result
178
- Azure::IotHub::Mgmt::V2017_07_01::Models::JobResponseListResult
179
- end
180
- def shared_access_signature_authorization_rule
181
- Azure::IotHub::Mgmt::V2017_07_01::Models::SharedAccessSignatureAuthorizationRule
182
- end
183
- def iot_hub_capacity
184
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubCapacity
185
- end
186
- def routing_service_bus_topic_endpoint_properties
187
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingServiceBusTopicEndpointProperties
188
- end
189
- def iot_hub_sku_description
190
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuDescription
191
- end
192
- def route_properties
193
- Azure::IotHub::Mgmt::V2017_07_01::Models::RouteProperties
194
- end
195
- def event_hub_consumer_groups_list_result
196
- Azure::IotHub::Mgmt::V2017_07_01::Models::EventHubConsumerGroupsListResult
197
- end
198
- def messaging_endpoint_properties
199
- Azure::IotHub::Mgmt::V2017_07_01::Models::MessagingEndpointProperties
200
- end
201
- def event_hub_consumer_group_info
202
- Azure::IotHub::Mgmt::V2017_07_01::Models::EventHubConsumerGroupInfo
203
- end
204
- def certificate_verification_description
205
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateVerificationDescription
206
- end
207
- def iot_hub_sku_description_list_result
208
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuDescriptionListResult
209
- end
210
- def event_hub_properties
211
- Azure::IotHub::Mgmt::V2017_07_01::Models::EventHubProperties
212
- end
213
- def iot_hub_description_list_result
214
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubDescriptionListResult
215
- end
216
- def routing_properties
217
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingProperties
218
- end
219
- def operation_inputs
220
- Azure::IotHub::Mgmt::V2017_07_01::Models::OperationInputs
221
- end
222
- def certificate_properties_with_nonce
223
- Azure::IotHub::Mgmt::V2017_07_01::Models::CertificatePropertiesWithNonce
224
- end
225
- def iot_hub_name_availability_info
226
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubNameAvailabilityInfo
227
- end
228
- def cloud_to_device_properties
229
- Azure::IotHub::Mgmt::V2017_07_01::Models::CloudToDeviceProperties
230
- end
231
- def export_devices_request
232
- Azure::IotHub::Mgmt::V2017_07_01::Models::ExportDevicesRequest
233
- end
234
- def routing_storage_container_properties
235
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingStorageContainerProperties
236
- end
237
- def import_devices_request
238
- Azure::IotHub::Mgmt::V2017_07_01::Models::ImportDevicesRequest
239
- end
240
- def iot_hub_description
241
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubDescription
242
- end
243
- def access_rights
244
- Azure::IotHub::Mgmt::V2017_07_01::Models::AccessRights
245
- end
246
- def ip_filter_action_type
247
- Azure::IotHub::Mgmt::V2017_07_01::Models::IpFilterActionType
248
- end
249
- def routing_source
250
- Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingSource
251
- end
252
- def operation_monitoring_level
253
- Azure::IotHub::Mgmt::V2017_07_01::Models::OperationMonitoringLevel
254
- end
255
- def capabilities
256
- Azure::IotHub::Mgmt::V2017_07_01::Models::Capabilities
257
- end
258
- def iot_hub_sku
259
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSku
260
- end
261
- def iot_hub_sku_tier
262
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuTier
263
- end
264
- def job_type
265
- Azure::IotHub::Mgmt::V2017_07_01::Models::JobType
266
- end
267
- def job_status
268
- Azure::IotHub::Mgmt::V2017_07_01::Models::JobStatus
269
- end
270
- def iot_hub_scale_type
271
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubScaleType
272
- end
273
- def iot_hub_name_unavailability_reason
274
- Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubNameUnavailabilityReason
105
+ def add_telemetry(client)
106
+ profile_information = 'Profiles/Latest/IotHub/Mgmt'
107
+ client.add_user_agent_information(profile_information)
108
+ end
109
+
110
+ def method_missing(method, *args)
111
+ if @client_0.respond_to?method
112
+ @client_0.send(method, *args)
113
+ else
114
+ super
275
115
  end
276
116
  end
117
+
118
+ end
119
+
120
+ class ModelClasses
121
+ def iot_hub_properties
122
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubProperties
123
+ end
124
+ def iot_hub_sku_info
125
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuInfo
126
+ end
127
+ def certificate_body_description
128
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateBodyDescription
129
+ end
130
+ def certificate_properties
131
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateProperties
132
+ end
133
+ def certificate_list_description
134
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateListDescription
135
+ end
136
+ def resource
137
+ Azure::IotHub::Mgmt::V2017_07_01::Models::Resource
138
+ end
139
+ def certificate_with_nonce_description
140
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateWithNonceDescription
141
+ end
142
+ def shared_access_signature_authorization_rule_list_result
143
+ Azure::IotHub::Mgmt::V2017_07_01::Models::SharedAccessSignatureAuthorizationRuleListResult
144
+ end
145
+ def ip_filter_rule
146
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IpFilterRule
147
+ end
148
+ def operation_display
149
+ Azure::IotHub::Mgmt::V2017_07_01::Models::OperationDisplay
150
+ end
151
+ def routing_service_bus_queue_endpoint_properties
152
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingServiceBusQueueEndpointProperties
153
+ end
154
+ def operation
155
+ Azure::IotHub::Mgmt::V2017_07_01::Models::Operation
156
+ end
157
+ def routing_event_hub_properties
158
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingEventHubProperties
159
+ end
160
+ def operation_list_result
161
+ Azure::IotHub::Mgmt::V2017_07_01::Models::OperationListResult
162
+ end
163
+ def routing_endpoints
164
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingEndpoints
165
+ end
166
+ def error_details
167
+ Azure::IotHub::Mgmt::V2017_07_01::Models::ErrorDetails
168
+ end
169
+ def fallback_route_properties
170
+ Azure::IotHub::Mgmt::V2017_07_01::Models::FallbackRouteProperties
171
+ end
172
+ def iot_hub_quota_metric_info
173
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubQuotaMetricInfo
174
+ end
175
+ def storage_endpoint_properties
176
+ Azure::IotHub::Mgmt::V2017_07_01::Models::StorageEndpointProperties
177
+ end
178
+ def iot_hub_quota_metric_info_list_result
179
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubQuotaMetricInfoListResult
180
+ end
181
+ def feedback_properties
182
+ Azure::IotHub::Mgmt::V2017_07_01::Models::FeedbackProperties
183
+ end
184
+ def registry_statistics
185
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RegistryStatistics
186
+ end
187
+ def operations_monitoring_properties
188
+ Azure::IotHub::Mgmt::V2017_07_01::Models::OperationsMonitoringProperties
189
+ end
190
+ def job_response
191
+ Azure::IotHub::Mgmt::V2017_07_01::Models::JobResponse
192
+ end
193
+ def certificate_description
194
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateDescription
195
+ end
196
+ def job_response_list_result
197
+ Azure::IotHub::Mgmt::V2017_07_01::Models::JobResponseListResult
198
+ end
199
+ def shared_access_signature_authorization_rule
200
+ Azure::IotHub::Mgmt::V2017_07_01::Models::SharedAccessSignatureAuthorizationRule
201
+ end
202
+ def iot_hub_capacity
203
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubCapacity
204
+ end
205
+ def routing_service_bus_topic_endpoint_properties
206
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingServiceBusTopicEndpointProperties
207
+ end
208
+ def iot_hub_sku_description
209
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuDescription
210
+ end
211
+ def route_properties
212
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RouteProperties
213
+ end
214
+ def event_hub_consumer_groups_list_result
215
+ Azure::IotHub::Mgmt::V2017_07_01::Models::EventHubConsumerGroupsListResult
216
+ end
217
+ def messaging_endpoint_properties
218
+ Azure::IotHub::Mgmt::V2017_07_01::Models::MessagingEndpointProperties
219
+ end
220
+ def event_hub_consumer_group_info
221
+ Azure::IotHub::Mgmt::V2017_07_01::Models::EventHubConsumerGroupInfo
222
+ end
223
+ def certificate_verification_description
224
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificateVerificationDescription
225
+ end
226
+ def iot_hub_sku_description_list_result
227
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuDescriptionListResult
228
+ end
229
+ def event_hub_properties
230
+ Azure::IotHub::Mgmt::V2017_07_01::Models::EventHubProperties
231
+ end
232
+ def iot_hub_description_list_result
233
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubDescriptionListResult
234
+ end
235
+ def routing_properties
236
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingProperties
237
+ end
238
+ def operation_inputs
239
+ Azure::IotHub::Mgmt::V2017_07_01::Models::OperationInputs
240
+ end
241
+ def certificate_properties_with_nonce
242
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CertificatePropertiesWithNonce
243
+ end
244
+ def iot_hub_name_availability_info
245
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubNameAvailabilityInfo
246
+ end
247
+ def cloud_to_device_properties
248
+ Azure::IotHub::Mgmt::V2017_07_01::Models::CloudToDeviceProperties
249
+ end
250
+ def export_devices_request
251
+ Azure::IotHub::Mgmt::V2017_07_01::Models::ExportDevicesRequest
252
+ end
253
+ def routing_storage_container_properties
254
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingStorageContainerProperties
255
+ end
256
+ def import_devices_request
257
+ Azure::IotHub::Mgmt::V2017_07_01::Models::ImportDevicesRequest
258
+ end
259
+ def iot_hub_description
260
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubDescription
261
+ end
262
+ def access_rights
263
+ Azure::IotHub::Mgmt::V2017_07_01::Models::AccessRights
264
+ end
265
+ def ip_filter_action_type
266
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IpFilterActionType
267
+ end
268
+ def routing_source
269
+ Azure::IotHub::Mgmt::V2017_07_01::Models::RoutingSource
270
+ end
271
+ def operation_monitoring_level
272
+ Azure::IotHub::Mgmt::V2017_07_01::Models::OperationMonitoringLevel
273
+ end
274
+ def capabilities
275
+ Azure::IotHub::Mgmt::V2017_07_01::Models::Capabilities
276
+ end
277
+ def iot_hub_sku
278
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSku
279
+ end
280
+ def iot_hub_sku_tier
281
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubSkuTier
282
+ end
283
+ def job_type
284
+ Azure::IotHub::Mgmt::V2017_07_01::Models::JobType
285
+ end
286
+ def job_status
287
+ Azure::IotHub::Mgmt::V2017_07_01::Models::JobStatus
288
+ end
289
+ def iot_hub_scale_type
290
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubScaleType
291
+ end
292
+ def iot_hub_name_unavailability_reason
293
+ Azure::IotHub::Mgmt::V2017_07_01::Models::IotHubNameUnavailabilityReason
294
+ end
277
295
  end
296
+ end
278
297
  end