azure_mgmt_features 0.2.1 → 0.3.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 +13 -5
- data/azure_mgmt_features.gemspec +1 -1
- data/lib/azure_mgmt_features.rb +1 -1
- data/lib/azure_mgmt_features/feature_client.rb +1 -1
- data/lib/azure_mgmt_features/features.rb +221 -31
- data/lib/azure_mgmt_features/models/deployment_extended_filter.rb +1 -1
- data/lib/azure_mgmt_features/models/feature_operations_list_result.rb +1 -1
- data/lib/azure_mgmt_features/models/feature_properties.rb +1 -1
- data/lib/azure_mgmt_features/models/feature_result.rb +1 -1
- data/lib/azure_mgmt_features/models/generic_resource_filter.rb +1 -1
- data/lib/azure_mgmt_features/models/resource_group_filter.rb +1 -1
- data/lib/azure_mgmt_features/module_definition.rb +1 -1
- data/lib/azure_mgmt_features/version.rb +2 -2
- metadata +25 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
MmU2MWExZWYxY2M5YzY4NDFhOWVhOGJlYTQ4YjcyZThkNzBlYTk1NQ==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
ZGRkMTJhMDkxZTk2NTBmNmJkZjgwN2QwZjhmNDFmNWZkZmVlNTNiNg==
|
|
5
7
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
MjVjN2Y1Nzk0ZWFhOTUyZmQyMzJiNWZhNzE2Y2Y5ODQ5OTI3ZGE5ZjAzYzQ4
|
|
10
|
+
OGQ2ZjIxOTMwODM5MWI4ZTgyZmY3MDA1NjMxN2EyMDY3MWQ4NDBhMmJmZTQ3
|
|
11
|
+
ZTM0ZTJkNWEwMWI5NGU1OTViZDVmNzk3NDE5M2M4Y2VjYTU4MDU=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
MWNjZjMyNGExNjE3NGI2ODk2YzdmZGE1ZmQ0ODFjYTE0YzEzMGYyOGZkMDJi
|
|
14
|
+
NTZiMWM0MDkxZGEwNDI2NTdjYzIzNWE0ZTEzMjZmYzZlMzBmMDFjNGEzYjUw
|
|
15
|
+
MGUwZGY2MTczMWE4YzkxMzc3MTIxNTNjOThhNDk3NjA1ZGIyYTg=
|
data/azure_mgmt_features.gemspec
CHANGED
data/lib/azure_mgmt_features.rb
CHANGED
|
@@ -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
|
|
|
@@ -26,13 +26,39 @@ module Azure::ARM::Features
|
|
|
26
26
|
# Gets a list of previewed features for all the providers in the current
|
|
27
27
|
# subscription.
|
|
28
28
|
#
|
|
29
|
-
# @param [Hash{String => String}]
|
|
30
|
-
#
|
|
29
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
30
|
+
# will be added to the HTTP request.
|
|
31
31
|
#
|
|
32
|
-
# @return [
|
|
33
|
-
# response.
|
|
32
|
+
# @return [FeatureOperationsListResult] operation results.
|
|
34
33
|
#
|
|
35
34
|
def list_all(custom_headers = nil)
|
|
35
|
+
response = list_all_async(custom_headers).value!
|
|
36
|
+
response.body unless response.nil?
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
#
|
|
40
|
+
# Gets a list of previewed features for all the providers in the current
|
|
41
|
+
# subscription.
|
|
42
|
+
#
|
|
43
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
44
|
+
# will be added to the HTTP request.
|
|
45
|
+
#
|
|
46
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
|
47
|
+
#
|
|
48
|
+
def list_all_with_http_info(custom_headers = nil)
|
|
49
|
+
list_all_async(custom_headers).value!
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
#
|
|
53
|
+
# Gets a list of previewed features for all the providers in the current
|
|
54
|
+
# subscription.
|
|
55
|
+
#
|
|
56
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
|
57
|
+
# to the HTTP request.
|
|
58
|
+
#
|
|
59
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
|
60
|
+
#
|
|
61
|
+
def list_all_async(custom_headers = nil)
|
|
36
62
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
|
37
63
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
|
38
64
|
request_headers = {}
|
|
@@ -47,7 +73,10 @@ module Azure::ARM::Features
|
|
|
47
73
|
query_params: {'api-version' => @client.api_version},
|
|
48
74
|
headers: request_headers.merge(custom_headers || {})
|
|
49
75
|
}
|
|
50
|
-
|
|
76
|
+
|
|
77
|
+
request_url = @base_url || @client.base_url
|
|
78
|
+
|
|
79
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
|
51
80
|
promise = request.run_promise do |req|
|
|
52
81
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
|
53
82
|
end
|
|
@@ -87,13 +116,41 @@ module Azure::ARM::Features
|
|
|
87
116
|
#
|
|
88
117
|
# @param resource_provider_namespace [String] The namespace of the resource
|
|
89
118
|
# provider.
|
|
90
|
-
# @param [Hash{String => String}]
|
|
91
|
-
#
|
|
119
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
120
|
+
# will be added to the HTTP request.
|
|
92
121
|
#
|
|
93
|
-
# @return [
|
|
94
|
-
# response.
|
|
122
|
+
# @return [FeatureOperationsListResult] operation results.
|
|
95
123
|
#
|
|
96
124
|
def list(resource_provider_namespace, custom_headers = nil)
|
|
125
|
+
response = list_async(resource_provider_namespace, custom_headers).value!
|
|
126
|
+
response.body unless response.nil?
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
#
|
|
130
|
+
# Gets a list of previewed features of a resource provider.
|
|
131
|
+
#
|
|
132
|
+
# @param resource_provider_namespace [String] The namespace of the resource
|
|
133
|
+
# provider.
|
|
134
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
135
|
+
# will be added to the HTTP request.
|
|
136
|
+
#
|
|
137
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
|
138
|
+
#
|
|
139
|
+
def list_with_http_info(resource_provider_namespace, custom_headers = nil)
|
|
140
|
+
list_async(resource_provider_namespace, custom_headers).value!
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
#
|
|
144
|
+
# Gets a list of previewed features of a resource provider.
|
|
145
|
+
#
|
|
146
|
+
# @param resource_provider_namespace [String] The namespace of the resource
|
|
147
|
+
# provider.
|
|
148
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
|
149
|
+
# to the HTTP request.
|
|
150
|
+
#
|
|
151
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
|
152
|
+
#
|
|
153
|
+
def list_async(resource_provider_namespace, custom_headers = nil)
|
|
97
154
|
fail ArgumentError, 'resource_provider_namespace is nil' if resource_provider_namespace.nil?
|
|
98
155
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
|
99
156
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
|
@@ -109,7 +166,10 @@ module Azure::ARM::Features
|
|
|
109
166
|
query_params: {'api-version' => @client.api_version},
|
|
110
167
|
headers: request_headers.merge(custom_headers || {})
|
|
111
168
|
}
|
|
112
|
-
|
|
169
|
+
|
|
170
|
+
request_url = @base_url || @client.base_url
|
|
171
|
+
|
|
172
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
|
113
173
|
promise = request.run_promise do |req|
|
|
114
174
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
|
115
175
|
end
|
|
@@ -150,13 +210,43 @@ module Azure::ARM::Features
|
|
|
150
210
|
# @param resource_provider_namespace [String] Namespace of the resource
|
|
151
211
|
# provider.
|
|
152
212
|
# @param feature_name [String] Previewed feature name in the resource provider.
|
|
153
|
-
# @param [Hash{String => String}]
|
|
154
|
-
#
|
|
213
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
214
|
+
# will be added to the HTTP request.
|
|
155
215
|
#
|
|
156
|
-
# @return [
|
|
157
|
-
# response.
|
|
216
|
+
# @return [FeatureResult] operation results.
|
|
158
217
|
#
|
|
159
218
|
def get(resource_provider_namespace, feature_name, custom_headers = nil)
|
|
219
|
+
response = get_async(resource_provider_namespace, feature_name, custom_headers).value!
|
|
220
|
+
response.body unless response.nil?
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
#
|
|
224
|
+
# Get all features under the subscription.
|
|
225
|
+
#
|
|
226
|
+
# @param resource_provider_namespace [String] Namespace of the resource
|
|
227
|
+
# provider.
|
|
228
|
+
# @param feature_name [String] Previewed feature name in the resource provider.
|
|
229
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
230
|
+
# will be added to the HTTP request.
|
|
231
|
+
#
|
|
232
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
|
233
|
+
#
|
|
234
|
+
def get_with_http_info(resource_provider_namespace, feature_name, custom_headers = nil)
|
|
235
|
+
get_async(resource_provider_namespace, feature_name, custom_headers).value!
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
#
|
|
239
|
+
# Get all features under the subscription.
|
|
240
|
+
#
|
|
241
|
+
# @param resource_provider_namespace [String] Namespace of the resource
|
|
242
|
+
# provider.
|
|
243
|
+
# @param feature_name [String] Previewed feature name in the resource provider.
|
|
244
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
|
245
|
+
# to the HTTP request.
|
|
246
|
+
#
|
|
247
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
|
248
|
+
#
|
|
249
|
+
def get_async(resource_provider_namespace, feature_name, custom_headers = nil)
|
|
160
250
|
fail ArgumentError, 'resource_provider_namespace is nil' if resource_provider_namespace.nil?
|
|
161
251
|
fail ArgumentError, 'feature_name is nil' if feature_name.nil?
|
|
162
252
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
|
@@ -173,7 +263,10 @@ module Azure::ARM::Features
|
|
|
173
263
|
query_params: {'api-version' => @client.api_version},
|
|
174
264
|
headers: request_headers.merge(custom_headers || {})
|
|
175
265
|
}
|
|
176
|
-
|
|
266
|
+
|
|
267
|
+
request_url = @base_url || @client.base_url
|
|
268
|
+
|
|
269
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
|
177
270
|
promise = request.run_promise do |req|
|
|
178
271
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
|
179
272
|
end
|
|
@@ -214,13 +307,43 @@ module Azure::ARM::Features
|
|
|
214
307
|
# @param resource_provider_namespace [String] Namespace of the resource
|
|
215
308
|
# provider.
|
|
216
309
|
# @param feature_name [String] Previewed feature name in the resource provider.
|
|
217
|
-
# @param [Hash{String => String}]
|
|
218
|
-
#
|
|
310
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
311
|
+
# will be added to the HTTP request.
|
|
219
312
|
#
|
|
220
|
-
# @return [
|
|
221
|
-
# response.
|
|
313
|
+
# @return [FeatureResult] operation results.
|
|
222
314
|
#
|
|
223
315
|
def register(resource_provider_namespace, feature_name, custom_headers = nil)
|
|
316
|
+
response = register_async(resource_provider_namespace, feature_name, custom_headers).value!
|
|
317
|
+
response.body unless response.nil?
|
|
318
|
+
end
|
|
319
|
+
|
|
320
|
+
#
|
|
321
|
+
# Registers for a previewed feature of a resource provider.
|
|
322
|
+
#
|
|
323
|
+
# @param resource_provider_namespace [String] Namespace of the resource
|
|
324
|
+
# provider.
|
|
325
|
+
# @param feature_name [String] Previewed feature name in the resource provider.
|
|
326
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
327
|
+
# will be added to the HTTP request.
|
|
328
|
+
#
|
|
329
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
|
330
|
+
#
|
|
331
|
+
def register_with_http_info(resource_provider_namespace, feature_name, custom_headers = nil)
|
|
332
|
+
register_async(resource_provider_namespace, feature_name, custom_headers).value!
|
|
333
|
+
end
|
|
334
|
+
|
|
335
|
+
#
|
|
336
|
+
# Registers for a previewed feature of a resource provider.
|
|
337
|
+
#
|
|
338
|
+
# @param resource_provider_namespace [String] Namespace of the resource
|
|
339
|
+
# provider.
|
|
340
|
+
# @param feature_name [String] Previewed feature name in the resource provider.
|
|
341
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
|
342
|
+
# to the HTTP request.
|
|
343
|
+
#
|
|
344
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
|
345
|
+
#
|
|
346
|
+
def register_async(resource_provider_namespace, feature_name, custom_headers = nil)
|
|
224
347
|
fail ArgumentError, 'resource_provider_namespace is nil' if resource_provider_namespace.nil?
|
|
225
348
|
fail ArgumentError, 'feature_name is nil' if feature_name.nil?
|
|
226
349
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
|
@@ -237,7 +360,10 @@ module Azure::ARM::Features
|
|
|
237
360
|
query_params: {'api-version' => @client.api_version},
|
|
238
361
|
headers: request_headers.merge(custom_headers || {})
|
|
239
362
|
}
|
|
240
|
-
|
|
363
|
+
|
|
364
|
+
request_url = @base_url || @client.base_url
|
|
365
|
+
|
|
366
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :post, options)
|
|
241
367
|
promise = request.run_promise do |req|
|
|
242
368
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
|
243
369
|
end
|
|
@@ -278,13 +404,43 @@ module Azure::ARM::Features
|
|
|
278
404
|
#
|
|
279
405
|
# @param next_page_link [String] The NextLink from the previous successful
|
|
280
406
|
# call to List operation.
|
|
281
|
-
# @param [Hash{String => String}]
|
|
282
|
-
#
|
|
407
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
408
|
+
# will be added to the HTTP request.
|
|
283
409
|
#
|
|
284
|
-
# @return [
|
|
285
|
-
# response.
|
|
410
|
+
# @return [FeatureOperationsListResult] operation results.
|
|
286
411
|
#
|
|
287
412
|
def list_all_next(next_page_link, custom_headers = nil)
|
|
413
|
+
response = list_all_next_async(next_page_link, custom_headers).value!
|
|
414
|
+
response.body unless response.nil?
|
|
415
|
+
end
|
|
416
|
+
|
|
417
|
+
#
|
|
418
|
+
# Gets a list of previewed features for all the providers in the current
|
|
419
|
+
# subscription.
|
|
420
|
+
#
|
|
421
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
|
422
|
+
# call to List operation.
|
|
423
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
424
|
+
# will be added to the HTTP request.
|
|
425
|
+
#
|
|
426
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
|
427
|
+
#
|
|
428
|
+
def list_all_next_with_http_info(next_page_link, custom_headers = nil)
|
|
429
|
+
list_all_next_async(next_page_link, custom_headers).value!
|
|
430
|
+
end
|
|
431
|
+
|
|
432
|
+
#
|
|
433
|
+
# Gets a list of previewed features for all the providers in the current
|
|
434
|
+
# subscription.
|
|
435
|
+
#
|
|
436
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
|
437
|
+
# call to List operation.
|
|
438
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
|
439
|
+
# to the HTTP request.
|
|
440
|
+
#
|
|
441
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
|
442
|
+
#
|
|
443
|
+
def list_all_next_async(next_page_link, custom_headers = nil)
|
|
288
444
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
|
289
445
|
request_headers = {}
|
|
290
446
|
|
|
@@ -297,7 +453,10 @@ module Azure::ARM::Features
|
|
|
297
453
|
skip_encoding_path_params: {'nextLink' => next_page_link},
|
|
298
454
|
headers: request_headers.merge(custom_headers || {})
|
|
299
455
|
}
|
|
300
|
-
|
|
456
|
+
|
|
457
|
+
request_url = @base_url || @client.base_url
|
|
458
|
+
|
|
459
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
|
301
460
|
promise = request.run_promise do |req|
|
|
302
461
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
|
303
462
|
end
|
|
@@ -337,13 +496,41 @@ module Azure::ARM::Features
|
|
|
337
496
|
#
|
|
338
497
|
# @param next_page_link [String] The NextLink from the previous successful
|
|
339
498
|
# call to List operation.
|
|
340
|
-
# @param [Hash{String => String}]
|
|
341
|
-
#
|
|
499
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
500
|
+
# will be added to the HTTP request.
|
|
342
501
|
#
|
|
343
|
-
# @return [
|
|
344
|
-
# response.
|
|
502
|
+
# @return [FeatureOperationsListResult] operation results.
|
|
345
503
|
#
|
|
346
504
|
def list_next(next_page_link, custom_headers = nil)
|
|
505
|
+
response = list_next_async(next_page_link, custom_headers).value!
|
|
506
|
+
response.body unless response.nil?
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
#
|
|
510
|
+
# Gets a list of previewed features of a resource provider.
|
|
511
|
+
#
|
|
512
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
|
513
|
+
# call to List operation.
|
|
514
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
|
515
|
+
# will be added to the HTTP request.
|
|
516
|
+
#
|
|
517
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
|
518
|
+
#
|
|
519
|
+
def list_next_with_http_info(next_page_link, custom_headers = nil)
|
|
520
|
+
list_next_async(next_page_link, custom_headers).value!
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
#
|
|
524
|
+
# Gets a list of previewed features of a resource provider.
|
|
525
|
+
#
|
|
526
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
|
527
|
+
# call to List operation.
|
|
528
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
|
529
|
+
# to the HTTP request.
|
|
530
|
+
#
|
|
531
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
|
532
|
+
#
|
|
533
|
+
def list_next_async(next_page_link, custom_headers = nil)
|
|
347
534
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
|
348
535
|
request_headers = {}
|
|
349
536
|
|
|
@@ -356,7 +543,10 @@ module Azure::ARM::Features
|
|
|
356
543
|
skip_encoding_path_params: {'nextLink' => next_page_link},
|
|
357
544
|
headers: request_headers.merge(custom_headers || {})
|
|
358
545
|
}
|
|
359
|
-
|
|
546
|
+
|
|
547
|
+
request_url = @base_url || @client.base_url
|
|
548
|
+
|
|
549
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
|
360
550
|
promise = request.run_promise do |req|
|
|
361
551
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
|
362
552
|
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::Features
|
|
7
|
-
VERSION = '0.
|
|
7
|
+
VERSION = '0.3.0'
|
|
8
8
|
end
|
metadata
CHANGED
|
@@ -1,85 +1,90 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azure_mgmt_features
|
|
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 Provider Feature Management Client Library for
|
|
84
89
|
Ruby
|
|
85
90
|
email: azrubyteam@microsoft.com
|
|
@@ -87,7 +92,7 @@ executables: []
|
|
|
87
92
|
extensions: []
|
|
88
93
|
extra_rdoc_files: []
|
|
89
94
|
files:
|
|
90
|
-
-
|
|
95
|
+
- .rspec
|
|
91
96
|
- LICENSE.txt
|
|
92
97
|
- Rakefile
|
|
93
98
|
- azure_mgmt_features.gemspec
|
|
@@ -112,17 +117,17 @@ require_paths:
|
|
|
112
117
|
- lib
|
|
113
118
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
114
119
|
requirements:
|
|
115
|
-
- -
|
|
120
|
+
- - ! '>='
|
|
116
121
|
- !ruby/object:Gem::Version
|
|
117
122
|
version: 1.9.3
|
|
118
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
124
|
requirements:
|
|
120
|
-
- -
|
|
125
|
+
- - ! '>='
|
|
121
126
|
- !ruby/object:Gem::Version
|
|
122
127
|
version: '0'
|
|
123
128
|
requirements: []
|
|
124
129
|
rubyforge_project:
|
|
125
|
-
rubygems_version: 2.4.
|
|
130
|
+
rubygems_version: 2.4.5
|
|
126
131
|
signing_key:
|
|
127
132
|
specification_version: 4
|
|
128
133
|
summary: Official Ruby client library to consume Microsoft Azure Resource Provider
|