aws-sdk-cloudformation 1.61.0 → 1.65.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +39 -15
- data/lib/aws-sdk-cloudformation/client_api.rb +4 -1
- data/lib/aws-sdk-cloudformation/types.rb +27 -8
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d42547cf50d0e070be9a36ac40dab2f014e5f0c2cb93a8c4105e5fcfc2d8633b
|
4
|
+
data.tar.gz: 74ffd0ff88de107130b7ffae1d1dc5c634bf8d19c5e271d3b8a8671e3f5d30c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 534b8ba60e0ff0d710e571ded4e6f0d3d8b87cdb500e6ea22162684ce8a581e8db733cac8c982f2be35f0577dad0d39059d5cef50e1d61b48330c5751b3823df
|
7
|
+
data.tar.gz: 625484ac2b69bd888d56d791df0cba925943c8d1491ac221d5df86edc56d25e32a9ac9a070f23041495b53677f7c679ec31c8019d19312854cc87b14b0a7070b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.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.64.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.63.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.62.0 (2021-11-22)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release include SDK changes for the feature launch of Stack Import to Service Managed StackSet.
|
23
|
+
|
4
24
|
1.61.0 (2021-11-19)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
@@ -27,6 +27,8 @@ 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'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::CloudFormation
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::Query)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::CloudFormation
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# 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.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::CloudFormation
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
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
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::CloudFormation
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::CloudFormation
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -3828,25 +3841,34 @@ module Aws::CloudFormation
|
|
3828
3841
|
req.send_request(options)
|
3829
3842
|
end
|
3830
3843
|
|
3831
|
-
#
|
3832
|
-
#
|
3833
|
-
#
|
3834
|
-
# and
|
3835
|
-
# import
|
3836
|
-
#
|
3837
|
-
#
|
3838
|
-
#
|
3839
|
-
#
|
3840
|
-
# </note>
|
3844
|
+
# Use the stack import operations for self-managed or service-managed
|
3845
|
+
# StackSets. For self-managed StackSets, the import operation can import
|
3846
|
+
# stacks in the administrator account or in different target accounts
|
3847
|
+
# and Amazon Web Services Regions. For service-managed StackSets, the
|
3848
|
+
# import operation can import any stack in the same AWS Organizations as
|
3849
|
+
# the management account. The import operation can import up to 10
|
3850
|
+
# stacks using inline stack IDs or up to 10,000 stacks using an Amazon
|
3851
|
+
# S3 object.
|
3841
3852
|
#
|
3842
3853
|
# @option params [required, String] :stack_set_name
|
3843
3854
|
# The name of the stack set. The name must be unique in the Region where
|
3844
3855
|
# you create your stack set.
|
3845
3856
|
#
|
3846
|
-
# @option params [
|
3857
|
+
# @option params [Array<String>] :stack_ids
|
3847
3858
|
# The IDs of the stacks you are importing into a stack set. You import
|
3848
3859
|
# up to 10 stacks per stack set at a time.
|
3849
3860
|
#
|
3861
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
3862
|
+
#
|
3863
|
+
# @option params [String] :stack_ids_url
|
3864
|
+
# The Amazon S3 URL which contains list of stack ids to be inputted.
|
3865
|
+
#
|
3866
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
3867
|
+
#
|
3868
|
+
# @option params [Array<String>] :organizational_unit_ids
|
3869
|
+
# The list of OU ID’s to which the stacks being imported has to be
|
3870
|
+
# mapped as deployment target.
|
3871
|
+
#
|
3850
3872
|
# @option params [Types::StackSetOperationPreferences] :operation_preferences
|
3851
3873
|
# The user-specified preferences for how CloudFormation performs a stack
|
3852
3874
|
# set operation.
|
@@ -3880,7 +3902,9 @@ module Aws::CloudFormation
|
|
3880
3902
|
#
|
3881
3903
|
# resp = client.import_stacks_to_stack_set({
|
3882
3904
|
# stack_set_name: "StackSetNameOrId", # required
|
3883
|
-
# stack_ids: ["StackId"],
|
3905
|
+
# stack_ids: ["StackId"],
|
3906
|
+
# stack_ids_url: "StackIdsUrl",
|
3907
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
3884
3908
|
# operation_preferences: {
|
3885
3909
|
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
3886
3910
|
# region_order: ["Region"],
|
@@ -6665,7 +6689,7 @@ module Aws::CloudFormation
|
|
6665
6689
|
params: params,
|
6666
6690
|
config: config)
|
6667
6691
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6668
|
-
context[:gem_version] = '1.
|
6692
|
+
context[:gem_version] = '1.65.0'
|
6669
6693
|
Seahorse::Client::Request.new(handlers, context)
|
6670
6694
|
end
|
6671
6695
|
|
@@ -327,6 +327,7 @@ module Aws::CloudFormation
|
|
327
327
|
StackEvents = Shapes::ListShape.new(name: 'StackEvents')
|
328
328
|
StackId = Shapes::StringShape.new(name: 'StackId')
|
329
329
|
StackIdList = Shapes::ListShape.new(name: 'StackIdList')
|
330
|
+
StackIdsUrl = Shapes::StringShape.new(name: 'StackIdsUrl')
|
330
331
|
StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
|
331
332
|
StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
|
332
333
|
StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
|
@@ -920,7 +921,9 @@ module Aws::CloudFormation
|
|
920
921
|
GetTemplateSummaryOutput.struct_class = Types::GetTemplateSummaryOutput
|
921
922
|
|
922
923
|
ImportStacksToStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
|
923
|
-
ImportStacksToStackSetInput.add_member(:stack_ids, Shapes::ShapeRef.new(shape: StackIdList,
|
924
|
+
ImportStacksToStackSetInput.add_member(:stack_ids, Shapes::ShapeRef.new(shape: StackIdList, location_name: "StackIds"))
|
925
|
+
ImportStacksToStackSetInput.add_member(:stack_ids_url, Shapes::ShapeRef.new(shape: StackIdsUrl, location_name: "StackIdsUrl"))
|
926
|
+
ImportStacksToStackSetInput.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
|
924
927
|
ImportStacksToStackSetInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
925
928
|
ImportStacksToStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
926
929
|
ImportStacksToStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
@@ -4189,7 +4189,9 @@ module Aws::CloudFormation
|
|
4189
4189
|
#
|
4190
4190
|
# {
|
4191
4191
|
# stack_set_name: "StackSetNameOrId", # required
|
4192
|
-
# stack_ids: ["StackId"],
|
4192
|
+
# stack_ids: ["StackId"],
|
4193
|
+
# stack_ids_url: "StackIdsUrl",
|
4194
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
4193
4195
|
# operation_preferences: {
|
4194
4196
|
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
4195
4197
|
# region_order: ["Region"],
|
@@ -4210,6 +4212,19 @@ module Aws::CloudFormation
|
|
4210
4212
|
# @!attribute [rw] stack_ids
|
4211
4213
|
# The IDs of the stacks you are importing into a stack set. You import
|
4212
4214
|
# up to 10 stacks per stack set at a time.
|
4215
|
+
#
|
4216
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
4217
|
+
# @return [Array<String>]
|
4218
|
+
#
|
4219
|
+
# @!attribute [rw] stack_ids_url
|
4220
|
+
# The Amazon S3 URL which contains list of stack ids to be inputted.
|
4221
|
+
#
|
4222
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
4223
|
+
# @return [String]
|
4224
|
+
#
|
4225
|
+
# @!attribute [rw] organizational_unit_ids
|
4226
|
+
# The list of OU ID’s to which the stacks being imported has to be
|
4227
|
+
# mapped as deployment target.
|
4213
4228
|
# @return [Array<String>]
|
4214
4229
|
#
|
4215
4230
|
# @!attribute [rw] operation_preferences
|
@@ -4245,6 +4260,8 @@ module Aws::CloudFormation
|
|
4245
4260
|
class ImportStacksToStackSetInput < Struct.new(
|
4246
4261
|
:stack_set_name,
|
4247
4262
|
:stack_ids,
|
4263
|
+
:stack_ids_url,
|
4264
|
+
:organizational_unit_ids,
|
4248
4265
|
:operation_preferences,
|
4249
4266
|
:operation_id,
|
4250
4267
|
:call_as)
|
@@ -5482,8 +5499,8 @@ module Aws::CloudFormation
|
|
5482
5499
|
# @return [Boolean]
|
5483
5500
|
#
|
5484
5501
|
# @!attribute [rw] resolved_value
|
5485
|
-
# Read-only. The value that corresponds to a
|
5486
|
-
# key. This field is returned only for [ `SSM`
|
5502
|
+
# Read-only. Read-only. The value that corresponds to a SSM parameter
|
5503
|
+
# key. This field is returned only for [ `SSM` ][1] parameter types in
|
5487
5504
|
# the template.
|
5488
5505
|
#
|
5489
5506
|
#
|
@@ -6462,12 +6479,14 @@ module Aws::CloudFormation
|
|
6462
6479
|
# @return [String]
|
6463
6480
|
#
|
6464
6481
|
# @!attribute [rw] type
|
6465
|
-
# The resource type of the rollback trigger.
|
6466
|
-
# [AWS::CloudWatch::Alarm][1]
|
6482
|
+
# The resource type of the rollback trigger. Specify either
|
6483
|
+
# [AWS::CloudWatch::Alarm][1] or [AWS::CloudWatch::CompositeAlarm][2]
|
6484
|
+
# resource types.
|
6467
6485
|
#
|
6468
6486
|
#
|
6469
6487
|
#
|
6470
6488
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html
|
6489
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html
|
6471
6490
|
# @return [String]
|
6472
6491
|
#
|
6473
6492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger AWS API Documentation
|
@@ -9023,7 +9042,7 @@ module Aws::CloudFormation
|
|
9023
9042
|
# * `ACTIVATED`\: Public extensions that have been activated for this
|
9024
9043
|
# account and region.
|
9025
9044
|
#
|
9026
|
-
# * `
|
9045
|
+
# * `THIRD_PARTY`\: Extensions available for use from publishers other
|
9027
9046
|
# than Amazon. This includes:
|
9028
9047
|
#
|
9029
9048
|
# * Private extensions registered in the account.
|
@@ -9031,14 +9050,14 @@ module Aws::CloudFormation
|
|
9031
9050
|
# * Public extensions from publishers other than Amazon, whether
|
9032
9051
|
# activated or not.
|
9033
9052
|
#
|
9034
|
-
# * `
|
9053
|
+
# * `AWS_TYPES`\: Extensions available for use from Amazon.
|
9035
9054
|
# @return [String]
|
9036
9055
|
#
|
9037
9056
|
# @!attribute [rw] publisher_id
|
9038
9057
|
# The id of the publisher of the extension.
|
9039
9058
|
#
|
9040
9059
|
# Extensions published by Amazon are not assigned a publisher ID. Use
|
9041
|
-
# the `
|
9060
|
+
# the `AWS_TYPE` category to specify a list of types published by
|
9042
9061
|
# Amazon.
|
9043
9062
|
# @return [String]
|
9044
9063
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.65.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:
|
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.
|
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.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|