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 +5 -5
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-sso/client.rb +27 -20
- data/lib/aws-sdk-sso/resource.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ae3c6177df3645f0f694d639ebaf2c8dab32d9ca200c4a85baa3bbfb41d57440
|
4
|
+
data.tar.gz: 69f0ae778506169771a0147e479d3cf341ae961113dee17e2dd49094ac0df869
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2903953e9dccb3f0f4a055661b7d88c6fcb2f3ab434f3d9f94cc13cc3d0e0273e442f2e421a4649e38eb38ed3877e6c9e5df2991040f26aa0e8be66d5092e19
|
7
|
+
data.tar.gz: e05f4fc372f3e4b35b260b417f76707783e08711893e14a9a6ebbefef09ea828f311d1189765d64030096a9e48fa3b79fb9c1a084dfce916f4a6747b00a7019d
|
data/lib/aws-sdk-sso.rb
CHANGED
data/lib/aws-sdk-sso/client.rb
CHANGED
@@ -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
|
-
#
|
37
|
-
#
|
38
|
-
#
|
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
|
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
|
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
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
241
|
-
#
|
242
|
-
#
|
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
|
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.
|
507
|
+
context[:gem_version] = '1.3.0'
|
501
508
|
Seahorse::Client::Request.new(handlers, context)
|
502
509
|
end
|
503
510
|
|
data/lib/aws-sdk-sso/resource.rb
CHANGED
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SSO
|
9
|
-
|
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.
|
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-
|
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.
|
85
|
+
rubygems_version: 2.7.6.2
|
86
86
|
signing_key:
|
87
87
|
specification_version: 4
|
88
88
|
summary: AWS SDK for Ruby - SSO
|