aws-sdk-cloudsearchdomain 1.28.0 → 1.32.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: ffc34728d1566d020358dca12112bfa1382440bc0d99407150f56a1512f9c154
4
- data.tar.gz: 208dfbee16e0fa82f6271c622b9d8823cf41c6c503418dbc1f8dbc52d855e1ff
3
+ metadata.gz: bd5aaaeddd9b90b28aca65ae3c0f4d3bf9d5d3ae04554e5972358c03564ec609
4
+ data.tar.gz: cc0993a0ec7e2c06047dbc7e25ab19f78d22f191b80b8d62c3c6b75f75a8587c
5
5
  SHA512:
6
- metadata.gz: d54374aa77836f91ca83e5bb882b9367bc5940104214d3449da29bd127a33d2b531657eccd7a6dbd217b4feff6df0cb3988374f5145024c0ba3a35a5b81b8923
7
- data.tar.gz: fa3ba55028f7b1dedeb502407c1da2ffd863ed6db0ae7162bfe7434bd559753143d9dcaebeb5f7222574e94bad0df211fedea4b23fc301f3feffa598e2385799
6
+ metadata.gz: b93505a89e99fe12c7821ca2bc2f207c06d69b0c74db922a6b84f03df52427a6662931c118a2802e06d8a548062cc654923f2de0cf03b9c75b47fb6ff6197af9
7
+ data.tar.gz: 1026a003d6fa149055d41673de24ef133a4e73856020d0bbcd824ba3101eca407cc68ab5367ba7e53efe9667e193bcfb706e42982876512477037487d8d1dbaa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.31.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.30.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.29.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.28.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.32.0
@@ -24,6 +24,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
26
26
  require 'aws-sdk-core/plugins/http_checksum.rb'
27
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
28
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
27
29
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
30
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
31
  require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
@@ -69,6 +71,8 @@ module Aws::CloudSearchDomain
69
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
70
72
  add_plugin(Aws::Plugins::TransferEncoding)
71
73
  add_plugin(Aws::Plugins::HttpChecksum)
74
+ add_plugin(Aws::Plugins::DefaultsMode)
75
+ add_plugin(Aws::Plugins::RecursionDetection)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
  add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
@@ -117,7 +121,9 @@ module Aws::CloudSearchDomain
117
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
118
122
  # are very aggressive. Construct and pass an instance of
119
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
120
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
121
127
  #
122
128
  # @option options [String] :access_key_id
123
129
  #
@@ -155,6 +161,10 @@ module Aws::CloudSearchDomain
155
161
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
156
162
  # a clock skew correction and retry requests with skewed client clocks.
157
163
  #
164
+ # @option options [String] :defaults_mode ("legacy")
165
+ # See {Aws::DefaultsModeConfiguration} for a list of the
166
+ # accepted modes and the configuration defaults that are included.
167
+ #
158
168
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
159
169
  # The log formatter.
160
170
  #
@@ -248,7 +258,7 @@ module Aws::CloudSearchDomain
248
258
  # seconds to wait when opening a HTTP session before raising a
249
259
  # `Timeout::Error`.
250
260
  #
251
- # @option options [Integer] :http_read_timeout (60) The default
261
+ # @option options [Float] :http_read_timeout (60) The default
252
262
  # number of seconds to wait for response data. This value can
253
263
  # safely be set per-request on the session.
254
264
  #
@@ -264,6 +274,9 @@ module Aws::CloudSearchDomain
264
274
  # disables this behaviour. This value can safely be set per
265
275
  # request on the session.
266
276
  #
277
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
278
+ # in seconds.
279
+ #
267
280
  # @option options [Boolean] :http_wire_trace (false) When `true`,
268
281
  # HTTP debug output will be sent to the `:logger`.
269
282
  #
@@ -888,7 +901,7 @@ module Aws::CloudSearchDomain
888
901
  params: params,
889
902
  config: config)
890
903
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
891
- context[:gem_version] = '1.28.0'
904
+ context[:gem_version] = '1.32.0'
892
905
  Seahorse::Client::Request.new(handlers, context)
893
906
  end
894
907
 
@@ -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.28.0'
51
+ GEM_VERSION = '1.32.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.28.0
4
+ version: 1.32.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.121.2
22
+ version: 3.126.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.121.2
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement