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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudsearchdomain/client.rb +71 -42
- data/lib/aws-sdk-cloudsearchdomain.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57df18e50e0ae33c677e1c3d20aa9c8e6c696b9947b5edbad603ce2e57f8abe9
|
4
|
+
data.tar.gz: 2d9f61dee4921e25f87129c6121604418984b066a0b9f55dbc1e5995cf1cb439
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa2636107faa92a6e60fa8ad84df884c124c02ff1772dd70b7fc9a8c5c0e42f5a36eec808244e2da123c26b475f79ce2c5a68b89d1d1b4f35dc91e67efb528cb
|
7
|
+
data.tar.gz: 2ca4f6202b53129941e4de6fdb5cbbe9b72aa7be302c70fe93ca1bdb0d627b3ae7c3ec854d3507c79e840b2712c787be40c956b1099826ef3bac3e8159f44bb9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
286
|
-
#
|
287
|
-
#
|
288
|
-
#
|
289
|
-
#
|
290
|
-
#
|
291
|
-
#
|
292
|
-
#
|
293
|
-
#
|
294
|
-
#
|
295
|
-
#
|
296
|
-
#
|
297
|
-
#
|
298
|
-
#
|
299
|
-
#
|
300
|
-
#
|
301
|
-
#
|
302
|
-
#
|
303
|
-
#
|
304
|
-
#
|
305
|
-
#
|
306
|
-
#
|
307
|
-
#
|
308
|
-
# @option options [Float] :
|
309
|
-
#
|
310
|
-
#
|
311
|
-
#
|
312
|
-
#
|
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 [
|
315
|
-
#
|
316
|
-
# connection.
|
350
|
+
# @option options [String] :ssl_ca_store
|
351
|
+
# Sets the X509::Store to verify peer certificate.
|
317
352
|
#
|
318
|
-
# @option options [
|
319
|
-
#
|
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 [
|
325
|
-
#
|
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.
|
964
|
+
context[:gem_version] = '1.41.0'
|
936
965
|
Seahorse::Client::Request.new(handlers, context)
|
937
966
|
end
|
938
967
|
|
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.
|
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-
|
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.
|
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.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|