azure_mgmt_subscriptions 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_subscriptions.gemspec +2 -2
- data/lib/azure_mgmt_subscriptions.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/location.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/location_list_result.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/subscription.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/subscription_list_result.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/subscription_policies.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/tenant_id_description.rb +1 -1
- data/lib/azure_mgmt_subscriptions/models/tenant_list_result.rb +1 -1
- data/lib/azure_mgmt_subscriptions/module_definition.rb +1 -1
- data/lib/azure_mgmt_subscriptions/subscription_client.rb +1 -1
- data/lib/azure_mgmt_subscriptions/subscriptions.rb +173 -26
- data/lib/azure_mgmt_subscriptions/tenants.rb +69 -11
- data/lib/azure_mgmt_subscriptions/version.rb +2 -2
- metadata +31 -24
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MDQ2YWYwODJjYjkyOTIxNTkyZmMzNWQ1ZjhhNDJhNzMwNDBmNTU1NQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
YTkxYThkNjhhZWE5NTliNzMyYWFhMzQ2ZWMxZTY4ODNjZDI0NGY2NA==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YzIwNGE0OWIwMTU4ZDE0ZmRkMmFiZTQwZjUyMTUxNmE4ZGNjZDMxOTk4NDU3
|
10
|
+
NTI3MmUxYzkyYjg0ZmI5NDA2NDZjMDQ0YmY2MTY4M2M0OTZmOWU4NmVlMzFi
|
11
|
+
MTc5OTk4NGE2ZTI0Mzk0NzljMzI3NGRkZTkzYmVjMDU5NzM4ZmU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MzUzYTEyZDE2NGYwNjljZmM0NjUzZTY2MzljMzY3NmEyM2M2NGRjZDVlODI4
|
14
|
+
OTE2N2EzMTg1NjQ3MDI1YzNmNWJkMDI2M2QyNTA4OWJjYzYyZTQ1NDhhMTJm
|
15
|
+
Y2Q1MDQ0NWIwOGFmN2QwOGZmNWYxZTE5NTBjNGRmMjlhYmU4MmM=
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.add_development_dependency 'rake', '~> 10'
|
30
30
|
spec.add_development_dependency 'rspec', '~> 3'
|
31
31
|
spec.add_development_dependency 'dotenv', '~> 2'
|
32
|
-
spec.add_development_dependency 'azure_mgmt_resources', '~> 0.
|
32
|
+
spec.add_development_dependency 'azure_mgmt_resources', '~> 0.3'
|
33
33
|
|
34
|
-
spec.add_runtime_dependency 'ms_rest_azure', '~> 0.2.
|
34
|
+
spec.add_runtime_dependency 'ms_rest_azure', '~> 0.2.3'
|
35
35
|
end
|
@@ -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::Subscriptions
|
|
26
26
|
# Gets a list of the subscription locations.
|
27
27
|
#
|
28
28
|
# @param subscription_id [String] Id of the subscription
|
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 [LocationListResult] operation results.
|
34
33
|
#
|
35
34
|
def list_locations(subscription_id, custom_headers = nil)
|
35
|
+
response = list_locations_async(subscription_id, custom_headers).value!
|
36
|
+
response.body unless response.nil?
|
37
|
+
end
|
38
|
+
|
39
|
+
#
|
40
|
+
# Gets a list of the subscription locations.
|
41
|
+
#
|
42
|
+
# @param subscription_id [String] Id of the subscription
|
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_locations_with_http_info(subscription_id, custom_headers = nil)
|
49
|
+
list_locations_async(subscription_id, custom_headers).value!
|
50
|
+
end
|
51
|
+
|
52
|
+
#
|
53
|
+
# Gets a list of the subscription locations.
|
54
|
+
#
|
55
|
+
# @param subscription_id [String] Id of the subscription
|
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_locations_async(subscription_id, custom_headers = nil)
|
36
62
|
fail ArgumentError, 'subscription_id is nil' if subscription_id.nil?
|
37
63
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
38
64
|
request_headers = {}
|
@@ -47,7 +73,10 @@ module Azure::ARM::Subscriptions
|
|
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
|
@@ -86,13 +115,39 @@ module Azure::ARM::Subscriptions
|
|
86
115
|
# Gets details about particular subscription.
|
87
116
|
#
|
88
117
|
# @param subscription_id [String] Id of the subscription.
|
89
|
-
# @param [Hash{String => String}]
|
90
|
-
#
|
118
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
119
|
+
# will be added to the HTTP request.
|
91
120
|
#
|
92
|
-
# @return [
|
93
|
-
# response.
|
121
|
+
# @return [Subscription] operation results.
|
94
122
|
#
|
95
123
|
def get(subscription_id, custom_headers = nil)
|
124
|
+
response = get_async(subscription_id, custom_headers).value!
|
125
|
+
response.body unless response.nil?
|
126
|
+
end
|
127
|
+
|
128
|
+
#
|
129
|
+
# Gets details about particular subscription.
|
130
|
+
#
|
131
|
+
# @param subscription_id [String] Id of the subscription.
|
132
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
133
|
+
# will be added to the HTTP request.
|
134
|
+
#
|
135
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
136
|
+
#
|
137
|
+
def get_with_http_info(subscription_id, custom_headers = nil)
|
138
|
+
get_async(subscription_id, custom_headers).value!
|
139
|
+
end
|
140
|
+
|
141
|
+
#
|
142
|
+
# Gets details about particular subscription.
|
143
|
+
#
|
144
|
+
# @param subscription_id [String] Id of the subscription.
|
145
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
146
|
+
# to the HTTP request.
|
147
|
+
#
|
148
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
149
|
+
#
|
150
|
+
def get_async(subscription_id, custom_headers = nil)
|
96
151
|
fail ArgumentError, 'subscription_id is nil' if subscription_id.nil?
|
97
152
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
98
153
|
request_headers = {}
|
@@ -107,7 +162,10 @@ module Azure::ARM::Subscriptions
|
|
107
162
|
query_params: {'api-version' => @client.api_version},
|
108
163
|
headers: request_headers.merge(custom_headers || {})
|
109
164
|
}
|
110
|
-
|
165
|
+
|
166
|
+
request_url = @base_url || @client.base_url
|
167
|
+
|
168
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
111
169
|
promise = request.run_promise do |req|
|
112
170
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
113
171
|
end
|
@@ -145,13 +203,37 @@ module Azure::ARM::Subscriptions
|
|
145
203
|
#
|
146
204
|
# Gets a list of the subscriptionIds.
|
147
205
|
#
|
148
|
-
# @param [Hash{String => String}]
|
149
|
-
#
|
206
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
207
|
+
# will be added to the HTTP request.
|
150
208
|
#
|
151
|
-
# @return [
|
152
|
-
# response.
|
209
|
+
# @return [SubscriptionListResult] operation results.
|
153
210
|
#
|
154
211
|
def list(custom_headers = nil)
|
212
|
+
response = list_async(custom_headers).value!
|
213
|
+
response.body unless response.nil?
|
214
|
+
end
|
215
|
+
|
216
|
+
#
|
217
|
+
# Gets a list of the subscriptionIds.
|
218
|
+
#
|
219
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
220
|
+
# will be added to the HTTP request.
|
221
|
+
#
|
222
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
223
|
+
#
|
224
|
+
def list_with_http_info(custom_headers = nil)
|
225
|
+
list_async(custom_headers).value!
|
226
|
+
end
|
227
|
+
|
228
|
+
#
|
229
|
+
# Gets a list of the subscriptionIds.
|
230
|
+
#
|
231
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
232
|
+
# to the HTTP request.
|
233
|
+
#
|
234
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
235
|
+
#
|
236
|
+
def list_async(custom_headers = nil)
|
155
237
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
156
238
|
request_headers = {}
|
157
239
|
|
@@ -164,7 +246,10 @@ module Azure::ARM::Subscriptions
|
|
164
246
|
query_params: {'api-version' => @client.api_version},
|
165
247
|
headers: request_headers.merge(custom_headers || {})
|
166
248
|
}
|
167
|
-
|
249
|
+
|
250
|
+
request_url = @base_url || @client.base_url
|
251
|
+
|
252
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
168
253
|
promise = request.run_promise do |req|
|
169
254
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
170
255
|
end
|
@@ -204,13 +289,41 @@ module Azure::ARM::Subscriptions
|
|
204
289
|
#
|
205
290
|
# @param next_page_link [String] The NextLink from the previous successful
|
206
291
|
# call to List operation.
|
207
|
-
# @param [Hash{String => String}]
|
208
|
-
#
|
292
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
293
|
+
# will be added to the HTTP request.
|
209
294
|
#
|
210
|
-
# @return [
|
211
|
-
# response.
|
295
|
+
# @return [LocationListResult] operation results.
|
212
296
|
#
|
213
297
|
def list_locations_next(next_page_link, custom_headers = nil)
|
298
|
+
response = list_locations_next_async(next_page_link, custom_headers).value!
|
299
|
+
response.body unless response.nil?
|
300
|
+
end
|
301
|
+
|
302
|
+
#
|
303
|
+
# Gets a list of the subscription locations.
|
304
|
+
#
|
305
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
306
|
+
# call to List operation.
|
307
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
308
|
+
# will be added to the HTTP request.
|
309
|
+
#
|
310
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
311
|
+
#
|
312
|
+
def list_locations_next_with_http_info(next_page_link, custom_headers = nil)
|
313
|
+
list_locations_next_async(next_page_link, custom_headers).value!
|
314
|
+
end
|
315
|
+
|
316
|
+
#
|
317
|
+
# Gets a list of the subscription locations.
|
318
|
+
#
|
319
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
320
|
+
# call to List operation.
|
321
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
322
|
+
# to the HTTP request.
|
323
|
+
#
|
324
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
325
|
+
#
|
326
|
+
def list_locations_next_async(next_page_link, custom_headers = nil)
|
214
327
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
215
328
|
request_headers = {}
|
216
329
|
|
@@ -223,7 +336,10 @@ module Azure::ARM::Subscriptions
|
|
223
336
|
skip_encoding_path_params: {'nextLink' => next_page_link},
|
224
337
|
headers: request_headers.merge(custom_headers || {})
|
225
338
|
}
|
226
|
-
|
339
|
+
|
340
|
+
request_url = @base_url || @client.base_url
|
341
|
+
|
342
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
227
343
|
promise = request.run_promise do |req|
|
228
344
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
229
345
|
end
|
@@ -263,13 +379,41 @@ module Azure::ARM::Subscriptions
|
|
263
379
|
#
|
264
380
|
# @param next_page_link [String] The NextLink from the previous successful
|
265
381
|
# call to List operation.
|
266
|
-
# @param [Hash{String => String}]
|
267
|
-
#
|
382
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
383
|
+
# will be added to the HTTP request.
|
268
384
|
#
|
269
|
-
# @return [
|
270
|
-
# response.
|
385
|
+
# @return [SubscriptionListResult] operation results.
|
271
386
|
#
|
272
387
|
def list_next(next_page_link, custom_headers = nil)
|
388
|
+
response = list_next_async(next_page_link, custom_headers).value!
|
389
|
+
response.body unless response.nil?
|
390
|
+
end
|
391
|
+
|
392
|
+
#
|
393
|
+
# Gets a list of the subscriptionIds.
|
394
|
+
#
|
395
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
396
|
+
# call to List operation.
|
397
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
398
|
+
# will be added to the HTTP request.
|
399
|
+
#
|
400
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
401
|
+
#
|
402
|
+
def list_next_with_http_info(next_page_link, custom_headers = nil)
|
403
|
+
list_next_async(next_page_link, custom_headers).value!
|
404
|
+
end
|
405
|
+
|
406
|
+
#
|
407
|
+
# Gets a list of the subscriptionIds.
|
408
|
+
#
|
409
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
410
|
+
# call to List operation.
|
411
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
412
|
+
# to the HTTP request.
|
413
|
+
#
|
414
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
415
|
+
#
|
416
|
+
def list_next_async(next_page_link, custom_headers = nil)
|
273
417
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
274
418
|
request_headers = {}
|
275
419
|
|
@@ -282,7 +426,10 @@ module Azure::ARM::Subscriptions
|
|
282
426
|
skip_encoding_path_params: {'nextLink' => next_page_link},
|
283
427
|
headers: request_headers.merge(custom_headers || {})
|
284
428
|
}
|
285
|
-
|
429
|
+
|
430
|
+
request_url = @base_url || @client.base_url
|
431
|
+
|
432
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
286
433
|
promise = request.run_promise do |req|
|
287
434
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
288
435
|
end
|
@@ -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
|
|
@@ -25,13 +25,37 @@ module Azure::ARM::Subscriptions
|
|
25
25
|
#
|
26
26
|
# Gets a list of the tenantIds.
|
27
27
|
#
|
28
|
-
# @param [Hash{String => String}]
|
29
|
-
#
|
28
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
29
|
+
# will be added to the HTTP request.
|
30
30
|
#
|
31
|
-
# @return [
|
32
|
-
# response.
|
31
|
+
# @return [TenantListResult] operation results.
|
33
32
|
#
|
34
33
|
def list(custom_headers = nil)
|
34
|
+
response = list_async(custom_headers).value!
|
35
|
+
response.body unless response.nil?
|
36
|
+
end
|
37
|
+
|
38
|
+
#
|
39
|
+
# Gets a list of the tenantIds.
|
40
|
+
#
|
41
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
42
|
+
# will be added to the HTTP request.
|
43
|
+
#
|
44
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
45
|
+
#
|
46
|
+
def list_with_http_info(custom_headers = nil)
|
47
|
+
list_async(custom_headers).value!
|
48
|
+
end
|
49
|
+
|
50
|
+
#
|
51
|
+
# Gets a list of the tenantIds.
|
52
|
+
#
|
53
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
54
|
+
# to the HTTP request.
|
55
|
+
#
|
56
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
57
|
+
#
|
58
|
+
def list_async(custom_headers = nil)
|
35
59
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
36
60
|
request_headers = {}
|
37
61
|
|
@@ -44,7 +68,10 @@ module Azure::ARM::Subscriptions
|
|
44
68
|
query_params: {'api-version' => @client.api_version},
|
45
69
|
headers: request_headers.merge(custom_headers || {})
|
46
70
|
}
|
47
|
-
|
71
|
+
|
72
|
+
request_url = @base_url || @client.base_url
|
73
|
+
|
74
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
48
75
|
promise = request.run_promise do |req|
|
49
76
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
50
77
|
end
|
@@ -84,13 +111,41 @@ module Azure::ARM::Subscriptions
|
|
84
111
|
#
|
85
112
|
# @param next_page_link [String] The NextLink from the previous successful
|
86
113
|
# call to List operation.
|
87
|
-
# @param [Hash{String => String}]
|
88
|
-
#
|
114
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
115
|
+
# will be added to the HTTP request.
|
89
116
|
#
|
90
|
-
# @return [
|
91
|
-
# response.
|
117
|
+
# @return [TenantListResult] operation results.
|
92
118
|
#
|
93
119
|
def list_next(next_page_link, custom_headers = nil)
|
120
|
+
response = list_next_async(next_page_link, custom_headers).value!
|
121
|
+
response.body unless response.nil?
|
122
|
+
end
|
123
|
+
|
124
|
+
#
|
125
|
+
# Gets a list of the tenantIds.
|
126
|
+
#
|
127
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
128
|
+
# call to List operation.
|
129
|
+
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
130
|
+
# will be added to the HTTP request.
|
131
|
+
#
|
132
|
+
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
133
|
+
#
|
134
|
+
def list_next_with_http_info(next_page_link, custom_headers = nil)
|
135
|
+
list_next_async(next_page_link, custom_headers).value!
|
136
|
+
end
|
137
|
+
|
138
|
+
#
|
139
|
+
# Gets a list of the tenantIds.
|
140
|
+
#
|
141
|
+
# @param next_page_link [String] The NextLink from the previous successful
|
142
|
+
# call to List operation.
|
143
|
+
# @param [Hash{String => String}] A hash of custom headers that will be added
|
144
|
+
# to the HTTP request.
|
145
|
+
#
|
146
|
+
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
147
|
+
#
|
148
|
+
def list_next_async(next_page_link, custom_headers = nil)
|
94
149
|
fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
|
95
150
|
request_headers = {}
|
96
151
|
|
@@ -103,7 +158,10 @@ module Azure::ARM::Subscriptions
|
|
103
158
|
skip_encoding_path_params: {'nextLink' => next_page_link},
|
104
159
|
headers: request_headers.merge(custom_headers || {})
|
105
160
|
}
|
106
|
-
|
161
|
+
|
162
|
+
request_url = @base_url || @client.base_url
|
163
|
+
|
164
|
+
request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
|
107
165
|
promise = request.run_promise do |req|
|
108
166
|
@client.credentials.sign_request(req) unless @client.credentials.nil?
|
109
167
|
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::Subscriptions
|
7
|
-
VERSION = '0.
|
7
|
+
VERSION = '0.3.0'
|
8
8
|
end
|
metadata
CHANGED
@@ -1,106 +1,113 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure_mgmt_subscriptions
|
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: azure_mgmt_resources
|
71
74
|
requirement: !ruby/object:Gem::Requirement
|
72
75
|
requirements:
|
73
|
-
- -
|
76
|
+
- - ~>
|
74
77
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
78
|
+
version: !binary |-
|
79
|
+
MC4z
|
76
80
|
type: :development
|
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
|
+
MC4z
|
83
88
|
- !ruby/object:Gem::Dependency
|
84
89
|
name: ms_rest_azure
|
85
90
|
requirement: !ruby/object:Gem::Requirement
|
86
91
|
requirements:
|
87
|
-
- -
|
92
|
+
- - ~>
|
88
93
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
94
|
+
version: !binary |-
|
95
|
+
MC4yLjM=
|
90
96
|
type: :runtime
|
91
97
|
prerelease: false
|
92
98
|
version_requirements: !ruby/object:Gem::Requirement
|
93
99
|
requirements:
|
94
|
-
- -
|
100
|
+
- - ~>
|
95
101
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
102
|
+
version: !binary |-
|
103
|
+
MC4yLjM=
|
97
104
|
description: Microsoft Azure Subscription Management Client Library for Ruby
|
98
105
|
email: azrubyteam@microsoft.com
|
99
106
|
executables: []
|
100
107
|
extensions: []
|
101
108
|
extra_rdoc_files: []
|
102
109
|
files:
|
103
|
-
-
|
110
|
+
- .rspec
|
104
111
|
- LICENSE.txt
|
105
112
|
- Rakefile
|
106
113
|
- azure_mgmt_subscriptions.gemspec
|
@@ -127,17 +134,17 @@ require_paths:
|
|
127
134
|
- lib
|
128
135
|
required_ruby_version: !ruby/object:Gem::Requirement
|
129
136
|
requirements:
|
130
|
-
- -
|
137
|
+
- - ! '>='
|
131
138
|
- !ruby/object:Gem::Version
|
132
139
|
version: 1.9.3
|
133
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
141
|
requirements:
|
135
|
-
- -
|
142
|
+
- - ! '>='
|
136
143
|
- !ruby/object:Gem::Version
|
137
144
|
version: '0'
|
138
145
|
requirements: []
|
139
146
|
rubyforge_project:
|
140
|
-
rubygems_version: 2.4.
|
147
|
+
rubygems_version: 2.4.5
|
141
148
|
signing_key:
|
142
149
|
specification_version: 4
|
143
150
|
summary: Official ruby client library to consume Microsoft Azure Subscription Management
|