aws-sdk-imagebuilder 1.36.0 → 1.37.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: 1608c70e559b6b3966420b3c2364224745d63b598d1e7517634058d00c5f65c5
4
- data.tar.gz: 8e89294ae4ef85250e50d25a67331780ffa57d57e957bc86098c226b1c8d1096
3
+ metadata.gz: 006e3ce2e7fbeab5ed0e2a3023812e4493d7d0a5aaca79d752c1fdf7fb6c048d
4
+ data.tar.gz: 80649fd685b0e4d29ee4b6c6e752b53f5dacadda183600a08ce9cb8a543b56f1
5
5
  SHA512:
6
- metadata.gz: 3c06d9118eceba65c052e3a5f4272824a41ea25571a84df11435b11e3f71c300adb5f538ecb832ca797055b1006827589208b7efca0a0b79b6a89e781a220b0e
7
- data.tar.gz: 78c5dce356adf5c0fca75f08e936ba68d464356b4aaa5409c392e03d311ecfc6909388ea2146b3a1584da9a1590866c921fc38f33821dfe3f65ccecaa66198f8
6
+ metadata.gz: bdb7a2166defaced9aa96d106ea20fa72848f7ccd9e07fc7e3f07a3e0641782549c15a905b3f9ca0f4fec5cee0f18827149ff22a9acdc6426a31a9e36915c5e1
7
+ data.tar.gz: 514b1c5c6d83100aaeafe75ea1ba4d554408472779b523c58cc4c9680a515d743a52ac0a4922c4018a12e153db625340e93ef83fc49945b1f8b56fe654725177
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Added a note to infrastructure configuration actions and data types concerning delivery of Image Builder event messages to encrypted SNS topics. The key that's used to encrypt the SNS topic must reside in the account that Image Builder runs under.
8
+
4
9
  1.36.0 (2021-12-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.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/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::Imagebuilder
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -175,6 +177,10 @@ module Aws::Imagebuilder
175
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
178
  # a clock skew correction and retry requests with skewed client clocks.
177
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
178
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
185
  # Set to true to disable SDK automatically adding host prefix
180
186
  # to default service endpoint when available.
@@ -297,7 +303,7 @@ module Aws::Imagebuilder
297
303
  # seconds to wait when opening a HTTP session before raising a
298
304
  # `Timeout::Error`.
299
305
  #
300
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
301
307
  # number of seconds to wait for response data. This value can
302
308
  # safely be set per-request on the session.
303
309
  #
@@ -313,6 +319,9 @@ module Aws::Imagebuilder
313
319
  # disables this behaviour. This value can safely be set per
314
320
  # request on the session.
315
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
316
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
317
326
  # HTTP debug output will be sent to the `:logger`.
318
327
  #
@@ -1083,7 +1092,15 @@ module Aws::Imagebuilder
1083
1092
  # workflow fails.
1084
1093
  #
1085
1094
  # @option params [String] :sns_topic_arn
1086
- # The SNS topic on which to send image build events.
1095
+ # The Amazon Resource Name (ARN) for the SNS topic to which we send
1096
+ # image build event notifications.
1097
+ #
1098
+ # <note markdown="1"> EC2 Image Builder is unable to send notifications to SNS topics that
1099
+ # are encrypted using keys from other accounts. The key that is used to
1100
+ # encrypt the SNS topic must reside in the account that the Image
1101
+ # Builder service runs under.
1102
+ #
1103
+ # </note>
1087
1104
  #
1088
1105
  # @option params [Hash<String,String>] :resource_tags
1089
1106
  # The tags attached to the resource created by Image Builder.
@@ -3598,7 +3615,15 @@ module Aws::Imagebuilder
3598
3615
  # workflow fails.
3599
3616
  #
3600
3617
  # @option params [String] :sns_topic_arn
3601
- # The SNS topic on which to send image build events.
3618
+ # The Amazon Resource Name (ARN) for the SNS topic to which we send
3619
+ # image build event notifications.
3620
+ #
3621
+ # <note markdown="1"> EC2 Image Builder is unable to send notifications to SNS topics that
3622
+ # are encrypted using keys from other accounts. The key that is used to
3623
+ # encrypt the SNS topic must reside in the account that the Image
3624
+ # Builder service runs under.
3625
+ #
3626
+ # </note>
3602
3627
  #
3603
3628
  # @option params [required, String] :client_token
3604
3629
  # The idempotency token used to make this request idempotent.
@@ -3688,7 +3713,7 @@ module Aws::Imagebuilder
3688
3713
  params: params,
3689
3714
  config: config)
3690
3715
  context[:gem_name] = 'aws-sdk-imagebuilder'
3691
- context[:gem_version] = '1.36.0'
3716
+ context[:gem_version] = '1.37.0'
3692
3717
  Seahorse::Client::Request.new(handlers, context)
3693
3718
  end
3694
3719
 
@@ -1760,7 +1760,15 @@ module Aws::Imagebuilder
1760
1760
  # @return [Boolean]
1761
1761
  #
1762
1762
  # @!attribute [rw] sns_topic_arn
1763
- # The SNS topic on which to send image build events.
1763
+ # The Amazon Resource Name (ARN) for the SNS topic to which we send
1764
+ # image build event notifications.
1765
+ #
1766
+ # <note markdown="1"> EC2 Image Builder is unable to send notifications to SNS topics that
1767
+ # are encrypted using keys from other accounts. The key that is used
1768
+ # to encrypt the SNS topic must reside in the account that the Image
1769
+ # Builder service runs under.
1770
+ #
1771
+ # </note>
1764
1772
  # @return [String]
1765
1773
  #
1766
1774
  # @!attribute [rw] resource_tags
@@ -3746,8 +3754,15 @@ module Aws::Imagebuilder
3746
3754
  # @return [Boolean]
3747
3755
  #
3748
3756
  # @!attribute [rw] sns_topic_arn
3749
- # The SNS topic Amazon Resource Name (ARN) of the infrastructure
3750
- # configuration.
3757
+ # The Amazon Resource Name (ARN) for the SNS topic to which we send
3758
+ # image build event notifications.
3759
+ #
3760
+ # <note markdown="1"> EC2 Image Builder is unable to send notifications to SNS topics that
3761
+ # are encrypted using keys from other accounts. The key that is used
3762
+ # to encrypt the SNS topic must reside in the account that the Image
3763
+ # Builder service runs under.
3764
+ #
3765
+ # </note>
3751
3766
  # @return [String]
3752
3767
  #
3753
3768
  # @!attribute [rw] date_created
@@ -5957,7 +5972,15 @@ module Aws::Imagebuilder
5957
5972
  # @return [Boolean]
5958
5973
  #
5959
5974
  # @!attribute [rw] sns_topic_arn
5960
- # The SNS topic on which to send image build events.
5975
+ # The Amazon Resource Name (ARN) for the SNS topic to which we send
5976
+ # image build event notifications.
5977
+ #
5978
+ # <note markdown="1"> EC2 Image Builder is unable to send notifications to SNS topics that
5979
+ # are encrypted using keys from other accounts. The key that is used
5980
+ # to encrypt the SNS topic must reside in the account that the Image
5981
+ # Builder service runs under.
5982
+ #
5983
+ # </note>
5961
5984
  # @return [String]
5962
5985
  #
5963
5986
  # @!attribute [rw] client_token
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-imagebuilder/customizations'
48
48
  # @!group service
49
49
  module Aws::Imagebuilder
50
50
 
51
- GEM_VERSION = '1.36.0'
51
+ GEM_VERSION = '1.37.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-imagebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.37.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-20 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.122.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement