aws-sdk-cloudsearchdomain 1.17.0 → 1.18.1
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
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a2d11050836009820a028d0fec1166880f32a1c204f65f4880a7e612ff632594
|
4
|
+
data.tar.gz: d0c85a48519308152fa4cc4661971e23b782c133a8ea83905552f6d2ffd95f2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7f919eec9b56a8360c73f2ea10ff1e71007c0aa7cce755aa04f893d6a23f8bd76ac43842acef3055d64899fdce03e507cd5273cd1234e5929578a59b8c94963
|
7
|
+
data.tar.gz: 4477fb94f457e78a6dcd52537cc33e22a61486254142e8bd5bfc28df24c877dda7ba6ec509036882f7bda6ebbf524e38983eb6f273e1a29e15beb6b8a8733923
|
@@ -21,6 +21,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
21
21
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
22
22
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
23
23
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
24
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
24
25
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
25
26
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
26
27
|
require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
|
@@ -31,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearchdomain)
|
|
31
32
|
module Aws::CloudSearchDomain
|
32
33
|
# An API client for CloudSearchDomain. To construct a client, you need to configure a `:region` and `:credentials`.
|
33
34
|
#
|
34
|
-
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
35
|
+
# client = Aws::CloudSearchDomain::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
39
40
|
#
|
40
41
|
# For details on configuring region and credentials see
|
41
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -65,6 +66,7 @@ module Aws::CloudSearchDomain
|
|
65
66
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
66
67
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
67
68
|
add_plugin(Aws::Plugins::TransferEncoding)
|
69
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
68
70
|
add_plugin(Aws::Plugins::SignatureV4)
|
69
71
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
70
72
|
add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
|
@@ -187,15 +189,19 @@ module Aws::CloudSearchDomain
|
|
187
189
|
#
|
188
190
|
# @option options [String] :retry_mode ("legacy")
|
189
191
|
# Specifies which retry algorithm to use. Values are:
|
190
|
-
#
|
191
|
-
#
|
192
|
-
#
|
193
|
-
#
|
194
|
-
#
|
195
|
-
#
|
196
|
-
#
|
197
|
-
#
|
198
|
-
#
|
192
|
+
#
|
193
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
194
|
+
# no retry mode is provided.
|
195
|
+
#
|
196
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
197
|
+
# This includes support for retry quotas, which limit the number of
|
198
|
+
# unsuccessful retries a client can make.
|
199
|
+
#
|
200
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
201
|
+
# functionality of `standard` mode along with automatic client side
|
202
|
+
# throttling. This is a provisional mode that may change behavior
|
203
|
+
# in the future.
|
204
|
+
#
|
199
205
|
#
|
200
206
|
# @option options [String] :secret_access_key
|
201
207
|
#
|
@@ -227,8 +233,7 @@ module Aws::CloudSearchDomain
|
|
227
233
|
#
|
228
234
|
# @option options [Integer] :http_read_timeout (60) The default
|
229
235
|
# number of seconds to wait for response data. This value can
|
230
|
-
# safely be set
|
231
|
-
# per-request on the session yielded by {#session_for}.
|
236
|
+
# safely be set per-request on the session.
|
232
237
|
#
|
233
238
|
# @option options [Float] :http_idle_timeout (5) The number of
|
234
239
|
# seconds a connection is allowed to sit idle before it is
|
@@ -240,7 +245,7 @@ module Aws::CloudSearchDomain
|
|
240
245
|
# request body. This option has no effect unless the request has
|
241
246
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
242
247
|
# disables this behaviour. This value can safely be set per
|
243
|
-
# request on the session
|
248
|
+
# request on the session.
|
244
249
|
#
|
245
250
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
246
251
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -866,7 +871,7 @@ module Aws::CloudSearchDomain
|
|
866
871
|
params: params,
|
867
872
|
config: config)
|
868
873
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
869
|
-
context[:gem_version] = '1.
|
874
|
+
context[:gem_version] = '1.18.1'
|
870
875
|
Seahorse::Client::Request.new(handlers, context)
|
871
876
|
end
|
872
877
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::CloudSearchDomain
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CloudSearchDomain::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::CloudSearchDomain::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CloudSearchDomain::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
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.18.1
|
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: 2020-
|
11
|
+
date: 2020-06-11 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
version: '0'
|
84
84
|
requirements: []
|
85
85
|
rubyforge_project:
|
86
|
-
rubygems_version: 2.
|
86
|
+
rubygems_version: 2.7.6.2
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: AWS SDK for Ruby - Amazon CloudSearch Domain
|