aws-sdk-core 3.216.1 → 3.217.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: e17db88c7637dbd2cb5e476d83436eaa2c1ba7b4a6cd9f1ff9e46294215b77bd
4
- data.tar.gz: 63474c726714cacbc18ccb6a42038e6ff3e4c1b52bf1cbe03f8625e0b9a4c364
3
+ metadata.gz: 0d69c30847ca1ab026b4cd1ebc6f8aa452037d53cf18944c5a9b2e809bc22705
4
+ data.tar.gz: c5879a155441effb02965b96f0db25af0425888e5bac3b87efda1d3d16d05457
5
5
  SHA512:
6
- metadata.gz: acd0302b3bdc34a3b12bcd6085c4b845880954e0fa7a88b797da0bbe0259433250240aec8df6ff85bdc45176594d49e83f993ed1fe560fe54c942a16b72dc9fd
7
- data.tar.gz: 181a65b6677265e8eacc88b83b7f5e989a542d1f8971e6c8d5d2b47530b74bc2a097efd27edb2f155dc8877fe5a7b5616b9c192682fbe366019736a080122604
6
+ metadata.gz: 20b8d0eaea9e5db24d3a766c7c38628265a7c4690e816eea05eb30477e515005a43f91ada69c26271137f7d9d7f1c5f0f292443b80a706eece29f9b67bd8ee60
7
+ data.tar.gz: b6d7887ed9893431e0f2f165d9fc7bc2bfb223e5a08a9f87c55087c518b3d7dcfb732e902a1909ce872865a58e6b25c77cb2f994c3fe495ebec041480f06ea41
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.217.0 (2025-01-24)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
8
+
9
+ * Feature - Fixed typos in the descriptions.
10
+
4
11
  3.216.1 (2025-01-22)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.216.1
1
+ 3.217.0
@@ -692,7 +692,7 @@ module Aws::SSO
692
692
  tracer: tracer
693
693
  )
694
694
  context[:gem_name] = 'aws-sdk-core'
695
- context[:gem_version] = '3.216.1'
695
+ context[:gem_version] = '3.217.0'
696
696
  Seahorse::Client::Request.new(handlers, context)
697
697
  end
698
698
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SSO
56
56
  autoload :EndpointProvider, 'aws-sdk-sso/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sso/endpoints'
58
58
 
59
- GEM_VERSION = '3.216.1'
59
+ GEM_VERSION = '3.217.0'
60
60
 
61
61
  end
62
62
 
@@ -472,7 +472,7 @@ module Aws::SSOOIDC
472
472
 
473
473
  # Creates and returns access and refresh tokens for clients that are
474
474
  # authenticated using client secrets. The access token can be used to
475
- # fetch short-term credentials for the assigned AWS accounts or to
475
+ # fetch short-lived credentials for the assigned AWS accounts or to
476
476
  # access application APIs using `bearer` authentication.
477
477
  #
478
478
  # @option params [required, String] :client_id
@@ -484,30 +484,28 @@ module Aws::SSOOIDC
484
484
  # the persisted result of the RegisterClient API.
485
485
  #
486
486
  # @option params [required, String] :grant_type
487
- # Supports the following OAuth grant types: Device Code and Refresh
488
- # Token. Specify either of the following values, depending on the grant
489
- # type that you want:
487
+ # Supports the following OAuth grant types: Authorization Code, Device
488
+ # Code, and Refresh Token. Specify one of the following values,
489
+ # depending on the grant type that you want:
490
+ #
491
+ # * Authorization Code - `authorization_code`
490
492
  #
491
493
  # * Device Code - `urn:ietf:params:oauth:grant-type:device_code`
492
494
  #
493
495
  # * Refresh Token - `refresh_token`
494
496
  #
495
- # For information about how to obtain the device code, see the
496
- # StartDeviceAuthorization topic.
497
- #
498
497
  # @option params [String] :device_code
499
498
  # Used only when calling this API for the Device Code grant type. This
500
- # short-term code is used to identify this authorization request. This
499
+ # short-lived code is used to identify this authorization request. This
501
500
  # comes from the result of the StartDeviceAuthorization API.
502
501
  #
503
502
  # @option params [String] :code
504
503
  # Used only when calling this API for the Authorization Code grant type.
505
- # The short-term code is used to identify this authorization request.
506
- # This grant type is currently unsupported for the CreateToken API.
504
+ # The short-lived code is used to identify this authorization request.
507
505
  #
508
506
  # @option params [String] :refresh_token
509
507
  # Used only when calling this API for the Refresh Token grant type. This
510
- # token is used to refresh short-term tokens, such as the access token,
508
+ # token is used to refresh short-lived tokens, such as the access token,
511
509
  # that might expire.
512
510
  #
513
511
  # For more information about the features and limitations of the current
@@ -613,7 +611,7 @@ module Aws::SSOOIDC
613
611
 
614
612
  # Creates and returns access and refresh tokens for clients and
615
613
  # applications that are authenticated using IAM entities. The access
616
- # token can be used to fetch short-term credentials for the assigned
614
+ # token can be used to fetch short-lived credentials for the assigned
617
615
  # Amazon Web Services accounts or to access application APIs using
618
616
  # `bearer` authentication.
619
617
  #
@@ -636,14 +634,14 @@ module Aws::SSOOIDC
636
634
  #
637
635
  # @option params [String] :code
638
636
  # Used only when calling this API for the Authorization Code grant type.
639
- # This short-term code is used to identify this authorization request.
637
+ # This short-lived code is used to identify this authorization request.
640
638
  # The code is obtained through a redirect from IAM Identity Center to a
641
639
  # redirect URI persisted in the Authorization Code GrantOptions for the
642
640
  # application.
643
641
  #
644
642
  # @option params [String] :refresh_token
645
643
  # Used only when calling this API for the Refresh Token grant type. This
646
- # token is used to refresh short-term tokens, such as the access token,
644
+ # token is used to refresh short-lived tokens, such as the access token,
647
645
  # that might expire.
648
646
  #
649
647
  # For more information about the features and limitations of the current
@@ -846,9 +844,10 @@ module Aws::SSOOIDC
846
844
  req.send_request(options)
847
845
  end
848
846
 
849
- # Registers a client with IAM Identity Center. This allows clients to
850
- # initiate device authorization. The output should be persisted for
851
- # reuse through many authentication requests.
847
+ # Registers a public client with IAM Identity Center. This allows
848
+ # clients to perform authorization using the authorization
849
+ # code grant with Proof Key for Code Exchange (PKCE) or the device
850
+ # code grant.
852
851
  #
853
852
  # @option params [required, String] :client_name
854
853
  # The friendly name of the client.
@@ -870,7 +869,14 @@ module Aws::SSOOIDC
870
869
  # @option params [Array<String>] :grant_types
871
870
  # The list of OAuth 2.0 grant types that are defined by the client. This
872
871
  # list is used to restrict the token granting flows available to the
873
- # client.
872
+ # client. Supports the following OAuth 2.0 grant types: Authorization
873
+ # Code, Device Code, and Refresh Token.
874
+ #
875
+ # * Authorization Code - `authorization_code`
876
+ #
877
+ # * Device Code - `urn:ietf:params:oauth:grant-type:device_code`
878
+ #
879
+ # * Refresh Token - `refresh_token`
874
880
  #
875
881
  # @option params [String] :issuer_url
876
882
  # The IAM Identity Center Issuer URL associated with an instance of IAM
@@ -1045,7 +1051,7 @@ module Aws::SSOOIDC
1045
1051
  tracer: tracer
1046
1052
  )
1047
1053
  context[:gem_name] = 'aws-sdk-core'
1048
- context[:gem_version] = '3.216.1'
1054
+ context[:gem_version] = '3.217.0'
1049
1055
  Seahorse::Client::Request.new(handlers, context)
1050
1056
  end
1051
1057
 
@@ -64,34 +64,32 @@ module Aws::SSOOIDC
64
64
  # @return [String]
65
65
  #
66
66
  # @!attribute [rw] grant_type
67
- # Supports the following OAuth grant types: Device Code and Refresh
68
- # Token. Specify either of the following values, depending on the
69
- # grant type that you want:
67
+ # Supports the following OAuth grant types: Authorization Code, Device
68
+ # Code, and Refresh Token. Specify one of the following values,
69
+ # depending on the grant type that you want:
70
+ #
71
+ # * Authorization Code - `authorization_code`
70
72
  #
71
73
  # * Device Code - `urn:ietf:params:oauth:grant-type:device_code`
72
74
  #
73
75
  # * Refresh Token - `refresh_token`
74
- #
75
- # For information about how to obtain the device code, see the
76
- # StartDeviceAuthorization topic.
77
76
  # @return [String]
78
77
  #
79
78
  # @!attribute [rw] device_code
80
79
  # Used only when calling this API for the Device Code grant type. This
81
- # short-term code is used to identify this authorization request. This
82
- # comes from the result of the StartDeviceAuthorization API.
80
+ # short-lived code is used to identify this authorization request.
81
+ # This comes from the result of the StartDeviceAuthorization API.
83
82
  # @return [String]
84
83
  #
85
84
  # @!attribute [rw] code
86
85
  # Used only when calling this API for the Authorization Code grant
87
- # type. The short-term code is used to identify this authorization
88
- # request. This grant type is currently unsupported for the
89
- # CreateToken API.
86
+ # type. The short-lived code is used to identify this authorization
87
+ # request.
90
88
  # @return [String]
91
89
  #
92
90
  # @!attribute [rw] refresh_token
93
91
  # Used only when calling this API for the Refresh Token grant type.
94
- # This token is used to refresh short-term tokens, such as the access
92
+ # This token is used to refresh short-lived tokens, such as the access
95
93
  # token, that might expire.
96
94
  #
97
95
  # For more information about the features and limitations of the
@@ -217,7 +215,7 @@ module Aws::SSOOIDC
217
215
  #
218
216
  # @!attribute [rw] code
219
217
  # Used only when calling this API for the Authorization Code grant
220
- # type. This short-term code is used to identify this authorization
218
+ # type. This short-lived code is used to identify this authorization
221
219
  # request. The code is obtained through a redirect from IAM Identity
222
220
  # Center to a redirect URI persisted in the Authorization Code
223
221
  # GrantOptions for the application.
@@ -225,7 +223,7 @@ module Aws::SSOOIDC
225
223
  #
226
224
  # @!attribute [rw] refresh_token
227
225
  # Used only when calling this API for the Refresh Token grant type.
228
- # This token is used to refresh short-term tokens, such as the access
226
+ # This token is used to refresh short-lived tokens, such as the access
229
227
  # token, that might expire.
230
228
  #
231
229
  # For more information about the features and limitations of the
@@ -606,7 +604,14 @@ module Aws::SSOOIDC
606
604
  # @!attribute [rw] grant_types
607
605
  # The list of OAuth 2.0 grant types that are defined by the client.
608
606
  # This list is used to restrict the token granting flows available to
609
- # the client.
607
+ # the client. Supports the following OAuth 2.0 grant types:
608
+ # Authorization Code, Device Code, and Refresh Token.
609
+ #
610
+ # * Authorization Code - `authorization_code`
611
+ #
612
+ # * Device Code - `urn:ietf:params:oauth:grant-type:device_code`
613
+ #
614
+ # * Refresh Token - `refresh_token`
610
615
  # @return [Array<String>]
611
616
  #
612
617
  # @!attribute [rw] issuer_url
@@ -56,7 +56,7 @@ module Aws::SSOOIDC
56
56
  autoload :EndpointProvider, 'aws-sdk-ssooidc/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-ssooidc/endpoints'
58
58
 
59
- GEM_VERSION = '3.216.1'
59
+ GEM_VERSION = '3.217.0'
60
60
 
61
61
  end
62
62
 
@@ -2595,7 +2595,7 @@ module Aws::STS
2595
2595
  tracer: tracer
2596
2596
  )
2597
2597
  context[:gem_name] = 'aws-sdk-core'
2598
- context[:gem_version] = '3.216.1'
2598
+ context[:gem_version] = '3.217.0'
2599
2599
  Seahorse::Client::Request.new(handlers, context)
2600
2600
  end
2601
2601
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::STS
56
56
  autoload :EndpointProvider, 'aws-sdk-sts/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sts/endpoints'
58
58
 
59
- GEM_VERSION = '3.216.1'
59
+ GEM_VERSION = '3.217.0'
60
60
 
61
61
  end
62
62
 
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.216.1
4
+ version: 3.217.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: 2025-01-22 00:00:00.000000000 Z
11
+ date: 2025-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath