aws-sdk-cloudsearchdomain 1.9.0 → 1.10.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbb36cb5d97ba80b2536ffae99fdf628fbbe5ff3
|
4
|
+
data.tar.gz: 18676e9251e7bb43de831bcba83b5a6c4f69ff42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96d549af538301ad5d96342ae12919ff441e25ba6dddee05c8cf4fd9128ae2cceb3bc3abb67752ffaf31c58974475c1e013e01b6ce0abb6b780064c4ec00c62a
|
7
|
+
data.tar.gz: 9149cc7744a14f62110e520da525e2eb7104fa83744898d3f3fa1d5a70d748c105ef032b8bc44a353ec775a9118a01f73cf8876d935b20494618a72b9a1cb59d
|
@@ -20,6 +20,7 @@ require 'aws-sdk-core/plugins/idempotency_token.rb'
|
|
20
20
|
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
|
+
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
23
24
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
24
25
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
25
26
|
require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
|
@@ -51,6 +52,7 @@ module Aws::CloudSearchDomain
|
|
51
52
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
52
53
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
53
54
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
55
|
+
add_plugin(Aws::Plugins::TransferEncoding)
|
54
56
|
add_plugin(Aws::Plugins::SignatureV4)
|
55
57
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
56
58
|
add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
|
@@ -161,6 +163,49 @@ module Aws::CloudSearchDomain
|
|
161
163
|
# When `true`, request parameters are validated before
|
162
164
|
# sending the request.
|
163
165
|
#
|
166
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
167
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
168
|
+
#
|
169
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
170
|
+
# seconds to wait when opening a HTTP session before rasing a
|
171
|
+
# `Timeout::Error`.
|
172
|
+
#
|
173
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
174
|
+
# number of seconds to wait for response data. This value can
|
175
|
+
# safely be set
|
176
|
+
# per-request on the session yeidled by {#session_for}.
|
177
|
+
#
|
178
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
179
|
+
# seconds a connection is allowed to sit idble before it is
|
180
|
+
# considered stale. Stale connections are closed and removed
|
181
|
+
# from the pool before making a request.
|
182
|
+
#
|
183
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
184
|
+
# seconds to wait for a 100-continue response before sending the
|
185
|
+
# request body. This option has no effect unless the request has
|
186
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
187
|
+
# disables this behaviour. This value can safely be set per
|
188
|
+
# request on the session yeidled by {#session_for}.
|
189
|
+
#
|
190
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
191
|
+
# HTTP debug output will be sent to the `:logger`.
|
192
|
+
#
|
193
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
194
|
+
# SSL peer certificates are verified when establishing a
|
195
|
+
# connection.
|
196
|
+
#
|
197
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
198
|
+
# certificate authority bundle file that should be used when
|
199
|
+
# verifying peer certificates. If you do not pass
|
200
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
201
|
+
# will be used if available.
|
202
|
+
#
|
203
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
204
|
+
# directory that contains the unbundled SSL certificate
|
205
|
+
# authority files for verifying peer certificates. If you do
|
206
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
207
|
+
# system default will be used if available.
|
208
|
+
#
|
164
209
|
def initialize(*args)
|
165
210
|
super
|
166
211
|
end
|
@@ -766,7 +811,7 @@ module Aws::CloudSearchDomain
|
|
766
811
|
params: params,
|
767
812
|
config: config)
|
768
813
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
769
|
-
context[:gem_version] = '1.
|
814
|
+
context[:gem_version] = '1.10.0'
|
770
815
|
Seahorse::Client::Request.new(handlers, context)
|
771
816
|
end
|
772
817
|
|
@@ -12,7 +12,7 @@ module Aws::CloudSearchDomain
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
14
|
Adds = Shapes::IntegerShape.new(name: 'Adds')
|
15
|
-
Blob = Shapes::BlobShape.new(name: 'Blob')
|
15
|
+
Blob = Shapes::BlobShape.new(name: 'Blob', streaming: true)
|
16
16
|
Bucket = Shapes::StructureShape.new(name: 'Bucket')
|
17
17
|
BucketInfo = Shapes::StructureShape.new(name: 'BucketInfo')
|
18
18
|
BucketList = Shapes::ListShape.new(name: 'BucketList')
|
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.10.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: 2019-
|
11
|
+
date: 2019-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -61,7 +61,7 @@ files:
|
|
61
61
|
- lib/aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb
|
62
62
|
- lib/aws-sdk-cloudsearchdomain/resource.rb
|
63
63
|
- lib/aws-sdk-cloudsearchdomain/types.rb
|
64
|
-
homepage:
|
64
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
65
65
|
licenses:
|
66
66
|
- Apache-2.0
|
67
67
|
metadata:
|