azure_sdk 0.20.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36c90b480622a8b750b2d8d7e8e83b312066c5fefc72892562a99b8d90d21a4f
|
4
|
+
data.tar.gz: 4141cc771706015049abed2a00c6a7da4ecc2f9a730c555564b9fb7fdfdbcc2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 304735c80c81cf8f073b44638d94cc4390e6955be0d6a7ff4975597169f9dba9212eefc0b6acfcd05aa685a275f133f643c8b9ab458b916af497b66b2bb5aef0
|
7
|
+
data.tar.gz: 19429d47eb9cd5ab4a9503d3f2d3f80efbe43e7d978943f04a4ef17d55451e894fe609cd21354f1a5950ab57f293b878b82d3d8f694be4948a3a50f70c319cff
|
data/lib/azure_sdk/version.rb
CHANGED
@@ -27,6 +27,7 @@ require 'latest/modules/dns_profile_module'
|
|
27
27
|
require 'latest/modules/eventgrid_profile_module'
|
28
28
|
require 'latest/modules/eventhub_profile_module'
|
29
29
|
require 'latest/modules/features_profile_module'
|
30
|
+
require 'latest/modules/hdinsight_profile_module'
|
30
31
|
require 'latest/modules/graphrbac_profile_module'
|
31
32
|
require 'latest/modules/iotcentral_profile_module'
|
32
33
|
require 'latest/modules/iothub_profile_module'
|
@@ -95,7 +96,7 @@ module Azure::Profiles::Latest
|
|
95
96
|
class Client
|
96
97
|
include MsRestAzure::Common::Configurable
|
97
98
|
|
98
|
-
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_central, :iot_hub, :key_vault, :kusto, :links, :locks, :logic, :machine_learning, :machine_learning_services, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :image_search, :local_search, :news_search, :qnamaker, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
99
|
+
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :hdinsight, :graph_rbac, :iot_central, :iot_hub, :key_vault, :kusto, :links, :locks, :logic, :machine_learning, :machine_learning_services, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :image_search, :local_search, :news_search, :qnamaker, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
99
100
|
|
100
101
|
#
|
101
102
|
# Initializes a new instance of the Client class.
|
@@ -151,6 +152,7 @@ module Azure::Profiles::Latest
|
|
151
152
|
@event_grid = EventGridAdapter.new(self, base_url, sdk_options)
|
152
153
|
@event_hub = EventHubAdapter.new(self, base_url, sdk_options)
|
153
154
|
@features = FeaturesAdapter.new(self, base_url, sdk_options)
|
155
|
+
@hdinsight = HdinsightAdapter.new(self, base_url, sdk_options)
|
154
156
|
@graph_rbac = GraphRbacAdapter.new(self, base_url, sdk_options)
|
155
157
|
@iot_central = IotCentralAdapter.new(self, base_url, sdk_options)
|
156
158
|
@iot_hub = IotHubAdapter.new(self, base_url, sdk_options)
|
@@ -406,6 +408,14 @@ module Azure::Profiles::Latest
|
|
406
408
|
end
|
407
409
|
end
|
408
410
|
|
411
|
+
class HdinsightAdapter
|
412
|
+
attr_accessor :mgmt
|
413
|
+
|
414
|
+
def initialize(context, base_url, options)
|
415
|
+
@mgmt = Azure::Profiles::Latest::Hdinsight::Mgmt::HdinsightManagementClass.new(context, base_url, options)
|
416
|
+
end
|
417
|
+
end
|
418
|
+
|
409
419
|
class GraphRbacAdapter < Azure::Profiles::Latest::GraphRbac::GraphRbacDataClass
|
410
420
|
|
411
421
|
def initialize(context, base_url, options)
|
@@ -187,87 +187,56 @@ module Azure::Profiles::Latest
|
|
187
187
|
end
|
188
188
|
end
|
189
189
|
module Mgmt
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
Topics = Azure::EventGrid::Mgmt::V2018_09_15_preview::Topics
|
195
|
-
TopicTypes = Azure::EventGrid::Mgmt::V2018_09_15_preview::TopicTypes
|
190
|
+
EventSubscriptions = Azure::EventGrid::Mgmt::V2019_01_01::EventSubscriptions
|
191
|
+
Operations = Azure::EventGrid::Mgmt::V2019_01_01::Operations
|
192
|
+
Topics = Azure::EventGrid::Mgmt::V2019_01_01::Topics
|
193
|
+
TopicTypes = Azure::EventGrid::Mgmt::V2019_01_01::TopicTypes
|
196
194
|
|
197
195
|
module Models
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
EventSubscriptionUpdateParameters = Azure::EventGrid::Mgmt::
|
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
|
-
NumberLessThanAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberLessThanAdvancedFilter
|
230
|
-
NumberGreaterThanAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberGreaterThanAdvancedFilter
|
231
|
-
NumberLessThanOrEqualsAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberLessThanOrEqualsAdvancedFilter
|
232
|
-
NumberGreaterThanOrEqualsAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberGreaterThanOrEqualsAdvancedFilter
|
233
|
-
BoolEqualsAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::BoolEqualsAdvancedFilter
|
234
|
-
StringInAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringInAdvancedFilter
|
235
|
-
StringNotInAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringNotInAdvancedFilter
|
236
|
-
StringBeginsWithAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringBeginsWithAdvancedFilter
|
237
|
-
StringEndsWithAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringEndsWithAdvancedFilter
|
238
|
-
StringContainsAdvancedFilter = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringContainsAdvancedFilter
|
239
|
-
WebHookEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::WebHookEventSubscriptionDestination
|
240
|
-
EventHubEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventHubEventSubscriptionDestination
|
241
|
-
StorageQueueEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StorageQueueEventSubscriptionDestination
|
242
|
-
HybridConnectionEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::HybridConnectionEventSubscriptionDestination
|
243
|
-
EventSubscription = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventSubscription
|
244
|
-
JsonInputSchemaMapping = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::JsonInputSchemaMapping
|
245
|
-
TrackedResource = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::TrackedResource
|
246
|
-
Topic = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::Topic
|
247
|
-
EventType = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventType
|
248
|
-
TopicTypeInfo = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::TopicTypeInfo
|
249
|
-
DomainProvisioningState = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::DomainProvisioningState
|
250
|
-
InputSchema = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::InputSchema
|
251
|
-
EventSubscriptionProvisioningState = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventSubscriptionProvisioningState
|
252
|
-
EventDeliverySchema = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventDeliverySchema
|
253
|
-
TopicProvisioningState = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::TopicProvisioningState
|
254
|
-
ResourceRegionType = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::ResourceRegionType
|
255
|
-
TopicTypeProvisioningState = Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::TopicTypeProvisioningState
|
196
|
+
EventSubscriptionsListResult = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionsListResult
|
197
|
+
OperationInfo = Azure::EventGrid::Mgmt::V2019_01_01::Models::OperationInfo
|
198
|
+
EventSubscriptionFilter = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionFilter
|
199
|
+
Operation = Azure::EventGrid::Mgmt::V2019_01_01::Models::Operation
|
200
|
+
DeadLetterDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::DeadLetterDestination
|
201
|
+
OperationsListResult = Azure::EventGrid::Mgmt::V2019_01_01::Models::OperationsListResult
|
202
|
+
EventSubscriptionUpdateParameters = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionUpdateParameters
|
203
|
+
EventSubscriptionFullUrl = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionFullUrl
|
204
|
+
TopicTypesListResult = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicTypesListResult
|
205
|
+
EventSubscriptionDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionDestination
|
206
|
+
TopicRegenerateKeyRequest = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicRegenerateKeyRequest
|
207
|
+
RetryPolicy = Azure::EventGrid::Mgmt::V2019_01_01::Models::RetryPolicy
|
208
|
+
Resource = Azure::EventGrid::Mgmt::V2019_01_01::Models::Resource
|
209
|
+
TopicSharedAccessKeys = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicSharedAccessKeys
|
210
|
+
TopicsListResult = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicsListResult
|
211
|
+
EventTypesListResult = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventTypesListResult
|
212
|
+
TopicUpdateParameters = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicUpdateParameters
|
213
|
+
StorageBlobDeadLetterDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::StorageBlobDeadLetterDestination
|
214
|
+
WebHookEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::WebHookEventSubscriptionDestination
|
215
|
+
EventHubEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventHubEventSubscriptionDestination
|
216
|
+
StorageQueueEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::StorageQueueEventSubscriptionDestination
|
217
|
+
HybridConnectionEventSubscriptionDestination = Azure::EventGrid::Mgmt::V2019_01_01::Models::HybridConnectionEventSubscriptionDestination
|
218
|
+
EventSubscription = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscription
|
219
|
+
TrackedResource = Azure::EventGrid::Mgmt::V2019_01_01::Models::TrackedResource
|
220
|
+
Topic = Azure::EventGrid::Mgmt::V2019_01_01::Models::Topic
|
221
|
+
EventType = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventType
|
222
|
+
TopicTypeInfo = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicTypeInfo
|
223
|
+
EventSubscriptionProvisioningState = Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionProvisioningState
|
224
|
+
TopicProvisioningState = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicProvisioningState
|
225
|
+
ResourceRegionType = Azure::EventGrid::Mgmt::V2019_01_01::Models::ResourceRegionType
|
226
|
+
TopicTypeProvisioningState = Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicTypeProvisioningState
|
256
227
|
end
|
257
228
|
|
258
229
|
class EventGridManagementClass
|
259
|
-
attr_reader :
|
230
|
+
attr_reader :event_subscriptions, :operations, :topics, :topic_types, :configurable, :base_url, :options, :model_classes
|
260
231
|
|
261
232
|
def initialize(configurable, base_url=nil, options=nil)
|
262
233
|
@configurable, @base_url, @options = configurable, base_url, options
|
263
234
|
|
264
|
-
@client_0 = Azure::EventGrid::Mgmt::
|
235
|
+
@client_0 = Azure::EventGrid::Mgmt::V2019_01_01::EventGridManagementClient.new(configurable.credentials, base_url, options)
|
265
236
|
if(@client_0.respond_to?(:subscription_id))
|
266
237
|
@client_0.subscription_id = configurable.subscription_id
|
267
238
|
end
|
268
239
|
add_telemetry(@client_0)
|
269
|
-
@domains = @client_0.domains
|
270
|
-
@domain_topics = @client_0.domain_topics
|
271
240
|
@event_subscriptions = @client_0.event_subscriptions
|
272
241
|
@operations = @client_0.operations
|
273
242
|
@topics = @client_0.topics
|
@@ -290,179 +259,98 @@ module Azure::Profiles::Latest
|
|
290
259
|
end
|
291
260
|
|
292
261
|
class ModelClasses
|
293
|
-
def
|
294
|
-
Azure::EventGrid::Mgmt::
|
262
|
+
def event_subscriptions_list_result
|
263
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionsListResult
|
295
264
|
end
|
296
|
-
def
|
297
|
-
Azure::EventGrid::Mgmt::
|
265
|
+
def operation_info
|
266
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::OperationInfo
|
298
267
|
end
|
299
|
-
def
|
300
|
-
Azure::EventGrid::Mgmt::
|
268
|
+
def event_subscription_filter
|
269
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionFilter
|
301
270
|
end
|
302
|
-
def
|
303
|
-
Azure::EventGrid::Mgmt::
|
271
|
+
def operation
|
272
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::Operation
|
304
273
|
end
|
305
|
-
def
|
306
|
-
Azure::EventGrid::Mgmt::
|
274
|
+
def dead_letter_destination
|
275
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::DeadLetterDestination
|
307
276
|
end
|
308
|
-
def
|
309
|
-
Azure::EventGrid::Mgmt::
|
277
|
+
def operations_list_result
|
278
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::OperationsListResult
|
310
279
|
end
|
311
280
|
def event_subscription_update_parameters
|
312
|
-
Azure::EventGrid::Mgmt::
|
313
|
-
end
|
314
|
-
def topic_regenerate_key_request
|
315
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::TopicRegenerateKeyRequest
|
281
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionUpdateParameters
|
316
282
|
end
|
317
|
-
def
|
318
|
-
Azure::EventGrid::Mgmt::
|
283
|
+
def event_subscription_full_url
|
284
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionFullUrl
|
319
285
|
end
|
320
|
-
def
|
321
|
-
Azure::EventGrid::Mgmt::
|
286
|
+
def topic_types_list_result
|
287
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicTypesListResult
|
322
288
|
end
|
323
|
-
def
|
324
|
-
Azure::EventGrid::Mgmt::
|
289
|
+
def event_subscription_destination
|
290
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionDestination
|
325
291
|
end
|
326
|
-
def
|
327
|
-
Azure::EventGrid::Mgmt::
|
292
|
+
def topic_regenerate_key_request
|
293
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicRegenerateKeyRequest
|
328
294
|
end
|
329
295
|
def retry_policy
|
330
|
-
Azure::EventGrid::Mgmt::
|
331
|
-
end
|
332
|
-
def json_field
|
333
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::JsonField
|
296
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::RetryPolicy
|
334
297
|
end
|
335
298
|
def resource
|
336
|
-
Azure::EventGrid::Mgmt::
|
299
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::Resource
|
337
300
|
end
|
338
|
-
def
|
339
|
-
Azure::EventGrid::Mgmt::
|
340
|
-
end
|
341
|
-
def domains_list_result
|
342
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::DomainsListResult
|
343
|
-
end
|
344
|
-
def operation
|
345
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::Operation
|
346
|
-
end
|
347
|
-
def event_subscription_destination
|
348
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventSubscriptionDestination
|
349
|
-
end
|
350
|
-
def operation_info
|
351
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::OperationInfo
|
352
|
-
end
|
353
|
-
def dead_letter_destination
|
354
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::DeadLetterDestination
|
355
|
-
end
|
356
|
-
def event_subscriptions_list_result
|
357
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventSubscriptionsListResult
|
301
|
+
def topic_shared_access_keys
|
302
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicSharedAccessKeys
|
358
303
|
end
|
359
|
-
def
|
360
|
-
Azure::EventGrid::Mgmt::
|
304
|
+
def topics_list_result
|
305
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicsListResult
|
361
306
|
end
|
362
307
|
def event_types_list_result
|
363
|
-
Azure::EventGrid::Mgmt::
|
308
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventTypesListResult
|
364
309
|
end
|
365
|
-
def
|
366
|
-
Azure::EventGrid::Mgmt::
|
367
|
-
end
|
368
|
-
def topic_types_list_result
|
369
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::TopicTypesListResult
|
370
|
-
end
|
371
|
-
def domain
|
372
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::Domain
|
373
|
-
end
|
374
|
-
def domain_topic
|
375
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::DomainTopic
|
376
|
-
end
|
377
|
-
def number_in_advanced_filter
|
378
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberInAdvancedFilter
|
310
|
+
def topic_update_parameters
|
311
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicUpdateParameters
|
379
312
|
end
|
380
313
|
def storage_blob_dead_letter_destination
|
381
|
-
Azure::EventGrid::Mgmt::
|
382
|
-
end
|
383
|
-
def number_not_in_advanced_filter
|
384
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberNotInAdvancedFilter
|
385
|
-
end
|
386
|
-
def number_less_than_advanced_filter
|
387
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberLessThanAdvancedFilter
|
388
|
-
end
|
389
|
-
def number_greater_than_advanced_filter
|
390
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberGreaterThanAdvancedFilter
|
391
|
-
end
|
392
|
-
def number_less_than_or_equals_advanced_filter
|
393
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberLessThanOrEqualsAdvancedFilter
|
394
|
-
end
|
395
|
-
def number_greater_than_or_equals_advanced_filter
|
396
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::NumberGreaterThanOrEqualsAdvancedFilter
|
397
|
-
end
|
398
|
-
def bool_equals_advanced_filter
|
399
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::BoolEqualsAdvancedFilter
|
400
|
-
end
|
401
|
-
def string_in_advanced_filter
|
402
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringInAdvancedFilter
|
403
|
-
end
|
404
|
-
def string_not_in_advanced_filter
|
405
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringNotInAdvancedFilter
|
406
|
-
end
|
407
|
-
def string_begins_with_advanced_filter
|
408
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringBeginsWithAdvancedFilter
|
409
|
-
end
|
410
|
-
def string_ends_with_advanced_filter
|
411
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringEndsWithAdvancedFilter
|
412
|
-
end
|
413
|
-
def string_contains_advanced_filter
|
414
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::StringContainsAdvancedFilter
|
314
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::StorageBlobDeadLetterDestination
|
415
315
|
end
|
416
316
|
def web_hook_event_subscription_destination
|
417
|
-
Azure::EventGrid::Mgmt::
|
317
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::WebHookEventSubscriptionDestination
|
418
318
|
end
|
419
319
|
def event_hub_event_subscription_destination
|
420
|
-
Azure::EventGrid::Mgmt::
|
320
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventHubEventSubscriptionDestination
|
421
321
|
end
|
422
322
|
def storage_queue_event_subscription_destination
|
423
|
-
Azure::EventGrid::Mgmt::
|
323
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::StorageQueueEventSubscriptionDestination
|
424
324
|
end
|
425
325
|
def hybrid_connection_event_subscription_destination
|
426
|
-
Azure::EventGrid::Mgmt::
|
326
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::HybridConnectionEventSubscriptionDestination
|
427
327
|
end
|
428
328
|
def event_subscription
|
429
|
-
Azure::EventGrid::Mgmt::
|
430
|
-
end
|
431
|
-
def json_input_schema_mapping
|
432
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::JsonInputSchemaMapping
|
329
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscription
|
433
330
|
end
|
434
331
|
def tracked_resource
|
435
|
-
Azure::EventGrid::Mgmt::
|
332
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TrackedResource
|
436
333
|
end
|
437
334
|
def topic
|
438
|
-
Azure::EventGrid::Mgmt::
|
335
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::Topic
|
439
336
|
end
|
440
337
|
def event_type
|
441
|
-
Azure::EventGrid::Mgmt::
|
338
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventType
|
442
339
|
end
|
443
340
|
def topic_type_info
|
444
|
-
Azure::EventGrid::Mgmt::
|
445
|
-
end
|
446
|
-
def domain_provisioning_state
|
447
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::DomainProvisioningState
|
448
|
-
end
|
449
|
-
def input_schema
|
450
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::InputSchema
|
341
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicTypeInfo
|
451
342
|
end
|
452
343
|
def event_subscription_provisioning_state
|
453
|
-
Azure::EventGrid::Mgmt::
|
454
|
-
end
|
455
|
-
def event_delivery_schema
|
456
|
-
Azure::EventGrid::Mgmt::V2018_09_15_preview::Models::EventDeliverySchema
|
344
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::EventSubscriptionProvisioningState
|
457
345
|
end
|
458
346
|
def topic_provisioning_state
|
459
|
-
Azure::EventGrid::Mgmt::
|
347
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicProvisioningState
|
460
348
|
end
|
461
349
|
def resource_region_type
|
462
|
-
Azure::EventGrid::Mgmt::
|
350
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::ResourceRegionType
|
463
351
|
end
|
464
352
|
def topic_type_provisioning_state
|
465
|
-
Azure::EventGrid::Mgmt::
|
353
|
+
Azure::EventGrid::Mgmt::V2019_01_01::Models::TopicTypeProvisioningState
|
466
354
|
end
|
467
355
|
end
|
468
356
|
end
|
@@ -0,0 +1,315 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'azure_mgmt_hdinsight'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module Hdinsight
|
9
|
+
module Mgmt
|
10
|
+
Clusters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Clusters
|
11
|
+
Applications = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Applications
|
12
|
+
Locations = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Locations
|
13
|
+
Configurations = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Configurations
|
14
|
+
Extensions = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Extensions
|
15
|
+
ScriptActions = Azure::Hdinsight::Mgmt::V2018_06_01_preview::ScriptActions
|
16
|
+
ScriptExecutionHistory = Azure::Hdinsight::Mgmt::V2018_06_01_preview::ScriptExecutionHistory
|
17
|
+
Operations = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Operations
|
18
|
+
|
19
|
+
module Models
|
20
|
+
ScriptActionExecutionSummary = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary
|
21
|
+
ClusterDefinition = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDefinition
|
22
|
+
ClusterListPersistedScriptActionsResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListPersistedScriptActionsResult
|
23
|
+
HardwareProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::HardwareProfile
|
24
|
+
SecurityProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SecurityProfile
|
25
|
+
DataDisksGroups = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DataDisksGroups
|
26
|
+
SshProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
|
27
|
+
ClusterListRuntimeScriptActionDetailResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListRuntimeScriptActionDetailResult
|
28
|
+
OsProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OsProfile
|
29
|
+
ClusterListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListResult
|
30
|
+
Role = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Role
|
31
|
+
ClusterResizeParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterResizeParameters
|
32
|
+
StorageAccount = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageAccount
|
33
|
+
ClusterDiskEncryptionParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDiskEncryptionParameters
|
34
|
+
DiskEncryptionProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DiskEncryptionProperties
|
35
|
+
OperationResource = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationResource
|
36
|
+
ClusterIdentityUserAssignedIdentitiesValue = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentityUserAssignedIdentitiesValue
|
37
|
+
Resource = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Resource
|
38
|
+
ClusterCreateParametersExtended = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateParametersExtended
|
39
|
+
OperationListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationListResult
|
40
|
+
QuotaInfo = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::QuotaInfo
|
41
|
+
Operation = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Operation
|
42
|
+
ConnectivityEndpoint = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ConnectivityEndpoint
|
43
|
+
ErrorResponse = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ErrorResponse
|
44
|
+
ScriptActionsList = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionsList
|
45
|
+
RuntimeScriptAction = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptAction
|
46
|
+
ApplicationGetHttpsEndpoint = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint
|
47
|
+
VirtualNetworkProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::VirtualNetworkProfile
|
48
|
+
ApplicationGetEndpoint = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetEndpoint
|
49
|
+
LinuxOperatingSystemProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LinuxOperatingSystemProfile
|
50
|
+
ApplicationProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationProperties
|
51
|
+
ComputeProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ComputeProfile
|
52
|
+
OperationDisplay = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationDisplay
|
53
|
+
ClusterCreateProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateProperties
|
54
|
+
ApplicationListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationListResult
|
55
|
+
ClusterPatchParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterPatchParameters
|
56
|
+
LocalizedName = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LocalizedName
|
57
|
+
ClusterGetProperties = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterGetProperties
|
58
|
+
Usage = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Usage
|
59
|
+
SshPublicKey = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshPublicKey
|
60
|
+
UsagesListResult = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::UsagesListResult
|
61
|
+
StorageProfile = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile
|
62
|
+
Extension = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Extension
|
63
|
+
Errors = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Errors
|
64
|
+
ClusterMonitoringResponse = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringResponse
|
65
|
+
ScriptAction = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptAction
|
66
|
+
ClusterMonitoringRequest = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringRequest
|
67
|
+
ExecuteScriptActionParameters = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExecuteScriptActionParameters
|
68
|
+
ScriptActionExecutionHistoryList = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionHistoryList
|
69
|
+
ClusterIdentity = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentity
|
70
|
+
ScriptActionPersistedGetResponseSpec = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionPersistedGetResponseSpec
|
71
|
+
Cluster = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Cluster
|
72
|
+
RuntimeScriptActionDetail = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptActionDetail
|
73
|
+
TrackedResource = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::TrackedResource
|
74
|
+
ProxyResource = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ProxyResource
|
75
|
+
Application = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Application
|
76
|
+
DirectoryType = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DirectoryType
|
77
|
+
OSType = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OSType
|
78
|
+
Tier = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Tier
|
79
|
+
JsonWebKeyEncryptionAlgorithm = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::JsonWebKeyEncryptionAlgorithm
|
80
|
+
ResourceIdentityType = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ResourceIdentityType
|
81
|
+
HDInsightClusterProvisioningState = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::HDInsightClusterProvisioningState
|
82
|
+
AsyncOperationState = Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::AsyncOperationState
|
83
|
+
end
|
84
|
+
|
85
|
+
class HdinsightManagementClass
|
86
|
+
attr_reader :clusters, :applications, :locations, :configurations, :extensions, :script_actions, :script_execution_history, :operations, :configurable, :base_url, :options, :model_classes
|
87
|
+
|
88
|
+
def initialize(configurable, base_url=nil, options=nil)
|
89
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
90
|
+
|
91
|
+
@client_0 = Azure::Hdinsight::Mgmt::V2018_06_01_preview::HDInsightManagementClient.new(configurable.credentials, base_url, options)
|
92
|
+
if(@client_0.respond_to?(:subscription_id))
|
93
|
+
@client_0.subscription_id = configurable.subscription_id
|
94
|
+
end
|
95
|
+
add_telemetry(@client_0)
|
96
|
+
@clusters = @client_0.clusters
|
97
|
+
@applications = @client_0.applications
|
98
|
+
@locations = @client_0.locations
|
99
|
+
@configurations = @client_0.configurations
|
100
|
+
@extensions = @client_0.extensions
|
101
|
+
@script_actions = @client_0.script_actions
|
102
|
+
@script_execution_history = @client_0.script_execution_history
|
103
|
+
@operations = @client_0.operations
|
104
|
+
|
105
|
+
@model_classes = ModelClasses.new
|
106
|
+
end
|
107
|
+
|
108
|
+
def add_telemetry(client)
|
109
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/Hdinsight/Mgmt"
|
110
|
+
client.add_user_agent_information(profile_information)
|
111
|
+
end
|
112
|
+
|
113
|
+
def method_missing(method, *args)
|
114
|
+
if @client_0.respond_to?method
|
115
|
+
@client_0.send(method, *args)
|
116
|
+
else
|
117
|
+
super
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
class ModelClasses
|
122
|
+
def script_action_execution_summary
|
123
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary
|
124
|
+
end
|
125
|
+
def cluster_definition
|
126
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDefinition
|
127
|
+
end
|
128
|
+
def cluster_list_persisted_script_actions_result
|
129
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListPersistedScriptActionsResult
|
130
|
+
end
|
131
|
+
def hardware_profile
|
132
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::HardwareProfile
|
133
|
+
end
|
134
|
+
def security_profile
|
135
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SecurityProfile
|
136
|
+
end
|
137
|
+
def data_disks_groups
|
138
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DataDisksGroups
|
139
|
+
end
|
140
|
+
def ssh_profile
|
141
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
|
142
|
+
end
|
143
|
+
def cluster_list_runtime_script_action_detail_result
|
144
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListRuntimeScriptActionDetailResult
|
145
|
+
end
|
146
|
+
def os_profile
|
147
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OsProfile
|
148
|
+
end
|
149
|
+
def cluster_list_result
|
150
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListResult
|
151
|
+
end
|
152
|
+
def role
|
153
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Role
|
154
|
+
end
|
155
|
+
def cluster_resize_parameters
|
156
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterResizeParameters
|
157
|
+
end
|
158
|
+
def storage_account
|
159
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageAccount
|
160
|
+
end
|
161
|
+
def cluster_disk_encryption_parameters
|
162
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterDiskEncryptionParameters
|
163
|
+
end
|
164
|
+
def disk_encryption_properties
|
165
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DiskEncryptionProperties
|
166
|
+
end
|
167
|
+
def operation_resource
|
168
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationResource
|
169
|
+
end
|
170
|
+
def cluster_identity_user_assigned_identities_value
|
171
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentityUserAssignedIdentitiesValue
|
172
|
+
end
|
173
|
+
def resource
|
174
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Resource
|
175
|
+
end
|
176
|
+
def cluster_create_parameters_extended
|
177
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateParametersExtended
|
178
|
+
end
|
179
|
+
def operation_list_result
|
180
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationListResult
|
181
|
+
end
|
182
|
+
def quota_info
|
183
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::QuotaInfo
|
184
|
+
end
|
185
|
+
def operation
|
186
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Operation
|
187
|
+
end
|
188
|
+
def connectivity_endpoint
|
189
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ConnectivityEndpoint
|
190
|
+
end
|
191
|
+
def error_response
|
192
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ErrorResponse
|
193
|
+
end
|
194
|
+
def script_actions_list
|
195
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionsList
|
196
|
+
end
|
197
|
+
def runtime_script_action
|
198
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptAction
|
199
|
+
end
|
200
|
+
def application_get_https_endpoint
|
201
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint
|
202
|
+
end
|
203
|
+
def virtual_network_profile
|
204
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::VirtualNetworkProfile
|
205
|
+
end
|
206
|
+
def application_get_endpoint
|
207
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetEndpoint
|
208
|
+
end
|
209
|
+
def linux_operating_system_profile
|
210
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LinuxOperatingSystemProfile
|
211
|
+
end
|
212
|
+
def application_properties
|
213
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationProperties
|
214
|
+
end
|
215
|
+
def compute_profile
|
216
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ComputeProfile
|
217
|
+
end
|
218
|
+
def operation_display
|
219
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OperationDisplay
|
220
|
+
end
|
221
|
+
def cluster_create_properties
|
222
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterCreateProperties
|
223
|
+
end
|
224
|
+
def application_list_result
|
225
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationListResult
|
226
|
+
end
|
227
|
+
def cluster_patch_parameters
|
228
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterPatchParameters
|
229
|
+
end
|
230
|
+
def localized_name
|
231
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::LocalizedName
|
232
|
+
end
|
233
|
+
def cluster_get_properties
|
234
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterGetProperties
|
235
|
+
end
|
236
|
+
def usage
|
237
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Usage
|
238
|
+
end
|
239
|
+
def ssh_public_key
|
240
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshPublicKey
|
241
|
+
end
|
242
|
+
def usages_list_result
|
243
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::UsagesListResult
|
244
|
+
end
|
245
|
+
def storage_profile
|
246
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile
|
247
|
+
end
|
248
|
+
def extension
|
249
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Extension
|
250
|
+
end
|
251
|
+
def errors
|
252
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Errors
|
253
|
+
end
|
254
|
+
def cluster_monitoring_response
|
255
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringResponse
|
256
|
+
end
|
257
|
+
def script_action
|
258
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptAction
|
259
|
+
end
|
260
|
+
def cluster_monitoring_request
|
261
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterMonitoringRequest
|
262
|
+
end
|
263
|
+
def execute_script_action_parameters
|
264
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExecuteScriptActionParameters
|
265
|
+
end
|
266
|
+
def script_action_execution_history_list
|
267
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionHistoryList
|
268
|
+
end
|
269
|
+
def cluster_identity
|
270
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentity
|
271
|
+
end
|
272
|
+
def script_action_persisted_get_response_spec
|
273
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionPersistedGetResponseSpec
|
274
|
+
end
|
275
|
+
def cluster
|
276
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Cluster
|
277
|
+
end
|
278
|
+
def runtime_script_action_detail
|
279
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::RuntimeScriptActionDetail
|
280
|
+
end
|
281
|
+
def tracked_resource
|
282
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::TrackedResource
|
283
|
+
end
|
284
|
+
def proxy_resource
|
285
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ProxyResource
|
286
|
+
end
|
287
|
+
def application
|
288
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Application
|
289
|
+
end
|
290
|
+
def directory_type
|
291
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::DirectoryType
|
292
|
+
end
|
293
|
+
def ostype
|
294
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::OSType
|
295
|
+
end
|
296
|
+
def tier
|
297
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Tier
|
298
|
+
end
|
299
|
+
def json_web_key_encryption_algorithm
|
300
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::JsonWebKeyEncryptionAlgorithm
|
301
|
+
end
|
302
|
+
def resource_identity_type
|
303
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ResourceIdentityType
|
304
|
+
end
|
305
|
+
def hdinsight_cluster_provisioning_state
|
306
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::HDInsightClusterProvisioningState
|
307
|
+
end
|
308
|
+
def async_operation_state
|
309
|
+
Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::AsyncOperationState
|
310
|
+
end
|
311
|
+
end
|
312
|
+
end
|
313
|
+
end
|
314
|
+
end
|
315
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Microsoft Corporation
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -352,14 +352,14 @@ dependencies:
|
|
352
352
|
requirements:
|
353
353
|
- - "~>"
|
354
354
|
- !ruby/object:Gem::Version
|
355
|
-
version: 0.17.
|
355
|
+
version: 0.17.3
|
356
356
|
type: :runtime
|
357
357
|
prerelease: false
|
358
358
|
version_requirements: !ruby/object:Gem::Requirement
|
359
359
|
requirements:
|
360
360
|
- - "~>"
|
361
361
|
- !ruby/object:Gem::Version
|
362
|
-
version: 0.17.
|
362
|
+
version: 0.17.3
|
363
363
|
- !ruby/object:Gem::Dependency
|
364
364
|
name: azure_mgmt_event_hub
|
365
365
|
requirement: !ruby/object:Gem::Requirement
|
@@ -464,14 +464,14 @@ dependencies:
|
|
464
464
|
requirements:
|
465
465
|
- - "~>"
|
466
466
|
- !ruby/object:Gem::Version
|
467
|
-
version: 0.
|
467
|
+
version: 0.18.0
|
468
468
|
type: :runtime
|
469
469
|
prerelease: false
|
470
470
|
version_requirements: !ruby/object:Gem::Requirement
|
471
471
|
requirements:
|
472
472
|
- - "~>"
|
473
473
|
- !ruby/object:Gem::Version
|
474
|
-
version: 0.
|
474
|
+
version: 0.18.0
|
475
475
|
- !ruby/object:Gem::Dependency
|
476
476
|
name: azure_mgmt_machine_learning
|
477
477
|
requirement: !ruby/object:Gem::Requirement
|
@@ -688,14 +688,14 @@ dependencies:
|
|
688
688
|
requirements:
|
689
689
|
- - "~>"
|
690
690
|
- !ruby/object:Gem::Version
|
691
|
-
version: 0.17.
|
691
|
+
version: 0.17.2
|
692
692
|
type: :runtime
|
693
693
|
prerelease: false
|
694
694
|
version_requirements: !ruby/object:Gem::Requirement
|
695
695
|
requirements:
|
696
696
|
- - "~>"
|
697
697
|
- !ruby/object:Gem::Version
|
698
|
-
version: 0.17.
|
698
|
+
version: 0.17.2
|
699
699
|
- !ruby/object:Gem::Dependency
|
700
700
|
name: azure_mgmt_relay
|
701
701
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1175,6 +1175,7 @@ files:
|
|
1175
1175
|
- lib/latest/modules/face_profile_module.rb
|
1176
1176
|
- lib/latest/modules/features_profile_module.rb
|
1177
1177
|
- lib/latest/modules/graphrbac_profile_module.rb
|
1178
|
+
- lib/latest/modules/hdinsight_profile_module.rb
|
1178
1179
|
- lib/latest/modules/imagesearch_profile_module.rb
|
1179
1180
|
- lib/latest/modules/iotcentral_profile_module.rb
|
1180
1181
|
- lib/latest/modules/iothub_profile_module.rb
|
@@ -1260,7 +1261,7 @@ metadata:
|
|
1260
1261
|
changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
|
1261
1262
|
documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
|
1262
1263
|
homepage_uri: https://aka.ms/azure-sdk-for-ruby
|
1263
|
-
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.
|
1264
|
+
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.21.0
|
1264
1265
|
wiki_uri: https://github.com/Azure/azure-sdk-for-ruby/wiki
|
1265
1266
|
post_install_message:
|
1266
1267
|
rdoc_options: []
|