azure_mgmt_authorization 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.
Files changed (31) hide show
  1. checksums.yaml +13 -5
  2. data/azure_mgmt_authorization.gemspec +1 -1
  3. data/lib/azure_mgmt_authorization/authorization_management_client.rb +1 -1
  4. data/lib/azure_mgmt_authorization/classic_administrators.rb +71 -11
  5. data/lib/azure_mgmt_authorization/models/classic_administrator.rb +1 -1
  6. data/lib/azure_mgmt_authorization/models/classic_administrator_list_result.rb +1 -1
  7. data/lib/azure_mgmt_authorization/models/classic_administrator_properties.rb +1 -1
  8. data/lib/azure_mgmt_authorization/models/permission.rb +1 -1
  9. data/lib/azure_mgmt_authorization/models/permission_get_result.rb +1 -1
  10. data/lib/azure_mgmt_authorization/models/provider_operation.rb +1 -1
  11. data/lib/azure_mgmt_authorization/models/provider_operations_metadata.rb +1 -1
  12. data/lib/azure_mgmt_authorization/models/provider_operations_metadata_list_result.rb +1 -1
  13. data/lib/azure_mgmt_authorization/models/resource_type.rb +1 -1
  14. data/lib/azure_mgmt_authorization/models/role_assignment.rb +1 -1
  15. data/lib/azure_mgmt_authorization/models/role_assignment_create_parameters.rb +1 -1
  16. data/lib/azure_mgmt_authorization/models/role_assignment_filter.rb +1 -1
  17. data/lib/azure_mgmt_authorization/models/role_assignment_list_result.rb +1 -1
  18. data/lib/azure_mgmt_authorization/models/role_assignment_properties.rb +1 -1
  19. data/lib/azure_mgmt_authorization/models/role_assignment_properties_with_scope.rb +1 -1
  20. data/lib/azure_mgmt_authorization/models/role_definition.rb +1 -1
  21. data/lib/azure_mgmt_authorization/models/role_definition_filter.rb +1 -1
  22. data/lib/azure_mgmt_authorization/models/role_definition_list_result.rb +1 -1
  23. data/lib/azure_mgmt_authorization/models/role_definition_properties.rb +1 -1
  24. data/lib/azure_mgmt_authorization/module_definition.rb +1 -1
  25. data/lib/azure_mgmt_authorization/permissions.rb +153 -21
  26. data/lib/azure_mgmt_authorization/provider_operations_metadata_operations.rb +115 -18
  27. data/lib/azure_mgmt_authorization/role_assignments.rb +511 -73
  28. data/lib/azure_mgmt_authorization/role_definitions.rb +222 -32
  29. data/lib/azure_mgmt_authorization/version.rb +2 -2
  30. data/lib/azure_mgmt_authorization.rb +1 -1
  31. metadata +25 -20
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.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,41 @@ module Azure::ARM::Authorization
27
27
  #
28
28
  # @param scope [String] Scope
29
29
  # @param role_definition_id [String] Role definition id.
30
- # @param [Hash{String => String}] The hash of custom headers need to be
31
- # applied to HTTP request.
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.
33
+ # @return [RoleDefinition] operation results.
35
34
  #
36
35
  def delete(scope, role_definition_id, custom_headers = nil)
36
+ response = delete_async(scope, role_definition_id, custom_headers).value!
37
+ response.body unless response.nil?
38
+ end
39
+
40
+ #
41
+ # Deletes the role definition.
42
+ #
43
+ # @param scope [String] Scope
44
+ # @param role_definition_id [String] Role definition id.
45
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
46
+ # will be added to the HTTP request.
47
+ #
48
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
49
+ #
50
+ def delete_with_http_info(scope, role_definition_id, custom_headers = nil)
51
+ delete_async(scope, role_definition_id, custom_headers).value!
52
+ end
53
+
54
+ #
55
+ # Deletes the role definition.
56
+ #
57
+ # @param scope [String] Scope
58
+ # @param role_definition_id [String] Role definition id.
59
+ # @param [Hash{String => String}] A hash of custom headers that will be added
60
+ # to the HTTP request.
61
+ #
62
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
63
+ #
64
+ def delete_async(scope, role_definition_id, custom_headers = nil)
37
65
  fail ArgumentError, 'scope is nil' if scope.nil?
38
66
  fail ArgumentError, 'role_definition_id is nil' if role_definition_id.nil?
39
67
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
@@ -50,7 +78,10 @@ module Azure::ARM::Authorization
50
78
  query_params: {'api-version' => @client.api_version},
51
79
  headers: request_headers.merge(custom_headers || {})
52
80
  }
53
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :delete, options)
81
+
82
+ request_url = @base_url || @client.base_url
83
+
84
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :delete, options)
54
85
  promise = request.run_promise do |req|
55
86
  @client.credentials.sign_request(req) unless @client.credentials.nil?
56
87
  end
@@ -90,13 +121,41 @@ module Azure::ARM::Authorization
90
121
  #
91
122
  # @param scope [String] Scope
92
123
  # @param role_definition_id [String] Role definition Id
93
- # @param [Hash{String => String}] The hash of custom headers need to be
94
- # applied to HTTP request.
124
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
125
+ # will be added to the HTTP request.
95
126
  #
96
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
97
- # response.
127
+ # @return [RoleDefinition] operation results.
98
128
  #
99
129
  def get(scope, role_definition_id, custom_headers = nil)
130
+ response = get_async(scope, role_definition_id, custom_headers).value!
131
+ response.body unless response.nil?
132
+ end
133
+
134
+ #
135
+ # Get role definition by name (GUID).
136
+ #
137
+ # @param scope [String] Scope
138
+ # @param role_definition_id [String] Role definition Id
139
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
140
+ # will be added to the HTTP request.
141
+ #
142
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
143
+ #
144
+ def get_with_http_info(scope, role_definition_id, custom_headers = nil)
145
+ get_async(scope, role_definition_id, custom_headers).value!
146
+ end
147
+
148
+ #
149
+ # Get role definition by name (GUID).
150
+ #
151
+ # @param scope [String] Scope
152
+ # @param role_definition_id [String] Role definition Id
153
+ # @param [Hash{String => String}] A hash of custom headers that will be added
154
+ # to the HTTP request.
155
+ #
156
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
157
+ #
158
+ def get_async(scope, role_definition_id, custom_headers = nil)
100
159
  fail ArgumentError, 'scope is nil' if scope.nil?
101
160
  fail ArgumentError, 'role_definition_id is nil' if role_definition_id.nil?
102
161
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
@@ -113,7 +172,10 @@ module Azure::ARM::Authorization
113
172
  query_params: {'api-version' => @client.api_version},
114
173
  headers: request_headers.merge(custom_headers || {})
115
174
  }
116
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
175
+
176
+ request_url = @base_url || @client.base_url
177
+
178
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
117
179
  promise = request.run_promise do |req|
118
180
  @client.credentials.sign_request(req) unless @client.credentials.nil?
119
181
  end
@@ -154,13 +216,43 @@ module Azure::ARM::Authorization
154
216
  # @param scope [String] Scope
155
217
  # @param role_definition_id [String] Role definition id.
156
218
  # @param role_definition [RoleDefinition] Role definition.
157
- # @param [Hash{String => String}] The hash of custom headers need to be
158
- # applied to HTTP request.
219
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
220
+ # will be added to the HTTP request.
159
221
  #
160
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
161
- # response.
222
+ # @return [RoleDefinition] operation results.
162
223
  #
163
224
  def create_or_update(scope, role_definition_id, role_definition, custom_headers = nil)
225
+ response = create_or_update_async(scope, role_definition_id, role_definition, custom_headers).value!
226
+ response.body unless response.nil?
227
+ end
228
+
229
+ #
230
+ # Creates or updates a role definition.
231
+ #
232
+ # @param scope [String] Scope
233
+ # @param role_definition_id [String] Role definition id.
234
+ # @param role_definition [RoleDefinition] Role definition.
235
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
236
+ # will be added to the HTTP request.
237
+ #
238
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
239
+ #
240
+ def create_or_update_with_http_info(scope, role_definition_id, role_definition, custom_headers = nil)
241
+ create_or_update_async(scope, role_definition_id, role_definition, custom_headers).value!
242
+ end
243
+
244
+ #
245
+ # Creates or updates a role definition.
246
+ #
247
+ # @param scope [String] Scope
248
+ # @param role_definition_id [String] Role definition id.
249
+ # @param role_definition [RoleDefinition] Role definition.
250
+ # @param [Hash{String => String}] A hash of custom headers that will be added
251
+ # to the HTTP request.
252
+ #
253
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
254
+ #
255
+ def create_or_update_async(scope, role_definition_id, role_definition, custom_headers = nil)
164
256
  fail ArgumentError, 'scope is nil' if scope.nil?
165
257
  fail ArgumentError, 'role_definition_id is nil' if role_definition_id.nil?
166
258
  fail ArgumentError, 'role_definition is nil' if role_definition.nil?
@@ -177,7 +269,7 @@ module Azure::ARM::Authorization
177
269
  unless role_definition.nil?
178
270
  role_definition = RoleDefinition.serialize_object(role_definition)
179
271
  end
180
- request_content = JSON.generate(role_definition, quirks_mode: true)
272
+ request_content = role_definition != nil ? JSON.generate(role_definition, quirks_mode: true) : nil
181
273
  path_template = '/{scope}/providers/Microsoft.Authorization/roleDefinitions/{roleDefinitionId}'
182
274
  options = {
183
275
  middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
@@ -187,7 +279,10 @@ module Azure::ARM::Authorization
187
279
  body: request_content,
188
280
  headers: request_headers.merge(custom_headers || {})
189
281
  }
190
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :put, options)
282
+
283
+ request_url = @base_url || @client.base_url
284
+
285
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :put, options)
191
286
  promise = request.run_promise do |req|
192
287
  @client.credentials.sign_request(req) unless @client.credentials.nil?
193
288
  end
@@ -226,13 +321,39 @@ module Azure::ARM::Authorization
226
321
  # Get role definition by name (GUID).
227
322
  #
228
323
  # @param role_definition_id [String] Fully qualified role definition Id
229
- # @param [Hash{String => String}] The hash of custom headers need to be
230
- # applied to HTTP request.
324
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
325
+ # will be added to the HTTP request.
231
326
  #
232
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
233
- # response.
327
+ # @return [RoleDefinition] operation results.
234
328
  #
235
329
  def get_by_id(role_definition_id, custom_headers = nil)
330
+ response = get_by_id_async(role_definition_id, custom_headers).value!
331
+ response.body unless response.nil?
332
+ end
333
+
334
+ #
335
+ # Get role definition by name (GUID).
336
+ #
337
+ # @param role_definition_id [String] Fully qualified role definition Id
338
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
339
+ # will be added to the HTTP request.
340
+ #
341
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
342
+ #
343
+ def get_by_id_with_http_info(role_definition_id, custom_headers = nil)
344
+ get_by_id_async(role_definition_id, custom_headers).value!
345
+ end
346
+
347
+ #
348
+ # Get role definition by name (GUID).
349
+ #
350
+ # @param role_definition_id [String] Fully qualified role definition Id
351
+ # @param [Hash{String => String}] A hash of custom headers that will be added
352
+ # to the HTTP request.
353
+ #
354
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
355
+ #
356
+ def get_by_id_async(role_definition_id, custom_headers = nil)
236
357
  fail ArgumentError, 'role_definition_id is nil' if role_definition_id.nil?
237
358
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
238
359
  request_headers = {}
@@ -247,7 +368,10 @@ module Azure::ARM::Authorization
247
368
  query_params: {'api-version' => @client.api_version},
248
369
  headers: request_headers.merge(custom_headers || {})
249
370
  }
250
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
371
+
372
+ request_url = @base_url || @client.base_url
373
+
374
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
251
375
  promise = request.run_promise do |req|
252
376
  @client.credentials.sign_request(req) unless @client.credentials.nil?
253
377
  end
@@ -288,13 +412,43 @@ module Azure::ARM::Authorization
288
412
  #
289
413
  # @param scope [String] Scope
290
414
  # @param filter [String] The filter to apply on the operation.
291
- # @param [Hash{String => String}] The hash of custom headers need to be
292
- # applied to HTTP request.
415
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
416
+ # will be added to the HTTP request.
293
417
  #
294
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
295
- # response.
418
+ # @return [RoleDefinitionListResult] operation results.
296
419
  #
297
420
  def list(scope, filter = nil, custom_headers = nil)
421
+ response = list_async(scope, filter, custom_headers).value!
422
+ response.body unless response.nil?
423
+ end
424
+
425
+ #
426
+ # Get all role definitions that are applicable at scope and above. Use
427
+ # atScopeAndBelow filter to search below the given scope as well
428
+ #
429
+ # @param scope [String] Scope
430
+ # @param filter [String] The filter to apply on the operation.
431
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
432
+ # will be added to the HTTP request.
433
+ #
434
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
435
+ #
436
+ def list_with_http_info(scope, filter = nil, custom_headers = nil)
437
+ list_async(scope, filter, custom_headers).value!
438
+ end
439
+
440
+ #
441
+ # Get all role definitions that are applicable at scope and above. Use
442
+ # atScopeAndBelow filter to search below the given scope as well
443
+ #
444
+ # @param scope [String] Scope
445
+ # @param filter [String] The filter to apply on the operation.
446
+ # @param [Hash{String => String}] A hash of custom headers that will be added
447
+ # to the HTTP request.
448
+ #
449
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
450
+ #
451
+ def list_async(scope, filter = nil, custom_headers = nil)
298
452
  fail ArgumentError, 'scope is nil' if scope.nil?
299
453
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
300
454
  request_headers = {}
@@ -309,7 +463,10 @@ module Azure::ARM::Authorization
309
463
  query_params: {'$filter' => filter,'api-version' => @client.api_version},
310
464
  headers: request_headers.merge(custom_headers || {})
311
465
  }
312
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
466
+
467
+ request_url = @base_url || @client.base_url
468
+
469
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
313
470
  promise = request.run_promise do |req|
314
471
  @client.credentials.sign_request(req) unless @client.credentials.nil?
315
472
  end
@@ -350,13 +507,43 @@ module Azure::ARM::Authorization
350
507
  #
351
508
  # @param next_page_link [String] The NextLink from the previous successful
352
509
  # call to List operation.
353
- # @param [Hash{String => String}] The hash of custom headers need to be
354
- # applied to HTTP request.
510
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
511
+ # will be added to the HTTP request.
355
512
  #
356
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
357
- # response.
513
+ # @return [RoleDefinitionListResult] operation results.
358
514
  #
359
515
  def list_next(next_page_link, custom_headers = nil)
516
+ response = list_next_async(next_page_link, custom_headers).value!
517
+ response.body unless response.nil?
518
+ end
519
+
520
+ #
521
+ # Get all role definitions that are applicable at scope and above. Use
522
+ # atScopeAndBelow filter to search below the given scope as well
523
+ #
524
+ # @param next_page_link [String] The NextLink from the previous successful
525
+ # call to List operation.
526
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
527
+ # will be added to the HTTP request.
528
+ #
529
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
530
+ #
531
+ def list_next_with_http_info(next_page_link, custom_headers = nil)
532
+ list_next_async(next_page_link, custom_headers).value!
533
+ end
534
+
535
+ #
536
+ # Get all role definitions that are applicable at scope and above. Use
537
+ # atScopeAndBelow filter to search below the given scope as well
538
+ #
539
+ # @param next_page_link [String] The NextLink from the previous successful
540
+ # call to List operation.
541
+ # @param [Hash{String => String}] A hash of custom headers that will be added
542
+ # to the HTTP request.
543
+ #
544
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
545
+ #
546
+ def list_next_async(next_page_link, custom_headers = nil)
360
547
  fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
361
548
  request_headers = {}
362
549
 
@@ -369,7 +556,10 @@ module Azure::ARM::Authorization
369
556
  skip_encoding_path_params: {'nextLink' => next_page_link},
370
557
  headers: request_headers.merge(custom_headers || {})
371
558
  }
372
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
559
+
560
+ request_url = @base_url || @client.base_url
561
+
562
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
373
563
  promise = request.run_promise do |req|
374
564
  @client.credentials.sign_request(req) unless @client.credentials.nil?
375
565
  end
@@ -1,8 +1,8 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.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::Authorization
7
- VERSION = '0.2.1'
7
+ VERSION = '0.3.0'
8
8
  end
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.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
 
metadata CHANGED
@@ -1,85 +1,90 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_authorization
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
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-03-11 00:00:00.000000000 Z
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: '3'
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: '3'
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: 0.2.0
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: 0.2.0
86
+ version: !binary |-
87
+ MC4yLjM=
83
88
  description: Microsoft Azure Role Based Authorization 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
- - ".rspec"
95
+ - .rspec
91
96
  - LICENSE.txt
92
97
  - Rakefile
93
98
  - azure_mgmt_authorization.gemspec
@@ -129,17 +134,17 @@ require_paths:
129
134
  - lib
130
135
  required_ruby_version: !ruby/object:Gem::Requirement
131
136
  requirements:
132
- - - ">="
137
+ - - ! '>='
133
138
  - !ruby/object:Gem::Version
134
139
  version: 1.9.3
135
140
  required_rubygems_version: !ruby/object:Gem::Requirement
136
141
  requirements:
137
- - - ">="
142
+ - - ! '>='
138
143
  - !ruby/object:Gem::Version
139
144
  version: '0'
140
145
  requirements: []
141
146
  rubyforge_project:
142
- rubygems_version: 2.4.6
147
+ rubygems_version: 2.4.5
143
148
  signing_key:
144
149
  specification_version: 4
145
150
  summary: Official Ruby client library to consume Microsoft Azure Role Based Authorization