aws-sdk-sqs 1.96.0 → 1.97.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: '0494d7128b289060153d691c7da97ca705346988a2a00d668daee9b83e24d626'
4
- data.tar.gz: 4ba8d8089f89480be76dedc0c099caaeeb64a6e27bb92a488c5c18d5752ef8c0
3
+ metadata.gz: 00146bb5c45eddd10bcf9b05244550106c644279bee9379494ec9105402101e8
4
+ data.tar.gz: f32f0152a635f4352df84db64c703a8e96c0c6f2850a41c46644ae83f3a8632f
5
5
  SHA512:
6
- metadata.gz: be8a1c0f2796059f11c3e490e5941acb569615362062e8fc2f3ceb24be84c8250cd673032c7cb1b78e4ee968f85c708461bdf401ede1d7ff0e98d1986dd0df43
7
- data.tar.gz: 5444271db8476872dac4bf25d640fdd5f077710d396c553186de63e6e29e0d142aafe16a387c12877bc0dfa92f0d1f5f6ad989016aab088280a8e30ab70c4407
6
+ metadata.gz: b68d4a6c319b672fde5be8d839324002c53ef87de2ab9dd7a4942e8f263b03d7aaa7fe4f663e82dc98f98c06fed474f8e9c590fc4a766e24e9a3cee325569da4
7
+ data.tar.gz: 73bd26aaaec1efff73d5d36b67a200d32f43c19141ded10277606258f8946280186e3cc4fef2c30e86b580a2b8d94b209c178a4bd318af8fa25d5b72a1c28b7e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.96.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.97.0
@@ -99,7 +99,7 @@ module Aws::SQS
99
99
  # class name or an instance of a plugin class.
100
100
  #
101
101
  # @option options [required, Aws::CredentialProvider] :credentials
102
- # Your AWS credentials. This can be an instance of any one of the
102
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
103
103
  # following classes:
104
104
  #
105
105
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -132,18 +132,23 @@ module Aws::SQS
132
132
  # locations will be searched for credentials:
133
133
  #
134
134
  # * `Aws.config[:credentials]`
135
+ #
135
136
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
136
137
  # `:account_id` options.
137
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
138
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
138
+ #
139
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
140
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
141
+ #
139
142
  # * `~/.aws/credentials`
143
+ #
140
144
  # * `~/.aws/config`
145
+ #
141
146
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
142
147
  # are very aggressive. Construct and pass an instance of
143
148
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
144
149
  # enable retries and extended timeouts. Instance profile credential
145
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
146
- # to true.
150
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
151
+ # to `true`.
147
152
  #
148
153
  # @option options [required, String] :region
149
154
  # The AWS region to connect to. The configured `:region` is
@@ -171,6 +176,11 @@ module Aws::SQS
171
176
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
172
177
  # not retry instead of sleeping.
173
178
  #
179
+ # @option options [Array<String>] :auth_scheme_preference
180
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
181
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
182
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
183
+ #
174
184
  # @option options [Boolean] :client_side_monitoring (false)
175
185
  # When `true`, client-side metrics will be collected for all API requests from
176
186
  # this client.
@@ -257,8 +267,8 @@ module Aws::SQS
257
267
  # 4 times. Used in `standard` and `adaptive` retry modes.
258
268
  #
259
269
  # @option options [String] :profile ("default")
260
- # Used when loading credentials from the shared credentials file
261
- # at HOME/.aws/credentials. When not specified, 'default' is used.
270
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
271
+ # When not specified, 'default' is used.
262
272
  #
263
273
  # @option options [String] :request_checksum_calculation ("when_supported")
264
274
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -378,7 +388,7 @@ module Aws::SQS
378
388
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
379
389
  #
380
390
  # @option options [Aws::TokenProvider] :token_provider
381
- # A Bearer Token Provider. This can be an instance of any one of the
391
+ # Your Bearer token used for authentication. This can be an instance of any one of the
382
392
  # following classes:
383
393
  #
384
394
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -2957,7 +2967,7 @@ module Aws::SQS
2957
2967
  tracer: tracer
2958
2968
  )
2959
2969
  context[:gem_name] = 'aws-sdk-sqs'
2960
- context[:gem_version] = '1.96.0'
2970
+ context[:gem_version] = '1.97.0'
2961
2971
  Seahorse::Client::Request.new(handlers, context)
2962
2972
  end
2963
2973
 
data/lib/aws-sdk-sqs.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SQS
56
56
  autoload :Message, 'aws-sdk-sqs/message'
57
57
  autoload :Queue, 'aws-sdk-sqs/queue'
58
58
 
59
- GEM_VERSION = '1.96.0'
59
+ GEM_VERSION = '1.97.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.96.0
4
+ version: 1.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement