aws-sdk-cloudformation 1.71.0 → 1.72.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +26 -5
- data/lib/aws-sdk-cloudformation/client_api.rb +20 -0
- data/lib/aws-sdk-cloudformation/types.rb +99 -11
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46a507b6b348e97c8fecb70958267c29ad15fe519652e40d6041edcc70c3526c
|
4
|
+
data.tar.gz: f8bf054f14da9660c53527348764373a27157a91e5e4633469fde0d9b0237e71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a489660e970c726e059c62c1240c90434706ecacdeb694da7401ac2dcb431cfa11825dd36bb70937fff548b355760114c163ff175dd3a4f59e08519f2a1f617
|
7
|
+
data.tar.gz: ad12e7e4b134035fd44600c519f2f94dfc899023ca6a1c7eb5342a8f4b29f2cdfe5942b11470d8cd58abe53222fbb8c50e594b1325a2927ce265bb89d660a57b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2022-10-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds more fields to improves visibility of AWS CloudFormation StackSets information in following APIs: ListStackInstances, DescribeStackInstance, ListStackSetOperationResults, ListStackSetOperations, DescribeStackSetOperation.
|
8
|
+
|
4
9
|
1.71.0 (2022-10-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -2632,6 +2632,7 @@ module Aws::CloudFormation
|
|
2632
2632
|
# resp.stack_instance.organizational_unit_id #=> String
|
2633
2633
|
# resp.stack_instance.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
2634
2634
|
# resp.stack_instance.last_drift_check_timestamp #=> Time
|
2635
|
+
# resp.stack_instance.last_operation_id #=> String
|
2635
2636
|
#
|
2636
2637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstance AWS API Documentation
|
2637
2638
|
#
|
@@ -3055,6 +3056,7 @@ module Aws::CloudFormation
|
|
3055
3056
|
# resp.stack_set_operation.stack_set_drift_detection_details.in_progress_stack_instances_count #=> Integer
|
3056
3057
|
# resp.stack_set_operation.stack_set_drift_detection_details.failed_stack_instances_count #=> Integer
|
3057
3058
|
# resp.stack_set_operation.status_reason #=> String
|
3059
|
+
# resp.stack_set_operation.status_details.failed_stack_instances_count #=> Integer
|
3058
3060
|
#
|
3059
3061
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetOperation AWS API Documentation
|
3060
3062
|
#
|
@@ -4206,7 +4208,7 @@ module Aws::CloudFormation
|
|
4206
4208
|
# request parameter to get the next set of results.
|
4207
4209
|
#
|
4208
4210
|
# @option params [Array<Types::StackInstanceFilter>] :filters
|
4209
|
-
# The
|
4211
|
+
# The filter to apply to stack instances
|
4210
4212
|
#
|
4211
4213
|
# @option params [String] :stack_instance_account
|
4212
4214
|
# The name of the Amazon Web Services account that you want to list
|
@@ -4252,7 +4254,7 @@ module Aws::CloudFormation
|
|
4252
4254
|
# max_results: 1,
|
4253
4255
|
# filters: [
|
4254
4256
|
# {
|
4255
|
-
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
4257
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID
|
4256
4258
|
# values: "StackInstanceFilterValues",
|
4257
4259
|
# },
|
4258
4260
|
# ],
|
@@ -4274,6 +4276,7 @@ module Aws::CloudFormation
|
|
4274
4276
|
# resp.summaries[0].organizational_unit_id #=> String
|
4275
4277
|
# resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
4276
4278
|
# resp.summaries[0].last_drift_check_timestamp #=> Time
|
4279
|
+
# resp.summaries[0].last_operation_id #=> String
|
4277
4280
|
# resp.next_token #=> String
|
4278
4281
|
#
|
4279
4282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstances AWS API Documentation
|
@@ -4389,6 +4392,9 @@ module Aws::CloudFormation
|
|
4389
4392
|
#
|
4390
4393
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
4391
4394
|
#
|
4395
|
+
# @option params [Array<Types::OperationResultFilter>] :filters
|
4396
|
+
# The filter to apply to operation results.
|
4397
|
+
#
|
4392
4398
|
# @return [Types::ListStackSetOperationResultsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4393
4399
|
#
|
4394
4400
|
# * {Types::ListStackSetOperationResultsOutput#summaries #summaries} => Array<Types::StackSetOperationResultSummary>
|
@@ -4404,6 +4410,12 @@ module Aws::CloudFormation
|
|
4404
4410
|
# next_token: "NextToken",
|
4405
4411
|
# max_results: 1,
|
4406
4412
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4413
|
+
# filters: [
|
4414
|
+
# {
|
4415
|
+
# name: "OPERATION_RESULT_STATUS", # accepts OPERATION_RESULT_STATUS
|
4416
|
+
# values: "OperationResultFilterValues",
|
4417
|
+
# },
|
4418
|
+
# ],
|
4407
4419
|
# })
|
4408
4420
|
#
|
4409
4421
|
# @example Response structure
|
@@ -4495,6 +4507,14 @@ module Aws::CloudFormation
|
|
4495
4507
|
# resp.summaries[0].creation_timestamp #=> Time
|
4496
4508
|
# resp.summaries[0].end_timestamp #=> Time
|
4497
4509
|
# resp.summaries[0].status_reason #=> String
|
4510
|
+
# resp.summaries[0].status_details.failed_stack_instances_count #=> Integer
|
4511
|
+
# resp.summaries[0].operation_preferences.region_concurrency_type #=> String, one of "SEQUENTIAL", "PARALLEL"
|
4512
|
+
# resp.summaries[0].operation_preferences.region_order #=> Array
|
4513
|
+
# resp.summaries[0].operation_preferences.region_order[0] #=> String
|
4514
|
+
# resp.summaries[0].operation_preferences.failure_tolerance_count #=> Integer
|
4515
|
+
# resp.summaries[0].operation_preferences.failure_tolerance_percentage #=> Integer
|
4516
|
+
# resp.summaries[0].operation_preferences.max_concurrent_count #=> Integer
|
4517
|
+
# resp.summaries[0].operation_preferences.max_concurrent_percentage #=> Integer
|
4498
4518
|
# resp.next_token #=> String
|
4499
4519
|
#
|
4500
4520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperations AWS API Documentation
|
@@ -5685,8 +5705,9 @@ module Aws::CloudFormation
|
|
5685
5705
|
# [RegisterType](AWSCloudFormation/latest/APIReference/API_RegisterType.html).
|
5686
5706
|
#
|
5687
5707
|
# Once you've initiated testing on an extension using `TestType`, you
|
5688
|
-
# can
|
5689
|
-
# status description for the
|
5708
|
+
# can pass the returned `TypeVersionArn` into [DescribeType][2] to
|
5709
|
+
# monitor the current test status and test status description for the
|
5710
|
+
# extension.
|
5690
5711
|
#
|
5691
5712
|
# An extension must have a test status of `PASSED` before it can be
|
5692
5713
|
# published. For more information, see [Publishing extensions to make
|
@@ -6802,7 +6823,7 @@ module Aws::CloudFormation
|
|
6802
6823
|
params: params,
|
6803
6824
|
config: config)
|
6804
6825
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6805
|
-
context[:gem_version] = '1.
|
6826
|
+
context[:gem_version] = '1.72.0'
|
6806
6827
|
Seahorse::Client::Request.new(handlers, context)
|
6807
6828
|
end
|
6808
6829
|
|
@@ -237,6 +237,10 @@ module Aws::CloudFormation
|
|
237
237
|
OperationIdAlreadyExistsException = Shapes::StructureShape.new(name: 'OperationIdAlreadyExistsException')
|
238
238
|
OperationInProgressException = Shapes::StructureShape.new(name: 'OperationInProgressException')
|
239
239
|
OperationNotFoundException = Shapes::StructureShape.new(name: 'OperationNotFoundException')
|
240
|
+
OperationResultFilter = Shapes::StructureShape.new(name: 'OperationResultFilter')
|
241
|
+
OperationResultFilterName = Shapes::StringShape.new(name: 'OperationResultFilterName')
|
242
|
+
OperationResultFilterValues = Shapes::StringShape.new(name: 'OperationResultFilterValues')
|
243
|
+
OperationResultFilters = Shapes::ListShape.new(name: 'OperationResultFilters')
|
240
244
|
OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
|
241
245
|
OperationStatusCheckFailedException = Shapes::StructureShape.new(name: 'OperationStatusCheckFailedException')
|
242
246
|
OptionalSecureUrl = Shapes::StringShape.new(name: 'OptionalSecureUrl')
|
@@ -393,6 +397,7 @@ module Aws::CloudFormation
|
|
393
397
|
StackSetOperationResultSummaries = Shapes::ListShape.new(name: 'StackSetOperationResultSummaries')
|
394
398
|
StackSetOperationResultSummary = Shapes::StructureShape.new(name: 'StackSetOperationResultSummary')
|
395
399
|
StackSetOperationStatus = Shapes::StringShape.new(name: 'StackSetOperationStatus')
|
400
|
+
StackSetOperationStatusDetails = Shapes::StructureShape.new(name: 'StackSetOperationStatusDetails')
|
396
401
|
StackSetOperationStatusReason = Shapes::StringShape.new(name: 'StackSetOperationStatusReason')
|
397
402
|
StackSetOperationSummaries = Shapes::ListShape.new(name: 'StackSetOperationSummaries')
|
398
403
|
StackSetOperationSummary = Shapes::StructureShape.new(name: 'StackSetOperationSummary')
|
@@ -1049,6 +1054,7 @@ module Aws::CloudFormation
|
|
1049
1054
|
ListStackSetOperationResultsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1050
1055
|
ListStackSetOperationResultsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
1051
1056
|
ListStackSetOperationResultsInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
1057
|
+
ListStackSetOperationResultsInput.add_member(:filters, Shapes::ShapeRef.new(shape: OperationResultFilters, location_name: "Filters"))
|
1052
1058
|
ListStackSetOperationResultsInput.struct_class = Types::ListStackSetOperationResultsInput
|
1053
1059
|
|
1054
1060
|
ListStackSetOperationResultsOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackSetOperationResultSummaries, location_name: "Summaries"))
|
@@ -1144,6 +1150,12 @@ module Aws::CloudFormation
|
|
1144
1150
|
|
1145
1151
|
OperationNotFoundException.struct_class = Types::OperationNotFoundException
|
1146
1152
|
|
1153
|
+
OperationResultFilter.add_member(:name, Shapes::ShapeRef.new(shape: OperationResultFilterName, location_name: "Name"))
|
1154
|
+
OperationResultFilter.add_member(:values, Shapes::ShapeRef.new(shape: OperationResultFilterValues, location_name: "Values"))
|
1155
|
+
OperationResultFilter.struct_class = Types::OperationResultFilter
|
1156
|
+
|
1157
|
+
OperationResultFilters.member = Shapes::ShapeRef.new(shape: OperationResultFilter)
|
1158
|
+
|
1147
1159
|
OperationStatusCheckFailedException.struct_class = Types::OperationStatusCheckFailedException
|
1148
1160
|
|
1149
1161
|
OrganizationalUnitIdList.member = Shapes::ShapeRef.new(shape: OrganizationalUnitId)
|
@@ -1404,6 +1416,7 @@ module Aws::CloudFormation
|
|
1404
1416
|
StackInstance.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1405
1417
|
StackInstance.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1406
1418
|
StackInstance.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
1419
|
+
StackInstance.add_member(:last_operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "LastOperationId"))
|
1407
1420
|
StackInstance.struct_class = Types::StackInstance
|
1408
1421
|
|
1409
1422
|
StackInstanceComprehensiveStatus.add_member(:detailed_status, Shapes::ShapeRef.new(shape: StackInstanceDetailedStatus, location_name: "DetailedStatus"))
|
@@ -1429,6 +1442,7 @@ module Aws::CloudFormation
|
|
1429
1442
|
StackInstanceSummary.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1430
1443
|
StackInstanceSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1431
1444
|
StackInstanceSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
1445
|
+
StackInstanceSummary.add_member(:last_operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "LastOperationId"))
|
1432
1446
|
StackInstanceSummary.struct_class = Types::StackInstanceSummary
|
1433
1447
|
|
1434
1448
|
StackNotFoundException.struct_class = Types::StackNotFoundException
|
@@ -1544,6 +1558,7 @@ module Aws::CloudFormation
|
|
1544
1558
|
StackSetOperation.add_member(:deployment_targets, Shapes::ShapeRef.new(shape: DeploymentTargets, location_name: "DeploymentTargets"))
|
1545
1559
|
StackSetOperation.add_member(:stack_set_drift_detection_details, Shapes::ShapeRef.new(shape: StackSetDriftDetectionDetails, location_name: "StackSetDriftDetectionDetails"))
|
1546
1560
|
StackSetOperation.add_member(:status_reason, Shapes::ShapeRef.new(shape: StackSetOperationStatusReason, location_name: "StatusReason"))
|
1561
|
+
StackSetOperation.add_member(:status_details, Shapes::ShapeRef.new(shape: StackSetOperationStatusDetails, location_name: "StatusDetails"))
|
1547
1562
|
StackSetOperation.struct_class = Types::StackSetOperation
|
1548
1563
|
|
1549
1564
|
StackSetOperationPreferences.add_member(:region_concurrency_type, Shapes::ShapeRef.new(shape: RegionConcurrencyType, location_name: "RegionConcurrencyType"))
|
@@ -1564,6 +1579,9 @@ module Aws::CloudFormation
|
|
1564
1579
|
StackSetOperationResultSummary.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1565
1580
|
StackSetOperationResultSummary.struct_class = Types::StackSetOperationResultSummary
|
1566
1581
|
|
1582
|
+
StackSetOperationStatusDetails.add_member(:failed_stack_instances_count, Shapes::ShapeRef.new(shape: FailedStackInstancesCount, location_name: "FailedStackInstancesCount"))
|
1583
|
+
StackSetOperationStatusDetails.struct_class = Types::StackSetOperationStatusDetails
|
1584
|
+
|
1567
1585
|
StackSetOperationSummaries.member = Shapes::ShapeRef.new(shape: StackSetOperationSummary)
|
1568
1586
|
|
1569
1587
|
StackSetOperationSummary.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -1572,6 +1590,8 @@ module Aws::CloudFormation
|
|
1572
1590
|
StackSetOperationSummary.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimestamp"))
|
1573
1591
|
StackSetOperationSummary.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimestamp"))
|
1574
1592
|
StackSetOperationSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: StackSetOperationStatusReason, location_name: "StatusReason"))
|
1593
|
+
StackSetOperationSummary.add_member(:status_details, Shapes::ShapeRef.new(shape: StackSetOperationStatusDetails, location_name: "StatusDetails"))
|
1594
|
+
StackSetOperationSummary.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
1575
1595
|
StackSetOperationSummary.struct_class = Types::StackSetOperationSummary
|
1576
1596
|
|
1577
1597
|
StackSetSummaries.member = Shapes::ShapeRef.new(shape: StackSetSummary)
|
@@ -2295,8 +2295,8 @@ module Aws::CloudFormation
|
|
2295
2295
|
# `Accounts` parameter. This enables user to avoid certain accounts
|
2296
2296
|
# within an OU such as suspended accounts.
|
2297
2297
|
#
|
2298
|
-
# * `UNION`\:
|
2299
|
-
#
|
2298
|
+
# * `UNION`\: StackSets includes additional accounts deployment
|
2299
|
+
# targets.
|
2300
2300
|
#
|
2301
2301
|
# This is the default value if `AccountFilterType` is not provided.
|
2302
2302
|
# This enables user to update an entire OU and individual accounts
|
@@ -4708,7 +4708,7 @@ module Aws::CloudFormation
|
|
4708
4708
|
# max_results: 1,
|
4709
4709
|
# filters: [
|
4710
4710
|
# {
|
4711
|
-
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
4711
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID
|
4712
4712
|
# values: "StackInstanceFilterValues",
|
4713
4713
|
# },
|
4714
4714
|
# ],
|
@@ -4739,7 +4739,7 @@ module Aws::CloudFormation
|
|
4739
4739
|
# @return [Integer]
|
4740
4740
|
#
|
4741
4741
|
# @!attribute [rw] filters
|
4742
|
-
# The
|
4742
|
+
# The filter to apply to stack instances
|
4743
4743
|
# @return [Array<Types::StackInstanceFilter>]
|
4744
4744
|
#
|
4745
4745
|
# @!attribute [rw] stack_instance_account
|
@@ -4876,6 +4876,12 @@ module Aws::CloudFormation
|
|
4876
4876
|
# next_token: "NextToken",
|
4877
4877
|
# max_results: 1,
|
4878
4878
|
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4879
|
+
# filters: [
|
4880
|
+
# {
|
4881
|
+
# name: "OPERATION_RESULT_STATUS", # accepts OPERATION_RESULT_STATUS
|
4882
|
+
# values: "OperationResultFilterValues",
|
4883
|
+
# },
|
4884
|
+
# ],
|
4879
4885
|
# }
|
4880
4886
|
#
|
4881
4887
|
# @!attribute [rw] stack_set_name
|
@@ -4927,6 +4933,10 @@ module Aws::CloudFormation
|
|
4927
4933
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
4928
4934
|
# @return [String]
|
4929
4935
|
#
|
4936
|
+
# @!attribute [rw] filters
|
4937
|
+
# The filter to apply to operation results.
|
4938
|
+
# @return [Array<Types::OperationResultFilter>]
|
4939
|
+
#
|
4930
4940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationResultsInput AWS API Documentation
|
4931
4941
|
#
|
4932
4942
|
class ListStackSetOperationResultsInput < Struct.new(
|
@@ -4934,7 +4944,8 @@ module Aws::CloudFormation
|
|
4934
4944
|
:operation_id,
|
4935
4945
|
:next_token,
|
4936
4946
|
:max_results,
|
4937
|
-
:call_as
|
4947
|
+
:call_as,
|
4948
|
+
:filters)
|
4938
4949
|
SENSITIVE = []
|
4939
4950
|
include Aws::Structure
|
4940
4951
|
end
|
@@ -5667,6 +5678,33 @@ module Aws::CloudFormation
|
|
5667
5678
|
#
|
5668
5679
|
class OperationNotFoundException < Aws::EmptyStructure; end
|
5669
5680
|
|
5681
|
+
# The status that operation results are filtered by.
|
5682
|
+
#
|
5683
|
+
# @note When making an API call, you may pass OperationResultFilter
|
5684
|
+
# data as a hash:
|
5685
|
+
#
|
5686
|
+
# {
|
5687
|
+
# name: "OPERATION_RESULT_STATUS", # accepts OPERATION_RESULT_STATUS
|
5688
|
+
# values: "OperationResultFilterValues",
|
5689
|
+
# }
|
5690
|
+
#
|
5691
|
+
# @!attribute [rw] name
|
5692
|
+
# The type of filter to apply.
|
5693
|
+
# @return [String]
|
5694
|
+
#
|
5695
|
+
# @!attribute [rw] values
|
5696
|
+
# The value to filter by.
|
5697
|
+
# @return [String]
|
5698
|
+
#
|
5699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/OperationResultFilter AWS API Documentation
|
5700
|
+
#
|
5701
|
+
class OperationResultFilter < Struct.new(
|
5702
|
+
:name,
|
5703
|
+
:values)
|
5704
|
+
SENSITIVE = []
|
5705
|
+
include Aws::Structure
|
5706
|
+
end
|
5707
|
+
|
5670
5708
|
# Error reserved for use by the [CloudFormation CLI][1]. CloudFormation
|
5671
5709
|
# doesn't return this error to users.
|
5672
5710
|
#
|
@@ -7435,6 +7473,11 @@ module Aws::CloudFormation
|
|
7435
7473
|
# stack instance on which drift detection hasn't yet been performed.
|
7436
7474
|
# @return [Time]
|
7437
7475
|
#
|
7476
|
+
# @!attribute [rw] last_operation_id
|
7477
|
+
# The last unique ID of a StackSet operation performed on a stack
|
7478
|
+
# instance.
|
7479
|
+
# @return [String]
|
7480
|
+
#
|
7438
7481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstance AWS API Documentation
|
7439
7482
|
#
|
7440
7483
|
class StackInstance < Struct.new(
|
@@ -7448,7 +7491,8 @@ module Aws::CloudFormation
|
|
7448
7491
|
:status_reason,
|
7449
7492
|
:organizational_unit_id,
|
7450
7493
|
:drift_status,
|
7451
|
-
:last_drift_check_timestamp
|
7494
|
+
:last_drift_check_timestamp,
|
7495
|
+
:last_operation_id)
|
7452
7496
|
SENSITIVE = []
|
7453
7497
|
include Aws::Structure
|
7454
7498
|
end
|
@@ -7491,13 +7535,13 @@ module Aws::CloudFormation
|
|
7491
7535
|
include Aws::Structure
|
7492
7536
|
end
|
7493
7537
|
|
7494
|
-
# The
|
7538
|
+
# The filter to apply to stack instances
|
7495
7539
|
#
|
7496
7540
|
# @note When making an API call, you may pass StackInstanceFilter
|
7497
7541
|
# data as a hash:
|
7498
7542
|
#
|
7499
7543
|
# {
|
7500
|
-
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
7544
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID
|
7501
7545
|
# values: "StackInstanceFilterValues",
|
7502
7546
|
# }
|
7503
7547
|
#
|
@@ -7614,6 +7658,11 @@ module Aws::CloudFormation
|
|
7614
7658
|
# stack instance on which drift detection hasn't yet been performed.
|
7615
7659
|
# @return [Time]
|
7616
7660
|
#
|
7661
|
+
# @!attribute [rw] last_operation_id
|
7662
|
+
# The last unique ID of a StackSet operation performed on a stack
|
7663
|
+
# instance.
|
7664
|
+
# @return [String]
|
7665
|
+
#
|
7617
7666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceSummary AWS API Documentation
|
7618
7667
|
#
|
7619
7668
|
class StackInstanceSummary < Struct.new(
|
@@ -7626,7 +7675,8 @@ module Aws::CloudFormation
|
|
7626
7675
|
:stack_instance_status,
|
7627
7676
|
:organizational_unit_id,
|
7628
7677
|
:drift_status,
|
7629
|
-
:last_drift_check_timestamp
|
7678
|
+
:last_drift_check_timestamp,
|
7679
|
+
:last_operation_id)
|
7630
7680
|
SENSITIVE = []
|
7631
7681
|
include Aws::Structure
|
7632
7682
|
end
|
@@ -8480,6 +8530,10 @@ module Aws::CloudFormation
|
|
8480
8530
|
# The status of the operation in details.
|
8481
8531
|
# @return [String]
|
8482
8532
|
#
|
8533
|
+
# @!attribute [rw] status_details
|
8534
|
+
# Detailed information about the StackSet operation.
|
8535
|
+
# @return [Types::StackSetOperationStatusDetails]
|
8536
|
+
#
|
8483
8537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperation AWS API Documentation
|
8484
8538
|
#
|
8485
8539
|
class StackSetOperation < Struct.new(
|
@@ -8495,7 +8549,8 @@ module Aws::CloudFormation
|
|
8495
8549
|
:end_timestamp,
|
8496
8550
|
:deployment_targets,
|
8497
8551
|
:stack_set_drift_detection_details,
|
8498
|
-
:status_reason
|
8552
|
+
:status_reason,
|
8553
|
+
:status_details)
|
8499
8554
|
SENSITIVE = []
|
8500
8555
|
include Aws::Structure
|
8501
8556
|
end
|
@@ -8680,6 +8735,21 @@ module Aws::CloudFormation
|
|
8680
8735
|
include Aws::Structure
|
8681
8736
|
end
|
8682
8737
|
|
8738
|
+
# Detailed information about the StackSet operation.
|
8739
|
+
#
|
8740
|
+
# @!attribute [rw] failed_stack_instances_count
|
8741
|
+
# The number of stack instances for which the StackSet operation
|
8742
|
+
# failed.
|
8743
|
+
# @return [Integer]
|
8744
|
+
#
|
8745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationStatusDetails AWS API Documentation
|
8746
|
+
#
|
8747
|
+
class StackSetOperationStatusDetails < Struct.new(
|
8748
|
+
:failed_stack_instances_count)
|
8749
|
+
SENSITIVE = []
|
8750
|
+
include Aws::Structure
|
8751
|
+
end
|
8752
|
+
|
8683
8753
|
# The structures that contain summary information about the specified
|
8684
8754
|
# operation.
|
8685
8755
|
#
|
@@ -8747,6 +8817,22 @@ module Aws::CloudFormation
|
|
8747
8817
|
# The status of the operation in details.
|
8748
8818
|
# @return [String]
|
8749
8819
|
#
|
8820
|
+
# @!attribute [rw] status_details
|
8821
|
+
# Detailed information about the stack set operation.
|
8822
|
+
# @return [Types::StackSetOperationStatusDetails]
|
8823
|
+
#
|
8824
|
+
# @!attribute [rw] operation_preferences
|
8825
|
+
# The user-specified preferences for how CloudFormation performs a
|
8826
|
+
# stack set operation.
|
8827
|
+
#
|
8828
|
+
# For more information about maximum concurrent accounts and failure
|
8829
|
+
# tolerance, see [Stack set operation options][1].
|
8830
|
+
#
|
8831
|
+
#
|
8832
|
+
#
|
8833
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
8834
|
+
# @return [Types::StackSetOperationPreferences]
|
8835
|
+
#
|
8750
8836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationSummary AWS API Documentation
|
8751
8837
|
#
|
8752
8838
|
class StackSetOperationSummary < Struct.new(
|
@@ -8755,7 +8841,9 @@ module Aws::CloudFormation
|
|
8755
8841
|
:status,
|
8756
8842
|
:creation_timestamp,
|
8757
8843
|
:end_timestamp,
|
8758
|
-
:status_reason
|
8844
|
+
:status_reason,
|
8845
|
+
:status_details,
|
8846
|
+
:operation_preferences)
|
8759
8847
|
SENSITIVE = []
|
8760
8848
|
include Aws::Structure
|
8761
8849
|
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.72.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: 2022-10-
|
11
|
+
date: 2022-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|