aws-sdk-cloudformation 1.58.0 → 1.62.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 +56 -17
- data/lib/aws-sdk-cloudformation/client_api.rb +13 -1
- data/lib/aws-sdk-cloudformation/types.rb +104 -16
- 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: 1e1132225800a614e0716f734c057f6ff912efb56be1a49530cf571933420eb8
|
4
|
+
data.tar.gz: 0c11057d0c4c5cd178b8025ba3491cbc88b27847d998de5a6fbc2db1da4c0605
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efb614c0cf7d2aeafccbf6a81c8795a12293e4d3e1289d4223e1e49adf1f2aa5dbe7ff167d100d45d6a334aed403f0000c41851dd185124d06aaecf66c53542f
|
7
|
+
data.tar.gz: 18636c20f6a5ebda89e4e7b4b6c765b31cff49db61322e6ec2f39d260a09a0885316721bfe47ec6087e12dd9c367e9167dc2c9bac8978d7cfbbf72a540a71ed1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2021-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release include SDK changes for the feature launch of Stack Import to Service Managed StackSet.
|
8
|
+
|
9
|
+
1.61.0 (2021-11-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - The StackSets ManagedExecution feature will allow concurrency for non-conflicting StackSet operations and queuing the StackSet operations that conflict at a given time for later execution.
|
13
|
+
|
14
|
+
1.60.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.59.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.58.0 (2021-09-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
@@ -275,6 +275,15 @@ module Aws::CloudFormation
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -1665,6 +1674,10 @@ module Aws::CloudFormation
|
|
1665
1674
|
# **A suitable default value is auto-generated.** You should normally
|
1666
1675
|
# not need to pass this option.**
|
1667
1676
|
#
|
1677
|
+
# @option params [Types::ManagedExecution] :managed_execution
|
1678
|
+
# Describes whether StackSets performs non-conflicting operations
|
1679
|
+
# concurrently and queues conflicting operations.
|
1680
|
+
#
|
1668
1681
|
# @return [Types::CreateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1669
1682
|
#
|
1670
1683
|
# * {Types::CreateStackSetOutput#stack_set_id #stack_set_id} => String
|
@@ -1701,6 +1714,9 @@ module Aws::CloudFormation
|
|
1701
1714
|
# },
|
1702
1715
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1703
1716
|
# client_request_token: "ClientRequestToken",
|
1717
|
+
# managed_execution: {
|
1718
|
+
# active: false,
|
1719
|
+
# },
|
1704
1720
|
# })
|
1705
1721
|
#
|
1706
1722
|
# @example Response structure
|
@@ -2842,6 +2858,7 @@ module Aws::CloudFormation
|
|
2842
2858
|
# resp.stack_set.permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
|
2843
2859
|
# resp.stack_set.organizational_unit_ids #=> Array
|
2844
2860
|
# resp.stack_set.organizational_unit_ids[0] #=> String
|
2861
|
+
# resp.stack_set.managed_execution.active #=> Boolean
|
2845
2862
|
#
|
2846
2863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
|
2847
2864
|
#
|
@@ -3811,25 +3828,34 @@ module Aws::CloudFormation
|
|
3811
3828
|
req.send_request(options)
|
3812
3829
|
end
|
3813
3830
|
|
3814
|
-
#
|
3815
|
-
#
|
3816
|
-
#
|
3817
|
-
# and
|
3818
|
-
# import
|
3819
|
-
#
|
3820
|
-
#
|
3821
|
-
#
|
3822
|
-
#
|
3823
|
-
# </note>
|
3831
|
+
# Use the stack import operations for self-managed or service-managed
|
3832
|
+
# StackSets. For self-managed StackSets, the import operation can import
|
3833
|
+
# stacks in the administrator account or in different target accounts
|
3834
|
+
# and Amazon Web Services Regions. For service-managed StackSets, the
|
3835
|
+
# import operation can import any stack in the same AWS Organizations as
|
3836
|
+
# the management account. The import operation can import up to 10
|
3837
|
+
# stacks using inline stack IDs or up to 10,000 stacks using an Amazon
|
3838
|
+
# S3 object.
|
3824
3839
|
#
|
3825
3840
|
# @option params [required, String] :stack_set_name
|
3826
3841
|
# The name of the stack set. The name must be unique in the Region where
|
3827
3842
|
# you create your stack set.
|
3828
3843
|
#
|
3829
|
-
# @option params [
|
3844
|
+
# @option params [Array<String>] :stack_ids
|
3830
3845
|
# The IDs of the stacks you are importing into a stack set. You import
|
3831
3846
|
# up to 10 stacks per stack set at a time.
|
3832
3847
|
#
|
3848
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
3849
|
+
#
|
3850
|
+
# @option params [String] :stack_ids_url
|
3851
|
+
# The Amazon S3 URL which contains list of stack ids to be inputted.
|
3852
|
+
#
|
3853
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
3854
|
+
#
|
3855
|
+
# @option params [Array<String>] :organizational_unit_ids
|
3856
|
+
# The list of OU ID’s to which the stacks being imported has to be
|
3857
|
+
# mapped as deployment target.
|
3858
|
+
#
|
3833
3859
|
# @option params [Types::StackSetOperationPreferences] :operation_preferences
|
3834
3860
|
# The user-specified preferences for how CloudFormation performs a stack
|
3835
3861
|
# set operation.
|
@@ -3863,7 +3889,9 @@ module Aws::CloudFormation
|
|
3863
3889
|
#
|
3864
3890
|
# resp = client.import_stacks_to_stack_set({
|
3865
3891
|
# stack_set_name: "StackSetNameOrId", # required
|
3866
|
-
# stack_ids: ["StackId"],
|
3892
|
+
# stack_ids: ["StackId"],
|
3893
|
+
# stack_ids_url: "StackIdsUrl",
|
3894
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
3867
3895
|
# operation_preferences: {
|
3868
3896
|
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
3869
3897
|
# region_order: ["Region"],
|
@@ -4447,6 +4475,7 @@ module Aws::CloudFormation
|
|
4447
4475
|
# resp.summaries[0].permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
|
4448
4476
|
# resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
4449
4477
|
# resp.summaries[0].last_drift_check_timestamp #=> Time
|
4478
|
+
# resp.summaries[0].managed_execution.active #=> Boolean
|
4450
4479
|
# resp.next_token #=> String
|
4451
4480
|
#
|
4452
4481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets AWS API Documentation
|
@@ -4740,8 +4769,10 @@ module Aws::CloudFormation
|
|
4740
4769
|
# @option params [Types::TypeFilters] :filters
|
4741
4770
|
# Filter criteria to use in determining which extensions to return.
|
4742
4771
|
#
|
4743
|
-
#
|
4744
|
-
# `
|
4772
|
+
# Filters must be compatible with `Visibility` to return valid results.
|
4773
|
+
# For example, specifying `AWS_TYPES` for `Category` and `PRIVATE` for
|
4774
|
+
# `Visibility` returns an empty list of types, but specifying `PUBLIC`
|
4775
|
+
# for `Visibility` returns the desired list.
|
4745
4776
|
#
|
4746
4777
|
# @option params [Integer] :max_results
|
4747
4778
|
# The maximum number of results to be returned with a single call. If
|
@@ -4849,8 +4880,9 @@ module Aws::CloudFormation
|
|
4849
4880
|
# If you do not specify a version number, CloudFormation increments the
|
4850
4881
|
# version number by one minor version release.
|
4851
4882
|
#
|
4852
|
-
#
|
4853
|
-
#
|
4883
|
+
# You cannot specify a version number the first time you publish a type.
|
4884
|
+
# CloudFormation automatically sets the first version number to be
|
4885
|
+
# `1.0.0`.
|
4854
4886
|
#
|
4855
4887
|
#
|
4856
4888
|
#
|
@@ -6445,6 +6477,10 @@ module Aws::CloudFormation
|
|
6445
6477
|
#
|
6446
6478
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
6447
6479
|
#
|
6480
|
+
# @option params [Types::ManagedExecution] :managed_execution
|
6481
|
+
# Describes whether StackSets performs non-conflicting operations
|
6482
|
+
# concurrently and queues conflicting operations.
|
6483
|
+
#
|
6448
6484
|
# @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6449
6485
|
#
|
6450
6486
|
# * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
|
@@ -6496,6 +6532,9 @@ module Aws::CloudFormation
|
|
6496
6532
|
# accounts: ["Account"],
|
6497
6533
|
# regions: ["Region"],
|
6498
6534
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
6535
|
+
# managed_execution: {
|
6536
|
+
# active: false,
|
6537
|
+
# },
|
6499
6538
|
# })
|
6500
6539
|
#
|
6501
6540
|
# @example Response structure
|
@@ -6637,7 +6676,7 @@ module Aws::CloudFormation
|
|
6637
6676
|
params: params,
|
6638
6677
|
config: config)
|
6639
6678
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6640
|
-
context[:gem_version] = '1.
|
6679
|
+
context[:gem_version] = '1.62.0'
|
6641
6680
|
Seahorse::Client::Request.new(handlers, context)
|
6642
6681
|
end
|
6643
6682
|
|
@@ -201,6 +201,8 @@ module Aws::CloudFormation
|
|
201
201
|
LogicalResourceId = Shapes::StringShape.new(name: 'LogicalResourceId')
|
202
202
|
LogicalResourceIds = Shapes::ListShape.new(name: 'LogicalResourceIds')
|
203
203
|
MajorVersion = Shapes::IntegerShape.new(name: 'MajorVersion')
|
204
|
+
ManagedExecution = Shapes::StructureShape.new(name: 'ManagedExecution')
|
205
|
+
ManagedExecutionNullable = Shapes::BooleanShape.new(name: 'ManagedExecutionNullable')
|
204
206
|
MaxConcurrentCount = Shapes::IntegerShape.new(name: 'MaxConcurrentCount')
|
205
207
|
MaxConcurrentPercentage = Shapes::IntegerShape.new(name: 'MaxConcurrentPercentage')
|
206
208
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
@@ -325,6 +327,7 @@ module Aws::CloudFormation
|
|
325
327
|
StackEvents = Shapes::ListShape.new(name: 'StackEvents')
|
326
328
|
StackId = Shapes::StringShape.new(name: 'StackId')
|
327
329
|
StackIdList = Shapes::ListShape.new(name: 'StackIdList')
|
330
|
+
StackIdsUrl = Shapes::StringShape.new(name: 'StackIdsUrl')
|
328
331
|
StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
|
329
332
|
StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
|
330
333
|
StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
|
@@ -614,6 +617,7 @@ module Aws::CloudFormation
|
|
614
617
|
CreateStackSetInput.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
|
615
618
|
CreateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
616
619
|
CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
620
|
+
CreateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
|
617
621
|
CreateStackSetInput.struct_class = Types::CreateStackSetInput
|
618
622
|
|
619
623
|
CreateStackSetOutput.add_member(:stack_set_id, Shapes::ShapeRef.new(shape: StackSetId, location_name: "StackSetId"))
|
@@ -917,7 +921,9 @@ module Aws::CloudFormation
|
|
917
921
|
GetTemplateSummaryOutput.struct_class = Types::GetTemplateSummaryOutput
|
918
922
|
|
919
923
|
ImportStacksToStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
|
920
|
-
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"))
|
921
927
|
ImportStacksToStackSetInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
922
928
|
ImportStacksToStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
923
929
|
ImportStacksToStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
@@ -1065,6 +1071,9 @@ module Aws::CloudFormation
|
|
1065
1071
|
|
1066
1072
|
LogicalResourceIds.member = Shapes::ShapeRef.new(shape: LogicalResourceId)
|
1067
1073
|
|
1074
|
+
ManagedExecution.add_member(:active, Shapes::ShapeRef.new(shape: ManagedExecutionNullable, location_name: "Active"))
|
1075
|
+
ManagedExecution.struct_class = Types::ManagedExecution
|
1076
|
+
|
1068
1077
|
ModuleInfo.add_member(:type_hierarchy, Shapes::ShapeRef.new(shape: TypeHierarchy, location_name: "TypeHierarchy"))
|
1069
1078
|
ModuleInfo.add_member(:logical_id_hierarchy, Shapes::ShapeRef.new(shape: LogicalIdHierarchy, location_name: "LogicalIdHierarchy"))
|
1070
1079
|
ModuleInfo.struct_class = Types::ModuleInfo
|
@@ -1444,6 +1453,7 @@ module Aws::CloudFormation
|
|
1444
1453
|
StackSet.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
|
1445
1454
|
StackSet.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
|
1446
1455
|
StackSet.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
|
1456
|
+
StackSet.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
|
1447
1457
|
StackSet.struct_class = Types::StackSet
|
1448
1458
|
|
1449
1459
|
StackSetDriftDetectionDetails.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackSetDriftStatus, location_name: "DriftStatus"))
|
@@ -1511,6 +1521,7 @@ module Aws::CloudFormation
|
|
1511
1521
|
StackSetSummary.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
|
1512
1522
|
StackSetSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1513
1523
|
StackSetSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
1524
|
+
StackSetSummary.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
|
1514
1525
|
StackSetSummary.struct_class = Types::StackSetSummary
|
1515
1526
|
|
1516
1527
|
StackStatusFilter.member = Shapes::ShapeRef.new(shape: StackStatus)
|
@@ -1686,6 +1697,7 @@ module Aws::CloudFormation
|
|
1686
1697
|
UpdateStackSetInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
|
1687
1698
|
UpdateStackSetInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
|
1688
1699
|
UpdateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
1700
|
+
UpdateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
|
1689
1701
|
UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
|
1690
1702
|
|
1691
1703
|
UpdateStackSetOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -1500,6 +1500,9 @@ module Aws::CloudFormation
|
|
1500
1500
|
# },
|
1501
1501
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1502
1502
|
# client_request_token: "ClientRequestToken",
|
1503
|
+
# managed_execution: {
|
1504
|
+
# active: false,
|
1505
|
+
# },
|
1503
1506
|
# }
|
1504
1507
|
#
|
1505
1508
|
# @!attribute [rw] stack_set_name
|
@@ -1742,6 +1745,11 @@ module Aws::CloudFormation
|
|
1742
1745
|
# not need to pass this option.
|
1743
1746
|
# @return [String]
|
1744
1747
|
#
|
1748
|
+
# @!attribute [rw] managed_execution
|
1749
|
+
# Describes whether StackSets performs non-conflicting operations
|
1750
|
+
# concurrently and queues conflicting operations.
|
1751
|
+
# @return [Types::ManagedExecution]
|
1752
|
+
#
|
1745
1753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSetInput AWS API Documentation
|
1746
1754
|
#
|
1747
1755
|
class CreateStackSetInput < Struct.new(
|
@@ -1758,7 +1766,8 @@ module Aws::CloudFormation
|
|
1758
1766
|
:permission_model,
|
1759
1767
|
:auto_deployment,
|
1760
1768
|
:call_as,
|
1761
|
-
:client_request_token
|
1769
|
+
:client_request_token,
|
1770
|
+
:managed_execution)
|
1762
1771
|
SENSITIVE = []
|
1763
1772
|
include Aws::Structure
|
1764
1773
|
end
|
@@ -4180,7 +4189,9 @@ module Aws::CloudFormation
|
|
4180
4189
|
#
|
4181
4190
|
# {
|
4182
4191
|
# stack_set_name: "StackSetNameOrId", # required
|
4183
|
-
# stack_ids: ["StackId"],
|
4192
|
+
# stack_ids: ["StackId"],
|
4193
|
+
# stack_ids_url: "StackIdsUrl",
|
4194
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
4184
4195
|
# operation_preferences: {
|
4185
4196
|
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
4186
4197
|
# region_order: ["Region"],
|
@@ -4201,6 +4212,19 @@ module Aws::CloudFormation
|
|
4201
4212
|
# @!attribute [rw] stack_ids
|
4202
4213
|
# The IDs of the stacks you are importing into a stack set. You import
|
4203
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.
|
4204
4228
|
# @return [Array<String>]
|
4205
4229
|
#
|
4206
4230
|
# @!attribute [rw] operation_preferences
|
@@ -4236,6 +4260,8 @@ module Aws::CloudFormation
|
|
4236
4260
|
class ImportStacksToStackSetInput < Struct.new(
|
4237
4261
|
:stack_set_name,
|
4238
4262
|
:stack_ids,
|
4263
|
+
:stack_ids_url,
|
4264
|
+
:organizational_unit_ids,
|
4239
4265
|
:operation_preferences,
|
4240
4266
|
:operation_id,
|
4241
4267
|
:call_as)
|
@@ -5211,8 +5237,10 @@ module Aws::CloudFormation
|
|
5211
5237
|
# @!attribute [rw] filters
|
5212
5238
|
# Filter criteria to use in determining which extensions to return.
|
5213
5239
|
#
|
5214
|
-
#
|
5215
|
-
#
|
5240
|
+
# Filters must be compatible with `Visibility` to return valid
|
5241
|
+
# results. For example, specifying `AWS_TYPES` for `Category` and
|
5242
|
+
# `PRIVATE` for `Visibility` returns an empty list of types, but
|
5243
|
+
# specifying `PUBLIC` for `Visibility` returns the desired list.
|
5216
5244
|
# @return [Types::TypeFilters]
|
5217
5245
|
#
|
5218
5246
|
# @!attribute [rw] max_results
|
@@ -5296,6 +5324,42 @@ module Aws::CloudFormation
|
|
5296
5324
|
include Aws::Structure
|
5297
5325
|
end
|
5298
5326
|
|
5327
|
+
# Describes whether StackSets performs non-conflicting operations
|
5328
|
+
# concurrently and queues conflicting operations.
|
5329
|
+
#
|
5330
|
+
# @note When making an API call, you may pass ManagedExecution
|
5331
|
+
# data as a hash:
|
5332
|
+
#
|
5333
|
+
# {
|
5334
|
+
# active: false,
|
5335
|
+
# }
|
5336
|
+
#
|
5337
|
+
# @!attribute [rw] active
|
5338
|
+
# When `true`, StackSets performs non-conflicting operations
|
5339
|
+
# concurrently and queues conflicting operations. After conflicting
|
5340
|
+
# operations finish, StackSets starts queued operations in request
|
5341
|
+
# order.
|
5342
|
+
#
|
5343
|
+
# <note markdown="1"> If there are already running or queued operations, StackSets queues
|
5344
|
+
# all incoming operations even if they are non-conflicting.
|
5345
|
+
#
|
5346
|
+
# You can't modify your stack set's execution configuration while
|
5347
|
+
# there are running or queued operations for that stack set.
|
5348
|
+
#
|
5349
|
+
# </note>
|
5350
|
+
#
|
5351
|
+
# When `false` (default), StackSets performs one operation at a time
|
5352
|
+
# in request order.
|
5353
|
+
# @return [Boolean]
|
5354
|
+
#
|
5355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ManagedExecution AWS API Documentation
|
5356
|
+
#
|
5357
|
+
class ManagedExecution < Struct.new(
|
5358
|
+
:active)
|
5359
|
+
SENSITIVE = []
|
5360
|
+
include Aws::Structure
|
5361
|
+
end
|
5362
|
+
|
5299
5363
|
# Contains information about the module from which the resource was
|
5300
5364
|
# created, if the resource was created from a module included in the
|
5301
5365
|
# stack template.
|
@@ -5435,8 +5499,8 @@ module Aws::CloudFormation
|
|
5435
5499
|
# @return [Boolean]
|
5436
5500
|
#
|
5437
5501
|
# @!attribute [rw] resolved_value
|
5438
|
-
# Read-only. The value that corresponds to a
|
5439
|
-
# 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
|
5440
5504
|
# the template.
|
5441
5505
|
#
|
5442
5506
|
#
|
@@ -5624,8 +5688,9 @@ module Aws::CloudFormation
|
|
5624
5688
|
# If you do not specify a version number, CloudFormation increments
|
5625
5689
|
# the version number by one minor version release.
|
5626
5690
|
#
|
5627
|
-
#
|
5628
|
-
#
|
5691
|
+
# You cannot specify a version number the first time you publish a
|
5692
|
+
# type. CloudFormation automatically sets the first version number to
|
5693
|
+
# be `1.0.0`.
|
5629
5694
|
#
|
5630
5695
|
#
|
5631
5696
|
#
|
@@ -6414,12 +6479,14 @@ module Aws::CloudFormation
|
|
6414
6479
|
# @return [String]
|
6415
6480
|
#
|
6416
6481
|
# @!attribute [rw] type
|
6417
|
-
# The resource type of the rollback trigger.
|
6418
|
-
# [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.
|
6419
6485
|
#
|
6420
6486
|
#
|
6421
6487
|
#
|
6422
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
|
6423
6490
|
# @return [String]
|
6424
6491
|
#
|
6425
6492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger AWS API Documentation
|
@@ -7861,6 +7928,11 @@ module Aws::CloudFormation
|
|
7861
7928
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
7862
7929
|
# @return [Array<String>]
|
7863
7930
|
#
|
7931
|
+
# @!attribute [rw] managed_execution
|
7932
|
+
# Describes whether StackSets performs non-conflicting operations
|
7933
|
+
# concurrently and queues conflicting operations.
|
7934
|
+
# @return [Types::ManagedExecution]
|
7935
|
+
#
|
7864
7936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
7865
7937
|
#
|
7866
7938
|
class StackSet < Struct.new(
|
@@ -7878,7 +7950,8 @@ module Aws::CloudFormation
|
|
7878
7950
|
:stack_set_drift_detection_details,
|
7879
7951
|
:auto_deployment,
|
7880
7952
|
:permission_model,
|
7881
|
-
:organizational_unit_ids
|
7953
|
+
:organizational_unit_ids,
|
7954
|
+
:managed_execution)
|
7882
7955
|
SENSITIVE = []
|
7883
7956
|
include Aws::Structure
|
7884
7957
|
end
|
@@ -8481,6 +8554,11 @@ module Aws::CloudFormation
|
|
8481
8554
|
# set on which drift detection has not yet been performed.
|
8482
8555
|
# @return [Time]
|
8483
8556
|
#
|
8557
|
+
# @!attribute [rw] managed_execution
|
8558
|
+
# Describes whether StackSets performs non-conflicting operations
|
8559
|
+
# concurrently and queues conflicting operations.
|
8560
|
+
# @return [Types::ManagedExecution]
|
8561
|
+
#
|
8484
8562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetSummary AWS API Documentation
|
8485
8563
|
#
|
8486
8564
|
class StackSetSummary < Struct.new(
|
@@ -8491,7 +8569,8 @@ module Aws::CloudFormation
|
|
8491
8569
|
:auto_deployment,
|
8492
8570
|
:permission_model,
|
8493
8571
|
:drift_status,
|
8494
|
-
:last_drift_check_timestamp
|
8572
|
+
:last_drift_check_timestamp,
|
8573
|
+
:managed_execution)
|
8495
8574
|
SENSITIVE = []
|
8496
8575
|
include Aws::Structure
|
8497
8576
|
end
|
@@ -8963,7 +9042,7 @@ module Aws::CloudFormation
|
|
8963
9042
|
# * `ACTIVATED`\: Public extensions that have been activated for this
|
8964
9043
|
# account and region.
|
8965
9044
|
#
|
8966
|
-
# * `
|
9045
|
+
# * `THIRD_PARTY`\: Extensions available for use from publishers other
|
8967
9046
|
# than Amazon. This includes:
|
8968
9047
|
#
|
8969
9048
|
# * Private extensions registered in the account.
|
@@ -8971,14 +9050,14 @@ module Aws::CloudFormation
|
|
8971
9050
|
# * Public extensions from publishers other than Amazon, whether
|
8972
9051
|
# activated or not.
|
8973
9052
|
#
|
8974
|
-
# * `
|
9053
|
+
# * `AWS_TYPES`\: Extensions available for use from Amazon.
|
8975
9054
|
# @return [String]
|
8976
9055
|
#
|
8977
9056
|
# @!attribute [rw] publisher_id
|
8978
9057
|
# The id of the publisher of the extension.
|
8979
9058
|
#
|
8980
9059
|
# Extensions published by Amazon are not assigned a publisher ID. Use
|
8981
|
-
# the `
|
9060
|
+
# the `AWS_TYPE` category to specify a list of types published by
|
8982
9061
|
# Amazon.
|
8983
9062
|
# @return [String]
|
8984
9063
|
#
|
@@ -9816,6 +9895,9 @@ module Aws::CloudFormation
|
|
9816
9895
|
# accounts: ["Account"],
|
9817
9896
|
# regions: ["Region"],
|
9818
9897
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
9898
|
+
# managed_execution: {
|
9899
|
+
# active: false,
|
9900
|
+
# },
|
9819
9901
|
# }
|
9820
9902
|
#
|
9821
9903
|
# @!attribute [rw] stack_set_name
|
@@ -10152,6 +10234,11 @@ module Aws::CloudFormation
|
|
10152
10234
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
10153
10235
|
# @return [String]
|
10154
10236
|
#
|
10237
|
+
# @!attribute [rw] managed_execution
|
10238
|
+
# Describes whether StackSets performs non-conflicting operations
|
10239
|
+
# concurrently and queues conflicting operations.
|
10240
|
+
# @return [Types::ManagedExecution]
|
10241
|
+
#
|
10155
10242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSetInput AWS API Documentation
|
10156
10243
|
#
|
10157
10244
|
class UpdateStackSetInput < Struct.new(
|
@@ -10172,7 +10259,8 @@ module Aws::CloudFormation
|
|
10172
10259
|
:operation_id,
|
10173
10260
|
:accounts,
|
10174
10261
|
:regions,
|
10175
|
-
:call_as
|
10262
|
+
:call_as,
|
10263
|
+
:managed_execution)
|
10176
10264
|
SENSITIVE = []
|
10177
10265
|
include Aws::Structure
|
10178
10266
|
end
|
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.62.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-
|
11
|
+
date: 2021-11-22 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.122.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.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|