aws-sdk-ssooidc 1.17.0 → 1.20.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +32 -12
- data/lib/aws-sdk-ssooidc/types.rb +46 -9
- data/lib/aws-sdk-ssooidc.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b77e2048a5222c9ff42a3ababf037603c713ff547ed6b161ec15759ea08c66d1
|
4
|
+
data.tar.gz: 8c3c5d5a88c025a1f061a382ba3dde49c8432e9b77dcc58eaa1618ecb6c1f696
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec3ac99e49782830ba0b1fa9537d9d0c678ed9ecc768dcea79bdbe09f4e4b610875b0563bfc9465d9c6b908b5eafd04cb79d4cecdcdb78b7e0fd52705397f4f8
|
7
|
+
data.tar.gz: afb8216689126e12e28f1bc1dbb22c7d314f878e7d84ae166b2d4b3269244cc204e97127107e3761f1e07b4562463fb7183e8ebdae17cfaf343b4368a417d415
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.20.0 (2022-08-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates to reflect service rename - AWS IAM Identity Center (successor to AWS Single Sign-On)
|
8
|
+
|
9
|
+
1.19.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.18.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.17.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::SSOOIDC
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -349,7 +353,7 @@ module Aws::SSOOIDC
|
|
349
353
|
|
350
354
|
# Creates and returns an access token for the authorized client. The
|
351
355
|
# access token issued will be used to fetch short-term credentials for
|
352
|
-
# the assigned roles in the
|
356
|
+
# the assigned roles in the Amazon Web Services account.
|
353
357
|
#
|
354
358
|
# @option params [required, String] :client_id
|
355
359
|
# The unique identifier string for each client. This value should come
|
@@ -360,8 +364,14 @@ module Aws::SSOOIDC
|
|
360
364
|
# the persisted result of the RegisterClient API.
|
361
365
|
#
|
362
366
|
# @option params [required, String] :grant_type
|
363
|
-
# Supports grant types for authorization code, refresh token, and
|
364
|
-
# code request.
|
367
|
+
# Supports grant types for the authorization code, refresh token, and
|
368
|
+
# device code request. For device code requests, specify the following
|
369
|
+
# value:
|
370
|
+
#
|
371
|
+
# `urn:ietf:params:oauth:grant-type:device_code `
|
372
|
+
#
|
373
|
+
# For information about how to obtain the device code, see the
|
374
|
+
# StartDeviceAuthorization topic.
|
365
375
|
#
|
366
376
|
# @option params [required, String] :device_code
|
367
377
|
# Used only when calling this API for the device code grant type. This
|
@@ -375,8 +385,18 @@ module Aws::SSOOIDC
|
|
375
385
|
# access to a token.
|
376
386
|
#
|
377
387
|
# @option params [String] :refresh_token
|
388
|
+
# Currently, `refreshToken` is not yet implemented and is not supported.
|
389
|
+
# For more information about the features and limitations of the current
|
390
|
+
# Amazon Web Services SSO OIDC implementation, see *Considerations for
|
391
|
+
# Using this Guide* in the [Amazon Web Services SSO OIDC API
|
392
|
+
# Reference][1].
|
393
|
+
#
|
378
394
|
# The token used to obtain an access token in the event that the access
|
379
|
-
# token is invalid or expired.
|
395
|
+
# token is invalid or expired.
|
396
|
+
#
|
397
|
+
#
|
398
|
+
#
|
399
|
+
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
380
400
|
#
|
381
401
|
# @option params [Array<String>] :scope
|
382
402
|
# The list of scopes that is defined by the client. Upon authorization,
|
@@ -426,9 +446,9 @@ module Aws::SSOOIDC
|
|
426
446
|
req.send_request(options)
|
427
447
|
end
|
428
448
|
|
429
|
-
# Registers a client with
|
430
|
-
# device authorization. The output should be persisted for
|
431
|
-
# many authentication requests.
|
449
|
+
# Registers a client with Amazon Web Services SSO. This allows clients
|
450
|
+
# to initiate device authorization. The output should be persisted for
|
451
|
+
# reuse through many authentication requests.
|
432
452
|
#
|
433
453
|
# @option params [required, String] :client_name
|
434
454
|
# The friendly name of the client.
|
@@ -482,16 +502,16 @@ module Aws::SSOOIDC
|
|
482
502
|
#
|
483
503
|
# @option params [required, String] :client_id
|
484
504
|
# The unique identifier string for the client that is registered with
|
485
|
-
#
|
486
|
-
# RegisterClient API operation.
|
505
|
+
# Amazon Web Services SSO. This value should come from the persisted
|
506
|
+
# result of the RegisterClient API operation.
|
487
507
|
#
|
488
508
|
# @option params [required, String] :client_secret
|
489
509
|
# A secret string that is generated for the client. This value should
|
490
510
|
# come from the persisted result of the RegisterClient API operation.
|
491
511
|
#
|
492
512
|
# @option params [required, String] :start_url
|
493
|
-
# The URL for the AWS
|
494
|
-
# the
|
513
|
+
# The URL for the AWS access portal. For more information, see [Using
|
514
|
+
# the AWS access portal][1] in the *Amazon Web Services SSO User Guide*.
|
495
515
|
#
|
496
516
|
#
|
497
517
|
#
|
@@ -545,7 +565,7 @@ module Aws::SSOOIDC
|
|
545
565
|
params: params,
|
546
566
|
config: config)
|
547
567
|
context[:gem_name] = 'aws-sdk-ssooidc'
|
548
|
-
context[:gem_version] = '1.
|
568
|
+
context[:gem_version] = '1.20.0'
|
549
569
|
Seahorse::Client::Request.new(handlers, context)
|
550
570
|
end
|
551
571
|
|
@@ -70,8 +70,14 @@ module Aws::SSOOIDC
|
|
70
70
|
# @return [String]
|
71
71
|
#
|
72
72
|
# @!attribute [rw] grant_type
|
73
|
-
# Supports grant types for authorization code, refresh token, and
|
74
|
-
# device code request.
|
73
|
+
# Supports grant types for the authorization code, refresh token, and
|
74
|
+
# device code request. For device code requests, specify the following
|
75
|
+
# value:
|
76
|
+
#
|
77
|
+
# `urn:ietf:params:oauth:grant-type:device_code `
|
78
|
+
#
|
79
|
+
# For information about how to obtain the device code, see the
|
80
|
+
# StartDeviceAuthorization topic.
|
75
81
|
# @return [String]
|
76
82
|
#
|
77
83
|
# @!attribute [rw] device_code
|
@@ -88,9 +94,18 @@ module Aws::SSOOIDC
|
|
88
94
|
# @return [String]
|
89
95
|
#
|
90
96
|
# @!attribute [rw] refresh_token
|
97
|
+
# Currently, `refreshToken` is not yet implemented and is not
|
98
|
+
# supported. For more information about the features and limitations
|
99
|
+
# of the current Amazon Web Services SSO OIDC implementation, see
|
100
|
+
# *Considerations for Using this Guide* in the [Amazon Web Services
|
101
|
+
# SSO OIDC API Reference][1].
|
102
|
+
#
|
91
103
|
# The token used to obtain an access token in the event that the
|
92
|
-
# access token is invalid or expired.
|
93
|
-
#
|
104
|
+
# access token is invalid or expired.
|
105
|
+
#
|
106
|
+
#
|
107
|
+
#
|
108
|
+
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
94
109
|
# @return [String]
|
95
110
|
#
|
96
111
|
# @!attribute [rw] scope
|
@@ -121,7 +136,8 @@ module Aws::SSOOIDC
|
|
121
136
|
end
|
122
137
|
|
123
138
|
# @!attribute [rw] access_token
|
124
|
-
# An opaque token to access
|
139
|
+
# An opaque token to access Amazon Web Services SSO resources assigned
|
140
|
+
# to a user.
|
125
141
|
# @return [String]
|
126
142
|
#
|
127
143
|
# @!attribute [rw] token_type
|
@@ -134,13 +150,33 @@ module Aws::SSOOIDC
|
|
134
150
|
# @return [Integer]
|
135
151
|
#
|
136
152
|
# @!attribute [rw] refresh_token
|
153
|
+
# Currently, `refreshToken` is not yet implemented and is not
|
154
|
+
# supported. For more information about the features and limitations
|
155
|
+
# of the current Amazon Web Services SSO OIDC implementation, see
|
156
|
+
# *Considerations for Using this Guide* in the [Amazon Web Services
|
157
|
+
# SSO OIDC API Reference][1].
|
158
|
+
#
|
137
159
|
# A token that, if present, can be used to refresh a previously issued
|
138
160
|
# access token that might have expired.
|
161
|
+
#
|
162
|
+
#
|
163
|
+
#
|
164
|
+
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
139
165
|
# @return [String]
|
140
166
|
#
|
141
167
|
# @!attribute [rw] id_token
|
168
|
+
# Currently, `idToken` is not yet implemented and is not supported.
|
169
|
+
# For more information about the features and limitations of the
|
170
|
+
# current Amazon Web Services SSO OIDC implementation, see
|
171
|
+
# *Considerations for Using this Guide* in the [Amazon Web Services
|
172
|
+
# SSO OIDC API Reference][1].
|
173
|
+
#
|
142
174
|
# The identifier of the user that associated with the access token, if
|
143
175
|
# present.
|
176
|
+
#
|
177
|
+
#
|
178
|
+
#
|
179
|
+
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
144
180
|
# @return [String]
|
145
181
|
#
|
146
182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/CreateTokenResponse AWS API Documentation
|
@@ -385,8 +421,8 @@ module Aws::SSOOIDC
|
|
385
421
|
#
|
386
422
|
# @!attribute [rw] client_id
|
387
423
|
# The unique identifier string for the client that is registered with
|
388
|
-
#
|
389
|
-
# RegisterClient API operation.
|
424
|
+
# Amazon Web Services SSO. This value should come from the persisted
|
425
|
+
# result of the RegisterClient API operation.
|
390
426
|
# @return [String]
|
391
427
|
#
|
392
428
|
# @!attribute [rw] client_secret
|
@@ -395,8 +431,9 @@ module Aws::SSOOIDC
|
|
395
431
|
# @return [String]
|
396
432
|
#
|
397
433
|
# @!attribute [rw] start_url
|
398
|
-
# The URL for the AWS
|
399
|
-
#
|
434
|
+
# The URL for the AWS access portal. For more information, see [Using
|
435
|
+
# the AWS access portal][1] in the *Amazon Web Services SSO User
|
436
|
+
# Guide*.
|
400
437
|
#
|
401
438
|
#
|
402
439
|
#
|
data/lib/aws-sdk-ssooidc.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssooidc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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:
|
11
|
+
date: 2022-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|