azure_mgmt_resources 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/README.md +1 -27
- data/azure_mgmt_resources.gemspec +1 -1
- data/lib/azure_mgmt_resources.rb +7 -10
- data/lib/azure_mgmt_resources/deployment_operations.rb +117 -16
- data/lib/azure_mgmt_resources/deployments.rb +416 -51
- data/lib/azure_mgmt_resources/models/basic_dependency.rb +1 -1
- data/lib/azure_mgmt_resources/models/debug_setting.rb +56 -0
- data/lib/azure_mgmt_resources/models/dependency.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_export_result.rb +56 -0
- data/lib/azure_mgmt_resources/models/deployment_extended.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_extended_filter.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_mode.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_operation.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_operation_properties.rb +42 -1
- data/lib/azure_mgmt_resources/models/deployment_operations_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/deployment_properties.rb +18 -1
- data/lib/azure_mgmt_resources/models/deployment_properties_extended.rb +18 -1
- data/lib/azure_mgmt_resources/models/deployment_validate_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/export_template_request.rb +69 -0
- data/lib/azure_mgmt_resources/models/generic_resource.rb +1 -1
- data/lib/azure_mgmt_resources/models/generic_resource_filter.rb +1 -1
- data/lib/azure_mgmt_resources/models/http_message.rb +56 -0
- data/lib/azure_mgmt_resources/models/parameters_link.rb +1 -1
- data/lib/azure_mgmt_resources/models/plan.rb +1 -1
- data/lib/azure_mgmt_resources/models/provider.rb +1 -1
- data/lib/azure_mgmt_resources/models/provider_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/provider_resource_type.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_group.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_group_export_result.rb +71 -0
- data/lib/azure_mgmt_resources/models/resource_group_filter.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_group_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_group_properties.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_management_error_with_details.rb +18 -5
- data/lib/azure_mgmt_resources/models/resource_provider_operation_definition.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_provider_operation_detail_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/resource_provider_operation_display_properties.rb +1 -1
- data/lib/azure_mgmt_resources/models/resources_move_info.rb +1 -1
- data/lib/azure_mgmt_resources/models/tag_count.rb +1 -1
- data/lib/azure_mgmt_resources/models/tag_details.rb +1 -1
- data/lib/azure_mgmt_resources/models/tag_value.rb +1 -1
- data/lib/azure_mgmt_resources/models/tags_list_result.rb +1 -1
- data/lib/azure_mgmt_resources/models/target_resource.rb +1 -1
- data/lib/azure_mgmt_resources/models/template_link.rb +1 -1
- data/lib/azure_mgmt_resources/module_definition.rb +1 -1
- data/lib/azure_mgmt_resources/providers.rb +181 -26
- data/lib/azure_mgmt_resources/resource_groups.rb +461 -54
- data/lib/azure_mgmt_resources/resource_management_client.rb +2 -10
- data/lib/azure_mgmt_resources/resource_provider_operation_details.rb +73 -11
- data/lib/azure_mgmt_resources/resources.rb +306 -57
- data/lib/azure_mgmt_resources/tags.rb +207 -31
- data/lib/azure_mgmt_resources/version.rb +2 -2
- metadata +31 -29
- data/lib/azure_mgmt_resources/models/policy_assignment.rb +0 -72
- data/lib/azure_mgmt_resources/models/policy_assignment_list_result.rb +0 -86
- data/lib/azure_mgmt_resources/models/policy_assignment_properties.rb +0 -74
- data/lib/azure_mgmt_resources/models/policy_definition.rb +0 -72
- data/lib/azure_mgmt_resources/models/policy_definition_properties.rb +0 -74
- data/lib/azure_mgmt_resources/models/resource_management_error.rb +0 -76
- data/lib/azure_mgmt_resources/policy_assignments.rb +0 -922
- data/lib/azure_mgmt_resources/policy_definitions.rb +0 -208
@@ -1,5 +1,5 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
@@ -27,13 +27,40 @@ module Azure::ARM::Resources
|
|
27
27
|
#
|
28
28
|
# @param tag_name [String] The name of the tag.
|
29
29
|
# @param tag_value [String] The value of the tag.
|
30
|
-
# @param [Hash{String => String}]
|
31
|
-
#
|
30
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
31
|
+
# will be added to the HTTP request.
|
32
32
|
#
|
33
|
-
# @return [Concurrent::Promise] Promise object which allows to get HTTP
|
34
|
-
# response.
|
35
33
|
#
|
36
34
|
def delete_value(tag_name, tag_value, custom_headers = nil)
|
35
|
+
response = delete_value_async(tag_name, tag_value, custom_headers).value!
|
36
|
+
nil
|
37
|
+
end
|
38
|
+
|
39
|
+
#
|
40
|
+
# Delete a subscription resource tag value.
|
41
|
+
#
|
42
|
+
# @param tag_name [String] The name of the tag.
|
43
|
+
# @param tag_value [String] The value of the tag.
|
44
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
45
|
+
# will be added to the HTTP request.
|
46
|
+
#
|
47
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
48
|
+
#
|
49
|
+
def delete_value_with_http_info(tag_name, tag_value, custom_headers = nil)
|
50
|
+
delete_value_async(tag_name, tag_value, custom_headers).value!
|
51
|
+
end
|
52
|
+
|
53
|
+
#
|
54
|
+
# Delete a subscription resource tag value.
|
55
|
+
#
|
56
|
+
# @param tag_name [String] The name of the tag.
|
57
|
+
# @param tag_value [String] The value of the tag.
|
58
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
59
|
+
# to the HTTP request.
|
60
|
+
#
|
61
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
62
|
+
#
|
63
|
+
def delete_value_async(tag_name, tag_value, custom_headers = nil)
|
37
64
|
fail ArgumentError, 'tag_name is nil' if tag_name.nil?
|
38
65
|
fail ArgumentError, 'tag_value is nil' if tag_value.nil?
|
39
66
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
@@ -50,7 +77,10 @@ module Azure::ARM::Resources
|
|
50
77
|
query_params: {'api-version' => @client.api_version},
|
51
78
|
headers: request_headers.merge(custom_headers || {})
|
52
79
|
}
|
53
|
-
|
80
|
+
|
81
|
+
request_url = @base_url || @client.base_url
|
82
|
+
|
83
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :delete, options)
|
54
84
|
promise = request.run_promise do |req|
|
55
85
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
56
86
|
end
|
@@ -78,13 +108,41 @@ module Azure::ARM::Resources
|
|
78
108
|
#
|
79
109
|
# @param tag_name [String] The name of the tag.
|
80
110
|
# @param tag_value [String] The value of the tag.
|
81
|
-
# @param [Hash{String => String}]
|
82
|
-
#
|
111
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
112
|
+
# will be added to the HTTP request.
|
83
113
|
#
|
84
|
-
# @return [
|
85
|
-
# response.
|
114
|
+
# @return [TagValue] operation results.
|
86
115
|
#
|
87
116
|
def create_or_update_value(tag_name, tag_value, custom_headers = nil)
|
117
|
+
response = create_or_update_value_async(tag_name, tag_value, custom_headers).value!
|
118
|
+
response.body unless response.nil?
|
119
|
+
end
|
120
|
+
|
121
|
+
#
|
122
|
+
# Create a subscription resource tag value.
|
123
|
+
#
|
124
|
+
# @param tag_name [String] The name of the tag.
|
125
|
+
# @param tag_value [String] The value of the tag.
|
126
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
127
|
+
# will be added to the HTTP request.
|
128
|
+
#
|
129
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
130
|
+
#
|
131
|
+
def create_or_update_value_with_http_info(tag_name, tag_value, custom_headers = nil)
|
132
|
+
create_or_update_value_async(tag_name, tag_value, custom_headers).value!
|
133
|
+
end
|
134
|
+
|
135
|
+
#
|
136
|
+
# Create a subscription resource tag value.
|
137
|
+
#
|
138
|
+
# @param tag_name [String] The name of the tag.
|
139
|
+
# @param tag_value [String] The value of the tag.
|
140
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
141
|
+
# to the HTTP request.
|
142
|
+
#
|
143
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
144
|
+
#
|
145
|
+
def create_or_update_value_async(tag_name, tag_value, custom_headers = nil)
|
88
146
|
fail ArgumentError, 'tag_name is nil' if tag_name.nil?
|
89
147
|
fail ArgumentError, 'tag_value is nil' if tag_value.nil?
|
90
148
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
@@ -101,7 +159,10 @@ module Azure::ARM::Resources
|
|
101
159
|
query_params: {'api-version' => @client.api_version},
|
102
160
|
headers: request_headers.merge(custom_headers || {})
|
103
161
|
}
|
104
|
-
|
162
|
+
|
163
|
+
request_url = @base_url || @client.base_url
|
164
|
+
|
165
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :put, options)
|
105
166
|
promise = request.run_promise do |req|
|
106
167
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
107
168
|
end
|
@@ -152,13 +213,39 @@ module Azure::ARM::Resources
|
|
152
213
|
# Create a subscription resource tag.
|
153
214
|
#
|
154
215
|
# @param tag_name [String] The name of the tag.
|
155
|
-
# @param [Hash{String => String}]
|
156
|
-
#
|
216
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
217
|
+
# will be added to the HTTP request.
|
157
218
|
#
|
158
|
-
# @return [
|
159
|
-
# response.
|
219
|
+
# @return [TagDetails] operation results.
|
160
220
|
#
|
161
221
|
def create_or_update(tag_name, custom_headers = nil)
|
222
|
+
response = create_or_update_async(tag_name, custom_headers).value!
|
223
|
+
response.body unless response.nil?
|
224
|
+
end
|
225
|
+
|
226
|
+
#
|
227
|
+
# Create a subscription resource tag.
|
228
|
+
#
|
229
|
+
# @param tag_name [String] The name of the tag.
|
230
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
231
|
+
# will be added to the HTTP request.
|
232
|
+
#
|
233
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
234
|
+
#
|
235
|
+
def create_or_update_with_http_info(tag_name, custom_headers = nil)
|
236
|
+
create_or_update_async(tag_name, custom_headers).value!
|
237
|
+
end
|
238
|
+
|
239
|
+
#
|
240
|
+
# Create a subscription resource tag.
|
241
|
+
#
|
242
|
+
# @param tag_name [String] The name of the tag.
|
243
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
244
|
+
# to the HTTP request.
|
245
|
+
#
|
246
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
247
|
+
#
|
248
|
+
def create_or_update_async(tag_name, custom_headers = nil)
|
162
249
|
fail ArgumentError, 'tag_name is nil' if tag_name.nil?
|
163
250
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
164
251
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
@@ -174,7 +261,10 @@ module Azure::ARM::Resources
|
|
174
261
|
query_params: {'api-version' => @client.api_version},
|
175
262
|
headers: request_headers.merge(custom_headers || {})
|
176
263
|
}
|
177
|
-
|
264
|
+
|
265
|
+
request_url = @base_url || @client.base_url
|
266
|
+
|
267
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :put, options)
|
178
268
|
promise = request.run_promise do |req|
|
179
269
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
180
270
|
end
|
@@ -225,13 +315,38 @@ module Azure::ARM::Resources
|
|
225
315
|
# Delete a subscription resource tag.
|
226
316
|
#
|
227
317
|
# @param tag_name [String] The name of the tag.
|
228
|
-
# @param [Hash{String => String}]
|
229
|
-
#
|
318
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
319
|
+
# will be added to the HTTP request.
|
230
320
|
#
|
231
|
-
# @return [Concurrent::Promise] Promise object which allows to get HTTP
|
232
|
-
# response.
|
233
321
|
#
|
234
322
|
def delete(tag_name, custom_headers = nil)
|
323
|
+
response = delete_async(tag_name, custom_headers).value!
|
324
|
+
nil
|
325
|
+
end
|
326
|
+
|
327
|
+
#
|
328
|
+
# Delete a subscription resource tag.
|
329
|
+
#
|
330
|
+
# @param tag_name [String] The name of the tag.
|
331
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
332
|
+
# will be added to the HTTP request.
|
333
|
+
#
|
334
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
335
|
+
#
|
336
|
+
def delete_with_http_info(tag_name, custom_headers = nil)
|
337
|
+
delete_async(tag_name, custom_headers).value!
|
338
|
+
end
|
339
|
+
|
340
|
+
#
|
341
|
+
# Delete a subscription resource tag.
|
342
|
+
#
|
343
|
+
# @param tag_name [String] The name of the tag.
|
344
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
345
|
+
# to the HTTP request.
|
346
|
+
#
|
347
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
348
|
+
#
|
349
|
+
def delete_async(tag_name, custom_headers = nil)
|
235
350
|
fail ArgumentError, 'tag_name is nil' if tag_name.nil?
|
236
351
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
237
352
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
@@ -247,7 +362,10 @@ module Azure::ARM::Resources
|
|
247
362
|
query_params: {'api-version' => @client.api_version},
|
248
363
|
headers: request_headers.merge(custom_headers || {})
|
249
364
|
}
|
250
|
-
|
365
|
+
|
366
|
+
request_url = @base_url || @client.base_url
|
367
|
+
|
368
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :delete, options)
|
251
369
|
promise = request.run_promise do |req|
|
252
370
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
253
371
|
end
|
@@ -273,13 +391,37 @@ module Azure::ARM::Resources
|
|
273
391
|
#
|
274
392
|
# Get a list of subscription resource tags.
|
275
393
|
#
|
276
|
-
# @param [Hash{String => String}]
|
277
|
-
#
|
394
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
395
|
+
# will be added to the HTTP request.
|
278
396
|
#
|
279
|
-
# @return [
|
280
|
-
# response.
|
397
|
+
# @return [TagsListResult] operation results.
|
281
398
|
#
|
282
399
|
def list(custom_headers = nil)
|
400
|
+
response = list_async(custom_headers).value!
|
401
|
+
response.body unless response.nil?
|
402
|
+
end
|
403
|
+
|
404
|
+
#
|
405
|
+
# Get a list of subscription resource tags.
|
406
|
+
#
|
407
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
408
|
+
# will be added to the HTTP request.
|
409
|
+
#
|
410
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
411
|
+
#
|
412
|
+
def list_with_http_info(custom_headers = nil)
|
413
|
+
list_async(custom_headers).value!
|
414
|
+
end
|
415
|
+
|
416
|
+
#
|
417
|
+
# Get a list of subscription resource tags.
|
418
|
+
#
|
419
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
420
|
+
# to the HTTP request.
|
421
|
+
#
|
422
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
423
|
+
#
|
424
|
+
def list_async(custom_headers = nil)
|
283
425
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
284
426
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
285
427
|
request_headers = {}
|
@@ -294,7 +436,10 @@ module Azure::ARM::Resources
|
|
294
436
|
query_params: {'api-version' => @client.api_version},
|
295
437
|
headers: request_headers.merge(custom_headers || {})
|
296
438
|
}
|
297
|
-
|
439
|
+
|
440
|
+
request_url = @base_url || @client.base_url
|
441
|
+
|
442
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
298
443
|
promise = request.run_promise do |req|
|
299
444
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
300
445
|
end
|
@@ -334,13 +479,41 @@ module Azure::ARM::Resources
|
|
334
479
|
#
|
335
480
|
# @param next_page_link [String] The NextLink from the previous successful
|
336
481
|
# call to List operation.
|
337
|
-
# @param [Hash{String => String}]
|
338
|
-
#
|
482
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
483
|
+
# will be added to the HTTP request.
|
339
484
|
#
|
340
|
-
# @return [
|
341
|
-
# response.
|
485
|
+
# @return [TagsListResult] operation results.
|
342
486
|
#
|
343
487
|
def list_next(next_page_link, custom_headers = nil)
|
488
|
+
response = list_next_async(next_page_link, custom_headers).value!
|
489
|
+
response.body unless response.nil?
|
490
|
+
end
|
491
|
+
|
492
|
+
#
|
493
|
+
# Get a list of subscription resource tags.
|
494
|
+
#
|
495
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
496
|
+
# call to List operation.
|
497
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
498
|
+
# will be added to the HTTP request.
|
499
|
+
#
|
500
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
501
|
+
#
|
502
|
+
def list_next_with_http_info(next_page_link, custom_headers = nil)
|
503
|
+
list_next_async(next_page_link, custom_headers).value!
|
504
|
+
end
|
505
|
+
|
506
|
+
#
|
507
|
+
# Get a list of subscription resource tags.
|
508
|
+
#
|
509
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
510
|
+
# call to List operation.
|
511
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
512
|
+
# to the HTTP request.
|
513
|
+
#
|
514
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
515
|
+
#
|
516
|
+
def list_next_async(next_page_link, custom_headers = nil)
|
344
517
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
345
518
|
request_headers = {}
|
346
519
|
|
@@ -353,7 +526,10 @@ module Azure::ARM::Resources
|
|
353
526
|
skip_encoding_path_params: {'nextLink' => next_page_link},
|
354
527
|
headers: request_headers.merge(custom_headers || {})
|
355
528
|
}
|
356
|
-
|
529
|
+
|
530
|
+
request_url = @base_url || @client.base_url
|
531
|
+
|
532
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
357
533
|
promise = request.run_promise do |req|
|
358
534
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
359
535
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Resources
|
7
|
-
VERSION = '0.
|
7
|
+
VERSION = '0.3.0'
|
8
8
|
end
|
metadata
CHANGED
@@ -1,93 +1,98 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure_mgmt_resources
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: !binary |-
|
5
|
+
MC4zLjA=
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Microsoft Corporation
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2016-
|
12
|
+
date: 2016-05-23 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
|
-
- -
|
18
|
+
- - ~>
|
18
19
|
- !ruby/object:Gem::Version
|
19
20
|
version: '1.9'
|
20
21
|
type: :development
|
21
22
|
prerelease: false
|
22
23
|
version_requirements: !ruby/object:Gem::Requirement
|
23
24
|
requirements:
|
24
|
-
- -
|
25
|
+
- - ~>
|
25
26
|
- !ruby/object:Gem::Version
|
26
27
|
version: '1.9'
|
27
28
|
- !ruby/object:Gem::Dependency
|
28
29
|
name: rake
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
30
31
|
requirements:
|
31
|
-
- -
|
32
|
+
- - ~>
|
32
33
|
- !ruby/object:Gem::Version
|
33
34
|
version: '10'
|
34
35
|
type: :development
|
35
36
|
prerelease: false
|
36
37
|
version_requirements: !ruby/object:Gem::Requirement
|
37
38
|
requirements:
|
38
|
-
- -
|
39
|
+
- - ~>
|
39
40
|
- !ruby/object:Gem::Version
|
40
41
|
version: '10'
|
41
42
|
- !ruby/object:Gem::Dependency
|
42
43
|
name: rspec
|
43
44
|
requirement: !ruby/object:Gem::Requirement
|
44
45
|
requirements:
|
45
|
-
- -
|
46
|
+
- - ~>
|
46
47
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
48
|
+
version: !binary |-
|
49
|
+
Mw==
|
48
50
|
type: :development
|
49
51
|
prerelease: false
|
50
52
|
version_requirements: !ruby/object:Gem::Requirement
|
51
53
|
requirements:
|
52
|
-
- -
|
54
|
+
- - ~>
|
53
55
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
56
|
+
version: !binary |-
|
57
|
+
Mw==
|
55
58
|
- !ruby/object:Gem::Dependency
|
56
59
|
name: dotenv
|
57
60
|
requirement: !ruby/object:Gem::Requirement
|
58
61
|
requirements:
|
59
|
-
- -
|
62
|
+
- - ~>
|
60
63
|
- !ruby/object:Gem::Version
|
61
64
|
version: '2'
|
62
65
|
type: :development
|
63
66
|
prerelease: false
|
64
67
|
version_requirements: !ruby/object:Gem::Requirement
|
65
68
|
requirements:
|
66
|
-
- -
|
69
|
+
- - ~>
|
67
70
|
- !ruby/object:Gem::Version
|
68
71
|
version: '2'
|
69
72
|
- !ruby/object:Gem::Dependency
|
70
73
|
name: ms_rest_azure
|
71
74
|
requirement: !ruby/object:Gem::Requirement
|
72
75
|
requirements:
|
73
|
-
- -
|
76
|
+
- - ~>
|
74
77
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
78
|
+
version: !binary |-
|
79
|
+
MC4yLjM=
|
76
80
|
type: :runtime
|
77
81
|
prerelease: false
|
78
82
|
version_requirements: !ruby/object:Gem::Requirement
|
79
83
|
requirements:
|
80
|
-
- -
|
84
|
+
- - ~>
|
81
85
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
86
|
+
version: !binary |-
|
87
|
+
MC4yLjM=
|
83
88
|
description: Microsoft Azure Resource Management Client Library for Ruby
|
84
89
|
email: azrubyteam@microsoft.com
|
85
90
|
executables: []
|
86
91
|
extensions: []
|
87
92
|
extra_rdoc_files: []
|
88
93
|
files:
|
89
|
-
-
|
90
|
-
-
|
94
|
+
- .gitignore
|
95
|
+
- .rspec
|
91
96
|
- LICENSE.txt
|
92
97
|
- README.md
|
93
98
|
- Rakefile
|
@@ -96,8 +101,10 @@ files:
|
|
96
101
|
- lib/azure_mgmt_resources/deployment_operations.rb
|
97
102
|
- lib/azure_mgmt_resources/deployments.rb
|
98
103
|
- lib/azure_mgmt_resources/models/basic_dependency.rb
|
104
|
+
- lib/azure_mgmt_resources/models/debug_setting.rb
|
99
105
|
- lib/azure_mgmt_resources/models/dependency.rb
|
100
106
|
- lib/azure_mgmt_resources/models/deployment.rb
|
107
|
+
- lib/azure_mgmt_resources/models/deployment_export_result.rb
|
101
108
|
- lib/azure_mgmt_resources/models/deployment_extended.rb
|
102
109
|
- lib/azure_mgmt_resources/models/deployment_extended_filter.rb
|
103
110
|
- lib/azure_mgmt_resources/models/deployment_list_result.rb
|
@@ -108,24 +115,21 @@ files:
|
|
108
115
|
- lib/azure_mgmt_resources/models/deployment_properties.rb
|
109
116
|
- lib/azure_mgmt_resources/models/deployment_properties_extended.rb
|
110
117
|
- lib/azure_mgmt_resources/models/deployment_validate_result.rb
|
118
|
+
- lib/azure_mgmt_resources/models/export_template_request.rb
|
111
119
|
- lib/azure_mgmt_resources/models/generic_resource.rb
|
112
120
|
- lib/azure_mgmt_resources/models/generic_resource_filter.rb
|
121
|
+
- lib/azure_mgmt_resources/models/http_message.rb
|
113
122
|
- lib/azure_mgmt_resources/models/parameters_link.rb
|
114
123
|
- lib/azure_mgmt_resources/models/plan.rb
|
115
|
-
- lib/azure_mgmt_resources/models/policy_assignment.rb
|
116
|
-
- lib/azure_mgmt_resources/models/policy_assignment_list_result.rb
|
117
|
-
- lib/azure_mgmt_resources/models/policy_assignment_properties.rb
|
118
|
-
- lib/azure_mgmt_resources/models/policy_definition.rb
|
119
|
-
- lib/azure_mgmt_resources/models/policy_definition_properties.rb
|
120
124
|
- lib/azure_mgmt_resources/models/provider.rb
|
121
125
|
- lib/azure_mgmt_resources/models/provider_list_result.rb
|
122
126
|
- lib/azure_mgmt_resources/models/provider_resource_type.rb
|
123
127
|
- lib/azure_mgmt_resources/models/resource_group.rb
|
128
|
+
- lib/azure_mgmt_resources/models/resource_group_export_result.rb
|
124
129
|
- lib/azure_mgmt_resources/models/resource_group_filter.rb
|
125
130
|
- lib/azure_mgmt_resources/models/resource_group_list_result.rb
|
126
131
|
- lib/azure_mgmt_resources/models/resource_group_properties.rb
|
127
132
|
- lib/azure_mgmt_resources/models/resource_list_result.rb
|
128
|
-
- lib/azure_mgmt_resources/models/resource_management_error.rb
|
129
133
|
- lib/azure_mgmt_resources/models/resource_management_error_with_details.rb
|
130
134
|
- lib/azure_mgmt_resources/models/resource_provider_operation_definition.rb
|
131
135
|
- lib/azure_mgmt_resources/models/resource_provider_operation_detail_list_result.rb
|
@@ -138,8 +142,6 @@ files:
|
|
138
142
|
- lib/azure_mgmt_resources/models/target_resource.rb
|
139
143
|
- lib/azure_mgmt_resources/models/template_link.rb
|
140
144
|
- lib/azure_mgmt_resources/module_definition.rb
|
141
|
-
- lib/azure_mgmt_resources/policy_assignments.rb
|
142
|
-
- lib/azure_mgmt_resources/policy_definitions.rb
|
143
145
|
- lib/azure_mgmt_resources/providers.rb
|
144
146
|
- lib/azure_mgmt_resources/resource_groups.rb
|
145
147
|
- lib/azure_mgmt_resources/resource_management_client.rb
|
@@ -157,17 +159,17 @@ require_paths:
|
|
157
159
|
- lib
|
158
160
|
required_ruby_version: !ruby/object:Gem::Requirement
|
159
161
|
requirements:
|
160
|
-
- -
|
162
|
+
- - ! '>='
|
161
163
|
- !ruby/object:Gem::Version
|
162
164
|
version: 1.9.3
|
163
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
166
|
requirements:
|
165
|
-
- -
|
167
|
+
- - ! '>='
|
166
168
|
- !ruby/object:Gem::Version
|
167
169
|
version: '0'
|
168
170
|
requirements: []
|
169
171
|
rubyforge_project:
|
170
|
-
rubygems_version: 2.4.
|
172
|
+
rubygems_version: 2.4.5
|
171
173
|
signing_key:
|
172
174
|
specification_version: 4
|
173
175
|
summary: Official ruby client library to consume Microsoft Azure Resource Management
|