aws-sdk-sqs 1.99.0 → 1.100.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: 4858c9ca1587088e4d3d9f1a5a7af4dafcf031f59300f9f7f8d49322a7b75c83
4
- data.tar.gz: 74f79dd3cae21efca973054c1d4a90702470b1b6fe0edca232ab35d606648459
3
+ metadata.gz: 95ade7d799cc3ecf24ffde396ab2dc4093349be131eab751276c0a3d7b983896
4
+ data.tar.gz: ef71f51a009e402eee6ef8c4ec09b279e54221f2843093845acdec030d997f20
5
5
  SHA512:
6
- metadata.gz: 3925aa88e3b93f83667cfec5add019b589507fc7a7348323e929ed2040e202532655b5ab8269cd138e0a81f751cf2ad72a5017c1ee58c4328e337b2c85d258f1
7
- data.tar.gz: 03e89bc45d695dd33571279057dc2e35ce5d90cd5b8f767d832241b0d37076daf5ab60e2795e0221db2eee8839912f628ad442b5a1113bb429a4c320cfd28a94
6
+ metadata.gz: ed293cd0890daa6edbb840adeefd8b4ab39b5632d2fd525f55486c18d45f6f8ea8feb79d9bee1f2f523cb69f23cac9bbbeb3b1cb5c1a80503ed7fc6ec547009d
7
+ data.tar.gz: e631f70e30660bd2568a95b365864540ee2f2a22e5ad8d93ff34d7b80b0bea2f361362a69bf031a509be5ddf079e8caebbc88d419aba6ac3214a2278d3b2d62d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.100.0 (2025-08-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.99.0 (2025-07-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.0
1
+ 1.100.0
@@ -99,8 +99,8 @@ 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 used for authentication. This can be an instance of any one of the
103
- # following classes:
102
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
103
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
104
104
  #
105
105
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
106
106
  # credentials.
@@ -128,8 +128,7 @@ module Aws::SQS
128
128
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
129
129
  # from the Cognito Identity service.
130
130
  #
131
- # When `:credentials` are not configured directly, the following
132
- # locations will be searched for credentials:
131
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
133
132
  #
134
133
  # * `Aws.config[:credentials]`
135
134
  #
@@ -143,12 +142,10 @@ module Aws::SQS
143
142
  #
144
143
  # * `~/.aws/config`
145
144
  #
146
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
147
- # are very aggressive. Construct and pass an instance of
148
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
149
- # enable retries and extended timeouts. Instance profile credential
150
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
151
- # to `true`.
145
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
146
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
147
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
148
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
152
149
  #
153
150
  # @option options [required, String] :region
154
151
  # The AWS region to connect to. The configured `:region` is
@@ -388,8 +385,8 @@ module Aws::SQS
388
385
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
389
386
  #
390
387
  # @option options [Aws::TokenProvider] :token_provider
391
- # Your Bearer token used for authentication. This can be an instance of any one of the
392
- # following classes:
388
+ # Your Bearer token used for authentication. This can be any class that includes and implements
389
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
393
390
  #
394
391
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
395
392
  # tokens.
@@ -2986,7 +2983,7 @@ module Aws::SQS
2986
2983
  tracer: tracer
2987
2984
  )
2988
2985
  context[:gem_name] = 'aws-sdk-sqs'
2989
- context[:gem_version] = '1.99.0'
2986
+ context[:gem_version] = '1.100.0'
2990
2987
  Seahorse::Client::Request.new(handlers, context)
2991
2988
  end
2992
2989
 
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.99.0'
59
+ GEM_VERSION = '1.100.0'
60
60
 
61
61
  end
62
62
 
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.99.0
4
+ version: 1.100.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services