aws-sdk-cloudsearchdomain 1.40.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08c7ff058cf4cb6e421f7050a7fcc247d5f54c02e2bc5b7f9d6139b6bf55eef6'
4
- data.tar.gz: e016ce03fac23fb37c07142a8aae48abc0eda3281250f5a3cdfbfec018e06628
3
+ metadata.gz: ae96e3ff6a0af202d30eb11bdfde09e67cfdfdf76f03e96371d23b850d050991
4
+ data.tar.gz: 5f02aa29297b5ba7dd6423a14778c77affa128f612fa21cebec73fcc08954cc5
5
5
  SHA512:
6
- metadata.gz: 3eda784e65db80cc1aed785200f48e735d002b4edc0692874c0d7ac66da3f6316e4611d26dff027f60313e4f5542c046dbb670a138627fa3c0469d500f98c8fa
7
- data.tar.gz: 4a6d96a20e1c39ffc818bfc2502cd1ac8f8eb0eadc59df8d532c8e76599160b406cf9adeead25f64fa4d27b59683ea4e7329b4600de5af91a1251d4ba8084494
6
+ metadata.gz: a1bad10ba1eb7bad4fbcc0a9458b96c7dac4d6277883b42d29773d3873b325cb6b917e843d8aba9ab5e3027e2bba01cab3d9bc20b9806817dceb07b7f721adea
7
+ data.tar.gz: 59ce0a29c0014190ee0ba8895023aeb11e86422ba0815c142c69c748eade59b7cbd712315f8f3a47a15ad116db9f6b734c733472765b71546be88418884e115d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2024-05-13)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.40.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.0
@@ -19,6 +19,7 @@ require 'aws-sdk-core/plugins/global_configuration.rb'
19
19
  require 'aws-sdk-core/plugins/response_paging.rb'
20
20
  require 'aws-sdk-core/plugins/stub_responses.rb'
21
21
  require 'aws-sdk-core/plugins/idempotency_token.rb'
22
+ require 'aws-sdk-core/plugins/invocation_id.rb'
22
23
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
23
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
24
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -68,6 +69,7 @@ module Aws::CloudSearchDomain
68
69
  add_plugin(Aws::Plugins::ResponsePaging)
69
70
  add_plugin(Aws::Plugins::StubResponses)
70
71
  add_plugin(Aws::Plugins::IdempotencyToken)
72
+ add_plugin(Aws::Plugins::InvocationId)
71
73
  add_plugin(Aws::Plugins::JsonvalueConverter)
72
74
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -245,8 +247,9 @@ module Aws::CloudSearchDomain
245
247
  #
246
248
  # @option options [String] :sdk_ua_app_id
247
249
  # A unique and opaque application ID that is appended to the
248
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
249
- # maximum length of 50.
250
+ # User-Agent header as app/sdk_ua_app_id. It should have a
251
+ # maximum length of 50. This variable is sourced from environment
252
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
250
253
  #
251
254
  # @option options [String] :secret_access_key
252
255
  #
@@ -282,50 +285,77 @@ module Aws::CloudSearchDomain
282
285
  # When `true`, request parameters are validated before
283
286
  # sending the request.
284
287
  #
285
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
286
- # requests through. Formatted like 'http://proxy.com:123'.
287
- #
288
- # @option options [Float] :http_open_timeout (15) The number of
289
- # seconds to wait when opening a HTTP session before raising a
290
- # `Timeout::Error`.
291
- #
292
- # @option options [Float] :http_read_timeout (60) The default
293
- # number of seconds to wait for response data. This value can
294
- # safely be set per-request on the session.
295
- #
296
- # @option options [Float] :http_idle_timeout (5) The number of
297
- # seconds a connection is allowed to sit idle before it is
298
- # considered stale. Stale connections are closed and removed
299
- # from the pool before making a request.
300
- #
301
- # @option options [Float] :http_continue_timeout (1) The number of
302
- # seconds to wait for a 100-continue response before sending the
303
- # request body. This option has no effect unless the request has
304
- # "Expect" header set to "100-continue". Defaults to `nil` which
305
- # disables this behaviour. This value can safely be set per
306
- # request on the session.
307
- #
308
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
309
- # in seconds.
310
- #
311
- # @option options [Boolean] :http_wire_trace (false) When `true`,
312
- # HTTP debug output will be sent to the `:logger`.
288
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
289
+ # Normally you should not configure the `:endpoint` option
290
+ # directly. This is normally constructed from the `:region`
291
+ # option. Configuring `:endpoint` is normally reserved for
292
+ # connecting to test or custom endpoints. The endpoint should
293
+ # be a URI formatted like:
294
+ #
295
+ # 'http://example.com'
296
+ # 'https://example.com'
297
+ # 'http://example.com:123'
298
+ #
299
+ #
300
+ # @option options [Float] :http_continue_timeout (1)
301
+ # The number of seconds to wait for a 100-continue response before sending the
302
+ # request body. This option has no effect unless the request has "Expect"
303
+ # header set to "100-continue". Defaults to `nil` which disables this
304
+ # behaviour. This value can safely be set per request on the session.
305
+ #
306
+ # @option options [Float] :http_idle_timeout (5)
307
+ # The number of seconds a connection is allowed to sit idle before it
308
+ # is considered stale. Stale connections are closed and removed from the
309
+ # pool before making a request.
310
+ #
311
+ # @option options [Float] :http_open_timeout (15)
312
+ # The default number of seconds to wait for response data.
313
+ # This value can safely be set per-request on the session.
314
+ #
315
+ # @option options [URI::HTTP,String] :http_proxy
316
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
317
+ #
318
+ # @option options [Float] :http_read_timeout (60)
319
+ # The default number of seconds to wait for response data.
320
+ # This value can safely be set per-request on the session.
321
+ #
322
+ # @option options [Boolean] :http_wire_trace (false)
323
+ # When `true`, HTTP debug output will be sent to the `:logger`.
324
+ #
325
+ # @option options [Proc] :on_chunk_received
326
+ # When a Proc object is provided, it will be used as callback when each chunk
327
+ # of the response body is received. It provides three arguments: the chunk,
328
+ # the number of bytes received, and the total number of
329
+ # bytes in the response (or nil if the server did not send a `content-length`).
330
+ #
331
+ # @option options [Proc] :on_chunk_sent
332
+ # When a Proc object is provided, it will be used as callback when each chunk
333
+ # of the request body is sent. It provides three arguments: the chunk,
334
+ # the number of bytes read from the body, and the total number of
335
+ # bytes in the body.
336
+ #
337
+ # @option options [Boolean] :raise_response_errors (true)
338
+ # When `true`, response errors are raised.
339
+ #
340
+ # @option options [String] :ssl_ca_bundle
341
+ # Full path to the SSL certificate authority bundle file that should be used when
342
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
343
+ # `:ssl_ca_directory` the the system default will be used if available.
344
+ #
345
+ # @option options [String] :ssl_ca_directory
346
+ # Full path of the directory that contains the unbundled SSL certificate
347
+ # authority files for verifying peer certificates. If you do
348
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
349
+ # default will be used if available.
313
350
  #
314
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
315
- # SSL peer certificates are verified when establishing a
316
- # connection.
351
+ # @option options [String] :ssl_ca_store
352
+ # Sets the X509::Store to verify peer certificate.
317
353
  #
318
- # @option options [String] :ssl_ca_bundle Full path to the SSL
319
- # certificate authority bundle file that should be used when
320
- # verifying peer certificates. If you do not pass
321
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
322
- # will be used if available.
354
+ # @option options [Float] :ssl_timeout
355
+ # Sets the SSL timeout in seconds
323
356
  #
324
- # @option options [String] :ssl_ca_directory Full path of the
325
- # directory that contains the unbundled SSL certificate
326
- # authority files for verifying peer certificates. If you do
327
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
328
- # system default will be used if available.
357
+ # @option options [Boolean] :ssl_verify_peer (true)
358
+ # When `true`, SSL peer certificates are verified when establishing a connection.
329
359
  #
330
360
  def initialize(*args)
331
361
  super
@@ -932,7 +962,7 @@ module Aws::CloudSearchDomain
932
962
  params: params,
933
963
  config: config)
934
964
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
935
- context[:gem_version] = '1.40.0'
965
+ context[:gem_version] = '1.42.0'
936
966
  Seahorse::Client::Request.new(handlers, context)
937
967
  end
938
968
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudsearchdomain/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudSearchDomain
50
50
 
51
- GEM_VERSION = '1.40.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudsearchdomain
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.40.0
4
+ version: 1.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement