aws-sdk-core 3.219.0 → 3.220.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: daacffffa5a66ef5ba66b2abdd92d47fc186f5bf55f9d2e0daf32f1769cd3976
4
- data.tar.gz: 98e54a35f69070132a9cbc14aab6d1e53b324e649bed80b5775c09b1c299de82
3
+ metadata.gz: 1f27ca30a27b9facf199f41e7e80e5b89582f87581d5e9d1f0c771e7a8a184fb
4
+ data.tar.gz: 80780457231b474d80999129e719103f0a7292f66154741861076234704a9e47
5
5
  SHA512:
6
- metadata.gz: 8357279c87cb3d8becf3a903242eb3c1d8dd2398a4ba2672265fbc77534e79abe32c080fe1481ae6211b564159d0a0afca6b45894a1bcc1975d13c76f1c3adf4
7
- data.tar.gz: 6d1c7706d7828fc2d0c977c8e33f0ae92a32995b9b7878fa9801f3cdc7265d4c2977a4399f2d9c7022d8b9d7ff909b46da8b7f1713e5301c4e4d769e6a015a43
6
+ metadata.gz: c53631e0e54859cee1281b03b355c9ae2c447836aa6a32f9f7756fc923e0f2d10149ed95e20877641baf60fdde8329734689ddfee7324d35517e414e2979130f
7
+ data.tar.gz: f1e1c011480a498d256410cf99294ad6f8b52061517c3785760cc741033948580c2a93e57c5be461133b23cdfaa11336ccb92fb85fbd6a62cd67a4c62ab7ee99
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.220.0 (2025-03-04)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::STS::Client with the latest API changes.
8
+
4
9
  3.219.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.219.0
1
+ 3.220.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.219.0'
695
+ context[:gem_version] = '3.220.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.219.0'
59
+ GEM_VERSION = '3.220.0'
60
60
 
61
61
  end
62
62
 
@@ -1051,7 +1051,7 @@ module Aws::SSOOIDC
1051
1051
  tracer: tracer
1052
1052
  )
1053
1053
  context[:gem_name] = 'aws-sdk-core'
1054
- context[:gem_version] = '3.219.0'
1054
+ context[:gem_version] = '3.220.0'
1055
1055
  Seahorse::Client::Request.new(handlers, context)
1056
1056
  end
1057
1057
 
@@ -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.219.0'
59
+ GEM_VERSION = '3.220.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.219.0'
2598
+ context[:gem_version] = '3.220.0'
2599
2599
  Seahorse::Client::Request.new(handlers, context)
2600
2600
  end
2601
2601
 
@@ -29,15 +29,21 @@ module Aws::STS
29
29
  # ## Error Classes
30
30
  # * {ExpiredTokenException}
31
31
  # * {IDPCommunicationErrorException}
32
+ # * This error class is not used. `IDPCommunicationError` is used during parsing instead.
32
33
  # * {IDPRejectedClaimException}
34
+ # * This error class is not used. `IDPRejectedClaim` is used during parsing instead.
33
35
  # * {InvalidAuthorizationMessageException}
34
36
  # * {InvalidIdentityTokenException}
37
+ # * This error class is not used. `InvalidIdentityToken` is used during parsing instead.
35
38
  # * {MalformedPolicyDocumentException}
39
+ # * This error class is not used. `MalformedPolicyDocument` is used during parsing instead.
36
40
  # * {PackedPolicyTooLargeException}
41
+ # * This error class is not used. `PackedPolicyTooLarge` is used during parsing instead.
37
42
  # * {RegionDisabledException}
38
43
  #
39
44
  # Additionally, error classes are dynamically generated for service errors based on the error code
40
45
  # if they are not defined above.
46
+ # Some existing error classes may use a different class name than the one documented.
41
47
  module Errors
42
48
 
43
49
  extend Aws::Errors::DynamicErrors
@@ -57,6 +63,8 @@ module Aws::STS
57
63
  end
58
64
  end
59
65
 
66
+ # @deprecated This error class is not used during parsing.
67
+ # Please use `IDPCommunicationError` instead.
60
68
  class IDPCommunicationErrorException < ServiceError
61
69
 
62
70
  # @param [Seahorse::Client::RequestContext] context
@@ -72,6 +80,8 @@ module Aws::STS
72
80
  end
73
81
  end
74
82
 
83
+ # @deprecated This error class is not used during parsing.
84
+ # Please use `IDPRejectedClaim` instead.
75
85
  class IDPRejectedClaimException < ServiceError
76
86
 
77
87
  # @param [Seahorse::Client::RequestContext] context
@@ -102,6 +112,8 @@ module Aws::STS
102
112
  end
103
113
  end
104
114
 
115
+ # @deprecated This error class is not used during parsing.
116
+ # Please use `InvalidIdentityToken` instead.
105
117
  class InvalidIdentityTokenException < ServiceError
106
118
 
107
119
  # @param [Seahorse::Client::RequestContext] context
@@ -117,6 +129,8 @@ module Aws::STS
117
129
  end
118
130
  end
119
131
 
132
+ # @deprecated This error class is not used during parsing.
133
+ # Please use `MalformedPolicyDocument` instead.
120
134
  class MalformedPolicyDocumentException < ServiceError
121
135
 
122
136
  # @param [Seahorse::Client::RequestContext] context
@@ -132,6 +146,8 @@ module Aws::STS
132
146
  end
133
147
  end
134
148
 
149
+ # @deprecated This error class is not used during parsing.
150
+ # Please use `PackedPolicyTooLarge` instead.
135
151
  class PackedPolicyTooLargeException < ServiceError
136
152
 
137
153
  # @param [Seahorse::Client::RequestContext] context
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.219.0'
59
+ GEM_VERSION = '3.220.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.219.0
4
+ version: 3.220.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-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-eventstream