azure_mgmt_stor_simple8000_series 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.
- checksums.yaml +4 -4
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/access_control_records.rb +32 -30
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/alerts.rb +27 -27
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/backup_policies.rb +42 -39
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/backup_schedules.rb +32 -30
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/backups.rb +45 -42
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/bandwidth_settings.rb +32 -30
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/cloud_appliances.rb +16 -16
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/device_settings.rb +74 -73
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/devices.rb +114 -107
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/hardware_component_groups.rb +16 -16
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/jobs.rb +46 -40
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb +108 -98
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/operations.rb +15 -13
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/stor_simple8000series_management_client.rb +4 -1
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/storage_account_credentials.rb +32 -30
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/volume_containers.rb +44 -40
- data/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/volumes.rb +50 -45
- data/lib/profiles/latest/modules/storsimple8000series_profile_module.rb +520 -501
- data/lib/profiles/latest/storsimple8000series_latest_profile_client.rb +28 -9
- data/lib/profiles/latest/storsimple8000series_module_definition.rb +0 -1
- data/lib/version.rb +1 -1
- metadata +3 -3
@@ -33,8 +33,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
33
33
|
#
|
34
34
|
# @return [VolumeList] operation results.
|
35
35
|
#
|
36
|
-
def list_by_volume_container(device_name, volume_container_name, resource_group_name, manager_name, custom_headers
|
37
|
-
response = list_by_volume_container_async(device_name, volume_container_name, resource_group_name, manager_name, custom_headers).value!
|
36
|
+
def list_by_volume_container(device_name, volume_container_name, resource_group_name, manager_name, custom_headers:nil)
|
37
|
+
response = list_by_volume_container_async(device_name, volume_container_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
38
38
|
response.body unless response.nil?
|
39
39
|
end
|
40
40
|
|
@@ -50,8 +50,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
50
50
|
#
|
51
51
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
52
52
|
#
|
53
|
-
def list_by_volume_container_with_http_info(device_name, volume_container_name, resource_group_name, manager_name, custom_headers
|
54
|
-
list_by_volume_container_async(device_name, volume_container_name, resource_group_name, manager_name, custom_headers).value!
|
53
|
+
def list_by_volume_container_with_http_info(device_name, volume_container_name, resource_group_name, manager_name, custom_headers:nil)
|
54
|
+
list_by_volume_container_async(device_name, volume_container_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
55
55
|
end
|
56
56
|
|
57
57
|
#
|
@@ -66,7 +66,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
66
66
|
#
|
67
67
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
68
68
|
#
|
69
|
-
def list_by_volume_container_async(device_name, volume_container_name, resource_group_name, manager_name, custom_headers
|
69
|
+
def list_by_volume_container_async(device_name, volume_container_name, resource_group_name, manager_name, custom_headers:nil)
|
70
70
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
71
71
|
fail ArgumentError, 'volume_container_name is nil' if volume_container_name.nil?
|
72
72
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
@@ -78,6 +78,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
78
78
|
|
79
79
|
|
80
80
|
request_headers = {}
|
81
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
81
82
|
|
82
83
|
# Set Headers
|
83
84
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -135,8 +136,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
135
136
|
#
|
136
137
|
# @return [Volume] operation results.
|
137
138
|
#
|
138
|
-
def get(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
139
|
-
response = get_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
139
|
+
def get(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
140
|
+
response = get_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
140
141
|
response.body unless response.nil?
|
141
142
|
end
|
142
143
|
|
@@ -153,8 +154,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
153
154
|
#
|
154
155
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
155
156
|
#
|
156
|
-
def get_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
157
|
-
get_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
157
|
+
def get_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
158
|
+
get_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
158
159
|
end
|
159
160
|
|
160
161
|
#
|
@@ -170,7 +171,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
170
171
|
#
|
171
172
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
172
173
|
#
|
173
|
-
def get_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
174
|
+
def get_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
174
175
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
175
176
|
fail ArgumentError, 'volume_container_name is nil' if volume_container_name.nil?
|
176
177
|
fail ArgumentError, 'volume_name is nil' if volume_name.nil?
|
@@ -183,6 +184,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
183
184
|
|
184
185
|
|
185
186
|
request_headers = {}
|
187
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
186
188
|
|
187
189
|
# Set Headers
|
188
190
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -241,8 +243,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
241
243
|
#
|
242
244
|
# @return [Volume] operation results.
|
243
245
|
#
|
244
|
-
def create_or_update(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers
|
245
|
-
response = create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers).value!
|
246
|
+
def create_or_update(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:nil)
|
247
|
+
response = create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
246
248
|
response.body unless response.nil?
|
247
249
|
end
|
248
250
|
|
@@ -259,9 +261,9 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
259
261
|
# @return [Concurrent::Promise] promise which provides async access to http
|
260
262
|
# response.
|
261
263
|
#
|
262
|
-
def create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers
|
264
|
+
def create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:nil)
|
263
265
|
# Send request
|
264
|
-
promise = begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers)
|
266
|
+
promise = begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:custom_headers)
|
265
267
|
|
266
268
|
promise = promise.then do |response|
|
267
269
|
# Defining deserialization method.
|
@@ -288,8 +290,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
288
290
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
289
291
|
# will be added to the HTTP request.
|
290
292
|
#
|
291
|
-
def delete(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
292
|
-
response = delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
293
|
+
def delete(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
294
|
+
response = delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
293
295
|
nil
|
294
296
|
end
|
295
297
|
|
@@ -305,9 +307,9 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
305
307
|
# @return [Concurrent::Promise] promise which provides async access to http
|
306
308
|
# response.
|
307
309
|
#
|
308
|
-
def delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
310
|
+
def delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
309
311
|
# Send request
|
310
|
-
promise = begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers)
|
312
|
+
promise = begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers)
|
311
313
|
|
312
314
|
promise = promise.then do |response|
|
313
315
|
# Defining deserialization method.
|
@@ -335,8 +337,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
335
337
|
#
|
336
338
|
# @return [MetricList] operation results.
|
337
339
|
#
|
338
|
-
def list_metrics(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers
|
339
|
-
response = list_metrics_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers).value!
|
340
|
+
def list_metrics(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers:nil)
|
341
|
+
response = list_metrics_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers:custom_headers).value!
|
340
342
|
response.body unless response.nil?
|
341
343
|
end
|
342
344
|
|
@@ -354,8 +356,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
354
356
|
#
|
355
357
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
356
358
|
#
|
357
|
-
def list_metrics_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers
|
358
|
-
list_metrics_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers).value!
|
359
|
+
def list_metrics_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers:nil)
|
360
|
+
list_metrics_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers:custom_headers).value!
|
359
361
|
end
|
360
362
|
|
361
363
|
#
|
@@ -372,7 +374,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
372
374
|
#
|
373
375
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
374
376
|
#
|
375
|
-
def list_metrics_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers
|
377
|
+
def list_metrics_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, filter, custom_headers:nil)
|
376
378
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
377
379
|
fail ArgumentError, 'volume_container_name is nil' if volume_container_name.nil?
|
378
380
|
fail ArgumentError, 'volume_name is nil' if volume_name.nil?
|
@@ -386,6 +388,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
386
388
|
|
387
389
|
|
388
390
|
request_headers = {}
|
391
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
389
392
|
|
390
393
|
# Set Headers
|
391
394
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -444,8 +447,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
444
447
|
#
|
445
448
|
# @return [MetricDefinitionList] operation results.
|
446
449
|
#
|
447
|
-
def list_metric_definition(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
448
|
-
response = list_metric_definition_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
450
|
+
def list_metric_definition(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
451
|
+
response = list_metric_definition_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
449
452
|
response.body unless response.nil?
|
450
453
|
end
|
451
454
|
|
@@ -462,8 +465,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
462
465
|
#
|
463
466
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
464
467
|
#
|
465
|
-
def list_metric_definition_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
466
|
-
list_metric_definition_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
468
|
+
def list_metric_definition_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
469
|
+
list_metric_definition_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
467
470
|
end
|
468
471
|
|
469
472
|
#
|
@@ -479,7 +482,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
479
482
|
#
|
480
483
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
481
484
|
#
|
482
|
-
def list_metric_definition_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
485
|
+
def list_metric_definition_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
483
486
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
484
487
|
fail ArgumentError, 'volume_container_name is nil' if volume_container_name.nil?
|
485
488
|
fail ArgumentError, 'volume_name is nil' if volume_name.nil?
|
@@ -492,6 +495,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
492
495
|
|
493
496
|
|
494
497
|
request_headers = {}
|
498
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
495
499
|
|
496
500
|
# Set Headers
|
497
501
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -547,8 +551,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
547
551
|
#
|
548
552
|
# @return [VolumeList] operation results.
|
549
553
|
#
|
550
|
-
def list_by_device(device_name, resource_group_name, manager_name, custom_headers
|
551
|
-
response = list_by_device_async(device_name, resource_group_name, manager_name, custom_headers).value!
|
554
|
+
def list_by_device(device_name, resource_group_name, manager_name, custom_headers:nil)
|
555
|
+
response = list_by_device_async(device_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
552
556
|
response.body unless response.nil?
|
553
557
|
end
|
554
558
|
|
@@ -563,8 +567,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
563
567
|
#
|
564
568
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
565
569
|
#
|
566
|
-
def list_by_device_with_http_info(device_name, resource_group_name, manager_name, custom_headers
|
567
|
-
list_by_device_async(device_name, resource_group_name, manager_name, custom_headers).value!
|
570
|
+
def list_by_device_with_http_info(device_name, resource_group_name, manager_name, custom_headers:nil)
|
571
|
+
list_by_device_async(device_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
568
572
|
end
|
569
573
|
|
570
574
|
#
|
@@ -578,7 +582,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
578
582
|
#
|
579
583
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
580
584
|
#
|
581
|
-
def list_by_device_async(device_name, resource_group_name, manager_name, custom_headers
|
585
|
+
def list_by_device_async(device_name, resource_group_name, manager_name, custom_headers:nil)
|
582
586
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
583
587
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
584
588
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
@@ -589,6 +593,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
589
593
|
|
590
594
|
|
591
595
|
request_headers = {}
|
596
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
592
597
|
|
593
598
|
# Set Headers
|
594
599
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -647,8 +652,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
647
652
|
#
|
648
653
|
# @return [Volume] operation results.
|
649
654
|
#
|
650
|
-
def begin_create_or_update(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers
|
651
|
-
response = begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers).value!
|
655
|
+
def begin_create_or_update(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:nil)
|
656
|
+
response = begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
652
657
|
response.body unless response.nil?
|
653
658
|
end
|
654
659
|
|
@@ -666,8 +671,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
666
671
|
#
|
667
672
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
668
673
|
#
|
669
|
-
def begin_create_or_update_with_http_info(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers
|
670
|
-
begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers).value!
|
674
|
+
def begin_create_or_update_with_http_info(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:nil)
|
675
|
+
begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
671
676
|
end
|
672
677
|
|
673
678
|
#
|
@@ -684,7 +689,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
684
689
|
#
|
685
690
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
686
691
|
#
|
687
|
-
def begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers
|
692
|
+
def begin_create_or_update_async(device_name, volume_container_name, volume_name, parameters, resource_group_name, manager_name, custom_headers:nil)
|
688
693
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
689
694
|
fail ArgumentError, 'volume_container_name is nil' if volume_container_name.nil?
|
690
695
|
fail ArgumentError, 'volume_name is nil' if volume_name.nil?
|
@@ -698,13 +703,12 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
698
703
|
|
699
704
|
|
700
705
|
request_headers = {}
|
706
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
701
707
|
|
702
708
|
# Set Headers
|
703
709
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
704
710
|
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
705
711
|
|
706
|
-
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
707
|
-
|
708
712
|
# Serialize Request
|
709
713
|
request_mapper = Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Volume.mapper()
|
710
714
|
request_content = @client.serialize(request_mapper, parameters)
|
@@ -763,8 +767,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
763
767
|
# will be added to the HTTP request.
|
764
768
|
#
|
765
769
|
#
|
766
|
-
def begin_delete(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
767
|
-
response = begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
770
|
+
def begin_delete(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
771
|
+
response = begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
768
772
|
nil
|
769
773
|
end
|
770
774
|
|
@@ -781,8 +785,8 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
781
785
|
#
|
782
786
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
783
787
|
#
|
784
|
-
def begin_delete_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
785
|
-
begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers).value!
|
788
|
+
def begin_delete_with_http_info(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
789
|
+
begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
|
786
790
|
end
|
787
791
|
|
788
792
|
#
|
@@ -798,7 +802,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
798
802
|
#
|
799
803
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
800
804
|
#
|
801
|
-
def begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers
|
805
|
+
def begin_delete_async(device_name, volume_container_name, volume_name, resource_group_name, manager_name, custom_headers:nil)
|
802
806
|
fail ArgumentError, 'device_name is nil' if device_name.nil?
|
803
807
|
fail ArgumentError, 'volume_container_name is nil' if volume_container_name.nil?
|
804
808
|
fail ArgumentError, 'volume_name is nil' if volume_name.nil?
|
@@ -811,6 +815,7 @@ module Azure::StorSimple8000Series::Mgmt::V2017_06_01
|
|
811
815
|
|
812
816
|
|
813
817
|
request_headers = {}
|
818
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
814
819
|
|
815
820
|
# Set Headers
|
816
821
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -4,7 +4,8 @@
|
|
4
4
|
|
5
5
|
require 'azure_mgmt_stor_simple8000_series'
|
6
6
|
|
7
|
-
module Azure::StorSimple8000Series::Profiles::Latest
|
7
|
+
module Azure::StorSimple8000Series::Profiles::Latest
|
8
|
+
module Mgmt
|
8
9
|
Operations = Azure::StorSimple8000Series::Mgmt::V2017_06_01::Operations
|
9
10
|
Managers = Azure::StorSimple8000Series::Mgmt::V2017_06_01::Managers
|
10
11
|
AccessControlRecords = Azure::StorSimple8000Series::Mgmt::V2017_06_01::AccessControlRecords
|
@@ -185,9 +186,9 @@ module Azure::StorSimple8000Series::Profiles::Latest::Mgmt
|
|
185
186
|
end
|
186
187
|
|
187
188
|
#
|
188
|
-
#
|
189
|
+
# StorSimple8000SeriesManagementClass
|
189
190
|
#
|
190
|
-
class
|
191
|
+
class StorSimple8000SeriesManagementClass
|
191
192
|
attr_reader :operations, :managers, :access_control_records, :alerts, :bandwidth_settings, :cloud_appliances, :devices, :device_settings, :backup_policies, :backup_schedules, :backups, :hardware_component_groups, :jobs, :volume_containers, :volumes, :storage_account_credentials, :configurable, :base_url, :options, :model_classes
|
192
193
|
|
193
194
|
def initialize(options = {})
|
@@ -199,510 +200,528 @@ module Azure::StorSimple8000Series::Profiles::Latest::Mgmt
|
|
199
200
|
|
200
201
|
reset!(options)
|
201
202
|
|
202
|
-
@configurable
|
203
|
+
@configurable = self
|
204
|
+
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
205
|
+
@options = options[:options].nil? ? nil:options[:options]
|
203
206
|
|
204
|
-
client_0 = Azure::StorSimple8000Series::Mgmt::V2017_06_01::StorSimple8000SeriesManagementClient.new(configurable.credentials, base_url, options)
|
205
|
-
if(client_0.respond_to?(:subscription_id))
|
206
|
-
client_0.subscription_id = configurable.subscription_id
|
207
|
-
end
|
208
|
-
@
|
209
|
-
@
|
210
|
-
@
|
211
|
-
@
|
212
|
-
@
|
213
|
-
@
|
214
|
-
@
|
215
|
-
@
|
216
|
-
@
|
217
|
-
@
|
218
|
-
@
|
219
|
-
@
|
220
|
-
@
|
221
|
-
@
|
222
|
-
@
|
223
|
-
@
|
207
|
+
@client_0 = Azure::StorSimple8000Series::Mgmt::V2017_06_01::StorSimple8000SeriesManagementClient.new(configurable.credentials, base_url, options)
|
208
|
+
if(@client_0.respond_to?(:subscription_id))
|
209
|
+
@client_0.subscription_id = configurable.subscription_id
|
210
|
+
end
|
211
|
+
add_telemetry(@client_0)
|
212
|
+
@operations = @client_0.operations
|
213
|
+
@managers = @client_0.managers
|
214
|
+
@access_control_records = @client_0.access_control_records
|
215
|
+
@alerts = @client_0.alerts
|
216
|
+
@bandwidth_settings = @client_0.bandwidth_settings
|
217
|
+
@cloud_appliances = @client_0.cloud_appliances
|
218
|
+
@devices = @client_0.devices
|
219
|
+
@device_settings = @client_0.device_settings
|
220
|
+
@backup_policies = @client_0.backup_policies
|
221
|
+
@backup_schedules = @client_0.backup_schedules
|
222
|
+
@backups = @client_0.backups
|
223
|
+
@hardware_component_groups = @client_0.hardware_component_groups
|
224
|
+
@jobs = @client_0.jobs
|
225
|
+
@volume_containers = @client_0.volume_containers
|
226
|
+
@volumes = @client_0.volumes
|
227
|
+
@storage_account_credentials = @client_0.storage_account_credentials
|
224
228
|
|
225
229
|
@model_classes = ModelClasses.new
|
226
230
|
end
|
227
231
|
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
def failover_targets_list
|
239
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverTargetsList
|
240
|
-
end
|
241
|
-
def alert_source
|
242
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSource
|
243
|
-
end
|
244
|
-
def feature
|
245
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Feature
|
246
|
-
end
|
247
|
-
def remote_management_settings
|
248
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RemoteManagementSettings
|
249
|
-
end
|
250
|
-
def failover_request
|
251
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverRequest
|
252
|
-
end
|
253
|
-
def alert_list
|
254
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertList
|
255
|
-
end
|
256
|
-
def volume_failover_metadata
|
257
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeFailoverMetadata
|
258
|
-
end
|
259
|
-
def asymmetric_encrypted_secret
|
260
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AsymmetricEncryptedSecret
|
261
|
-
end
|
262
|
-
def volume_container_failover_metadata
|
263
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeContainerFailoverMetadata
|
264
|
-
end
|
265
|
-
def available_provider_operation
|
266
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AvailableProviderOperation
|
267
|
-
end
|
268
|
-
def failover_set_eligibility_result
|
269
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverSetEligibilityResult
|
270
|
-
end
|
271
|
-
def backup_element
|
272
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupElement
|
273
|
-
end
|
274
|
-
def failover_set
|
275
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverSet
|
276
|
-
end
|
277
|
-
def backup_filter
|
278
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupFilter
|
279
|
-
end
|
280
|
-
def failover_sets_list
|
281
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverSetsList
|
282
|
-
end
|
283
|
-
def volume_container_list
|
284
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeContainerList
|
285
|
-
end
|
286
|
-
def target_eligibility_error_message
|
287
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityErrorMessage
|
288
|
-
end
|
289
|
-
def schedule_recurrence
|
290
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ScheduleRecurrence
|
291
|
-
end
|
292
|
-
def symmetric_encrypted_secret
|
293
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SymmetricEncryptedSecret
|
294
|
-
end
|
295
|
-
def nic_ipv6
|
296
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NicIPv6
|
297
|
-
end
|
298
|
-
def time
|
299
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Time
|
300
|
-
end
|
301
|
-
def acs_configuration
|
302
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AcsConfiguration
|
303
|
-
end
|
304
|
-
def storage_account_credential_list
|
305
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::StorageAccountCredentialList
|
306
|
-
end
|
307
|
-
def alert_error_details
|
308
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertErrorDetails
|
309
|
-
end
|
310
|
-
def base_model
|
311
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BaseModel
|
312
|
-
end
|
313
|
-
def public_key
|
314
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::PublicKey
|
315
|
-
end
|
316
|
-
def clear_alert_request
|
317
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ClearAlertRequest
|
318
|
-
end
|
319
|
-
def feature_filter
|
320
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FeatureFilter
|
321
|
-
end
|
322
|
-
def cloud_appliance
|
323
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudAppliance
|
324
|
-
end
|
325
|
-
def feature_list
|
326
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FeatureList
|
327
|
-
end
|
328
|
-
def send_test_alert_email_request
|
329
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SendTestAlertEmailRequest
|
330
|
-
end
|
331
|
-
def hardware_component
|
332
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponent
|
333
|
-
end
|
334
|
-
def cloud_appliance_settings
|
335
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceSettings
|
336
|
-
end
|
337
|
-
def network_settings_patch
|
338
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkSettingsPatch
|
339
|
-
end
|
340
|
-
def network_interface_data0_settings
|
341
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkInterfaceData0Settings
|
342
|
-
end
|
343
|
-
def hardware_component_group_list
|
344
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponentGroupList
|
345
|
-
end
|
346
|
-
def resource
|
347
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Resource
|
348
|
-
end
|
349
|
-
def job_error_item
|
350
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobErrorItem
|
351
|
-
end
|
352
|
-
def device_details
|
353
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceDetails
|
354
|
-
end
|
355
|
-
def job_error_details
|
356
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobErrorDetails
|
357
|
-
end
|
358
|
-
def remote_management_settings_patch
|
359
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RemoteManagementSettingsPatch
|
360
|
-
end
|
361
|
-
def job_stage
|
362
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobStage
|
363
|
-
end
|
364
|
-
def device_patch
|
365
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DevicePatch
|
366
|
-
end
|
367
|
-
def webproxy_settings
|
368
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::WebproxySettings
|
369
|
-
end
|
370
|
-
def dnssettings
|
371
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DNSSettings
|
372
|
-
end
|
373
|
-
def job_filter
|
374
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobFilter
|
375
|
-
end
|
376
|
-
def job_list
|
377
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobList
|
378
|
-
end
|
379
|
-
def available_provider_operation_list
|
380
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AvailableProviderOperationList
|
381
|
-
end
|
382
|
-
def key
|
383
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Key
|
384
|
-
end
|
385
|
-
def backup_list
|
386
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupList
|
387
|
-
end
|
388
|
-
def list_failover_targets_request
|
389
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ListFailoverTargetsRequest
|
390
|
-
end
|
391
|
-
def backup_schedule_list
|
392
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupScheduleList
|
393
|
-
end
|
394
|
-
def manager_intrinsic_settings
|
395
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerIntrinsicSettings
|
396
|
-
end
|
397
|
-
def bandwidth_setting_list
|
398
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BandwidthSettingList
|
399
|
-
end
|
400
|
-
def manager_sku
|
401
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerSku
|
402
|
-
end
|
403
|
-
def clone_request
|
404
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloneRequest
|
405
|
-
end
|
406
|
-
def network_adapter_list
|
407
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkAdapterList
|
408
|
-
end
|
409
|
-
def cloud_appliance_configuration_list
|
410
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceConfigurationList
|
411
|
-
end
|
412
|
-
def network_adapters
|
413
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkAdapters
|
414
|
-
end
|
415
|
-
def security_settings_patch
|
416
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettingsPatch
|
417
|
-
end
|
418
|
-
def manager_list
|
419
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerList
|
420
|
-
end
|
421
|
-
def device_rollover_details
|
422
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceRolloverDetails
|
423
|
-
end
|
424
|
-
def manager_patch
|
425
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerPatch
|
426
|
-
end
|
427
|
-
def dimension_filter
|
428
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DimensionFilter
|
429
|
-
end
|
430
|
-
def metric_availablity
|
431
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricAvailablity
|
432
|
-
end
|
433
|
-
def available_provider_operation_display
|
434
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AvailableProviderOperationDisplay
|
435
|
-
end
|
436
|
-
def metric_data
|
437
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricData
|
438
|
-
end
|
439
|
-
def backup_policy_list
|
440
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupPolicyList
|
441
|
-
end
|
442
|
-
def metric_name
|
443
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricName
|
444
|
-
end
|
445
|
-
def chap_settings
|
446
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ChapSettings
|
447
|
-
end
|
448
|
-
def metric_dimension
|
449
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricDimension
|
450
|
-
end
|
451
|
-
def secondary_dnssettings
|
452
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecondaryDNSSettings
|
453
|
-
end
|
454
|
-
def metric_definition
|
455
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricDefinition
|
456
|
-
end
|
457
|
-
def device_list
|
458
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceList
|
459
|
-
end
|
460
|
-
def metric_definition_list
|
461
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricDefinitionList
|
462
|
-
end
|
463
|
-
def volume_list
|
464
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeList
|
465
|
-
end
|
466
|
-
def metric_name_filter
|
467
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricNameFilter
|
468
|
-
end
|
469
|
-
def vm_image
|
470
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VmImage
|
471
|
-
end
|
472
|
-
def metric_filter
|
473
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricFilter
|
474
|
-
end
|
475
|
-
def alert_filter
|
476
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertFilter
|
477
|
-
end
|
478
|
-
def metrics
|
479
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Metrics
|
480
|
-
end
|
481
|
-
def data_statistics
|
482
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DataStatistics
|
483
|
-
end
|
484
|
-
def metric_list
|
485
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricList
|
486
|
-
end
|
487
|
-
def bandwidth_schedule
|
488
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BandwidthSchedule
|
489
|
-
end
|
490
|
-
def nic_ipv4
|
491
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NicIPv4
|
492
|
-
end
|
493
|
-
def access_control_record
|
494
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AccessControlRecord
|
495
|
-
end
|
496
|
-
def alert
|
497
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Alert
|
498
|
-
end
|
499
|
-
def alert_settings
|
500
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSettings
|
501
|
-
end
|
502
|
-
def backup
|
503
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Backup
|
504
|
-
end
|
505
|
-
def backup_policy
|
506
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupPolicy
|
507
|
-
end
|
508
|
-
def backup_schedule
|
509
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupSchedule
|
510
|
-
end
|
511
|
-
def bandwidth_setting
|
512
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BandwidthSetting
|
513
|
-
end
|
514
|
-
def cloud_appliance_configuration
|
515
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceConfiguration
|
516
|
-
end
|
517
|
-
def configure_device_request
|
518
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ConfigureDeviceRequest
|
519
|
-
end
|
520
|
-
def controller_power_state_change_request
|
521
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerPowerStateChangeRequest
|
522
|
-
end
|
523
|
-
def device
|
524
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Device
|
525
|
-
end
|
526
|
-
def encryption_settings
|
527
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::EncryptionSettings
|
528
|
-
end
|
529
|
-
def hardware_component_group
|
530
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponentGroup
|
531
|
-
end
|
532
|
-
def job
|
533
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Job
|
534
|
-
end
|
535
|
-
def manager
|
536
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Manager
|
537
|
-
end
|
538
|
-
def manager_extended_info
|
539
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerExtendedInfo
|
540
|
-
end
|
541
|
-
def network_settings
|
542
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkSettings
|
543
|
-
end
|
544
|
-
def security_settings
|
545
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettings
|
546
|
-
end
|
547
|
-
def storage_account_credential
|
548
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::StorageAccountCredential
|
549
|
-
end
|
550
|
-
def time_settings
|
551
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TimeSettings
|
552
|
-
end
|
553
|
-
def updates
|
554
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Updates
|
555
|
-
end
|
556
|
-
def volume
|
557
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Volume
|
558
|
-
end
|
559
|
-
def volume_container
|
560
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeContainer
|
561
|
-
end
|
562
|
-
def alert_scope
|
563
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertScope
|
564
|
-
end
|
565
|
-
def alert_source_type
|
566
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSourceType
|
567
|
-
end
|
568
|
-
def alert_severity
|
569
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSeverity
|
570
|
-
end
|
571
|
-
def alert_status
|
572
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertStatus
|
573
|
-
end
|
574
|
-
def alert_email_notification_status
|
575
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertEmailNotificationStatus
|
576
|
-
end
|
577
|
-
def encryption_algorithm
|
578
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::EncryptionAlgorithm
|
579
|
-
end
|
580
|
-
def backup_type
|
581
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupType
|
582
|
-
end
|
583
|
-
def backup_job_creation_type
|
584
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupJobCreationType
|
585
|
-
end
|
586
|
-
def volume_type
|
587
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeType
|
588
|
-
end
|
589
|
-
def scheduled_backup_status
|
590
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ScheduledBackupStatus
|
591
|
-
end
|
592
|
-
def backup_policy_creation_type
|
593
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupPolicyCreationType
|
594
|
-
end
|
595
|
-
def recurrence_type
|
596
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RecurrenceType
|
597
|
-
end
|
598
|
-
def day_of_week
|
599
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DayOfWeek
|
600
|
-
end
|
601
|
-
def schedule_status
|
602
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ScheduleStatus
|
603
|
-
end
|
604
|
-
def kind
|
605
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Kind
|
606
|
-
end
|
607
|
-
def controller_power_state_action
|
608
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerPowerStateAction
|
609
|
-
end
|
610
|
-
def controller_id
|
611
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerId
|
612
|
-
end
|
613
|
-
def controller_status
|
614
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerStatus
|
615
|
-
end
|
616
|
-
def device_configuration_status
|
617
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceConfigurationStatus
|
618
|
-
end
|
619
|
-
def device_status
|
620
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceStatus
|
621
|
-
end
|
622
|
-
def device_type
|
623
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceType
|
624
|
-
end
|
625
|
-
def virtual_machine_api_type
|
626
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VirtualMachineApiType
|
627
|
-
end
|
628
|
-
def authorization_eligibility
|
629
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AuthorizationEligibility
|
630
|
-
end
|
631
|
-
def authorization_status
|
632
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AuthorizationStatus
|
633
|
-
end
|
634
|
-
def in_eligibility_category
|
635
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::InEligibilityCategory
|
636
|
-
end
|
637
|
-
def encryption_status
|
638
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::EncryptionStatus
|
639
|
-
end
|
640
|
-
def key_rollover_status
|
641
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::KeyRolloverStatus
|
642
|
-
end
|
643
|
-
def target_eligibility_status
|
644
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityStatus
|
645
|
-
end
|
646
|
-
def target_eligibility_result_code
|
647
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityResultCode
|
648
|
-
end
|
649
|
-
def feature_support_status
|
650
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FeatureSupportStatus
|
651
|
-
end
|
652
|
-
def hardware_component_status
|
653
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponentStatus
|
654
|
-
end
|
655
|
-
def job_status
|
656
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobStatus
|
657
|
-
end
|
658
|
-
def job_type
|
659
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobType
|
660
|
-
end
|
661
|
-
def manager_type
|
662
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerType
|
663
|
-
end
|
664
|
-
def metric_unit
|
665
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricUnit
|
666
|
-
end
|
667
|
-
def metric_aggregation_type
|
668
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricAggregationType
|
669
|
-
end
|
670
|
-
def net_interface_id
|
671
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetInterfaceId
|
672
|
-
end
|
673
|
-
def net_interface_status
|
674
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetInterfaceStatus
|
675
|
-
end
|
676
|
-
def iscsiand_cloud_status
|
677
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ISCSIAndCloudStatus
|
678
|
-
end
|
679
|
-
def network_mode
|
680
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkMode
|
681
|
-
end
|
682
|
-
def authentication_type
|
683
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AuthenticationType
|
684
|
-
end
|
685
|
-
def remote_management_mode_configuration
|
686
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RemoteManagementModeConfiguration
|
687
|
-
end
|
688
|
-
def ssl_status
|
689
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SslStatus
|
690
|
-
end
|
691
|
-
def volume_status
|
692
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeStatus
|
693
|
-
end
|
694
|
-
def operation_status
|
695
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::OperationStatus
|
696
|
-
end
|
697
|
-
def backup_status
|
698
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupStatus
|
699
|
-
end
|
700
|
-
def monitoring_status
|
701
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MonitoringStatus
|
702
|
-
end
|
703
|
-
def owner_ship_status
|
704
|
-
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::OwnerShipStatus
|
232
|
+
def add_telemetry(client)
|
233
|
+
profile_information = 'Profiles/Latest/StorSimple8000Series/Mgmt'
|
234
|
+
client.add_user_agent_information(profile_information)
|
235
|
+
end
|
236
|
+
|
237
|
+
def method_missing(method, *args)
|
238
|
+
if @client_0.respond_to?method
|
239
|
+
@client_0.send(method, *args)
|
240
|
+
else
|
241
|
+
super
|
705
242
|
end
|
706
243
|
end
|
244
|
+
|
245
|
+
end
|
246
|
+
|
247
|
+
class ModelClasses
|
248
|
+
def target_eligibility_result
|
249
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityResult
|
250
|
+
end
|
251
|
+
def failover_target
|
252
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverTarget
|
253
|
+
end
|
254
|
+
def access_control_record_list
|
255
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AccessControlRecordList
|
256
|
+
end
|
257
|
+
def failover_targets_list
|
258
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverTargetsList
|
259
|
+
end
|
260
|
+
def alert_source
|
261
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSource
|
262
|
+
end
|
263
|
+
def feature
|
264
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Feature
|
265
|
+
end
|
266
|
+
def remote_management_settings
|
267
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RemoteManagementSettings
|
268
|
+
end
|
269
|
+
def failover_request
|
270
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverRequest
|
271
|
+
end
|
272
|
+
def alert_list
|
273
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertList
|
274
|
+
end
|
275
|
+
def volume_failover_metadata
|
276
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeFailoverMetadata
|
277
|
+
end
|
278
|
+
def asymmetric_encrypted_secret
|
279
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AsymmetricEncryptedSecret
|
280
|
+
end
|
281
|
+
def volume_container_failover_metadata
|
282
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeContainerFailoverMetadata
|
283
|
+
end
|
284
|
+
def available_provider_operation
|
285
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AvailableProviderOperation
|
286
|
+
end
|
287
|
+
def failover_set_eligibility_result
|
288
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverSetEligibilityResult
|
289
|
+
end
|
290
|
+
def backup_element
|
291
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupElement
|
292
|
+
end
|
293
|
+
def failover_set
|
294
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverSet
|
295
|
+
end
|
296
|
+
def backup_filter
|
297
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupFilter
|
298
|
+
end
|
299
|
+
def failover_sets_list
|
300
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FailoverSetsList
|
301
|
+
end
|
302
|
+
def volume_container_list
|
303
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeContainerList
|
304
|
+
end
|
305
|
+
def target_eligibility_error_message
|
306
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityErrorMessage
|
307
|
+
end
|
308
|
+
def schedule_recurrence
|
309
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ScheduleRecurrence
|
310
|
+
end
|
311
|
+
def symmetric_encrypted_secret
|
312
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SymmetricEncryptedSecret
|
313
|
+
end
|
314
|
+
def nic_ipv6
|
315
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NicIPv6
|
316
|
+
end
|
317
|
+
def time
|
318
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Time
|
319
|
+
end
|
320
|
+
def acs_configuration
|
321
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AcsConfiguration
|
322
|
+
end
|
323
|
+
def storage_account_credential_list
|
324
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::StorageAccountCredentialList
|
325
|
+
end
|
326
|
+
def alert_error_details
|
327
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertErrorDetails
|
328
|
+
end
|
329
|
+
def base_model
|
330
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BaseModel
|
331
|
+
end
|
332
|
+
def public_key
|
333
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::PublicKey
|
334
|
+
end
|
335
|
+
def clear_alert_request
|
336
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ClearAlertRequest
|
337
|
+
end
|
338
|
+
def feature_filter
|
339
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FeatureFilter
|
340
|
+
end
|
341
|
+
def cloud_appliance
|
342
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudAppliance
|
343
|
+
end
|
344
|
+
def feature_list
|
345
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FeatureList
|
346
|
+
end
|
347
|
+
def send_test_alert_email_request
|
348
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SendTestAlertEmailRequest
|
349
|
+
end
|
350
|
+
def hardware_component
|
351
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponent
|
352
|
+
end
|
353
|
+
def cloud_appliance_settings
|
354
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceSettings
|
355
|
+
end
|
356
|
+
def network_settings_patch
|
357
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkSettingsPatch
|
358
|
+
end
|
359
|
+
def network_interface_data0_settings
|
360
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkInterfaceData0Settings
|
361
|
+
end
|
362
|
+
def hardware_component_group_list
|
363
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponentGroupList
|
364
|
+
end
|
365
|
+
def resource
|
366
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Resource
|
367
|
+
end
|
368
|
+
def job_error_item
|
369
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobErrorItem
|
370
|
+
end
|
371
|
+
def device_details
|
372
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceDetails
|
373
|
+
end
|
374
|
+
def job_error_details
|
375
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobErrorDetails
|
376
|
+
end
|
377
|
+
def remote_management_settings_patch
|
378
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RemoteManagementSettingsPatch
|
379
|
+
end
|
380
|
+
def job_stage
|
381
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobStage
|
382
|
+
end
|
383
|
+
def device_patch
|
384
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DevicePatch
|
385
|
+
end
|
386
|
+
def webproxy_settings
|
387
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::WebproxySettings
|
388
|
+
end
|
389
|
+
def dnssettings
|
390
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DNSSettings
|
391
|
+
end
|
392
|
+
def job_filter
|
393
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobFilter
|
394
|
+
end
|
395
|
+
def job_list
|
396
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobList
|
397
|
+
end
|
398
|
+
def available_provider_operation_list
|
399
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AvailableProviderOperationList
|
400
|
+
end
|
401
|
+
def key
|
402
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Key
|
403
|
+
end
|
404
|
+
def backup_list
|
405
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupList
|
406
|
+
end
|
407
|
+
def list_failover_targets_request
|
408
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ListFailoverTargetsRequest
|
409
|
+
end
|
410
|
+
def backup_schedule_list
|
411
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupScheduleList
|
412
|
+
end
|
413
|
+
def manager_intrinsic_settings
|
414
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerIntrinsicSettings
|
415
|
+
end
|
416
|
+
def bandwidth_setting_list
|
417
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BandwidthSettingList
|
418
|
+
end
|
419
|
+
def manager_sku
|
420
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerSku
|
421
|
+
end
|
422
|
+
def clone_request
|
423
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloneRequest
|
424
|
+
end
|
425
|
+
def network_adapter_list
|
426
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkAdapterList
|
427
|
+
end
|
428
|
+
def cloud_appliance_configuration_list
|
429
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceConfigurationList
|
430
|
+
end
|
431
|
+
def network_adapters
|
432
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkAdapters
|
433
|
+
end
|
434
|
+
def security_settings_patch
|
435
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettingsPatch
|
436
|
+
end
|
437
|
+
def manager_list
|
438
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerList
|
439
|
+
end
|
440
|
+
def device_rollover_details
|
441
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceRolloverDetails
|
442
|
+
end
|
443
|
+
def manager_patch
|
444
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerPatch
|
445
|
+
end
|
446
|
+
def dimension_filter
|
447
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DimensionFilter
|
448
|
+
end
|
449
|
+
def metric_availablity
|
450
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricAvailablity
|
451
|
+
end
|
452
|
+
def available_provider_operation_display
|
453
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AvailableProviderOperationDisplay
|
454
|
+
end
|
455
|
+
def metric_data
|
456
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricData
|
457
|
+
end
|
458
|
+
def backup_policy_list
|
459
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupPolicyList
|
460
|
+
end
|
461
|
+
def metric_name
|
462
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricName
|
463
|
+
end
|
464
|
+
def chap_settings
|
465
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ChapSettings
|
466
|
+
end
|
467
|
+
def metric_dimension
|
468
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricDimension
|
469
|
+
end
|
470
|
+
def secondary_dnssettings
|
471
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecondaryDNSSettings
|
472
|
+
end
|
473
|
+
def metric_definition
|
474
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricDefinition
|
475
|
+
end
|
476
|
+
def device_list
|
477
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceList
|
478
|
+
end
|
479
|
+
def metric_definition_list
|
480
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricDefinitionList
|
481
|
+
end
|
482
|
+
def volume_list
|
483
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeList
|
484
|
+
end
|
485
|
+
def metric_name_filter
|
486
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricNameFilter
|
487
|
+
end
|
488
|
+
def vm_image
|
489
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VmImage
|
490
|
+
end
|
491
|
+
def metric_filter
|
492
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricFilter
|
493
|
+
end
|
494
|
+
def alert_filter
|
495
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertFilter
|
496
|
+
end
|
497
|
+
def metrics
|
498
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Metrics
|
499
|
+
end
|
500
|
+
def data_statistics
|
501
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DataStatistics
|
502
|
+
end
|
503
|
+
def metric_list
|
504
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricList
|
505
|
+
end
|
506
|
+
def bandwidth_schedule
|
507
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BandwidthSchedule
|
508
|
+
end
|
509
|
+
def nic_ipv4
|
510
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NicIPv4
|
511
|
+
end
|
512
|
+
def access_control_record
|
513
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AccessControlRecord
|
514
|
+
end
|
515
|
+
def alert
|
516
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Alert
|
517
|
+
end
|
518
|
+
def alert_settings
|
519
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSettings
|
520
|
+
end
|
521
|
+
def backup
|
522
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Backup
|
523
|
+
end
|
524
|
+
def backup_policy
|
525
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupPolicy
|
526
|
+
end
|
527
|
+
def backup_schedule
|
528
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupSchedule
|
529
|
+
end
|
530
|
+
def bandwidth_setting
|
531
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BandwidthSetting
|
532
|
+
end
|
533
|
+
def cloud_appliance_configuration
|
534
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceConfiguration
|
535
|
+
end
|
536
|
+
def configure_device_request
|
537
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ConfigureDeviceRequest
|
538
|
+
end
|
539
|
+
def controller_power_state_change_request
|
540
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerPowerStateChangeRequest
|
541
|
+
end
|
542
|
+
def device
|
543
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Device
|
544
|
+
end
|
545
|
+
def encryption_settings
|
546
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::EncryptionSettings
|
547
|
+
end
|
548
|
+
def hardware_component_group
|
549
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponentGroup
|
550
|
+
end
|
551
|
+
def job
|
552
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Job
|
553
|
+
end
|
554
|
+
def manager
|
555
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Manager
|
556
|
+
end
|
557
|
+
def manager_extended_info
|
558
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerExtendedInfo
|
559
|
+
end
|
560
|
+
def network_settings
|
561
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkSettings
|
562
|
+
end
|
563
|
+
def security_settings
|
564
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SecuritySettings
|
565
|
+
end
|
566
|
+
def storage_account_credential
|
567
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::StorageAccountCredential
|
568
|
+
end
|
569
|
+
def time_settings
|
570
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TimeSettings
|
571
|
+
end
|
572
|
+
def updates
|
573
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Updates
|
574
|
+
end
|
575
|
+
def volume
|
576
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Volume
|
577
|
+
end
|
578
|
+
def volume_container
|
579
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeContainer
|
580
|
+
end
|
581
|
+
def alert_scope
|
582
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertScope
|
583
|
+
end
|
584
|
+
def alert_source_type
|
585
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSourceType
|
586
|
+
end
|
587
|
+
def alert_severity
|
588
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertSeverity
|
589
|
+
end
|
590
|
+
def alert_status
|
591
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertStatus
|
592
|
+
end
|
593
|
+
def alert_email_notification_status
|
594
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AlertEmailNotificationStatus
|
595
|
+
end
|
596
|
+
def encryption_algorithm
|
597
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::EncryptionAlgorithm
|
598
|
+
end
|
599
|
+
def backup_type
|
600
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupType
|
601
|
+
end
|
602
|
+
def backup_job_creation_type
|
603
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupJobCreationType
|
604
|
+
end
|
605
|
+
def volume_type
|
606
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeType
|
607
|
+
end
|
608
|
+
def scheduled_backup_status
|
609
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ScheduledBackupStatus
|
610
|
+
end
|
611
|
+
def backup_policy_creation_type
|
612
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupPolicyCreationType
|
613
|
+
end
|
614
|
+
def recurrence_type
|
615
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RecurrenceType
|
616
|
+
end
|
617
|
+
def day_of_week
|
618
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DayOfWeek
|
619
|
+
end
|
620
|
+
def schedule_status
|
621
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ScheduleStatus
|
622
|
+
end
|
623
|
+
def kind
|
624
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::Kind
|
625
|
+
end
|
626
|
+
def controller_power_state_action
|
627
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerPowerStateAction
|
628
|
+
end
|
629
|
+
def controller_id
|
630
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerId
|
631
|
+
end
|
632
|
+
def controller_status
|
633
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ControllerStatus
|
634
|
+
end
|
635
|
+
def device_configuration_status
|
636
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceConfigurationStatus
|
637
|
+
end
|
638
|
+
def device_status
|
639
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceStatus
|
640
|
+
end
|
641
|
+
def device_type
|
642
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::DeviceType
|
643
|
+
end
|
644
|
+
def virtual_machine_api_type
|
645
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VirtualMachineApiType
|
646
|
+
end
|
647
|
+
def authorization_eligibility
|
648
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AuthorizationEligibility
|
649
|
+
end
|
650
|
+
def authorization_status
|
651
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AuthorizationStatus
|
652
|
+
end
|
653
|
+
def in_eligibility_category
|
654
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::InEligibilityCategory
|
655
|
+
end
|
656
|
+
def encryption_status
|
657
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::EncryptionStatus
|
658
|
+
end
|
659
|
+
def key_rollover_status
|
660
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::KeyRolloverStatus
|
661
|
+
end
|
662
|
+
def target_eligibility_status
|
663
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityStatus
|
664
|
+
end
|
665
|
+
def target_eligibility_result_code
|
666
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::TargetEligibilityResultCode
|
667
|
+
end
|
668
|
+
def feature_support_status
|
669
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::FeatureSupportStatus
|
670
|
+
end
|
671
|
+
def hardware_component_status
|
672
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::HardwareComponentStatus
|
673
|
+
end
|
674
|
+
def job_status
|
675
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobStatus
|
676
|
+
end
|
677
|
+
def job_type
|
678
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::JobType
|
679
|
+
end
|
680
|
+
def manager_type
|
681
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ManagerType
|
682
|
+
end
|
683
|
+
def metric_unit
|
684
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricUnit
|
685
|
+
end
|
686
|
+
def metric_aggregation_type
|
687
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MetricAggregationType
|
688
|
+
end
|
689
|
+
def net_interface_id
|
690
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetInterfaceId
|
691
|
+
end
|
692
|
+
def net_interface_status
|
693
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetInterfaceStatus
|
694
|
+
end
|
695
|
+
def iscsiand_cloud_status
|
696
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::ISCSIAndCloudStatus
|
697
|
+
end
|
698
|
+
def network_mode
|
699
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::NetworkMode
|
700
|
+
end
|
701
|
+
def authentication_type
|
702
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::AuthenticationType
|
703
|
+
end
|
704
|
+
def remote_management_mode_configuration
|
705
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::RemoteManagementModeConfiguration
|
706
|
+
end
|
707
|
+
def ssl_status
|
708
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::SslStatus
|
709
|
+
end
|
710
|
+
def volume_status
|
711
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::VolumeStatus
|
712
|
+
end
|
713
|
+
def operation_status
|
714
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::OperationStatus
|
715
|
+
end
|
716
|
+
def backup_status
|
717
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::BackupStatus
|
718
|
+
end
|
719
|
+
def monitoring_status
|
720
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::MonitoringStatus
|
721
|
+
end
|
722
|
+
def owner_ship_status
|
723
|
+
Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::OwnerShipStatus
|
724
|
+
end
|
707
725
|
end
|
726
|
+
end
|
708
727
|
end
|