aws-sdk-sso 1.2.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9cfc932ae4c2ea188cfa84656b3387de83240471
4
- data.tar.gz: 7650ad546e77d25c002d0f73d2f360998b53c0d5
2
+ SHA256:
3
+ metadata.gz: ae3c6177df3645f0f694d639ebaf2c8dab32d9ca200c4a85baa3bbfb41d57440
4
+ data.tar.gz: 69f0ae778506169771a0147e479d3cf341ae961113dee17e2dd49094ac0df869
5
5
  SHA512:
6
- metadata.gz: c7a7c1d0528f7cc3bfa87c2bd934c5fdf54ec18acd3b56b90bf7fc5b4ff61533d8c427a855c1ea4759f0750bf7b0d641711861c912e1203e1d66a0fe4c6f1ada
7
- data.tar.gz: 7c0a10087fa0acff24c578a2e3fe7e8fe7710912981dea4d90ed89201837aa50e6dad7fafb88a55b595c7b40a3e4ee1b918579c9ca2714a2d8ebcf808aca9ebb
6
+ metadata.gz: f2903953e9dccb3f0f4a055661b7d88c6fcb2f3ab434f3d9f94cc13cc3d0e0273e442f2e421a4649e38eb38ed3877e6c9e5df2991040f26aa0e8be66d5092e19
7
+ data.tar.gz: e05f4fc372f3e4b35b260b417f76707783e08711893e14a9a6ebbefef09ea828f311d1189765d64030096a9e48fa3b79fb9c1a084dfce916f4a6747b00a7019d
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-sso/customizations'
45
45
  # @service
46
46
  module Aws::SSO
47
47
 
48
- GEM_VERSION = '1.2.0'
48
+ GEM_VERSION = '1.3.0'
49
49
 
50
50
  end
@@ -33,11 +33,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:sso)
33
33
  module Aws::SSO
34
34
  # An API client for SSO. To construct a client, you need to configure a `:region` and `:credentials`.
35
35
  #
36
- # client = Aws::SSO::Client.new(
37
- # region: region_name,
38
- # credentials: credentials,
39
- # # ...
40
- # )
36
+ # client = Aws::SSO::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
41
  #
42
42
  # For details on configuring region and credentials see
43
43
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -107,7 +107,7 @@ module Aws::SSO
107
107
  # @option options [required, String] :region
108
108
  # The AWS region to connect to. The configured `:region` is
109
109
  # used to determine the service `:endpoint`. When not passed,
110
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
111
111
  #
112
112
  # * `Aws.config[:region]`
113
113
  # * `ENV['AWS_REGION']`
@@ -163,7 +163,7 @@ module Aws::SSO
163
163
  # @option options [String] :endpoint
164
164
  # The client endpoint is normally constructed from the `:region`
165
165
  # option. You should only configure an `:endpoint` when connecting
166
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test endpoints. This should be a valid HTTP(S) URI.
167
167
  #
168
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
169
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -231,15 +231,19 @@ module Aws::SSO
231
231
  #
232
232
  # @option options [String] :retry_mode ("legacy")
233
233
  # Specifies which retry algorithm to use. Values are:
234
- # * `legacy` - The pre-existing retry behavior. This is default value if
235
- # no retry mode is provided.
236
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
- # This includes support for retry quotas, which limit the number of
238
- # unsuccessful retries a client can make.
239
- # * `adaptive` - An experimental retry mode that includes all the
240
- # functionality of `standard` mode along with automatic client side
241
- # throttling. This is a provisional mode that may change behavior
242
- # in the future.
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
243
247
  #
244
248
  # @option options [String] :secret_access_key
245
249
  #
@@ -267,8 +271,7 @@ module Aws::SSO
267
271
  #
268
272
  # @option options [Integer] :http_read_timeout (60) The default
269
273
  # number of seconds to wait for response data. This value can
270
- # safely be set
271
- # per-request on the session yielded by {#session_for}.
274
+ # safely be set per-request on the session.
272
275
  #
273
276
  # @option options [Float] :http_idle_timeout (5) The number of
274
277
  # seconds a connection is allowed to sit idle before it is
@@ -280,7 +283,7 @@ module Aws::SSO
280
283
  # request body. This option has no effect unless the request has
281
284
  # "Expect" header set to "100-continue". Defaults to `nil` which
282
285
  # disables this behaviour. This value can safely be set per
283
- # request on the session yielded by {#session_for}.
286
+ # request on the session.
284
287
  #
285
288
  # @option options [Boolean] :http_wire_trace (false) When `true`,
286
289
  # HTTP debug output will be sent to the `:logger`.
@@ -377,6 +380,8 @@ module Aws::SSO
377
380
  # * {Types::ListAccountRolesResponse#next_token #next_token} => String
378
381
  # * {Types::ListAccountRolesResponse#role_list #role_list} => Array<Types::RoleInfo>
379
382
  #
383
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
384
+ #
380
385
  # @example Request syntax with placeholder values
381
386
  #
382
387
  # resp = client.list_account_roles({
@@ -431,6 +436,8 @@ module Aws::SSO
431
436
  # * {Types::ListAccountsResponse#next_token #next_token} => String
432
437
  # * {Types::ListAccountsResponse#account_list #account_list} => Array<Types::AccountInfo>
433
438
  #
439
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
440
+ #
434
441
  # @example Request syntax with placeholder values
435
442
  #
436
443
  # resp = client.list_accounts({
@@ -497,7 +504,7 @@ module Aws::SSO
497
504
  params: params,
498
505
  config: config)
499
506
  context[:gem_name] = 'aws-sdk-sso'
500
- context[:gem_version] = '1.2.0'
507
+ context[:gem_version] = '1.3.0'
501
508
  Seahorse::Client::Request.new(handlers, context)
502
509
  end
503
510
 
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::SSO
9
- # This class provides a resource oriented interface for SSO.
10
- # To create a resource object:
11
- # resource = Aws::SSO::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::SSO::Client.new(region: 'us-west-2')
15
- # resource = Aws::SSO::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sso
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.5.2.3
85
+ rubygems_version: 2.7.6.2
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: AWS SDK for Ruby - SSO