aws-sdk-core 3.135.0 → 3.136.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +14 -30
- data/lib/aws-sdk-ssooidc/client_api.rb +1 -1
- data/lib/aws-sdk-ssooidc/types.rb +10 -47
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4eff23899ad65b2216827b94ccd1dac1af4bb745f8e2fa678cd1d03cabecd695
|
|
4
|
+
data.tar.gz: b8ab13643d0608277ca9f73e7205f48c892e6d2701b106d70e06faf5d5b6caff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cad017d37382b5d9bd75029f288cc5bf0955d5badb2746e45d077ca92d79733355e1c9cadd92da668b094c3144c770b15dade821d0a2eb3da87f9bc160b6a325
|
|
7
|
+
data.tar.gz: eb6f1a7c8521c612ffa96a6735adb9a126f11b4e3c2110aa4d74d3a10fa27aa7d5582cc43f04ecb7529fb00a2c441a97b24aa33ef9d5e10bb1643814ff08cec0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.136.0
|
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sso.rb
CHANGED
|
@@ -353,7 +353,7 @@ module Aws::SSOOIDC
|
|
|
353
353
|
|
|
354
354
|
# Creates and returns an access token for the authorized client. The
|
|
355
355
|
# access token issued will be used to fetch short-term credentials for
|
|
356
|
-
# the assigned roles in the
|
|
356
|
+
# the assigned roles in the AWS account.
|
|
357
357
|
#
|
|
358
358
|
# @option params [required, String] :client_id
|
|
359
359
|
# The unique identifier string for each client. This value should come
|
|
@@ -364,16 +364,10 @@ module Aws::SSOOIDC
|
|
|
364
364
|
# the persisted result of the RegisterClient API.
|
|
365
365
|
#
|
|
366
366
|
# @option params [required, String] :grant_type
|
|
367
|
-
# Supports grant types for
|
|
368
|
-
#
|
|
369
|
-
# value:
|
|
367
|
+
# Supports grant types for authorization code, refresh token, and device
|
|
368
|
+
# code request.
|
|
370
369
|
#
|
|
371
|
-
#
|
|
372
|
-
#
|
|
373
|
-
# For information about how to obtain the device code, see the
|
|
374
|
-
# StartDeviceAuthorization topic.
|
|
375
|
-
#
|
|
376
|
-
# @option params [required, String] :device_code
|
|
370
|
+
# @option params [String] :device_code
|
|
377
371
|
# Used only when calling this API for the device code grant type. This
|
|
378
372
|
# short-term code is used to identify this authentication attempt. This
|
|
379
373
|
# should come from an in-memory reference to the result of the
|
|
@@ -385,18 +379,8 @@ module Aws::SSOOIDC
|
|
|
385
379
|
# access to a token.
|
|
386
380
|
#
|
|
387
381
|
# @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
|
-
#
|
|
394
382
|
# The token used to obtain an access token in the event that the access
|
|
395
|
-
# token is invalid or expired.
|
|
396
|
-
#
|
|
397
|
-
#
|
|
398
|
-
#
|
|
399
|
-
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
|
383
|
+
# token is invalid or expired. This token is not issued by the service.
|
|
400
384
|
#
|
|
401
385
|
# @option params [Array<String>] :scope
|
|
402
386
|
# The list of scopes that is defined by the client. Upon authorization,
|
|
@@ -422,7 +406,7 @@ module Aws::SSOOIDC
|
|
|
422
406
|
# client_id: "ClientId", # required
|
|
423
407
|
# client_secret: "ClientSecret", # required
|
|
424
408
|
# grant_type: "GrantType", # required
|
|
425
|
-
# device_code: "DeviceCode",
|
|
409
|
+
# device_code: "DeviceCode",
|
|
426
410
|
# code: "AuthCode",
|
|
427
411
|
# refresh_token: "RefreshToken",
|
|
428
412
|
# scope: ["Scope"],
|
|
@@ -446,9 +430,9 @@ module Aws::SSOOIDC
|
|
|
446
430
|
req.send_request(options)
|
|
447
431
|
end
|
|
448
432
|
|
|
449
|
-
# Registers a client with
|
|
450
|
-
#
|
|
451
|
-
#
|
|
433
|
+
# Registers a client with AWS SSO. This allows clients to initiate
|
|
434
|
+
# device authorization. The output should be persisted for reuse through
|
|
435
|
+
# many authentication requests.
|
|
452
436
|
#
|
|
453
437
|
# @option params [required, String] :client_name
|
|
454
438
|
# The friendly name of the client.
|
|
@@ -502,16 +486,16 @@ module Aws::SSOOIDC
|
|
|
502
486
|
#
|
|
503
487
|
# @option params [required, String] :client_id
|
|
504
488
|
# The unique identifier string for the client that is registered with
|
|
505
|
-
#
|
|
506
|
-
#
|
|
489
|
+
# AWS SSO. This value should come from the persisted result of the
|
|
490
|
+
# RegisterClient API operation.
|
|
507
491
|
#
|
|
508
492
|
# @option params [required, String] :client_secret
|
|
509
493
|
# A secret string that is generated for the client. This value should
|
|
510
494
|
# come from the persisted result of the RegisterClient API operation.
|
|
511
495
|
#
|
|
512
496
|
# @option params [required, String] :start_url
|
|
513
|
-
# The URL for the AWS
|
|
514
|
-
# the
|
|
497
|
+
# The URL for the AWS SSO user portal. For more information, see [Using
|
|
498
|
+
# the User Portal][1] in the *AWS Single Sign-On User Guide*.
|
|
515
499
|
#
|
|
516
500
|
#
|
|
517
501
|
#
|
|
@@ -565,7 +549,7 @@ module Aws::SSOOIDC
|
|
|
565
549
|
params: params,
|
|
566
550
|
config: config)
|
|
567
551
|
context[:gem_name] = 'aws-sdk-core'
|
|
568
|
-
context[:gem_version] = '3.
|
|
552
|
+
context[:gem_version] = '3.136.0'
|
|
569
553
|
Seahorse::Client::Request.new(handlers, context)
|
|
570
554
|
end
|
|
571
555
|
|
|
@@ -63,7 +63,7 @@ module Aws::SSOOIDC
|
|
|
63
63
|
CreateTokenRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "clientId"))
|
|
64
64
|
CreateTokenRequest.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecret, required: true, location_name: "clientSecret"))
|
|
65
65
|
CreateTokenRequest.add_member(:grant_type, Shapes::ShapeRef.new(shape: GrantType, required: true, location_name: "grantType"))
|
|
66
|
-
CreateTokenRequest.add_member(:device_code, Shapes::ShapeRef.new(shape: DeviceCode,
|
|
66
|
+
CreateTokenRequest.add_member(:device_code, Shapes::ShapeRef.new(shape: DeviceCode, location_name: "deviceCode"))
|
|
67
67
|
CreateTokenRequest.add_member(:code, Shapes::ShapeRef.new(shape: AuthCode, location_name: "code"))
|
|
68
68
|
CreateTokenRequest.add_member(:refresh_token, Shapes::ShapeRef.new(shape: RefreshToken, location_name: "refreshToken"))
|
|
69
69
|
CreateTokenRequest.add_member(:scope, Shapes::ShapeRef.new(shape: Scopes, location_name: "scope"))
|
|
@@ -52,7 +52,7 @@ module Aws::SSOOIDC
|
|
|
52
52
|
# client_id: "ClientId", # required
|
|
53
53
|
# client_secret: "ClientSecret", # required
|
|
54
54
|
# grant_type: "GrantType", # required
|
|
55
|
-
# device_code: "DeviceCode",
|
|
55
|
+
# device_code: "DeviceCode",
|
|
56
56
|
# code: "AuthCode",
|
|
57
57
|
# refresh_token: "RefreshToken",
|
|
58
58
|
# scope: ["Scope"],
|
|
@@ -70,14 +70,8 @@ module Aws::SSOOIDC
|
|
|
70
70
|
# @return [String]
|
|
71
71
|
#
|
|
72
72
|
# @!attribute [rw] grant_type
|
|
73
|
-
# Supports grant types for
|
|
74
|
-
# device code request.
|
|
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.
|
|
73
|
+
# Supports grant types for authorization code, refresh token, and
|
|
74
|
+
# device code request.
|
|
81
75
|
# @return [String]
|
|
82
76
|
#
|
|
83
77
|
# @!attribute [rw] device_code
|
|
@@ -94,18 +88,9 @@ module Aws::SSOOIDC
|
|
|
94
88
|
# @return [String]
|
|
95
89
|
#
|
|
96
90
|
# @!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
|
-
#
|
|
103
91
|
# The token used to obtain an access token in the event that the
|
|
104
|
-
# access token is invalid or expired.
|
|
105
|
-
#
|
|
106
|
-
#
|
|
107
|
-
#
|
|
108
|
-
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
|
92
|
+
# access token is invalid or expired. This token is not issued by the
|
|
93
|
+
# service.
|
|
109
94
|
# @return [String]
|
|
110
95
|
#
|
|
111
96
|
# @!attribute [rw] scope
|
|
@@ -136,8 +121,7 @@ module Aws::SSOOIDC
|
|
|
136
121
|
end
|
|
137
122
|
|
|
138
123
|
# @!attribute [rw] access_token
|
|
139
|
-
# An opaque token to access
|
|
140
|
-
# to a user.
|
|
124
|
+
# An opaque token to access AWS SSO resources assigned to a user.
|
|
141
125
|
# @return [String]
|
|
142
126
|
#
|
|
143
127
|
# @!attribute [rw] token_type
|
|
@@ -150,33 +134,13 @@ module Aws::SSOOIDC
|
|
|
150
134
|
# @return [Integer]
|
|
151
135
|
#
|
|
152
136
|
# @!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
|
-
#
|
|
159
137
|
# A token that, if present, can be used to refresh a previously issued
|
|
160
138
|
# access token that might have expired.
|
|
161
|
-
#
|
|
162
|
-
#
|
|
163
|
-
#
|
|
164
|
-
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
|
165
139
|
# @return [String]
|
|
166
140
|
#
|
|
167
141
|
# @!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
|
-
#
|
|
174
142
|
# The identifier of the user that associated with the access token, if
|
|
175
143
|
# present.
|
|
176
|
-
#
|
|
177
|
-
#
|
|
178
|
-
#
|
|
179
|
-
# [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
|
|
180
144
|
# @return [String]
|
|
181
145
|
#
|
|
182
146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/CreateTokenResponse AWS API Documentation
|
|
@@ -421,8 +385,8 @@ module Aws::SSOOIDC
|
|
|
421
385
|
#
|
|
422
386
|
# @!attribute [rw] client_id
|
|
423
387
|
# The unique identifier string for the client that is registered with
|
|
424
|
-
#
|
|
425
|
-
#
|
|
388
|
+
# AWS SSO. This value should come from the persisted result of the
|
|
389
|
+
# RegisterClient API operation.
|
|
426
390
|
# @return [String]
|
|
427
391
|
#
|
|
428
392
|
# @!attribute [rw] client_secret
|
|
@@ -431,9 +395,8 @@ module Aws::SSOOIDC
|
|
|
431
395
|
# @return [String]
|
|
432
396
|
#
|
|
433
397
|
# @!attribute [rw] start_url
|
|
434
|
-
# The URL for the AWS
|
|
435
|
-
# the
|
|
436
|
-
# Guide*.
|
|
398
|
+
# The URL for the AWS SSO user portal. For more information, see
|
|
399
|
+
# [Using the User Portal][1] in the *AWS Single Sign-On User Guide*.
|
|
437
400
|
#
|
|
438
401
|
#
|
|
439
402
|
#
|
data/lib/aws-sdk-ssooidc.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -2299,7 +2299,7 @@ module Aws::STS
|
|
|
2299
2299
|
params: params,
|
|
2300
2300
|
config: config)
|
|
2301
2301
|
context[:gem_name] = 'aws-sdk-core'
|
|
2302
|
-
context[:gem_version] = '3.
|
|
2302
|
+
context[:gem_version] = '3.136.0'
|
|
2303
2303
|
Seahorse::Client::Request.new(handlers, context)
|
|
2304
2304
|
end
|
|
2305
2305
|
|
data/lib/aws-sdk-sts.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.136.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: 2022-08-
|
|
11
|
+
date: 2022-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|