azure_mgmt_graph 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 (36) hide show
  1. checksums.yaml +13 -5
  2. data/azure_mgmt_graph.gemspec +2 -2
  3. data/lib/azure_mgmt_graph.rb +1 -1
  4. data/lib/azure_mgmt_graph/application_operations.rb +187 -28
  5. data/lib/azure_mgmt_graph/graph_rbac_management_client.rb +1 -1
  6. data/lib/azure_mgmt_graph/group_operations.rb +361 -54
  7. data/lib/azure_mgmt_graph/models/aadobject.rb +1 -1
  8. data/lib/azure_mgmt_graph/models/adgroup.rb +1 -1
  9. data/lib/azure_mgmt_graph/models/application.rb +1 -1
  10. data/lib/azure_mgmt_graph/models/application_create_parameters.rb +1 -1
  11. data/lib/azure_mgmt_graph/models/application_filter.rb +1 -1
  12. data/lib/azure_mgmt_graph/models/application_list_result.rb +1 -1
  13. data/lib/azure_mgmt_graph/models/get_objects_parameters.rb +1 -1
  14. data/lib/azure_mgmt_graph/models/get_objects_result.rb +1 -1
  15. data/lib/azure_mgmt_graph/models/group_add_member_parameters.rb +1 -1
  16. data/lib/azure_mgmt_graph/models/group_create_parameters.rb +1 -1
  17. data/lib/azure_mgmt_graph/models/group_get_member_groups_parameters.rb +1 -1
  18. data/lib/azure_mgmt_graph/models/group_get_member_groups_result.rb +1 -1
  19. data/lib/azure_mgmt_graph/models/group_list_result.rb +1 -1
  20. data/lib/azure_mgmt_graph/models/key_credential.rb +1 -1
  21. data/lib/azure_mgmt_graph/models/password_credential.rb +1 -1
  22. data/lib/azure_mgmt_graph/models/service_principal.rb +1 -1
  23. data/lib/azure_mgmt_graph/models/service_principal_create_parameters.rb +1 -1
  24. data/lib/azure_mgmt_graph/models/service_principal_list_result.rb +1 -1
  25. data/lib/azure_mgmt_graph/models/user.rb +1 -1
  26. data/lib/azure_mgmt_graph/models/user_create_parameters.rb +1 -1
  27. data/lib/azure_mgmt_graph/models/user_create_parameters_password_profile.rb +1 -1
  28. data/lib/azure_mgmt_graph/models/user_get_member_groups_parameters.rb +1 -1
  29. data/lib/azure_mgmt_graph/models/user_get_member_groups_result.rb +1 -1
  30. data/lib/azure_mgmt_graph/models/user_list_result.rb +1 -1
  31. data/lib/azure_mgmt_graph/module_definition.rb +1 -1
  32. data/lib/azure_mgmt_graph/object_operations.rb +102 -17
  33. data/lib/azure_mgmt_graph/service_principal_operations.rb +173 -27
  34. data/lib/azure_mgmt_graph/user_operations.rb +218 -33
  35. data/lib/azure_mgmt_graph/version.rb +2 -2
  36. metadata +31 -24
@@ -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,40 @@ module Azure::ARM::Graph
27
27
  # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
28
28
  #
29
29
  # @param user [String] user object id or user principal name
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.
35
33
  #
36
34
  def delete(user, custom_headers = nil)
35
+ response = delete_async(user, custom_headers).value!
36
+ nil
37
+ end
38
+
39
+ #
40
+ # Delete a user. Reference:
41
+ # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
42
+ #
43
+ # @param user [String] user object id or user principal name
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_with_http_info(user, custom_headers = nil)
50
+ delete_async(user, custom_headers).value!
51
+ end
52
+
53
+ #
54
+ # Delete a user. Reference:
55
+ # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
56
+ #
57
+ # @param user [String] user object id or user principal name
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_async(user, custom_headers = nil)
37
64
  fail ArgumentError, 'user is nil' if user.nil?
38
65
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
39
66
  fail ArgumentError, '@client.tenant_id is nil' if @client.tenant_id.nil?
@@ -50,7 +77,10 @@ module Azure::ARM::Graph
50
77
  query_params: {'api-version' => @client.api_version},
51
78
  headers: request_headers.merge(custom_headers || {})
52
79
  }
53
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :delete, options)
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::Graph
78
108
  # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
79
109
  #
80
110
  # @param parameters [UserCreateParameters] Parameters to create a user.
81
- # @param [Hash{String => String}] The hash of custom headers need to be
82
- # applied to HTTP request.
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 [Concurrent::Promise] Promise object which allows to get HTTP
85
- # response.
114
+ # @return [User] operation results.
86
115
  #
87
116
  def create(parameters, custom_headers = nil)
117
+ response = create_async(parameters, custom_headers).value!
118
+ response.body unless response.nil?
119
+ end
120
+
121
+ #
122
+ # Create a new user. Reference:
123
+ # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
124
+ #
125
+ # @param parameters [UserCreateParameters] Parameters to create a user.
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_with_http_info(parameters, custom_headers = nil)
132
+ create_async(parameters, custom_headers).value!
133
+ end
134
+
135
+ #
136
+ # Create a new user. Reference:
137
+ # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
138
+ #
139
+ # @param parameters [UserCreateParameters] Parameters to create a user.
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_async(parameters, custom_headers = nil)
88
146
  fail ArgumentError, 'parameters is nil' if parameters.nil?
89
147
  parameters.validate unless parameters.nil?
90
148
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
@@ -100,7 +158,7 @@ module Azure::ARM::Graph
100
158
  unless parameters.nil?
101
159
  parameters = UserCreateParameters.serialize_object(parameters)
102
160
  end
103
- request_content = JSON.generate(parameters, quirks_mode: true)
161
+ request_content = parameters != nil ? JSON.generate(parameters, quirks_mode: true) : nil
104
162
  path_template = '/{tenantID}/users'
105
163
  options = {
106
164
  middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
@@ -109,7 +167,10 @@ module Azure::ARM::Graph
109
167
  body: request_content,
110
168
  headers: request_headers.merge(custom_headers || {})
111
169
  }
112
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :post, options)
170
+
171
+ request_url = @base_url || @client.base_url
172
+
173
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :post, options)
113
174
  promise = request.run_promise do |req|
114
175
  @client.credentials.sign_request(req) unless @client.credentials.nil?
115
176
  end
@@ -148,13 +209,39 @@ module Azure::ARM::Graph
148
209
  # Gets list of users for the current tenant.
149
210
  #
150
211
  # @param filter [String] The filter to apply on the operation.
151
- # @param [Hash{String => String}] The hash of custom headers need to be
152
- # applied to HTTP request.
212
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
213
+ # will be added to the HTTP request.
153
214
  #
154
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
155
- # response.
215
+ # @return [UserListResult] operation results.
156
216
  #
157
217
  def list(filter = nil, custom_headers = nil)
218
+ response = list_async(filter, custom_headers).value!
219
+ response.body unless response.nil?
220
+ end
221
+
222
+ #
223
+ # Gets list of users for the current tenant.
224
+ #
225
+ # @param filter [String] The filter to apply on the operation.
226
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
227
+ # will be added to the HTTP request.
228
+ #
229
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
230
+ #
231
+ def list_with_http_info(filter = nil, custom_headers = nil)
232
+ list_async(filter, custom_headers).value!
233
+ end
234
+
235
+ #
236
+ # Gets list of users for the current tenant.
237
+ #
238
+ # @param filter [String] The filter to apply on the operation.
239
+ # @param [Hash{String => String}] A hash of custom headers that will be added
240
+ # to the HTTP request.
241
+ #
242
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
243
+ #
244
+ def list_async(filter = nil, custom_headers = nil)
158
245
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
159
246
  fail ArgumentError, '@client.tenant_id is nil' if @client.tenant_id.nil?
160
247
  request_headers = {}
@@ -169,7 +256,10 @@ module Azure::ARM::Graph
169
256
  query_params: {'$filter' => filter,'api-version' => @client.api_version},
170
257
  headers: request_headers.merge(custom_headers || {})
171
258
  }
172
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
259
+
260
+ request_url = @base_url || @client.base_url
261
+
262
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
173
263
  promise = request.run_promise do |req|
174
264
  @client.credentials.sign_request(req) unless @client.credentials.nil?
175
265
  end
@@ -210,13 +300,43 @@ module Azure::ARM::Graph
210
300
  #
211
301
  # @param upn_or_object_id [String] User object Id or user principal name to
212
302
  # get user information.
213
- # @param [Hash{String => String}] The hash of custom headers need to be
214
- # applied to HTTP request.
303
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
304
+ # will be added to the HTTP request.
215
305
  #
216
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
217
- # response.
306
+ # @return [User] operation results.
218
307
  #
219
308
  def get(upn_or_object_id, custom_headers = nil)
309
+ response = get_async(upn_or_object_id, custom_headers).value!
310
+ response.body unless response.nil?
311
+ end
312
+
313
+ #
314
+ # Gets user information from the directory. Reference:
315
+ # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
316
+ #
317
+ # @param upn_or_object_id [String] User object Id or user principal name to
318
+ # get user information.
319
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
320
+ # will be added to the HTTP request.
321
+ #
322
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
323
+ #
324
+ def get_with_http_info(upn_or_object_id, custom_headers = nil)
325
+ get_async(upn_or_object_id, custom_headers).value!
326
+ end
327
+
328
+ #
329
+ # Gets user information from the directory. Reference:
330
+ # http://msdn.microsoft.com/en-us/library/azure/dn151676.aspx
331
+ #
332
+ # @param upn_or_object_id [String] User object Id or user principal name to
333
+ # get user information.
334
+ # @param [Hash{String => String}] A hash of custom headers that will be added
335
+ # to the HTTP request.
336
+ #
337
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
338
+ #
339
+ def get_async(upn_or_object_id, custom_headers = nil)
220
340
  fail ArgumentError, 'upn_or_object_id is nil' if upn_or_object_id.nil?
221
341
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
222
342
  fail ArgumentError, '@client.tenant_id is nil' if @client.tenant_id.nil?
@@ -233,7 +353,10 @@ module Azure::ARM::Graph
233
353
  query_params: {'api-version' => @client.api_version},
234
354
  headers: request_headers.merge(custom_headers || {})
235
355
  }
236
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
356
+
357
+ request_url = @base_url || @client.base_url
358
+
359
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
237
360
  promise = request.run_promise do |req|
238
361
  @client.credentials.sign_request(req) unless @client.credentials.nil?
239
362
  end
@@ -274,13 +397,43 @@ module Azure::ARM::Graph
274
397
  #
275
398
  # @param object_id [String] User filtering parameters.
276
399
  # @param parameters [UserGetMemberGroupsParameters] User filtering parameters.
277
- # @param [Hash{String => String}] The hash of custom headers need to be
278
- # applied to HTTP request.
400
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
401
+ # will be added to the HTTP request.
279
402
  #
280
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
281
- # response.
403
+ # @return [UserGetMemberGroupsResult] operation results.
282
404
  #
283
405
  def get_member_groups(object_id, parameters, custom_headers = nil)
406
+ response = get_member_groups_async(object_id, parameters, custom_headers).value!
407
+ response.body unless response.nil?
408
+ end
409
+
410
+ #
411
+ # Gets a collection that contains the Object IDs of the groups of which the
412
+ # user is a member.
413
+ #
414
+ # @param object_id [String] User filtering parameters.
415
+ # @param parameters [UserGetMemberGroupsParameters] User filtering parameters.
416
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
417
+ # will be added to the HTTP request.
418
+ #
419
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
420
+ #
421
+ def get_member_groups_with_http_info(object_id, parameters, custom_headers = nil)
422
+ get_member_groups_async(object_id, parameters, custom_headers).value!
423
+ end
424
+
425
+ #
426
+ # Gets a collection that contains the Object IDs of the groups of which the
427
+ # user is a member.
428
+ #
429
+ # @param object_id [String] User filtering parameters.
430
+ # @param parameters [UserGetMemberGroupsParameters] User filtering parameters.
431
+ # @param [Hash{String => String}] A hash of custom headers that will be added
432
+ # to the HTTP request.
433
+ #
434
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
435
+ #
436
+ def get_member_groups_async(object_id, parameters, custom_headers = nil)
284
437
  fail ArgumentError, 'object_id is nil' if object_id.nil?
285
438
  fail ArgumentError, 'parameters is nil' if parameters.nil?
286
439
  parameters.validate unless parameters.nil?
@@ -297,7 +450,7 @@ module Azure::ARM::Graph
297
450
  unless parameters.nil?
298
451
  parameters = UserGetMemberGroupsParameters.serialize_object(parameters)
299
452
  end
300
- request_content = JSON.generate(parameters, quirks_mode: true)
453
+ request_content = parameters != nil ? JSON.generate(parameters, quirks_mode: true) : nil
301
454
  path_template = '/{tenantID}/users/{objectId}/getMemberGroups'
302
455
  options = {
303
456
  middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
@@ -307,7 +460,10 @@ module Azure::ARM::Graph
307
460
  body: request_content,
308
461
  headers: request_headers.merge(custom_headers || {})
309
462
  }
310
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :post, options)
463
+
464
+ request_url = @base_url || @client.base_url
465
+
466
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :post, options)
311
467
  promise = request.run_promise do |req|
312
468
  @client.credentials.sign_request(req) unless @client.credentials.nil?
313
469
  end
@@ -346,13 +502,39 @@ module Azure::ARM::Graph
346
502
  # Gets list of users for the current tenant.
347
503
  #
348
504
  # @param next_link [String] Next link for list operation.
349
- # @param [Hash{String => String}] The hash of custom headers need to be
350
- # applied to HTTP request.
505
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
506
+ # will be added to the HTTP request.
351
507
  #
352
- # @return [Concurrent::Promise] Promise object which allows to get HTTP
353
- # response.
508
+ # @return [UserListResult] operation results.
354
509
  #
355
510
  def list_next(next_link, custom_headers = nil)
511
+ response = list_next_async(next_link, custom_headers).value!
512
+ response.body unless response.nil?
513
+ end
514
+
515
+ #
516
+ # Gets list of users for the current tenant.
517
+ #
518
+ # @param next_link [String] Next link for list operation.
519
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
520
+ # will be added to the HTTP request.
521
+ #
522
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
523
+ #
524
+ def list_next_with_http_info(next_link, custom_headers = nil)
525
+ list_next_async(next_link, custom_headers).value!
526
+ end
527
+
528
+ #
529
+ # Gets list of users for the current tenant.
530
+ #
531
+ # @param next_link [String] Next link for list operation.
532
+ # @param [Hash{String => String}] A hash of custom headers that will be added
533
+ # to the HTTP request.
534
+ #
535
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
536
+ #
537
+ def list_next_async(next_link, custom_headers = nil)
356
538
  fail ArgumentError, 'next_link is nil' if next_link.nil?
357
539
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
358
540
  fail ArgumentError, '@client.tenant_id is nil' if @client.tenant_id.nil?
@@ -369,7 +551,10 @@ module Azure::ARM::Graph
369
551
  query_params: {'api-version' => @client.api_version},
370
552
  headers: request_headers.merge(custom_headers || {})
371
553
  }
372
- request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, options)
554
+
555
+ request_url = @base_url || @client.base_url
556
+
557
+ request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, options)
373
558
  promise = request.run_promise do |req|
374
559
  @client.credentials.sign_request(req) unless @client.credentials.nil?
375
560
  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::Graph
7
- VERSION = '0.2.1'
7
+ VERSION = '0.3.0'
8
8
  end
metadata CHANGED
@@ -1,99 +1,106 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_graph
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: azure_mgmt_resources
71
74
  requirement: !ruby/object:Gem::Requirement
72
75
  requirements:
73
- - - "~>"
76
+ - - ~>
74
77
  - !ruby/object:Gem::Version
75
- version: '0.2'
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: '0.2'
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: 0.2.0
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: 0.2.0
102
+ version: !binary |-
103
+ MC4yLjM=
97
104
  description: Microsoft Azure Active Directory Graph Management Client Library for
98
105
  Ruby
99
106
  email: azrubyteam@microsoft.com
@@ -101,7 +108,7 @@ executables: []
101
108
  extensions: []
102
109
  extra_rdoc_files: []
103
110
  files:
104
- - ".rspec"
111
+ - .rspec
105
112
  - LICENSE.txt
106
113
  - Rakefile
107
114
  - azure_mgmt_graph.gemspec
@@ -148,17 +155,17 @@ require_paths:
148
155
  - lib
149
156
  required_ruby_version: !ruby/object:Gem::Requirement
150
157
  requirements:
151
- - - ">="
158
+ - - ! '>='
152
159
  - !ruby/object:Gem::Version
153
160
  version: 1.9.3
154
161
  required_rubygems_version: !ruby/object:Gem::Requirement
155
162
  requirements:
156
- - - ">="
163
+ - - ! '>='
157
164
  - !ruby/object:Gem::Version
158
165
  version: '0'
159
166
  requirements: []
160
167
  rubyforge_project:
161
- rubygems_version: 2.4.6
168
+ rubygems_version: 2.4.5
162
169
  signing_key:
163
170
  specification_version: 4
164
171
  summary: Official Ruby client library to consume Microsoft Azure Active Directory