aws-sdk-ec2 1.287.0 → 1.288.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: a4ef6071f893ffdb68da1197584ff8a321edf00ea6e1ba89d3487b45b429332d
4
- data.tar.gz: c0ea9e00c7993ec9932135b4a512e2beb2d61ff748aece6b93ea9aac7531eb68
3
+ metadata.gz: 6b2b8eb8c2403f05c9125c5420f7ac7790e2397761585dbbd56912c6739fdd62
4
+ data.tar.gz: 7202a471c6de5ab8a64c828bad72ed2489493f0ac23fbc3a43ec0dc6e7ef2245
5
5
  SHA512:
6
- metadata.gz: 8752a78711d6470f3a326aa57101631ca262c429b664e1e9d492eddb3fdea43d77d505a8256bcea9c4c2250cfc52109c80fa55ca37ad938dd83522d467a81037
7
- data.tar.gz: f4ba425fd09cad3dae446cf2104dbdb266988193468202bc8a68752f746f59fa429ceed566b6429c1b1cead50fd8f009ea007314fb9805fb7e78cf1fab28ab6a
6
+ metadata.gz: b0883d2ff3dc7c6927dcb7f2107d1e3ad51b4edb44db5d9ade0f01c60cecd3703d70fe3576b5a39ad69d27734ac43de25e527095718d0ad120facb691cb824b9
7
+ data.tar.gz: 052bdaed996487419a7a457f9cad4c6bb74c79b57b282a3a30a1c5225de89870aa054cb7ad1ff86c5cd3375bfc5da43def49065edd8c02c8c0a600c3b53ade11
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.288.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.287.0 (2021-12-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.287.0
1
+ 1.288.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/ec2.rb'
32
33
  require 'aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb'
@@ -75,6 +76,7 @@ module Aws::EC2
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::DefaultsMode)
78
80
  add_plugin(Aws::Plugins::SignatureV4)
79
81
  add_plugin(Aws::Plugins::Protocols::EC2)
80
82
  add_plugin(Aws::EC2::Plugins::CopyEncryptedSnapshot)
@@ -179,6 +181,10 @@ module Aws::EC2
179
181
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
180
182
  # a clock skew correction and retry requests with skewed client clocks.
181
183
  #
184
+ # @option options [String] :defaults_mode ("legacy")
185
+ # See {Aws::DefaultsModeConfiguration} for a list of the
186
+ # accepted modes and the configuration defaults that are included.
187
+ #
182
188
  # @option options [Boolean] :disable_host_prefix_injection (false)
183
189
  # Set to true to disable SDK automatically adding host prefix
184
190
  # to default service endpoint when available.
@@ -301,7 +307,7 @@ module Aws::EC2
301
307
  # seconds to wait when opening a HTTP session before raising a
302
308
  # `Timeout::Error`.
303
309
  #
304
- # @option options [Integer] :http_read_timeout (60) The default
310
+ # @option options [Float] :http_read_timeout (60) The default
305
311
  # number of seconds to wait for response data. This value can
306
312
  # safely be set per-request on the session.
307
313
  #
@@ -317,6 +323,9 @@ module Aws::EC2
317
323
  # disables this behaviour. This value can safely be set per
318
324
  # request on the session.
319
325
  #
326
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
327
+ # in seconds.
328
+ #
320
329
  # @option options [Boolean] :http_wire_trace (false) When `true`,
321
330
  # HTTP debug output will be sent to the `:logger`.
322
331
  #
@@ -48734,7 +48743,7 @@ module Aws::EC2
48734
48743
  params: params,
48735
48744
  config: config)
48736
48745
  context[:gem_name] = 'aws-sdk-ec2'
48737
- context[:gem_version] = '1.287.0'
48746
+ context[:gem_version] = '1.288.0'
48738
48747
  Seahorse::Client::Request.new(handlers, context)
48739
48748
  end
48740
48749
 
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.287.0'
75
+ GEM_VERSION = '1.288.0'
76
76
 
77
77
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.287.0
4
+ version: 1.288.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-12-09 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-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.122.0
36
+ version: 3.125.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.122.0
46
+ version: 3.125.0
47
47
  description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email: