aws-sdk-cloudformation 1.59.0 → 1.63.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 +59 -18
- 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: 22d15036ffad18a1205e6e1aea786816c2bbacb4bd86643f6ae220cc10986bec
|
4
|
+
data.tar.gz: 5dc0aeba767bbb77a46fc7a64007d11b3651958ba3f889bf1b208875bd7565c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ebbaba8cc8a1ad4279c8abd53e86f9805c966ca4ac346ee028dce42fd3d0ad7b7898f2cd2a1f69df63908fbb0bab427fb7932611837851f935b2dfd0f161be5
|
7
|
+
data.tar.gz: '05615697823a4054f24d3ace5c552f6506eb77e789ce64f4bb1cad4b49d6d3897e805798bffd9321536edc1ca0cf4834545f90eaa3fe443ae5cc3b3844bcfa1e'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.63.0 (2021-11-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.62.0 (2021-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release include SDK changes for the feature launch of Stack Import to Service Managed StackSet.
|
13
|
+
|
14
|
+
1.61.0 (2021-11-19)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* 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.
|
18
|
+
|
19
|
+
1.60.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.59.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.63.0
|
@@ -119,7 +119,9 @@ module Aws::CloudFormation
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -275,6 +277,15 @@ module Aws::CloudFormation
|
|
275
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
278
|
# requests are made, and retries are disabled.
|
277
279
|
#
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
282
|
+
# will be used if available.
|
283
|
+
#
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
287
|
+
# is set to `true`.
|
288
|
+
#
|
278
289
|
# @option options [Boolean] :validate_params (true)
|
279
290
|
# When `true`, request parameters are validated before
|
280
291
|
# sending the request.
|
@@ -1665,6 +1676,10 @@ module Aws::CloudFormation
|
|
1665
1676
|
# **A suitable default value is auto-generated.** You should normally
|
1666
1677
|
# not need to pass this option.**
|
1667
1678
|
#
|
1679
|
+
# @option params [Types::ManagedExecution] :managed_execution
|
1680
|
+
# Describes whether StackSets performs non-conflicting operations
|
1681
|
+
# concurrently and queues conflicting operations.
|
1682
|
+
#
|
1668
1683
|
# @return [Types::CreateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1669
1684
|
#
|
1670
1685
|
# * {Types::CreateStackSetOutput#stack_set_id #stack_set_id} => String
|
@@ -1701,6 +1716,9 @@ module Aws::CloudFormation
|
|
1701
1716
|
# },
|
1702
1717
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1703
1718
|
# client_request_token: "ClientRequestToken",
|
1719
|
+
# managed_execution: {
|
1720
|
+
# active: false,
|
1721
|
+
# },
|
1704
1722
|
# })
|
1705
1723
|
#
|
1706
1724
|
# @example Response structure
|
@@ -2842,6 +2860,7 @@ module Aws::CloudFormation
|
|
2842
2860
|
# resp.stack_set.permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
|
2843
2861
|
# resp.stack_set.organizational_unit_ids #=> Array
|
2844
2862
|
# resp.stack_set.organizational_unit_ids[0] #=> String
|
2863
|
+
# resp.stack_set.managed_execution.active #=> Boolean
|
2845
2864
|
#
|
2846
2865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
|
2847
2866
|
#
|
@@ -3811,25 +3830,34 @@ module Aws::CloudFormation
|
|
3811
3830
|
req.send_request(options)
|
3812
3831
|
end
|
3813
3832
|
|
3814
|
-
#
|
3815
|
-
#
|
3816
|
-
#
|
3817
|
-
# and
|
3818
|
-
# import
|
3819
|
-
#
|
3820
|
-
#
|
3821
|
-
#
|
3822
|
-
#
|
3823
|
-
# </note>
|
3833
|
+
# Use the stack import operations for self-managed or service-managed
|
3834
|
+
# StackSets. For self-managed StackSets, the import operation can import
|
3835
|
+
# stacks in the administrator account or in different target accounts
|
3836
|
+
# and Amazon Web Services Regions. For service-managed StackSets, the
|
3837
|
+
# import operation can import any stack in the same AWS Organizations as
|
3838
|
+
# the management account. The import operation can import up to 10
|
3839
|
+
# stacks using inline stack IDs or up to 10,000 stacks using an Amazon
|
3840
|
+
# S3 object.
|
3824
3841
|
#
|
3825
3842
|
# @option params [required, String] :stack_set_name
|
3826
3843
|
# The name of the stack set. The name must be unique in the Region where
|
3827
3844
|
# you create your stack set.
|
3828
3845
|
#
|
3829
|
-
# @option params [
|
3846
|
+
# @option params [Array<String>] :stack_ids
|
3830
3847
|
# The IDs of the stacks you are importing into a stack set. You import
|
3831
3848
|
# up to 10 stacks per stack set at a time.
|
3832
3849
|
#
|
3850
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
3851
|
+
#
|
3852
|
+
# @option params [String] :stack_ids_url
|
3853
|
+
# The Amazon S3 URL which contains list of stack ids to be inputted.
|
3854
|
+
#
|
3855
|
+
# Specify either `StackIds` or `StackIdsUrl`.
|
3856
|
+
#
|
3857
|
+
# @option params [Array<String>] :organizational_unit_ids
|
3858
|
+
# The list of OU ID’s to which the stacks being imported has to be
|
3859
|
+
# mapped as deployment target.
|
3860
|
+
#
|
3833
3861
|
# @option params [Types::StackSetOperationPreferences] :operation_preferences
|
3834
3862
|
# The user-specified preferences for how CloudFormation performs a stack
|
3835
3863
|
# set operation.
|
@@ -3863,7 +3891,9 @@ module Aws::CloudFormation
|
|
3863
3891
|
#
|
3864
3892
|
# resp = client.import_stacks_to_stack_set({
|
3865
3893
|
# stack_set_name: "StackSetNameOrId", # required
|
3866
|
-
# stack_ids: ["StackId"],
|
3894
|
+
# stack_ids: ["StackId"],
|
3895
|
+
# stack_ids_url: "StackIdsUrl",
|
3896
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
3867
3897
|
# operation_preferences: {
|
3868
3898
|
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
3869
3899
|
# region_order: ["Region"],
|
@@ -4447,6 +4477,7 @@ module Aws::CloudFormation
|
|
4447
4477
|
# resp.summaries[0].permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
|
4448
4478
|
# resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
4449
4479
|
# resp.summaries[0].last_drift_check_timestamp #=> Time
|
4480
|
+
# resp.summaries[0].managed_execution.active #=> Boolean
|
4450
4481
|
# resp.next_token #=> String
|
4451
4482
|
#
|
4452
4483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets AWS API Documentation
|
@@ -4740,8 +4771,10 @@ module Aws::CloudFormation
|
|
4740
4771
|
# @option params [Types::TypeFilters] :filters
|
4741
4772
|
# Filter criteria to use in determining which extensions to return.
|
4742
4773
|
#
|
4743
|
-
#
|
4744
|
-
# `
|
4774
|
+
# Filters must be compatible with `Visibility` to return valid results.
|
4775
|
+
# For example, specifying `AWS_TYPES` for `Category` and `PRIVATE` for
|
4776
|
+
# `Visibility` returns an empty list of types, but specifying `PUBLIC`
|
4777
|
+
# for `Visibility` returns the desired list.
|
4745
4778
|
#
|
4746
4779
|
# @option params [Integer] :max_results
|
4747
4780
|
# The maximum number of results to be returned with a single call. If
|
@@ -4849,8 +4882,9 @@ module Aws::CloudFormation
|
|
4849
4882
|
# If you do not specify a version number, CloudFormation increments the
|
4850
4883
|
# version number by one minor version release.
|
4851
4884
|
#
|
4852
|
-
#
|
4853
|
-
#
|
4885
|
+
# You cannot specify a version number the first time you publish a type.
|
4886
|
+
# CloudFormation automatically sets the first version number to be
|
4887
|
+
# `1.0.0`.
|
4854
4888
|
#
|
4855
4889
|
#
|
4856
4890
|
#
|
@@ -6445,6 +6479,10 @@ module Aws::CloudFormation
|
|
6445
6479
|
#
|
6446
6480
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
6447
6481
|
#
|
6482
|
+
# @option params [Types::ManagedExecution] :managed_execution
|
6483
|
+
# Describes whether StackSets performs non-conflicting operations
|
6484
|
+
# concurrently and queues conflicting operations.
|
6485
|
+
#
|
6448
6486
|
# @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6449
6487
|
#
|
6450
6488
|
# * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
|
@@ -6496,6 +6534,9 @@ module Aws::CloudFormation
|
|
6496
6534
|
# accounts: ["Account"],
|
6497
6535
|
# regions: ["Region"],
|
6498
6536
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
6537
|
+
# managed_execution: {
|
6538
|
+
# active: false,
|
6539
|
+
# },
|
6499
6540
|
# })
|
6500
6541
|
#
|
6501
6542
|
# @example Response structure
|
@@ -6637,7 +6678,7 @@ module Aws::CloudFormation
|
|
6637
6678
|
params: params,
|
6638
6679
|
config: config)
|
6639
6680
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6640
|
-
context[:gem_version] = '1.
|
6681
|
+
context[:gem_version] = '1.63.0'
|
6641
6682
|
Seahorse::Client::Request.new(handlers, context)
|
6642
6683
|
end
|
6643
6684
|
|
@@ -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.63.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-30 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
|