aws-sdk-swf 1.30.0 → 1.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66382d995e5f3c1ccf893e1079a65ef51c39af8fef3702e795f27399f32b686f
4
- data.tar.gz: 95756e593dd7907e8b04f4be1313425450bbc73c83c89c045a5d0ac4ebcca405
3
+ metadata.gz: 41580e25d7fbbc30b003e895b538ad74a3c00dc73fd61ceb5c0506a85f50b666
4
+ data.tar.gz: 97690aa451c87c52392b81a3e259a1c2f8519f2d746ff642b05b46a63cd8c251
5
5
  SHA512:
6
- metadata.gz: 8093e6cd500f7111966eafb2f60ad5c8ac836b3839ba68ead6ae76d784bf81691dc8ef93b3b9cc0a0d606e7f33ac3701884aabecb0a30bbcf55327842bb8f5ea
7
- data.tar.gz: c1bc90c3fd428f067781ef5a2aa12f5a65ca903dd652ac96419ef5bc33ddb5171d3f07d0150fba59994a683a99e26cfc6cfd76434c268fd3704f88263617d54a
6
+ metadata.gz: dab98c7a4977b933f6ab4746bb2314fe85d95784605784feba82de970032a9f84954c0e5f3c6e62ea38366f9cad3ad0d59095a5f2bd559828019ee6e800937d9
7
+ data.tar.gz: ad43af2ddfe13e81eb7439335d6b35c36f2f8ccfe31a0f6cd84c0c1aedebdbc050259dfdb54bd6525644b2841292c3a8819c8cc0b60ef75e1c8a5692baba5c86
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.33.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.32.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.31.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.30.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.34.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
  require 'aws-sdk-swf/plugins/read_timeouts.rb'
@@ -74,6 +75,7 @@ module Aws::SWF
74
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
77
79
  add_plugin(Aws::Plugins::SignatureV4)
78
80
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
79
81
  add_plugin(Aws::SWF::Plugins::ReadTimeouts)
@@ -121,7 +123,9 @@ module Aws::SWF
121
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
124
  # are very aggressive. Construct and pass an instance of
123
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
125
129
  #
126
130
  # @option options [required, String] :region
127
131
  # The AWS region to connect to. The configured `:region` is
@@ -175,6 +179,10 @@ module Aws::SWF
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -287,6 +295,15 @@ module Aws::SWF
287
295
  # ** Please note ** When response stubbing is enabled, no HTTP
288
296
  # requests are made, and retries are disabled.
289
297
  #
298
+ # @option options [Boolean] :use_dualstack_endpoint
299
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
300
+ # will be used if available.
301
+ #
302
+ # @option options [Boolean] :use_fips_endpoint
303
+ # When set to `true`, fips compatible endpoints will be used if available.
304
+ # When a `fips` region is used, the region is normalized and this config
305
+ # is set to `true`.
306
+ #
290
307
  # @option options [Boolean] :validate_params (true)
291
308
  # When `true`, request parameters are validated before
292
309
  # sending the request.
@@ -298,7 +315,7 @@ module Aws::SWF
298
315
  # seconds to wait when opening a HTTP session before raising a
299
316
  # `Timeout::Error`.
300
317
  #
301
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
302
319
  # number of seconds to wait for response data. This value can
303
320
  # safely be set per-request on the session.
304
321
  #
@@ -314,6 +331,9 @@ module Aws::SWF
314
331
  # disables this behaviour. This value can safely be set per
315
332
  # request on the session.
316
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
317
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
318
338
  # HTTP debug output will be sent to the `:logger`.
319
339
  #
@@ -4288,7 +4308,7 @@ module Aws::SWF
4288
4308
  params: params,
4289
4309
  config: config)
4290
4310
  context[:gem_name] = 'aws-sdk-swf'
4291
- context[:gem_version] = '1.30.0'
4311
+ context[:gem_version] = '1.34.0'
4292
4312
  Seahorse::Client::Request.new(handlers, context)
4293
4313
  end
4294
4314
 
data/lib/aws-sdk-swf.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-swf/customizations'
48
48
  # @!group service
49
49
  module Aws::SWF
50
50
 
51
- GEM_VERSION = '1.30.0'
51
+ GEM_VERSION = '1.34.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-swf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.34.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.120.0
22
+ version: 3.125.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.120.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement