aws-sdk-core 3.135.0 → 3.138.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
2
  SHA256:
3
- metadata.gz: fcc7951c4e3d3604c6f2639fbe58eab215a1928c2cbfeb844bc68b4f66179c7d
4
- data.tar.gz: 5512c7201b28918e0731d54d90951ef5cef135b92dec88bac86e86d2ef9eccb6
3
+ metadata.gz: 40bf56c41844456e93485f57aeac3218f3dc3306cbb5baa9dae5efc08d2df8eb
4
+ data.tar.gz: 423d5182353bc5d300f1616201d90679d8445b134e4db99055f28058c54a4765
5
5
  SHA512:
6
- metadata.gz: 7bf9f3170508b08f932d2230981f2e984e299252738db8dcc7e481a89abf0b72f917699577d467dc2f0dfeee67fa7fad4e012cb594a4eb4071229a013d39f576
7
- data.tar.gz: 3e94fdd0a8c1e7b35b88a13894ff4ef335db644844153564cab2d340fde077768196a56470f8f547ba5b142eed641690d48d95a80eeece293ba657ce15700065
6
+ metadata.gz: ce980d0b6972e991d49c7be8364ea46654b1656afd7f7ffc70778b8ff51d087a50fdf2677f58f3a586a72eb476848ae3e8a17edf3262dbfd5da74867b53ff2d6
7
+ data.tar.gz: 021a8295266f8a8bcf1320ba1d9b53f1be884b8bc254ab7f134ab88442e466b5fc8cf2277c003e39a12da48b22170a74511adfe7c6b5158878eb0ef445f0d4df
data/CHANGELOG.md CHANGED
@@ -1,6 +1,23 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.138.0 (2022-08-31)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
8
+
9
+ 3.137.0 (2022-08-30)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
13
+
14
+ * Issue - Fix errors in recursion detection when `_X_AMZN_TRACE_ID` is unset (#2748).
15
+
16
+ 3.136.0 (2022-08-25)
17
+ ------------------
18
+
19
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
20
+
4
21
  3.135.0 (2022-08-24)
5
22
  ------------------
6
23
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.135.0
1
+ 3.138.0
@@ -20,6 +20,8 @@ module Aws
20
20
 
21
21
  private
22
22
  def validate_header(header_value)
23
+ return unless header_value
24
+
23
25
  if (header_value.chars & (0..31).map(&:chr)).any?
24
26
  raise ArgumentError, 'Invalid _X_AMZN_TRACE_ID value: '\
25
27
  'contains ASCII control characters'
@@ -358,13 +358,12 @@ module Aws::SSO
358
358
  # The friendly name of the role that is assigned to the user.
359
359
  #
360
360
  # @option params [required, String] :account_id
361
- # The identifier for the Amazon Web Services account that is assigned to
362
- # the user.
361
+ # The identifier for the AWS account that is assigned to the user.
363
362
  #
364
363
  # @option params [required, String] :access_token
365
364
  # The token issued by the `CreateToken` API call. For more information,
366
- # see [CreateToken][1] in the *Amazon Web Services SSO OIDC API
367
- # Reference Guide*.
365
+ # see [CreateToken][1] in the *IAM Identity Center OIDC API Reference
366
+ # Guide*.
368
367
  #
369
368
  #
370
369
  #
@@ -398,8 +397,7 @@ module Aws::SSO
398
397
  req.send_request(options)
399
398
  end
400
399
 
401
- # Lists all roles that are assigned to the user for a given Amazon Web
402
- # Services account.
400
+ # Lists all roles that are assigned to the user for a given AWS account.
403
401
  #
404
402
  # @option params [String] :next_token
405
403
  # The page token from the previous response output when you request
@@ -410,16 +408,15 @@ module Aws::SSO
410
408
  #
411
409
  # @option params [required, String] :access_token
412
410
  # The token issued by the `CreateToken` API call. For more information,
413
- # see [CreateToken][1] in the *Amazon Web Services SSO OIDC API
414
- # Reference Guide*.
411
+ # see [CreateToken][1] in the *IAM Identity Center OIDC API Reference
412
+ # Guide*.
415
413
  #
416
414
  #
417
415
  #
418
416
  # [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html
419
417
  #
420
418
  # @option params [required, String] :account_id
421
- # The identifier for the Amazon Web Services account that is assigned to
422
- # the user.
419
+ # The identifier for the AWS account that is assigned to the user.
423
420
  #
424
421
  # @return [Types::ListAccountRolesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
425
422
  #
@@ -453,11 +450,10 @@ module Aws::SSO
453
450
  req.send_request(options)
454
451
  end
455
452
 
456
- # Lists all Amazon Web Services accounts assigned to the user. These
457
- # Amazon Web Services accounts are assigned by the administrator of the
458
- # account. For more information, see [Assign User Access][1] in the
459
- # *Amazon Web Services SSO User Guide*. This operation returns a
460
- # paginated response.
453
+ # Lists all AWS accounts assigned to the user. These AWS accounts are
454
+ # assigned by the administrator of the account. For more information,
455
+ # see [Assign User Access][1] in the *IAM Identity Center User Guide*.
456
+ # This operation returns a paginated response.
461
457
  #
462
458
  #
463
459
  #
@@ -472,8 +468,8 @@ module Aws::SSO
472
468
  #
473
469
  # @option params [required, String] :access_token
474
470
  # The token issued by the `CreateToken` API call. For more information,
475
- # see [CreateToken][1] in the *Amazon Web Services SSO OIDC API
476
- # Reference Guide*.
471
+ # see [CreateToken][1] in the *IAM Identity Center OIDC API Reference
472
+ # Guide*.
477
473
  #
478
474
  #
479
475
  #
@@ -512,21 +508,20 @@ module Aws::SSO
512
508
  end
513
509
 
514
510
  # Removes the locally stored SSO tokens from the client-side cache and
515
- # sends an API call to the Amazon Web Services SSO service to invalidate
516
- # the corresponding server-side Amazon Web Services SSO sign in session.
511
+ # sends an API call to the IAM Identity Center service to invalidate the
512
+ # corresponding server-side IAM Identity Center sign in session.
517
513
  #
518
- # <note markdown="1"> If a user uses Amazon Web Services SSO to access the AWS CLI, the
519
- # user’s Amazon Web Services SSO sign in session is used to obtain an
520
- # IAM session, as specified in the corresponding Amazon Web Services SSO
521
- # permission set. More specifically, Amazon Web Services SSO assumes an
522
- # IAM role in the target account on behalf of the user, and the
523
- # corresponding temporary Amazon Web Services credentials are returned
524
- # to the client.
514
+ # <note markdown="1"> If a user uses IAM Identity Center to access the AWS CLI, the user’s
515
+ # IAM Identity Center sign in session is used to obtain an IAM session,
516
+ # as specified in the corresponding IAM Identity Center permission set.
517
+ # More specifically, IAM Identity Center assumes an IAM role in the
518
+ # target account on behalf of the user, and the corresponding temporary
519
+ # AWS credentials are returned to the client.
525
520
  #
526
521
  # After user logout, any existing IAM role sessions that were created by
527
- # using Amazon Web Services SSO permission sets continue based on the
522
+ # using IAM Identity Center permission sets continue based on the
528
523
  # duration configured in the permission set. For more information, see
529
- # [User authentications][1] in the *Amazon Web Services SSO User Guide*.
524
+ # [User authentications][1] in the *IAM Identity Center User Guide*.
530
525
  #
531
526
  # </note>
532
527
  #
@@ -536,8 +531,8 @@ module Aws::SSO
536
531
  #
537
532
  # @option params [required, String] :access_token
538
533
  # The token issued by the `CreateToken` API call. For more information,
539
- # see [CreateToken][1] in the *Amazon Web Services SSO OIDC API
540
- # Reference Guide*.
534
+ # see [CreateToken][1] in the *IAM Identity Center OIDC API Reference
535
+ # Guide*.
541
536
  #
542
537
  #
543
538
  #
@@ -573,7 +568,7 @@ module Aws::SSO
573
568
  params: params,
574
569
  config: config)
575
570
  context[:gem_name] = 'aws-sdk-core'
576
- context[:gem_version] = '3.135.0'
571
+ context[:gem_version] = '3.138.0'
577
572
  Seahorse::Client::Request.new(handlers, context)
578
573
  end
579
574
 
@@ -10,21 +10,18 @@
10
10
  module Aws::SSO
11
11
  module Types
12
12
 
13
- # Provides information about your Amazon Web Services account.
13
+ # Provides information about your AWS account.
14
14
  #
15
15
  # @!attribute [rw] account_id
16
- # The identifier of the Amazon Web Services account that is assigned
17
- # to the user.
16
+ # The identifier of the AWS account that is assigned to the user.
18
17
  # @return [String]
19
18
  #
20
19
  # @!attribute [rw] account_name
21
- # The display name of the Amazon Web Services account that is assigned
22
- # to the user.
20
+ # The display name of the AWS account that is assigned to the user.
23
21
  # @return [String]
24
22
  #
25
23
  # @!attribute [rw] email_address
26
- # The email address of the Amazon Web Services account that is
27
- # assigned to the user.
24
+ # The email address of the AWS account that is assigned to the user.
28
25
  # @return [String]
29
26
  #
30
27
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-2019-06-10/AccountInfo AWS API Documentation
@@ -51,14 +48,13 @@ module Aws::SSO
51
48
  # @return [String]
52
49
  #
53
50
  # @!attribute [rw] account_id
54
- # The identifier for the Amazon Web Services account that is assigned
55
- # to the user.
51
+ # The identifier for the AWS account that is assigned to the user.
56
52
  # @return [String]
57
53
  #
58
54
  # @!attribute [rw] access_token
59
55
  # The token issued by the `CreateToken` API call. For more
60
- # information, see [CreateToken][1] in the *Amazon Web Services SSO
61
- # OIDC API Reference Guide*.
56
+ # information, see [CreateToken][1] in the *IAM Identity Center OIDC
57
+ # API Reference Guide*.
62
58
  #
63
59
  #
64
60
  #
@@ -122,8 +118,8 @@ module Aws::SSO
122
118
  #
123
119
  # @!attribute [rw] access_token
124
120
  # The token issued by the `CreateToken` API call. For more
125
- # information, see [CreateToken][1] in the *Amazon Web Services SSO
126
- # OIDC API Reference Guide*.
121
+ # information, see [CreateToken][1] in the *IAM Identity Center OIDC
122
+ # API Reference Guide*.
127
123
  #
128
124
  #
129
125
  #
@@ -131,8 +127,7 @@ module Aws::SSO
131
127
  # @return [String]
132
128
  #
133
129
  # @!attribute [rw] account_id
134
- # The identifier for the Amazon Web Services account that is assigned
135
- # to the user.
130
+ # The identifier for the AWS account that is assigned to the user.
136
131
  # @return [String]
137
132
  #
138
133
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-2019-06-10/ListAccountRolesRequest AWS API Documentation
@@ -184,8 +179,8 @@ module Aws::SSO
184
179
  #
185
180
  # @!attribute [rw] access_token
186
181
  # The token issued by the `CreateToken` API call. For more
187
- # information, see [CreateToken][1] in the *Amazon Web Services SSO
188
- # OIDC API Reference Guide*.
182
+ # information, see [CreateToken][1] in the *IAM Identity Center OIDC
183
+ # API Reference Guide*.
189
184
  #
190
185
  #
191
186
  #
@@ -229,8 +224,8 @@ module Aws::SSO
229
224
  #
230
225
  # @!attribute [rw] access_token
231
226
  # The token issued by the `CreateToken` API call. For more
232
- # information, see [CreateToken][1] in the *Amazon Web Services SSO
233
- # OIDC API Reference Guide*.
227
+ # information, see [CreateToken][1] in the *IAM Identity Center OIDC
228
+ # API Reference Guide*.
234
229
  #
235
230
  #
236
231
  #
@@ -264,8 +259,7 @@ module Aws::SSO
264
259
  # @!attribute [rw] access_key_id
265
260
  # The identifier used for the temporary security credentials. For more
266
261
  # information, see [Using Temporary Security Credentials to Request
267
- # Access to Amazon Web Services Resources][1] in the *Amazon Web
268
- # Services IAM User Guide*.
262
+ # Access to AWS Resources][1] in the *AWS IAM User Guide*.
269
263
  #
270
264
  #
271
265
  #
@@ -274,9 +268,8 @@ module Aws::SSO
274
268
  #
275
269
  # @!attribute [rw] secret_access_key
276
270
  # The key that is used to sign the request. For more information, see
277
- # [Using Temporary Security Credentials to Request Access to Amazon
278
- # Web Services Resources][1] in the *Amazon Web Services IAM User
279
- # Guide*.
271
+ # [Using Temporary Security Credentials to Request Access to AWS
272
+ # Resources][1] in the *AWS IAM User Guide*.
280
273
  #
281
274
  #
282
275
  #
@@ -285,9 +278,8 @@ module Aws::SSO
285
278
  #
286
279
  # @!attribute [rw] session_token
287
280
  # The token used for temporary credentials. For more information, see
288
- # [Using Temporary Security Credentials to Request Access to Amazon
289
- # Web Services Resources][1] in the *Amazon Web Services IAM User
290
- # Guide*.
281
+ # [Using Temporary Security Credentials to Request Access to AWS
282
+ # Resources][1] in the *AWS IAM User Guide*.
291
283
  #
292
284
  #
293
285
  #
@@ -316,8 +308,7 @@ module Aws::SSO
316
308
  # @return [String]
317
309
  #
318
310
  # @!attribute [rw] account_id
319
- # The identifier of the Amazon Web Services account assigned to the
320
- # user.
311
+ # The identifier of the AWS account assigned to the user.
321
312
  # @return [String]
322
313
  #
323
314
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-2019-06-10/RoleInfo AWS API Documentation
data/lib/aws-sdk-sso.rb CHANGED
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-sso/customizations'
50
50
  # @!group service
51
51
  module Aws::SSO
52
52
 
53
- GEM_VERSION = '3.135.0'
53
+ GEM_VERSION = '3.138.0'
54
54
 
55
55
  end
@@ -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 Amazon Web Services account.
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 the authorization code, refresh token, and
368
- # device code request. For device code requests, specify the following
369
- # value:
367
+ # Supports grant types for authorization code, refresh token, and device
368
+ # code request.
370
369
  #
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.
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", # required
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 Amazon Web Services SSO. This allows clients
450
- # to initiate device authorization. The output should be persisted for
451
- # reuse through many authentication requests.
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
- # Amazon Web Services SSO. This value should come from the persisted
506
- # result of the RegisterClient API operation.
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 access portal. For more information, see [Using
514
- # the AWS access portal][1] in the *Amazon Web Services SSO User Guide*.
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.134.0'
552
+ context[:gem_version] = '3.137.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, required: true, location_name: "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", # required
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 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.
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 Amazon Web Services SSO resources assigned
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
- # Amazon Web Services SSO. This value should come from the persisted
425
- # result of the RegisterClient API operation.
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 access portal. For more information, see [Using
435
- # the AWS access portal][1] in the *Amazon Web Services SSO User
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
  #
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-ssooidc/customizations'
50
50
  # @!group service
51
51
  module Aws::SSOOIDC
52
52
 
53
- GEM_VERSION = '3.134.0'
53
+ GEM_VERSION = '3.137.0'
54
54
 
55
55
  end
@@ -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.135.0'
2302
+ context[:gem_version] = '3.138.0'
2303
2303
  Seahorse::Client::Request.new(handlers, context)
2304
2304
  end
2305
2305
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-sts/customizations'
50
50
  # @!group service
51
51
  module Aws::STS
52
52
 
53
- GEM_VERSION = '3.135.0'
53
+ GEM_VERSION = '3.138.0'
54
54
 
55
55
  end
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.135.0
4
+ version: 3.138.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-24 00:00:00.000000000 Z
11
+ date: 2022-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath