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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e551a51437cba23bc6bc4de7bcca0b78b1ef2914adf5a4f7bd8459eb068e5572
4
- data.tar.gz: c2390899ec16564e1485b84fdff11395f7846329253e79531bd8dabec9e692c7
3
+ metadata.gz: ee7c37464c23e80fc8767a95d32c1ef4e1ebab559f85a1737b32d714d61f14bb
4
+ data.tar.gz: 38f1e5c23248f4a38bf3e0ac434310505be498013b4524328a5d834fa6c61ed2
5
5
  SHA512:
6
- metadata.gz: 7973485cdeb508335026f790b067feb1e41494047ba23d2e43a4b0af396cfc1fe1af72389da098a51833f494a1c0c2305563e51f8a94f462162dd30c55e10a41
7
- data.tar.gz: 59ad2a60ba2014a34743de4f90231c686b4a10163dc6f46a7079ac0e0c12d7dcfae709774f92cd384316ec34d3b8cb6f955cd4bc2d0e940c4c8b5a206d951df4
6
+ metadata.gz: 70288aadecd9365aad08395f5f2ce3ffd8fc256e0c5cd68bc4cb25a8cd1f93cac110b3f6b22f229dee54568a2295b9997143ac1e5fef0f1310abb9ea51c2d8a4
7
+ data.tar.gz: ec06b96ed19e09f81d0004f954c36c5e3d0c2ada1695b4f5654a1ad9005992a273ae04afc121d053c152ae7da672eb60aafba71b61c86539c10197ce9800bea3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.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.58.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
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
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
131
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
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
- # at HOME/.aws/credentials. When not specified, 'default' is used.
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
- # A Bearer Token Provider. This can be an instance of any one of the
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.58.0'
1026
+ context[:gem_version] = '1.59.0'
1017
1027
  Seahorse::Client::Request.new(handlers, context)
1018
1028
  end
1019
1029
 
@@ -48,7 +48,7 @@ module Aws::CloudSearchDomain
48
48
  autoload :Errors, 'aws-sdk-cloudsearchdomain/errors'
49
49
  autoload :Resource, 'aws-sdk-cloudsearchdomain/resource'
50
50
 
51
- GEM_VERSION = '1.58.0'
51
+ GEM_VERSION = '1.59.0'
52
52
 
53
53
  end
54
54
 
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.58.0
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.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