aws-sdk-cloudsearchdomain 1.58.0 → 1.59.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-cloudsearchdomain/client.rb +19 -9
- data/lib/aws-sdk-cloudsearchdomain.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee7c37464c23e80fc8767a95d32c1ef4e1ebab559f85a1737b32d714d61f14bb
|
4
|
+
data.tar.gz: 38f1e5c23248f4a38bf3e0ac434310505be498013b4524328a5d834fa6c61ed2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70288aadecd9365aad08395f5f2ce3ffd8fc256e0c5cd68bc4cb25a8cd1f93cac110b3f6b22f229dee54568a2295b9997143ac1e5fef0f1310abb9ea51c2d8a4
|
7
|
+
data.tar.gz: ec06b96ed19e09f81d0004f954c36c5e3d0c2ada1695b4f5654a1ad9005992a273ae04afc121d053c152ae7da672eb60aafba71b61c86539c10197ce9800bea3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
@@ -92,7 +92,7 @@ module Aws::CloudSearchDomain
|
|
92
92
|
# class name or an instance of a plugin class.
|
93
93
|
#
|
94
94
|
# @option options [required, Aws::CredentialProvider] :credentials
|
95
|
-
# Your AWS credentials. This can be an instance of any one of the
|
95
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
96
96
|
# following classes:
|
97
97
|
#
|
98
98
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -125,18 +125,23 @@ module Aws::CloudSearchDomain
|
|
125
125
|
# locations will be searched for credentials:
|
126
126
|
#
|
127
127
|
# * `Aws.config[:credentials]`
|
128
|
+
#
|
128
129
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
129
130
|
# `:account_id` options.
|
130
|
-
#
|
131
|
-
#
|
131
|
+
#
|
132
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
133
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
134
|
+
#
|
132
135
|
# * `~/.aws/credentials`
|
136
|
+
#
|
133
137
|
# * `~/.aws/config`
|
138
|
+
#
|
134
139
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
135
140
|
# are very aggressive. Construct and pass an instance of
|
136
141
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
137
142
|
# enable retries and extended timeouts. Instance profile credential
|
138
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
139
|
-
# to true
|
143
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
144
|
+
# to `true`.
|
140
145
|
#
|
141
146
|
# @option options [String] :access_key_id
|
142
147
|
#
|
@@ -148,6 +153,11 @@ module Aws::CloudSearchDomain
|
|
148
153
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
149
154
|
# not retry instead of sleeping.
|
150
155
|
#
|
156
|
+
# @option options [Array<String>] :auth_scheme_preference
|
157
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
158
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
159
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
160
|
+
#
|
151
161
|
# @option options [Boolean] :client_side_monitoring (false)
|
152
162
|
# When `true`, client-side metrics will be collected for all API requests from
|
153
163
|
# this client.
|
@@ -201,8 +211,8 @@ module Aws::CloudSearchDomain
|
|
201
211
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
202
212
|
#
|
203
213
|
# @option options [String] :profile ("default")
|
204
|
-
# Used when loading credentials from the shared credentials file
|
205
|
-
#
|
214
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
215
|
+
# When not specified, 'default' is used.
|
206
216
|
#
|
207
217
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
208
218
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -310,7 +320,7 @@ module Aws::CloudSearchDomain
|
|
310
320
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
311
321
|
#
|
312
322
|
# @option options [Aws::TokenProvider] :token_provider
|
313
|
-
#
|
323
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
314
324
|
# following classes:
|
315
325
|
#
|
316
326
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1013,7 +1023,7 @@ module Aws::CloudSearchDomain
|
|
1013
1023
|
tracer: tracer
|
1014
1024
|
)
|
1015
1025
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
1016
|
-
context[:gem_version] = '1.
|
1026
|
+
context[:gem_version] = '1.59.0'
|
1017
1027
|
Seahorse::Client::Request.new(handlers, context)
|
1018
1028
|
end
|
1019
1029
|
|
data/sig/client.rbs
CHANGED
@@ -16,6 +16,7 @@ module Aws
|
|
16
16
|
?access_key_id: String,
|
17
17
|
?account_id: String,
|
18
18
|
?adaptive_retry_wait_to_fill: bool,
|
19
|
+
?auth_scheme_preference: Array[String],
|
19
20
|
?client_side_monitoring: bool,
|
20
21
|
?client_side_monitoring_client_id: String,
|
21
22
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -16,6 +16,7 @@ module Aws
|
|
16
16
|
?access_key_id: String,
|
17
17
|
?account_id: String,
|
18
18
|
?adaptive_retry_wait_to_fill: bool,
|
19
|
+
?auth_scheme_preference: Array[String],
|
19
20
|
?client_side_monitoring: bool,
|
20
21
|
?client_side_monitoring_client_id: String,
|
21
22
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudsearchdomain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.59.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.
|
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.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|