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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sqs/client.rb +10 -13
- data/lib/aws-sdk-sqs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95ade7d799cc3ecf24ffde396ab2dc4093349be131eab751276c0a3d7b983896
|
4
|
+
data.tar.gz: ef71f51a009e402eee6ef8c4ec09b279e54221f2843093845acdec030d997f20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed293cd0890daa6edbb840adeefd8b4ab39b5632d2fd525f55486c18d45f6f8ea8feb79d9bee1f2f523cb69f23cac9bbbeb3b1cb5c1a80503ed7fc6ec547009d
|
7
|
+
data.tar.gz: e631f70e30660bd2568a95b365864540ee2f2a22e5ad8d93ff34d7b80b0bea2f361362a69bf031a509be5ddf079e8caebbc88d419aba6ac3214a2278d3b2d62d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.100.0
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -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
|
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
|
-
#
|
148
|
-
#
|
149
|
-
#
|
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
|
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.
|
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