aws-sdk-cloudsearchdomain 1.40.0 → 1.41.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: '08c7ff058cf4cb6e421f7050a7fcc247d5f54c02e2bc5b7f9d6139b6bf55eef6'
4
- data.tar.gz: e016ce03fac23fb37c07142a8aae48abc0eda3281250f5a3cdfbfec018e06628
3
+ metadata.gz: 57df18e50e0ae33c677e1c3d20aa9c8e6c696b9947b5edbad603ce2e57f8abe9
4
+ data.tar.gz: 2d9f61dee4921e25f87129c6121604418984b066a0b9f55dbc1e5995cf1cb439
5
5
  SHA512:
6
- metadata.gz: 3eda784e65db80cc1aed785200f48e735d002b4edc0692874c0d7ac66da3f6316e4611d26dff027f60313e4f5542c046dbb670a138627fa3c0469d500f98c8fa
7
- data.tar.gz: 4a6d96a20e1c39ffc818bfc2502cd1ac8f8eb0eadc59df8d532c8e76599160b406cf9adeead25f64fa4d27b59683ea4e7329b4600de5af91a1251d4ba8084494
6
+ metadata.gz: aa2636107faa92a6e60fa8ad84df884c124c02ff1772dd70b7fc9a8c5c0e42f5a36eec808244e2da123c26b475f79ce2c5a68b89d1d1b4f35dc91e67efb528cb
7
+ data.tar.gz: 2ca4f6202b53129941e4de6fdb5cbbe9b72aa7be302c70fe93ca1bdb0d627b3ae7c3ec854d3507c79e840b2712c787be40c956b1099826ef3bac3e8159f44bb9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.40.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.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)
@@ -282,50 +284,77 @@ module Aws::CloudSearchDomain
282
284
  # When `true`, request parameters are validated before
283
285
  # sending the request.
284
286
  #
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`.
287
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
288
+ # Normally you should not configure the `:endpoint` option
289
+ # directly. This is normally constructed from the `:region`
290
+ # option. Configuring `:endpoint` is normally reserved for
291
+ # connecting to test or custom endpoints. The endpoint should
292
+ # be a URI formatted like:
293
+ #
294
+ # 'http://example.com'
295
+ # 'https://example.com'
296
+ # 'http://example.com:123'
297
+ #
298
+ #
299
+ # @option options [Float] :http_continue_timeout (1)
300
+ # The number of seconds to wait for a 100-continue response before sending the
301
+ # request body. This option has no effect unless the request has "Expect"
302
+ # header set to "100-continue". Defaults to `nil` which disables this
303
+ # behaviour. This value can safely be set per request on the session.
304
+ #
305
+ # @option options [Float] :http_idle_timeout (5)
306
+ # The number of seconds a connection is allowed to sit idle before it
307
+ # is considered stale. Stale connections are closed and removed from the
308
+ # pool before making a request.
309
+ #
310
+ # @option options [Float] :http_open_timeout (15)
311
+ # The default number of seconds to wait for response data.
312
+ # This value can safely be set per-request on the session.
313
+ #
314
+ # @option options [URI::HTTP,String] :http_proxy
315
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
316
+ #
317
+ # @option options [Float] :http_read_timeout (60)
318
+ # The default number of seconds to wait for response data.
319
+ # This value can safely be set per-request on the session.
320
+ #
321
+ # @option options [Boolean] :http_wire_trace (false)
322
+ # When `true`, HTTP debug output will be sent to the `:logger`.
323
+ #
324
+ # @option options [Proc] :on_chunk_received
325
+ # When a Proc object is provided, it will be used as callback when each chunk
326
+ # of the response body is received. It provides three arguments: the chunk,
327
+ # the number of bytes received, and the total number of
328
+ # bytes in the response (or nil if the server did not send a `content-length`).
329
+ #
330
+ # @option options [Proc] :on_chunk_sent
331
+ # When a Proc object is provided, it will be used as callback when each chunk
332
+ # of the request body is sent. It provides three arguments: the chunk,
333
+ # the number of bytes read from the body, and the total number of
334
+ # bytes in the body.
335
+ #
336
+ # @option options [Boolean] :raise_response_errors (true)
337
+ # When `true`, response errors are raised.
338
+ #
339
+ # @option options [String] :ssl_ca_bundle
340
+ # Full path to the SSL certificate authority bundle file that should be used when
341
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
342
+ # `:ssl_ca_directory` the the system default will be used if available.
343
+ #
344
+ # @option options [String] :ssl_ca_directory
345
+ # Full path of the directory that contains the unbundled SSL certificate
346
+ # authority files for verifying peer certificates. If you do
347
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
348
+ # default will be used if available.
313
349
  #
314
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
315
- # SSL peer certificates are verified when establishing a
316
- # connection.
350
+ # @option options [String] :ssl_ca_store
351
+ # Sets the X509::Store to verify peer certificate.
317
352
  #
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.
353
+ # @option options [Float] :ssl_timeout
354
+ # Sets the SSL timeout in seconds
323
355
  #
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.
356
+ # @option options [Boolean] :ssl_verify_peer (true)
357
+ # When `true`, SSL peer certificates are verified when establishing a connection.
329
358
  #
330
359
  def initialize(*args)
331
360
  super
@@ -932,7 +961,7 @@ module Aws::CloudSearchDomain
932
961
  params: params,
933
962
  config: config)
934
963
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
935
- context[:gem_version] = '1.40.0'
964
+ context[:gem_version] = '1.41.0'
936
965
  Seahorse::Client::Request.new(handlers, context)
937
966
  end
938
967
 
@@ -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.41.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.41.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-04-25 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