azure_mgmt_devtestlabs 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/2016-05-15/generated/azure_mgmt_devtestlabs.rb +70 -62
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/arm_templates.rb +21 -18
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/artifact_sources.rb +39 -37
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/artifacts.rb +27 -25
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/costs.rb +12 -12
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/custom_images.rb +41 -38
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/dev_test_labs_client.rb +12 -1
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/disks.rb +61 -60
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/environments.rb +41 -38
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/formulas.rb +37 -34
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/gallery_images.rb +15 -13
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/global_schedules.rb +74 -70
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/labs.rb +113 -109
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/cost_threshold_properties.rb +1 -1
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/http_status_code.rb +56 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/identity_properties.rb +1 -1
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/operation_error.rb +57 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/operation_metadata.rb +59 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/operation_metadata_display.rb +80 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/operation_result.rb +82 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/provider_operation_result.rb +101 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/notification_channels.rb +45 -44
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/operations.rb +117 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/policies.rb +39 -37
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/policy_sets.rb +6 -7
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/provider_operations.rb +215 -0
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/schedules.rb +64 -59
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/secrets.rb +33 -30
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/service_runners.rb +33 -30
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/users.rb +43 -41
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/virtual_machine_schedules.rb +49 -46
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/virtual_machines.rb +113 -110
- data/lib/2016-05-15/generated/azure_mgmt_devtestlabs/virtual_networks.rb +47 -45
- data/lib/profiles/latest/devtestlabs_latest_profile_client.rb +28 -9
- data/lib/profiles/latest/devtestlabs_module_definition.rb +0 -1
- data/lib/profiles/latest/modules/devtestlabs_profile_module.rb +589 -542
- data/lib/version.rb +1 -1
- metadata +10 -2
@@ -38,8 +38,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
38
38
|
#
|
39
39
|
# @return [Array<VirtualNetwork>] operation results.
|
40
40
|
#
|
41
|
-
def list(resource_group_name, lab_name, expand
|
42
|
-
first_page = list_as_lazy(resource_group_name, lab_name, expand, filter, top, orderby, custom_headers)
|
41
|
+
def list(resource_group_name, lab_name, expand:nil, filter:nil, top:nil, orderby:nil, custom_headers:nil)
|
42
|
+
first_page = list_as_lazy(resource_group_name, lab_name, expand:expand, filter:filter, top:top, orderby:orderby, custom_headers:custom_headers)
|
43
43
|
first_page.get_all_items
|
44
44
|
end
|
45
45
|
|
@@ -60,8 +60,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
60
60
|
#
|
61
61
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
62
62
|
#
|
63
|
-
def list_with_http_info(resource_group_name, lab_name, expand
|
64
|
-
list_async(resource_group_name, lab_name, expand, filter, top, orderby, custom_headers).value!
|
63
|
+
def list_with_http_info(resource_group_name, lab_name, expand:nil, filter:nil, top:nil, orderby:nil, custom_headers:nil)
|
64
|
+
list_async(resource_group_name, lab_name, expand:expand, filter:filter, top:top, orderby:orderby, custom_headers:custom_headers).value!
|
65
65
|
end
|
66
66
|
|
67
67
|
#
|
@@ -81,7 +81,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
81
81
|
#
|
82
82
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
83
83
|
#
|
84
|
-
def list_async(resource_group_name, lab_name, expand
|
84
|
+
def list_async(resource_group_name, lab_name, expand:nil, filter:nil, top:nil, orderby:nil, custom_headers:nil)
|
85
85
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
86
86
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
87
87
|
fail ArgumentError, 'lab_name is nil' if lab_name.nil?
|
@@ -89,6 +89,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
89
89
|
|
90
90
|
|
91
91
|
request_headers = {}
|
92
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
92
93
|
|
93
94
|
# Set Headers
|
94
95
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -146,8 +147,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
146
147
|
#
|
147
148
|
# @return [VirtualNetwork] operation results.
|
148
149
|
#
|
149
|
-
def get(resource_group_name, lab_name, name, expand
|
150
|
-
response = get_async(resource_group_name, lab_name, name, expand, custom_headers).value!
|
150
|
+
def get(resource_group_name, lab_name, name, expand:nil, custom_headers:nil)
|
151
|
+
response = get_async(resource_group_name, lab_name, name, expand:expand, custom_headers:custom_headers).value!
|
151
152
|
response.body unless response.nil?
|
152
153
|
end
|
153
154
|
|
@@ -164,8 +165,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
164
165
|
#
|
165
166
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
166
167
|
#
|
167
|
-
def get_with_http_info(resource_group_name, lab_name, name, expand
|
168
|
-
get_async(resource_group_name, lab_name, name, expand, custom_headers).value!
|
168
|
+
def get_with_http_info(resource_group_name, lab_name, name, expand:nil, custom_headers:nil)
|
169
|
+
get_async(resource_group_name, lab_name, name, expand:expand, custom_headers:custom_headers).value!
|
169
170
|
end
|
170
171
|
|
171
172
|
#
|
@@ -181,7 +182,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
181
182
|
#
|
182
183
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
183
184
|
#
|
184
|
-
def get_async(resource_group_name, lab_name, name, expand
|
185
|
+
def get_async(resource_group_name, lab_name, name, expand:nil, custom_headers:nil)
|
185
186
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
186
187
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
187
188
|
fail ArgumentError, 'lab_name is nil' if lab_name.nil?
|
@@ -190,6 +191,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
190
191
|
|
191
192
|
|
192
193
|
request_headers = {}
|
194
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
193
195
|
|
194
196
|
# Set Headers
|
195
197
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -247,8 +249,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
247
249
|
#
|
248
250
|
# @return [VirtualNetwork] operation results.
|
249
251
|
#
|
250
|
-
def create_or_update(resource_group_name, lab_name, name, virtual_network, custom_headers
|
251
|
-
response = create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers).value!
|
252
|
+
def create_or_update(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
253
|
+
response = create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:custom_headers).value!
|
252
254
|
response.body unless response.nil?
|
253
255
|
end
|
254
256
|
|
@@ -263,9 +265,9 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
263
265
|
# @return [Concurrent::Promise] promise which provides async access to http
|
264
266
|
# response.
|
265
267
|
#
|
266
|
-
def create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers
|
268
|
+
def create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
267
269
|
# Send request
|
268
|
-
promise = begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers)
|
270
|
+
promise = begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:custom_headers)
|
269
271
|
|
270
272
|
promise = promise.then do |response|
|
271
273
|
# Defining deserialization method.
|
@@ -290,8 +292,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
290
292
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
291
293
|
# will be added to the HTTP request.
|
292
294
|
#
|
293
|
-
def delete(resource_group_name, lab_name, name, custom_headers
|
294
|
-
response = delete_async(resource_group_name, lab_name, name, custom_headers).value!
|
295
|
+
def delete(resource_group_name, lab_name, name, custom_headers:nil)
|
296
|
+
response = delete_async(resource_group_name, lab_name, name, custom_headers:custom_headers).value!
|
295
297
|
nil
|
296
298
|
end
|
297
299
|
|
@@ -305,9 +307,9 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
305
307
|
# @return [Concurrent::Promise] promise which provides async access to http
|
306
308
|
# response.
|
307
309
|
#
|
308
|
-
def delete_async(resource_group_name, lab_name, name, custom_headers
|
310
|
+
def delete_async(resource_group_name, lab_name, name, custom_headers:nil)
|
309
311
|
# Send request
|
310
|
-
promise = begin_delete_async(resource_group_name, lab_name, name, custom_headers)
|
312
|
+
promise = begin_delete_async(resource_group_name, lab_name, name, custom_headers:custom_headers)
|
311
313
|
|
312
314
|
promise = promise.then do |response|
|
313
315
|
# Defining deserialization method.
|
@@ -333,8 +335,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
333
335
|
#
|
334
336
|
# @return [VirtualNetwork] operation results.
|
335
337
|
#
|
336
|
-
def update(resource_group_name, lab_name, name, virtual_network, custom_headers
|
337
|
-
response = update_async(resource_group_name, lab_name, name, virtual_network, custom_headers).value!
|
338
|
+
def update(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
339
|
+
response = update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:custom_headers).value!
|
338
340
|
response.body unless response.nil?
|
339
341
|
end
|
340
342
|
|
@@ -350,8 +352,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
350
352
|
#
|
351
353
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
352
354
|
#
|
353
|
-
def update_with_http_info(resource_group_name, lab_name, name, virtual_network, custom_headers
|
354
|
-
update_async(resource_group_name, lab_name, name, virtual_network, custom_headers).value!
|
355
|
+
def update_with_http_info(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
356
|
+
update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:custom_headers).value!
|
355
357
|
end
|
356
358
|
|
357
359
|
#
|
@@ -366,7 +368,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
366
368
|
#
|
367
369
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
368
370
|
#
|
369
|
-
def update_async(resource_group_name, lab_name, name, virtual_network, custom_headers
|
371
|
+
def update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
370
372
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
371
373
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
372
374
|
fail ArgumentError, 'lab_name is nil' if lab_name.nil?
|
@@ -376,13 +378,12 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
376
378
|
|
377
379
|
|
378
380
|
request_headers = {}
|
381
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
379
382
|
|
380
383
|
# Set Headers
|
381
384
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
382
385
|
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
383
386
|
|
384
|
-
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
385
|
-
|
386
387
|
# Serialize Request
|
387
388
|
request_mapper = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetworkFragment.mapper()
|
388
389
|
request_content = @client.serialize(request_mapper, virtual_network)
|
@@ -442,8 +443,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
442
443
|
#
|
443
444
|
# @return [VirtualNetwork] operation results.
|
444
445
|
#
|
445
|
-
def begin_create_or_update(resource_group_name, lab_name, name, virtual_network, custom_headers
|
446
|
-
response = begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers).value!
|
446
|
+
def begin_create_or_update(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
447
|
+
response = begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:custom_headers).value!
|
447
448
|
response.body unless response.nil?
|
448
449
|
end
|
449
450
|
|
@@ -460,8 +461,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
460
461
|
#
|
461
462
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
462
463
|
#
|
463
|
-
def begin_create_or_update_with_http_info(resource_group_name, lab_name, name, virtual_network, custom_headers
|
464
|
-
begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers).value!
|
464
|
+
def begin_create_or_update_with_http_info(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
465
|
+
begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:custom_headers).value!
|
465
466
|
end
|
466
467
|
|
467
468
|
#
|
@@ -477,7 +478,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
477
478
|
#
|
478
479
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
479
480
|
#
|
480
|
-
def begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers
|
481
|
+
def begin_create_or_update_async(resource_group_name, lab_name, name, virtual_network, custom_headers:nil)
|
481
482
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
482
483
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
483
484
|
fail ArgumentError, 'lab_name is nil' if lab_name.nil?
|
@@ -487,13 +488,12 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
487
488
|
|
488
489
|
|
489
490
|
request_headers = {}
|
491
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
490
492
|
|
491
493
|
# Set Headers
|
492
494
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
493
495
|
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
494
496
|
|
495
|
-
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
496
|
-
|
497
497
|
# Serialize Request
|
498
498
|
request_mapper = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetwork.mapper()
|
499
499
|
request_content = @client.serialize(request_mapper, virtual_network)
|
@@ -560,8 +560,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
560
560
|
# will be added to the HTTP request.
|
561
561
|
#
|
562
562
|
#
|
563
|
-
def begin_delete(resource_group_name, lab_name, name, custom_headers
|
564
|
-
response = begin_delete_async(resource_group_name, lab_name, name, custom_headers).value!
|
563
|
+
def begin_delete(resource_group_name, lab_name, name, custom_headers:nil)
|
564
|
+
response = begin_delete_async(resource_group_name, lab_name, name, custom_headers:custom_headers).value!
|
565
565
|
nil
|
566
566
|
end
|
567
567
|
|
@@ -576,8 +576,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
576
576
|
#
|
577
577
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
578
578
|
#
|
579
|
-
def begin_delete_with_http_info(resource_group_name, lab_name, name, custom_headers
|
580
|
-
begin_delete_async(resource_group_name, lab_name, name, custom_headers).value!
|
579
|
+
def begin_delete_with_http_info(resource_group_name, lab_name, name, custom_headers:nil)
|
580
|
+
begin_delete_async(resource_group_name, lab_name, name, custom_headers:custom_headers).value!
|
581
581
|
end
|
582
582
|
|
583
583
|
#
|
@@ -591,7 +591,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
591
591
|
#
|
592
592
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
593
593
|
#
|
594
|
-
def begin_delete_async(resource_group_name, lab_name, name, custom_headers
|
594
|
+
def begin_delete_async(resource_group_name, lab_name, name, custom_headers:nil)
|
595
595
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
596
596
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
597
597
|
fail ArgumentError, 'lab_name is nil' if lab_name.nil?
|
@@ -600,6 +600,7 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
600
600
|
|
601
601
|
|
602
602
|
request_headers = {}
|
603
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
603
604
|
|
604
605
|
# Set Headers
|
605
606
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -644,8 +645,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
644
645
|
#
|
645
646
|
# @return [ResponseWithContinuationVirtualNetwork] operation results.
|
646
647
|
#
|
647
|
-
def list_next(next_page_link, custom_headers
|
648
|
-
response = list_next_async(next_page_link, custom_headers).value!
|
648
|
+
def list_next(next_page_link, custom_headers:nil)
|
649
|
+
response = list_next_async(next_page_link, custom_headers:custom_headers).value!
|
649
650
|
response.body unless response.nil?
|
650
651
|
end
|
651
652
|
|
@@ -659,8 +660,8 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
659
660
|
#
|
660
661
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
661
662
|
#
|
662
|
-
def list_next_with_http_info(next_page_link, custom_headers
|
663
|
-
list_next_async(next_page_link, custom_headers).value!
|
663
|
+
def list_next_with_http_info(next_page_link, custom_headers:nil)
|
664
|
+
list_next_async(next_page_link, custom_headers:custom_headers).value!
|
664
665
|
end
|
665
666
|
|
666
667
|
#
|
@@ -673,11 +674,12 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
673
674
|
#
|
674
675
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
675
676
|
#
|
676
|
-
def list_next_async(next_page_link, custom_headers
|
677
|
+
def list_next_async(next_page_link, custom_headers:nil)
|
677
678
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
678
679
|
|
679
680
|
|
680
681
|
request_headers = {}
|
682
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
681
683
|
|
682
684
|
# Set Headers
|
683
685
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -739,12 +741,12 @@ module Azure::DevTestLabs::Mgmt::V2016_05_15
|
|
739
741
|
# @return [ResponseWithContinuationVirtualNetwork] which provide lazy access to
|
740
742
|
# pages of the response.
|
741
743
|
#
|
742
|
-
def list_as_lazy(resource_group_name, lab_name, expand
|
743
|
-
response = list_async(resource_group_name, lab_name, expand, filter, top, orderby, custom_headers).value!
|
744
|
+
def list_as_lazy(resource_group_name, lab_name, expand:nil, filter:nil, top:nil, orderby:nil, custom_headers:nil)
|
745
|
+
response = list_async(resource_group_name, lab_name, expand:expand, filter:filter, top:top, orderby:orderby, custom_headers:custom_headers).value!
|
744
746
|
unless response.nil?
|
745
747
|
page = response.body
|
746
748
|
page.next_method = Proc.new do |next_page_link|
|
747
|
-
list_next_async(next_page_link, custom_headers)
|
749
|
+
list_next_async(next_page_link, custom_headers:custom_headers)
|
748
750
|
end
|
749
751
|
page
|
750
752
|
end
|
@@ -5,17 +5,36 @@
|
|
5
5
|
require 'profiles/latest/devtestlabs_module_definition'
|
6
6
|
require 'profiles/latest/modules/devtestlabs_profile_module'
|
7
7
|
|
8
|
-
module Azure::DevTestLabs::Profiles::Latest
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
module Azure::DevTestLabs::Profiles::Latest
|
9
|
+
module Mgmt
|
10
|
+
#
|
11
|
+
# Client class for the Latest profile SDK.
|
12
|
+
#
|
13
|
+
class Client < DevTestLabsManagementClass
|
14
|
+
include MsRestAzure::Common::Configurable
|
14
15
|
|
16
|
+
#
|
17
|
+
# Initializes a new instance of the Client class.
|
18
|
+
# @param options [Hash] hash of client options.
|
19
|
+
# options = {
|
20
|
+
# tenant_id: 'YOUR TENANT ID',
|
21
|
+
# client_id: 'YOUR CLIENT ID',
|
22
|
+
# client_secret: 'YOUR CLIENT SECRET',
|
23
|
+
# subscription_id: 'YOUR SUBSCRIPTION ID',
|
24
|
+
# credentials: credentials,
|
25
|
+
# active_directory_settings: active_directory_settings,
|
26
|
+
# base_url: 'YOUR BASE URL',
|
27
|
+
# options: options
|
28
|
+
# }
|
29
|
+
# 'credentials' are optional and if not passed in the hash, will be obtained
|
30
|
+
# from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
|
31
|
+
#
|
32
|
+
# Also, base_url, active_directory_settings & options are optional.
|
33
|
+
#
|
34
|
+
def initialize(options = {})
|
35
|
+
super(options)
|
36
|
+
end
|
15
37
|
|
16
|
-
def initialize(options = {})
|
17
|
-
super(options)
|
18
38
|
end
|
19
|
-
|
20
39
|
end
|
21
40
|
end
|
@@ -4,8 +4,11 @@
|
|
4
4
|
|
5
5
|
require 'azure_mgmt_devtestlabs'
|
6
6
|
|
7
|
-
module Azure::DevTestLabs::Profiles::Latest
|
7
|
+
module Azure::DevTestLabs::Profiles::Latest
|
8
|
+
module Mgmt
|
9
|
+
ProviderOperations = Azure::DevTestLabs::Mgmt::V2016_05_15::ProviderOperations
|
8
10
|
Labs = Azure::DevTestLabs::Mgmt::V2016_05_15::Labs
|
11
|
+
Operations = Azure::DevTestLabs::Mgmt::V2016_05_15::Operations
|
9
12
|
GlobalSchedules = Azure::DevTestLabs::Mgmt::V2016_05_15::GlobalSchedules
|
10
13
|
ArtifactSources = Azure::DevTestLabs::Mgmt::V2016_05_15::ArtifactSources
|
11
14
|
ArmTemplates = Azure::DevTestLabs::Mgmt::V2016_05_15::ArmTemplates
|
@@ -28,106 +31,111 @@ module Azure::DevTestLabs::Profiles::Latest::Mgmt
|
|
28
31
|
VirtualNetworks = Azure::DevTestLabs::Mgmt::V2016_05_15::VirtualNetworks
|
29
32
|
|
30
33
|
module Models
|
31
|
-
|
32
|
-
|
34
|
+
ExternalSubnetFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnetFragment
|
35
|
+
GalleryImageReference = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReference
|
36
|
+
DayDetails = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetails
|
37
|
+
InboundNatRule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRule
|
38
|
+
NotificationSettings = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettings
|
39
|
+
SharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfiguration
|
33
40
|
ExportResourceUsageParameters = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExportResourceUsageParameters
|
41
|
+
WeekDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetailsFragment
|
34
42
|
ExternalSubnet = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnet
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
Event = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Event
|
39
|
-
DayDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetailsFragment
|
40
|
-
EventFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EventFragment
|
41
|
-
NotificationSettingsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettingsFragment
|
43
|
+
HourDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetailsFragment
|
44
|
+
WeekDetails = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetails
|
45
|
+
UserSecretStore = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStore
|
42
46
|
HourDetails = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetails
|
43
|
-
ResponseWithContinuationServiceRunner = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationServiceRunner
|
44
47
|
ArtifactParameterProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterProperties
|
48
|
+
ArtifactInstallProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallProperties
|
45
49
|
ResponseWithContinuationLab = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLab
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
GalleryImageReference = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReference
|
50
|
-
ArmTemplateParameterProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateParameterProperties
|
51
|
-
InboundNatRule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRule
|
52
|
-
ArtifactDeploymentStatusProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
|
53
|
-
SharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfiguration
|
54
|
-
ArtifactParameterPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterPropertiesFragment
|
50
|
+
ParametersValueFileInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParametersValueFileInfo
|
51
|
+
ResponseWithContinuationLabVirtualMachine = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVirtualMachine
|
52
|
+
ArmTemplateInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateInfo
|
55
53
|
NetworkInterfaceProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfaceProperties
|
56
54
|
ResponseWithContinuationUser = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationUser
|
57
55
|
LabVirtualMachineCreationParameter = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineCreationParameter
|
58
|
-
|
59
|
-
|
60
|
-
|
56
|
+
ArtifactDeploymentStatusPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusPropertiesFragment
|
57
|
+
FormulaPropertiesFromVm = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FormulaPropertiesFromVm
|
58
|
+
ArtifactInstallPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallPropertiesFragment
|
59
|
+
ResponseWithContinuationLabVhd = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVhd
|
60
|
+
Subnet = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Subnet
|
61
61
|
UserSecretStoreFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStoreFragment
|
62
|
-
|
63
|
-
ComputeDataDiskFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDiskFragment
|
62
|
+
AttachNewDataDiskOptions = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachNewDataDiskOptions
|
64
63
|
GalleryImageReferenceFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReferenceFragment
|
65
|
-
ComputeVmInstanceViewStatusFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatusFragment
|
66
64
|
ParameterInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParameterInfo
|
67
|
-
|
65
|
+
ComputeDataDisk = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDisk
|
68
66
|
GenerateArmTemplateRequest = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateArmTemplateRequest
|
69
|
-
|
67
|
+
ComputeVmInstanceViewStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatus
|
70
68
|
GenerateUploadUriParameter = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriParameter
|
71
|
-
|
69
|
+
ComputeVmProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmProperties
|
72
70
|
GenerateUploadUriResponse = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriResponse
|
73
|
-
|
71
|
+
PercentageCostThresholdProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PercentageCostThresholdProperties
|
74
72
|
IdentityProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::IdentityProperties
|
75
|
-
|
73
|
+
WindowsOsInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsInfo
|
76
74
|
InboundNatRuleFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRuleFragment
|
77
|
-
|
78
|
-
|
79
|
-
|
75
|
+
CustomImagePropertiesFromVm = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesFromVm
|
76
|
+
UserIdentityFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentityFragment
|
77
|
+
ResponseWithContinuationSchedule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSchedule
|
80
78
|
TargetCostProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostProperties
|
81
|
-
|
79
|
+
DetachDataDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDataDiskProperties
|
82
80
|
LabCostSummaryProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostSummaryProperties
|
83
|
-
|
81
|
+
ResponseWithContinuationPolicy = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationPolicy
|
84
82
|
LabCostDetailsProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostDetailsProperties
|
85
|
-
|
83
|
+
ResponseWithContinuationNotificationChannel = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationNotificationChannel
|
86
84
|
LabResourceCostProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabResourceCostProperties
|
87
|
-
|
85
|
+
EvaluatePoliciesRequest = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesRequest
|
86
|
+
SubnetOverrideFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverrideFragment
|
87
|
+
PolicySetResult = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicySetResult
|
88
88
|
SubnetSharedPublicIpAddressConfigurationFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
|
89
|
-
|
90
|
-
SubnetFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetFragment
|
91
|
-
ResponseWithContinuationSecret = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSecret
|
89
|
+
Event = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Event
|
92
90
|
LabVhd = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVhd
|
93
|
-
|
94
|
-
|
95
|
-
|
91
|
+
DayDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetailsFragment
|
92
|
+
SubnetFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetFragment
|
93
|
+
UserIdentity = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentity
|
96
94
|
SharedPublicIpAddressConfigurationFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfigurationFragment
|
97
|
-
|
95
|
+
ResponseWithContinuationServiceRunner = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationServiceRunner
|
98
96
|
NetworkInterfacePropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfacePropertiesFragment
|
99
|
-
|
97
|
+
ArtifactDeploymentStatusProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
|
98
|
+
ShutdownNotificationContent = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ShutdownNotificationContent
|
99
|
+
ResponseWithContinuationSecret = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSecret
|
100
100
|
RetargetScheduleProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
|
101
|
-
|
101
|
+
BulkCreationParameters = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::BulkCreationParameters
|
102
102
|
ResponseWithContinuationVirtualNetwork = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationVirtualNetwork
|
103
|
-
|
104
|
-
SubnetOverride = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverride
|
105
|
-
ResponseWithContinuationNotificationChannel = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationNotificationChannel
|
103
|
+
ComputeDataDiskFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDiskFragment
|
106
104
|
NotifyParameters = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotifyParameters
|
107
|
-
|
105
|
+
ComputeVmPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmPropertiesFragment
|
106
|
+
OperationError = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationError
|
107
|
+
LinuxOsInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsInfo
|
108
|
+
OperationMetadataDisplay = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadataDisplay
|
109
|
+
DataDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DataDiskProperties
|
110
|
+
OperationMetadata = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadata
|
111
|
+
EnvironmentDeploymentProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
|
112
|
+
OperationResult = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationResult
|
113
|
+
PolicyViolation = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyViolation
|
114
|
+
SubnetOverride = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverride
|
115
|
+
EventFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EventFragment
|
108
116
|
SubnetSharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfiguration
|
109
|
-
|
110
|
-
Subnet = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Subnet
|
111
|
-
ArmTemplateInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateInfo
|
117
|
+
ApplyArtifactsRequest = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplyArtifactsRequest
|
112
118
|
Port = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Port
|
113
|
-
|
119
|
+
ArtifactParameterPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterPropertiesFragment
|
114
120
|
PortFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PortFragment
|
115
|
-
|
121
|
+
ProviderOperationResult = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ProviderOperationResult
|
122
|
+
CostThresholdProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdProperties
|
116
123
|
Resource = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Resource
|
117
|
-
|
124
|
+
DetachDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDiskProperties
|
118
125
|
ResponseWithContinuationArmTemplate = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArmTemplate
|
119
|
-
|
126
|
+
EvaluatePoliciesResponse = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesResponse
|
120
127
|
ResponseWithContinuationArtifact = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifact
|
121
|
-
|
128
|
+
ArmTemplateParameterProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateParameterProperties
|
122
129
|
ResponseWithContinuationArtifactSource = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifactSource
|
130
|
+
ComputeVmInstanceViewStatusFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatusFragment
|
123
131
|
ResponseWithContinuationCustomImage = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationCustomImage
|
124
|
-
|
132
|
+
EvaluatePoliciesProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesProperties
|
125
133
|
ResponseWithContinuationDisk = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDisk
|
126
|
-
|
134
|
+
AttachDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachDiskProperties
|
127
135
|
ResponseWithContinuationDtlEnvironment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDtlEnvironment
|
128
|
-
|
136
|
+
NotificationSettingsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettingsFragment
|
129
137
|
ResponseWithContinuationFormula = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationFormula
|
130
|
-
|
138
|
+
CustomImagePropertiesCustom = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesCustom
|
131
139
|
ResponseWithContinuationGalleryImage = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationGalleryImage
|
132
140
|
Schedule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Schedule
|
133
141
|
ApplicableSchedule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableSchedule
|
@@ -174,6 +182,7 @@ module Azure::DevTestLabs::Profiles::Latest::Mgmt
|
|
174
182
|
TargetCostStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostStatus
|
175
183
|
ReportingCycleType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ReportingCycleType
|
176
184
|
CostType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostType
|
185
|
+
HttpStatusCode = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HttpStatusCode
|
177
186
|
PolicyStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyStatus
|
178
187
|
PolicyFactName = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFactName
|
179
188
|
PolicyEvaluatorType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyEvaluatorType
|
@@ -181,10 +190,10 @@ module Azure::DevTestLabs::Profiles::Latest::Mgmt
|
|
181
190
|
end
|
182
191
|
|
183
192
|
#
|
184
|
-
#
|
193
|
+
# DevTestLabsManagementClass
|
185
194
|
#
|
186
|
-
class
|
187
|
-
attr_reader :labs, :global_schedules, :artifact_sources, :arm_templates, :artifacts, :costs, :custom_images, :formulas, :gallery_images, :notification_channels, :policy_sets, :policies, :schedules, :service_runners, :users, :disks, :environments, :secrets, :virtual_machines, :virtual_machine_schedules, :virtual_networks, :configurable, :base_url, :options, :model_classes
|
195
|
+
class DevTestLabsManagementClass
|
196
|
+
attr_reader :provider_operations, :labs, :operations, :global_schedules, :artifact_sources, :arm_templates, :artifacts, :costs, :custom_images, :formulas, :gallery_images, :notification_channels, :policy_sets, :policies, :schedules, :service_runners, :users, :disks, :environments, :secrets, :virtual_machines, :virtual_machine_schedules, :virtual_networks, :configurable, :base_url, :options, :model_classes
|
188
197
|
|
189
198
|
def initialize(options = {})
|
190
199
|
if options.is_a?(Hash) && options.length == 0
|
@@ -195,488 +204,526 @@ module Azure::DevTestLabs::Profiles::Latest::Mgmt
|
|
195
204
|
|
196
205
|
reset!(options)
|
197
206
|
|
198
|
-
@configurable
|
207
|
+
@configurable = self
|
208
|
+
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
209
|
+
@options = options[:options].nil? ? nil:options[:options]
|
199
210
|
|
200
|
-
client_0 = Azure::DevTestLabs::Mgmt::V2016_05_15::DevTestLabsClient.new(configurable.credentials, base_url, options)
|
201
|
-
if(client_0.respond_to?(:subscription_id))
|
202
|
-
client_0.subscription_id = configurable.subscription_id
|
203
|
-
end
|
204
|
-
@
|
205
|
-
@
|
206
|
-
@
|
207
|
-
@
|
208
|
-
@
|
209
|
-
@
|
210
|
-
@
|
211
|
-
@
|
212
|
-
@
|
213
|
-
@
|
214
|
-
@
|
215
|
-
@
|
216
|
-
@
|
217
|
-
@
|
218
|
-
@
|
219
|
-
@
|
220
|
-
@
|
221
|
-
@
|
222
|
-
@
|
223
|
-
@
|
224
|
-
@
|
211
|
+
@client_0 = Azure::DevTestLabs::Mgmt::V2016_05_15::DevTestLabsClient.new(configurable.credentials, base_url, options)
|
212
|
+
if(@client_0.respond_to?(:subscription_id))
|
213
|
+
@client_0.subscription_id = configurable.subscription_id
|
214
|
+
end
|
215
|
+
add_telemetry(@client_0)
|
216
|
+
@provider_operations = @client_0.provider_operations
|
217
|
+
@labs = @client_0.labs
|
218
|
+
@operations = @client_0.operations
|
219
|
+
@global_schedules = @client_0.global_schedules
|
220
|
+
@artifact_sources = @client_0.artifact_sources
|
221
|
+
@arm_templates = @client_0.arm_templates
|
222
|
+
@artifacts = @client_0.artifacts
|
223
|
+
@costs = @client_0.costs
|
224
|
+
@custom_images = @client_0.custom_images
|
225
|
+
@formulas = @client_0.formulas
|
226
|
+
@gallery_images = @client_0.gallery_images
|
227
|
+
@notification_channels = @client_0.notification_channels
|
228
|
+
@policy_sets = @client_0.policy_sets
|
229
|
+
@policies = @client_0.policies
|
230
|
+
@schedules = @client_0.schedules
|
231
|
+
@service_runners = @client_0.service_runners
|
232
|
+
@users = @client_0.users
|
233
|
+
@disks = @client_0.disks
|
234
|
+
@environments = @client_0.environments
|
235
|
+
@secrets = @client_0.secrets
|
236
|
+
@virtual_machines = @client_0.virtual_machines
|
237
|
+
@virtual_machine_schedules = @client_0.virtual_machine_schedules
|
238
|
+
@virtual_networks = @client_0.virtual_networks
|
225
239
|
|
226
240
|
@model_classes = ModelClasses.new
|
227
241
|
end
|
228
242
|
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
def external_subnet
|
240
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnet
|
241
|
-
end
|
242
|
-
def notification_settings
|
243
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettings
|
244
|
-
end
|
245
|
-
def external_subnet_fragment
|
246
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnetFragment
|
247
|
-
end
|
248
|
-
def evaluate_policies_response
|
249
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesResponse
|
250
|
-
end
|
251
|
-
def event
|
252
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Event
|
253
|
-
end
|
254
|
-
def day_details_fragment
|
255
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetailsFragment
|
256
|
-
end
|
257
|
-
def event_fragment
|
258
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EventFragment
|
259
|
-
end
|
260
|
-
def notification_settings_fragment
|
261
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettingsFragment
|
262
|
-
end
|
263
|
-
def hour_details
|
264
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetails
|
265
|
-
end
|
266
|
-
def response_with_continuation_service_runner
|
267
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationServiceRunner
|
268
|
-
end
|
269
|
-
def artifact_parameter_properties
|
270
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterProperties
|
271
|
-
end
|
272
|
-
def response_with_continuation_lab
|
273
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLab
|
274
|
-
end
|
275
|
-
def apply_artifacts_request
|
276
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplyArtifactsRequest
|
277
|
-
end
|
278
|
-
def response_with_continuation_lab_vhd
|
279
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVhd
|
280
|
-
end
|
281
|
-
def user_secret_store
|
282
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStore
|
283
|
-
end
|
284
|
-
def gallery_image_reference
|
285
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReference
|
286
|
-
end
|
287
|
-
def arm_template_parameter_properties
|
288
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateParameterProperties
|
289
|
-
end
|
290
|
-
def inbound_nat_rule
|
291
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRule
|
292
|
-
end
|
293
|
-
def artifact_deployment_status_properties
|
294
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
|
295
|
-
end
|
296
|
-
def shared_public_ip_address_configuration
|
297
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfiguration
|
298
|
-
end
|
299
|
-
def artifact_parameter_properties_fragment
|
300
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterPropertiesFragment
|
301
|
-
end
|
302
|
-
def network_interface_properties
|
303
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfaceProperties
|
304
|
-
end
|
305
|
-
def response_with_continuation_user
|
306
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationUser
|
307
|
-
end
|
308
|
-
def lab_virtual_machine_creation_parameter
|
309
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineCreationParameter
|
310
|
-
end
|
311
|
-
def attach_disk_properties
|
312
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachDiskProperties
|
313
|
-
end
|
314
|
-
def day_details
|
315
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetails
|
316
|
-
end
|
317
|
-
def bulk_creation_parameters
|
318
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::BulkCreationParameters
|
319
|
-
end
|
320
|
-
def user_secret_store_fragment
|
321
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStoreFragment
|
322
|
-
end
|
323
|
-
def user_identity_fragment
|
324
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentityFragment
|
325
|
-
end
|
326
|
-
def compute_data_disk_fragment
|
327
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDiskFragment
|
328
|
-
end
|
329
|
-
def gallery_image_reference_fragment
|
330
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReferenceFragment
|
331
|
-
end
|
332
|
-
def compute_vm_instance_view_status_fragment
|
333
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatusFragment
|
334
|
-
end
|
335
|
-
def parameter_info
|
336
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParameterInfo
|
337
|
-
end
|
338
|
-
def compute_vm_properties_fragment
|
339
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmPropertiesFragment
|
340
|
-
end
|
341
|
-
def generate_arm_template_request
|
342
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateArmTemplateRequest
|
343
|
-
end
|
344
|
-
def cost_threshold_properties
|
345
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdProperties
|
346
|
-
end
|
347
|
-
def generate_upload_uri_parameter
|
348
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriParameter
|
349
|
-
end
|
350
|
-
def linux_os_info
|
351
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsInfo
|
352
|
-
end
|
353
|
-
def generate_upload_uri_response
|
354
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriResponse
|
355
|
-
end
|
356
|
-
def custom_image_properties_custom
|
357
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesCustom
|
358
|
-
end
|
359
|
-
def identity_properties
|
360
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::IdentityProperties
|
361
|
-
end
|
362
|
-
def data_disk_properties
|
363
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DataDiskProperties
|
364
|
-
end
|
365
|
-
def inbound_nat_rule_fragment
|
366
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRuleFragment
|
367
|
-
end
|
368
|
-
def detach_disk_properties
|
369
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDiskProperties
|
370
|
-
end
|
371
|
-
def subnet_override_fragment
|
372
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverrideFragment
|
373
|
-
end
|
374
|
-
def environment_deployment_properties
|
375
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
|
376
|
-
end
|
377
|
-
def target_cost_properties
|
378
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostProperties
|
379
|
-
end
|
380
|
-
def evaluate_policies_properties
|
381
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesProperties
|
382
|
-
end
|
383
|
-
def lab_cost_summary_properties
|
384
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostSummaryProperties
|
385
|
-
end
|
386
|
-
def policy_violation
|
387
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyViolation
|
388
|
-
end
|
389
|
-
def lab_cost_details_properties
|
390
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostDetailsProperties
|
391
|
-
end
|
392
|
-
def week_details_fragment
|
393
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetailsFragment
|
394
|
-
end
|
395
|
-
def lab_resource_cost_properties
|
396
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabResourceCostProperties
|
397
|
-
end
|
398
|
-
def user_identity
|
399
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentity
|
400
|
-
end
|
401
|
-
def subnet_shared_public_ip_address_configuration_fragment
|
402
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
|
403
|
-
end
|
404
|
-
def parameters_value_file_info
|
405
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParametersValueFileInfo
|
406
|
-
end
|
407
|
-
def subnet_fragment
|
408
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetFragment
|
409
|
-
end
|
410
|
-
def response_with_continuation_secret
|
411
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSecret
|
412
|
-
end
|
413
|
-
def lab_vhd
|
414
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVhd
|
415
|
-
end
|
416
|
-
def artifact_install_properties_fragment
|
417
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallPropertiesFragment
|
418
|
-
end
|
419
|
-
def shutdown_notification_content
|
420
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ShutdownNotificationContent
|
421
|
-
end
|
422
|
-
def attach_new_data_disk_options
|
423
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachNewDataDiskOptions
|
424
|
-
end
|
425
|
-
def shared_public_ip_address_configuration_fragment
|
426
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfigurationFragment
|
427
|
-
end
|
428
|
-
def compute_data_disk
|
429
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDisk
|
430
|
-
end
|
431
|
-
def network_interface_properties_fragment
|
432
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfacePropertiesFragment
|
433
|
-
end
|
434
|
-
def compute_vm_properties
|
435
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmProperties
|
436
|
-
end
|
437
|
-
def retarget_schedule_properties
|
438
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
|
439
|
-
end
|
440
|
-
def windows_os_info
|
441
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsInfo
|
442
|
-
end
|
443
|
-
def response_with_continuation_virtual_network
|
444
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationVirtualNetwork
|
445
|
-
end
|
446
|
-
def response_with_continuation_policy
|
447
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationPolicy
|
448
|
-
end
|
449
|
-
def subnet_override
|
450
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverride
|
451
|
-
end
|
452
|
-
def response_with_continuation_notification_channel
|
453
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationNotificationChannel
|
454
|
-
end
|
455
|
-
def notify_parameters
|
456
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotifyParameters
|
457
|
-
end
|
458
|
-
def evaluate_policies_request
|
459
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesRequest
|
460
|
-
end
|
461
|
-
def subnet_shared_public_ip_address_configuration
|
462
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfiguration
|
463
|
-
end
|
464
|
-
def hour_details_fragment
|
465
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetailsFragment
|
466
|
-
end
|
467
|
-
def subnet
|
468
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Subnet
|
469
|
-
end
|
470
|
-
def arm_template_info
|
471
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateInfo
|
472
|
-
end
|
473
|
-
def port
|
474
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Port
|
475
|
-
end
|
476
|
-
def response_with_continuation_schedule
|
477
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSchedule
|
478
|
-
end
|
479
|
-
def port_fragment
|
480
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PortFragment
|
481
|
-
end
|
482
|
-
def compute_vm_instance_view_status
|
483
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatus
|
484
|
-
end
|
485
|
-
def resource
|
486
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Resource
|
487
|
-
end
|
488
|
-
def custom_image_properties_from_vm
|
489
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesFromVm
|
490
|
-
end
|
491
|
-
def response_with_continuation_arm_template
|
492
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArmTemplate
|
493
|
-
end
|
494
|
-
def response_with_continuation_lab_virtual_machine
|
495
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVirtualMachine
|
496
|
-
end
|
497
|
-
def response_with_continuation_artifact
|
498
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifact
|
499
|
-
end
|
500
|
-
def artifact_install_properties
|
501
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallProperties
|
502
|
-
end
|
503
|
-
def response_with_continuation_artifact_source
|
504
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifactSource
|
505
|
-
end
|
506
|
-
def response_with_continuation_custom_image
|
507
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationCustomImage
|
508
|
-
end
|
509
|
-
def detach_data_disk_properties
|
510
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDataDiskProperties
|
511
|
-
end
|
512
|
-
def response_with_continuation_disk
|
513
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDisk
|
514
|
-
end
|
515
|
-
def artifact_deployment_status_properties_fragment
|
516
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusPropertiesFragment
|
517
|
-
end
|
518
|
-
def response_with_continuation_dtl_environment
|
519
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDtlEnvironment
|
520
|
-
end
|
521
|
-
def policy_set_result
|
522
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicySetResult
|
523
|
-
end
|
524
|
-
def response_with_continuation_formula
|
525
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationFormula
|
526
|
-
end
|
527
|
-
def percentage_cost_threshold_properties
|
528
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PercentageCostThresholdProperties
|
529
|
-
end
|
530
|
-
def response_with_continuation_gallery_image
|
531
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationGalleryImage
|
532
|
-
end
|
533
|
-
def schedule
|
534
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Schedule
|
535
|
-
end
|
536
|
-
def applicable_schedule
|
537
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableSchedule
|
538
|
-
end
|
539
|
-
def schedule_fragment
|
540
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ScheduleFragment
|
541
|
-
end
|
542
|
-
def applicable_schedule_fragment
|
543
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableScheduleFragment
|
544
|
-
end
|
545
|
-
def arm_template
|
546
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplate
|
547
|
-
end
|
548
|
-
def artifact
|
549
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Artifact
|
550
|
-
end
|
551
|
-
def artifact_source
|
552
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSource
|
553
|
-
end
|
554
|
-
def artifact_source_fragment
|
555
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSourceFragment
|
556
|
-
end
|
557
|
-
def custom_image
|
558
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImage
|
559
|
-
end
|
560
|
-
def disk
|
561
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Disk
|
562
|
-
end
|
563
|
-
def dtl_environment
|
564
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DtlEnvironment
|
565
|
-
end
|
566
|
-
def formula
|
567
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Formula
|
568
|
-
end
|
569
|
-
def gallery_image
|
570
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImage
|
571
|
-
end
|
572
|
-
def lab
|
573
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Lab
|
574
|
-
end
|
575
|
-
def lab_cost
|
576
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCost
|
577
|
-
end
|
578
|
-
def lab_fragment
|
579
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabFragment
|
580
|
-
end
|
581
|
-
def lab_virtual_machine
|
582
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachine
|
583
|
-
end
|
584
|
-
def lab_virtual_machine_fragment
|
585
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineFragment
|
586
|
-
end
|
587
|
-
def notification_channel
|
588
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannel
|
589
|
-
end
|
590
|
-
def notification_channel_fragment
|
591
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelFragment
|
592
|
-
end
|
593
|
-
def policy
|
594
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Policy
|
595
|
-
end
|
596
|
-
def policy_fragment
|
597
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFragment
|
598
|
-
end
|
599
|
-
def secret
|
600
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Secret
|
601
|
-
end
|
602
|
-
def service_runner
|
603
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ServiceRunner
|
604
|
-
end
|
605
|
-
def user
|
606
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::User
|
607
|
-
end
|
608
|
-
def virtual_network
|
609
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetwork
|
610
|
-
end
|
611
|
-
def user_fragment
|
612
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserFragment
|
613
|
-
end
|
614
|
-
def virtual_network_fragment
|
615
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetworkFragment
|
616
|
-
end
|
617
|
-
def enable_status
|
618
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnableStatus
|
619
|
-
end
|
620
|
-
def notification_status
|
621
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationStatus
|
622
|
-
end
|
623
|
-
def source_control_type
|
624
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SourceControlType
|
625
|
-
end
|
626
|
-
def storage_type
|
627
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::StorageType
|
628
|
-
end
|
629
|
-
def cost_threshold_status
|
630
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdStatus
|
631
|
-
end
|
632
|
-
def windows_os_state
|
633
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsState
|
634
|
-
end
|
635
|
-
def linux_os_state
|
636
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsState
|
637
|
-
end
|
638
|
-
def custom_image_os_type
|
639
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImageOsType
|
640
|
-
end
|
641
|
-
def host_caching_options
|
642
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HostCachingOptions
|
643
|
-
end
|
644
|
-
def notification_channel_event_type
|
645
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelEventType
|
646
|
-
end
|
647
|
-
def transport_protocol
|
648
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TransportProtocol
|
649
|
-
end
|
650
|
-
def virtual_machine_creation_source
|
651
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualMachineCreationSource
|
652
|
-
end
|
653
|
-
def file_upload_options
|
654
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FileUploadOptions
|
655
|
-
end
|
656
|
-
def premium_data_disk
|
657
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PremiumDataDisk
|
658
|
-
end
|
659
|
-
def target_cost_status
|
660
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostStatus
|
661
|
-
end
|
662
|
-
def reporting_cycle_type
|
663
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ReportingCycleType
|
664
|
-
end
|
665
|
-
def cost_type
|
666
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostType
|
667
|
-
end
|
668
|
-
def policy_status
|
669
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyStatus
|
670
|
-
end
|
671
|
-
def policy_fact_name
|
672
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFactName
|
673
|
-
end
|
674
|
-
def policy_evaluator_type
|
675
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyEvaluatorType
|
676
|
-
end
|
677
|
-
def usage_permission_type
|
678
|
-
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UsagePermissionType
|
243
|
+
def add_telemetry(client)
|
244
|
+
profile_information = 'Profiles/Latest/DevTestLabs/Mgmt'
|
245
|
+
client.add_user_agent_information(profile_information)
|
246
|
+
end
|
247
|
+
|
248
|
+
def method_missing(method, *args)
|
249
|
+
if @client_0.respond_to?method
|
250
|
+
@client_0.send(method, *args)
|
251
|
+
else
|
252
|
+
super
|
679
253
|
end
|
680
254
|
end
|
255
|
+
|
256
|
+
end
|
257
|
+
|
258
|
+
class ModelClasses
|
259
|
+
def external_subnet_fragment
|
260
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnetFragment
|
261
|
+
end
|
262
|
+
def gallery_image_reference
|
263
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReference
|
264
|
+
end
|
265
|
+
def day_details
|
266
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetails
|
267
|
+
end
|
268
|
+
def inbound_nat_rule
|
269
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRule
|
270
|
+
end
|
271
|
+
def notification_settings
|
272
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettings
|
273
|
+
end
|
274
|
+
def shared_public_ip_address_configuration
|
275
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfiguration
|
276
|
+
end
|
277
|
+
def export_resource_usage_parameters
|
278
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExportResourceUsageParameters
|
279
|
+
end
|
280
|
+
def week_details_fragment
|
281
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetailsFragment
|
282
|
+
end
|
283
|
+
def external_subnet
|
284
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnet
|
285
|
+
end
|
286
|
+
def hour_details_fragment
|
287
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetailsFragment
|
288
|
+
end
|
289
|
+
def week_details
|
290
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetails
|
291
|
+
end
|
292
|
+
def user_secret_store
|
293
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStore
|
294
|
+
end
|
295
|
+
def hour_details
|
296
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetails
|
297
|
+
end
|
298
|
+
def artifact_parameter_properties
|
299
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterProperties
|
300
|
+
end
|
301
|
+
def artifact_install_properties
|
302
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallProperties
|
303
|
+
end
|
304
|
+
def response_with_continuation_lab
|
305
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLab
|
306
|
+
end
|
307
|
+
def parameters_value_file_info
|
308
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParametersValueFileInfo
|
309
|
+
end
|
310
|
+
def response_with_continuation_lab_virtual_machine
|
311
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVirtualMachine
|
312
|
+
end
|
313
|
+
def arm_template_info
|
314
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateInfo
|
315
|
+
end
|
316
|
+
def network_interface_properties
|
317
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfaceProperties
|
318
|
+
end
|
319
|
+
def response_with_continuation_user
|
320
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationUser
|
321
|
+
end
|
322
|
+
def lab_virtual_machine_creation_parameter
|
323
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineCreationParameter
|
324
|
+
end
|
325
|
+
def artifact_deployment_status_properties_fragment
|
326
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusPropertiesFragment
|
327
|
+
end
|
328
|
+
def formula_properties_from_vm
|
329
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FormulaPropertiesFromVm
|
330
|
+
end
|
331
|
+
def artifact_install_properties_fragment
|
332
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallPropertiesFragment
|
333
|
+
end
|
334
|
+
def response_with_continuation_lab_vhd
|
335
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVhd
|
336
|
+
end
|
337
|
+
def subnet
|
338
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Subnet
|
339
|
+
end
|
340
|
+
def user_secret_store_fragment
|
341
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStoreFragment
|
342
|
+
end
|
343
|
+
def attach_new_data_disk_options
|
344
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachNewDataDiskOptions
|
345
|
+
end
|
346
|
+
def gallery_image_reference_fragment
|
347
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReferenceFragment
|
348
|
+
end
|
349
|
+
def parameter_info
|
350
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParameterInfo
|
351
|
+
end
|
352
|
+
def compute_data_disk
|
353
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDisk
|
354
|
+
end
|
355
|
+
def generate_arm_template_request
|
356
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateArmTemplateRequest
|
357
|
+
end
|
358
|
+
def compute_vm_instance_view_status
|
359
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatus
|
360
|
+
end
|
361
|
+
def generate_upload_uri_parameter
|
362
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriParameter
|
363
|
+
end
|
364
|
+
def compute_vm_properties
|
365
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmProperties
|
366
|
+
end
|
367
|
+
def generate_upload_uri_response
|
368
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriResponse
|
369
|
+
end
|
370
|
+
def percentage_cost_threshold_properties
|
371
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PercentageCostThresholdProperties
|
372
|
+
end
|
373
|
+
def identity_properties
|
374
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::IdentityProperties
|
375
|
+
end
|
376
|
+
def windows_os_info
|
377
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsInfo
|
378
|
+
end
|
379
|
+
def inbound_nat_rule_fragment
|
380
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRuleFragment
|
381
|
+
end
|
382
|
+
def custom_image_properties_from_vm
|
383
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesFromVm
|
384
|
+
end
|
385
|
+
def user_identity_fragment
|
386
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentityFragment
|
387
|
+
end
|
388
|
+
def response_with_continuation_schedule
|
389
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSchedule
|
390
|
+
end
|
391
|
+
def target_cost_properties
|
392
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostProperties
|
393
|
+
end
|
394
|
+
def detach_data_disk_properties
|
395
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDataDiskProperties
|
396
|
+
end
|
397
|
+
def lab_cost_summary_properties
|
398
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostSummaryProperties
|
399
|
+
end
|
400
|
+
def response_with_continuation_policy
|
401
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationPolicy
|
402
|
+
end
|
403
|
+
def lab_cost_details_properties
|
404
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostDetailsProperties
|
405
|
+
end
|
406
|
+
def response_with_continuation_notification_channel
|
407
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationNotificationChannel
|
408
|
+
end
|
409
|
+
def lab_resource_cost_properties
|
410
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabResourceCostProperties
|
411
|
+
end
|
412
|
+
def evaluate_policies_request
|
413
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesRequest
|
414
|
+
end
|
415
|
+
def subnet_override_fragment
|
416
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverrideFragment
|
417
|
+
end
|
418
|
+
def policy_set_result
|
419
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicySetResult
|
420
|
+
end
|
421
|
+
def subnet_shared_public_ip_address_configuration_fragment
|
422
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
|
423
|
+
end
|
424
|
+
def event
|
425
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Event
|
426
|
+
end
|
427
|
+
def lab_vhd
|
428
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVhd
|
429
|
+
end
|
430
|
+
def day_details_fragment
|
431
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetailsFragment
|
432
|
+
end
|
433
|
+
def subnet_fragment
|
434
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetFragment
|
435
|
+
end
|
436
|
+
def user_identity
|
437
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentity
|
438
|
+
end
|
439
|
+
def shared_public_ip_address_configuration_fragment
|
440
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfigurationFragment
|
441
|
+
end
|
442
|
+
def response_with_continuation_service_runner
|
443
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationServiceRunner
|
444
|
+
end
|
445
|
+
def network_interface_properties_fragment
|
446
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfacePropertiesFragment
|
447
|
+
end
|
448
|
+
def artifact_deployment_status_properties
|
449
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
|
450
|
+
end
|
451
|
+
def shutdown_notification_content
|
452
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ShutdownNotificationContent
|
453
|
+
end
|
454
|
+
def response_with_continuation_secret
|
455
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSecret
|
456
|
+
end
|
457
|
+
def retarget_schedule_properties
|
458
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
|
459
|
+
end
|
460
|
+
def bulk_creation_parameters
|
461
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::BulkCreationParameters
|
462
|
+
end
|
463
|
+
def response_with_continuation_virtual_network
|
464
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationVirtualNetwork
|
465
|
+
end
|
466
|
+
def compute_data_disk_fragment
|
467
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDiskFragment
|
468
|
+
end
|
469
|
+
def notify_parameters
|
470
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotifyParameters
|
471
|
+
end
|
472
|
+
def compute_vm_properties_fragment
|
473
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmPropertiesFragment
|
474
|
+
end
|
475
|
+
def operation_error
|
476
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationError
|
477
|
+
end
|
478
|
+
def linux_os_info
|
479
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsInfo
|
480
|
+
end
|
481
|
+
def operation_metadata_display
|
482
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadataDisplay
|
483
|
+
end
|
484
|
+
def data_disk_properties
|
485
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DataDiskProperties
|
486
|
+
end
|
487
|
+
def operation_metadata
|
488
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadata
|
489
|
+
end
|
490
|
+
def environment_deployment_properties
|
491
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
|
492
|
+
end
|
493
|
+
def operation_result
|
494
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationResult
|
495
|
+
end
|
496
|
+
def policy_violation
|
497
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyViolation
|
498
|
+
end
|
499
|
+
def subnet_override
|
500
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverride
|
501
|
+
end
|
502
|
+
def event_fragment
|
503
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EventFragment
|
504
|
+
end
|
505
|
+
def subnet_shared_public_ip_address_configuration
|
506
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfiguration
|
507
|
+
end
|
508
|
+
def apply_artifacts_request
|
509
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplyArtifactsRequest
|
510
|
+
end
|
511
|
+
def port
|
512
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Port
|
513
|
+
end
|
514
|
+
def artifact_parameter_properties_fragment
|
515
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterPropertiesFragment
|
516
|
+
end
|
517
|
+
def port_fragment
|
518
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PortFragment
|
519
|
+
end
|
520
|
+
def provider_operation_result
|
521
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ProviderOperationResult
|
522
|
+
end
|
523
|
+
def cost_threshold_properties
|
524
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdProperties
|
525
|
+
end
|
526
|
+
def resource
|
527
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Resource
|
528
|
+
end
|
529
|
+
def detach_disk_properties
|
530
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDiskProperties
|
531
|
+
end
|
532
|
+
def response_with_continuation_arm_template
|
533
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArmTemplate
|
534
|
+
end
|
535
|
+
def evaluate_policies_response
|
536
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesResponse
|
537
|
+
end
|
538
|
+
def response_with_continuation_artifact
|
539
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifact
|
540
|
+
end
|
541
|
+
def arm_template_parameter_properties
|
542
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateParameterProperties
|
543
|
+
end
|
544
|
+
def response_with_continuation_artifact_source
|
545
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifactSource
|
546
|
+
end
|
547
|
+
def compute_vm_instance_view_status_fragment
|
548
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatusFragment
|
549
|
+
end
|
550
|
+
def response_with_continuation_custom_image
|
551
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationCustomImage
|
552
|
+
end
|
553
|
+
def evaluate_policies_properties
|
554
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesProperties
|
555
|
+
end
|
556
|
+
def response_with_continuation_disk
|
557
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDisk
|
558
|
+
end
|
559
|
+
def attach_disk_properties
|
560
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachDiskProperties
|
561
|
+
end
|
562
|
+
def response_with_continuation_dtl_environment
|
563
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDtlEnvironment
|
564
|
+
end
|
565
|
+
def notification_settings_fragment
|
566
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettingsFragment
|
567
|
+
end
|
568
|
+
def response_with_continuation_formula
|
569
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationFormula
|
570
|
+
end
|
571
|
+
def custom_image_properties_custom
|
572
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesCustom
|
573
|
+
end
|
574
|
+
def response_with_continuation_gallery_image
|
575
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationGalleryImage
|
576
|
+
end
|
577
|
+
def schedule
|
578
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Schedule
|
579
|
+
end
|
580
|
+
def applicable_schedule
|
581
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableSchedule
|
582
|
+
end
|
583
|
+
def schedule_fragment
|
584
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ScheduleFragment
|
585
|
+
end
|
586
|
+
def applicable_schedule_fragment
|
587
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableScheduleFragment
|
588
|
+
end
|
589
|
+
def arm_template
|
590
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplate
|
591
|
+
end
|
592
|
+
def artifact
|
593
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Artifact
|
594
|
+
end
|
595
|
+
def artifact_source
|
596
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSource
|
597
|
+
end
|
598
|
+
def artifact_source_fragment
|
599
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSourceFragment
|
600
|
+
end
|
601
|
+
def custom_image
|
602
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImage
|
603
|
+
end
|
604
|
+
def disk
|
605
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Disk
|
606
|
+
end
|
607
|
+
def dtl_environment
|
608
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DtlEnvironment
|
609
|
+
end
|
610
|
+
def formula
|
611
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Formula
|
612
|
+
end
|
613
|
+
def gallery_image
|
614
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImage
|
615
|
+
end
|
616
|
+
def lab
|
617
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Lab
|
618
|
+
end
|
619
|
+
def lab_cost
|
620
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCost
|
621
|
+
end
|
622
|
+
def lab_fragment
|
623
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabFragment
|
624
|
+
end
|
625
|
+
def lab_virtual_machine
|
626
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachine
|
627
|
+
end
|
628
|
+
def lab_virtual_machine_fragment
|
629
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineFragment
|
630
|
+
end
|
631
|
+
def notification_channel
|
632
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannel
|
633
|
+
end
|
634
|
+
def notification_channel_fragment
|
635
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelFragment
|
636
|
+
end
|
637
|
+
def policy
|
638
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Policy
|
639
|
+
end
|
640
|
+
def policy_fragment
|
641
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFragment
|
642
|
+
end
|
643
|
+
def secret
|
644
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Secret
|
645
|
+
end
|
646
|
+
def service_runner
|
647
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ServiceRunner
|
648
|
+
end
|
649
|
+
def user
|
650
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::User
|
651
|
+
end
|
652
|
+
def virtual_network
|
653
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetwork
|
654
|
+
end
|
655
|
+
def user_fragment
|
656
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserFragment
|
657
|
+
end
|
658
|
+
def virtual_network_fragment
|
659
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetworkFragment
|
660
|
+
end
|
661
|
+
def enable_status
|
662
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnableStatus
|
663
|
+
end
|
664
|
+
def notification_status
|
665
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationStatus
|
666
|
+
end
|
667
|
+
def source_control_type
|
668
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SourceControlType
|
669
|
+
end
|
670
|
+
def storage_type
|
671
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::StorageType
|
672
|
+
end
|
673
|
+
def cost_threshold_status
|
674
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdStatus
|
675
|
+
end
|
676
|
+
def windows_os_state
|
677
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsState
|
678
|
+
end
|
679
|
+
def linux_os_state
|
680
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsState
|
681
|
+
end
|
682
|
+
def custom_image_os_type
|
683
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImageOsType
|
684
|
+
end
|
685
|
+
def host_caching_options
|
686
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HostCachingOptions
|
687
|
+
end
|
688
|
+
def notification_channel_event_type
|
689
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelEventType
|
690
|
+
end
|
691
|
+
def transport_protocol
|
692
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TransportProtocol
|
693
|
+
end
|
694
|
+
def virtual_machine_creation_source
|
695
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualMachineCreationSource
|
696
|
+
end
|
697
|
+
def file_upload_options
|
698
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FileUploadOptions
|
699
|
+
end
|
700
|
+
def premium_data_disk
|
701
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PremiumDataDisk
|
702
|
+
end
|
703
|
+
def target_cost_status
|
704
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostStatus
|
705
|
+
end
|
706
|
+
def reporting_cycle_type
|
707
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ReportingCycleType
|
708
|
+
end
|
709
|
+
def cost_type
|
710
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostType
|
711
|
+
end
|
712
|
+
def http_status_code
|
713
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HttpStatusCode
|
714
|
+
end
|
715
|
+
def policy_status
|
716
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyStatus
|
717
|
+
end
|
718
|
+
def policy_fact_name
|
719
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFactName
|
720
|
+
end
|
721
|
+
def policy_evaluator_type
|
722
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyEvaluatorType
|
723
|
+
end
|
724
|
+
def usage_permission_type
|
725
|
+
Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UsagePermissionType
|
726
|
+
end
|
681
727
|
end
|
728
|
+
end
|
682
729
|
end
|