aws-sdk-cloudformation 1.39.0 → 1.40.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34ffb2ba4fb8e64d2a7341ef9da08f7368b7756b2f148f8e8088b0b42f22494e
|
4
|
+
data.tar.gz: 2d9613be8c18c93c24fb91cdc5c7986f2eeea1c34251308dbf2173cf19f511a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4ebc7c46ecd7513a77f5476dc646961eb0e28277e161243e19e8cfbad4610a0f5d0ae31a3b4182325123bca6c83e1a50c3eae7c462a1a7473571bb3bbfbb307
|
7
|
+
data.tar.gz: 872f6266c43208f3868dfc15ada317e8597c4cc877664c284c9213ef46618cef39d46690d2d5d1ffa48e40efe8d8a206aa1a06745152b09782909e65d8a5abb8
|
@@ -2047,6 +2047,7 @@ module Aws::CloudFormation
|
|
2047
2047
|
# resp.stack_instance.parameter_overrides[0].use_previous_value #=> Boolean
|
2048
2048
|
# resp.stack_instance.parameter_overrides[0].resolved_value #=> String
|
2049
2049
|
# resp.stack_instance.status #=> String, one of "CURRENT", "OUTDATED", "INOPERABLE"
|
2050
|
+
# resp.stack_instance.stack_instance_status.detailed_status #=> String, one of "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELLED", "INOPERABLE"
|
2050
2051
|
# resp.stack_instance.status_reason #=> String
|
2051
2052
|
# resp.stack_instance.organizational_unit_id #=> String
|
2052
2053
|
# resp.stack_instance.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
@@ -3358,7 +3359,8 @@ module Aws::CloudFormation
|
|
3358
3359
|
|
3359
3360
|
# Returns summary information about stack instances that are associated
|
3360
3361
|
# with the specified stack set. You can filter for stack instances that
|
3361
|
-
# are associated with a specific AWS account name or Region
|
3362
|
+
# are associated with a specific AWS account name or Region, or that
|
3363
|
+
# have a specific status.
|
3362
3364
|
#
|
3363
3365
|
# @option params [required, String] :stack_set_name
|
3364
3366
|
# The name or unique ID of the stack set that you want to list stack
|
@@ -3378,6 +3380,9 @@ module Aws::CloudFormation
|
|
3378
3380
|
# includes a `NextToken` value that you can assign to the `NextToken`
|
3379
3381
|
# request parameter to get the next set of results.
|
3380
3382
|
#
|
3383
|
+
# @option params [Array<Types::StackInstanceFilter>] :filters
|
3384
|
+
# The status that stack instances are filtered by.
|
3385
|
+
#
|
3381
3386
|
# @option params [String] :stack_instance_account
|
3382
3387
|
# The name of the AWS account that you want to list stack instances for.
|
3383
3388
|
#
|
@@ -3397,6 +3402,12 @@ module Aws::CloudFormation
|
|
3397
3402
|
# stack_set_name: "StackSetName", # required
|
3398
3403
|
# next_token: "NextToken",
|
3399
3404
|
# max_results: 1,
|
3405
|
+
# filters: [
|
3406
|
+
# {
|
3407
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
3408
|
+
# values: "StackInstanceFilterValues",
|
3409
|
+
# },
|
3410
|
+
# ],
|
3400
3411
|
# stack_instance_account: "Account",
|
3401
3412
|
# stack_instance_region: "Region",
|
3402
3413
|
# })
|
@@ -3410,6 +3421,7 @@ module Aws::CloudFormation
|
|
3410
3421
|
# resp.summaries[0].stack_id #=> String
|
3411
3422
|
# resp.summaries[0].status #=> String, one of "CURRENT", "OUTDATED", "INOPERABLE"
|
3412
3423
|
# resp.summaries[0].status_reason #=> String
|
3424
|
+
# resp.summaries[0].stack_instance_status.detailed_status #=> String, one of "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELLED", "INOPERABLE"
|
3413
3425
|
# resp.summaries[0].organizational_unit_id #=> String
|
3414
3426
|
# resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
3415
3427
|
# resp.summaries[0].last_drift_check_timestamp #=> Time
|
@@ -5305,7 +5317,7 @@ module Aws::CloudFormation
|
|
5305
5317
|
params: params,
|
5306
5318
|
config: config)
|
5307
5319
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5308
|
-
context[:gem_version] = '1.
|
5320
|
+
context[:gem_version] = '1.40.0'
|
5309
5321
|
Seahorse::Client::Request.new(handlers, context)
|
5310
5322
|
end
|
5311
5323
|
|
@@ -281,6 +281,12 @@ module Aws::CloudFormation
|
|
281
281
|
StackEvents = Shapes::ListShape.new(name: 'StackEvents')
|
282
282
|
StackId = Shapes::StringShape.new(name: 'StackId')
|
283
283
|
StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
|
284
|
+
StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
|
285
|
+
StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
|
286
|
+
StackInstanceFilter = Shapes::StructureShape.new(name: 'StackInstanceFilter')
|
287
|
+
StackInstanceFilterName = Shapes::StringShape.new(name: 'StackInstanceFilterName')
|
288
|
+
StackInstanceFilterValues = Shapes::StringShape.new(name: 'StackInstanceFilterValues')
|
289
|
+
StackInstanceFilters = Shapes::ListShape.new(name: 'StackInstanceFilters')
|
284
290
|
StackInstanceNotFoundException = Shapes::StructureShape.new(name: 'StackInstanceNotFoundException')
|
285
291
|
StackInstanceStatus = Shapes::StringShape.new(name: 'StackInstanceStatus')
|
286
292
|
StackInstanceSummaries = Shapes::ListShape.new(name: 'StackInstanceSummaries')
|
@@ -803,6 +809,7 @@ module Aws::CloudFormation
|
|
803
809
|
ListStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
804
810
|
ListStackInstancesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
805
811
|
ListStackInstancesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
812
|
+
ListStackInstancesInput.add_member(:filters, Shapes::ShapeRef.new(shape: StackInstanceFilters, location_name: "Filters"))
|
806
813
|
ListStackInstancesInput.add_member(:stack_instance_account, Shapes::ShapeRef.new(shape: Account, location_name: "StackInstanceAccount"))
|
807
814
|
ListStackInstancesInput.add_member(:stack_instance_region, Shapes::ShapeRef.new(shape: Region, location_name: "StackInstanceRegion"))
|
808
815
|
ListStackInstancesInput.struct_class = Types::ListStackInstancesInput
|
@@ -1110,12 +1117,22 @@ module Aws::CloudFormation
|
|
1110
1117
|
StackInstance.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
|
1111
1118
|
StackInstance.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: Parameters, location_name: "ParameterOverrides"))
|
1112
1119
|
StackInstance.add_member(:status, Shapes::ShapeRef.new(shape: StackInstanceStatus, location_name: "Status"))
|
1120
|
+
StackInstance.add_member(:stack_instance_status, Shapes::ShapeRef.new(shape: StackInstanceComprehensiveStatus, location_name: "StackInstanceStatus"))
|
1113
1121
|
StackInstance.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
|
1114
1122
|
StackInstance.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1115
1123
|
StackInstance.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1116
1124
|
StackInstance.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
1117
1125
|
StackInstance.struct_class = Types::StackInstance
|
1118
1126
|
|
1127
|
+
StackInstanceComprehensiveStatus.add_member(:detailed_status, Shapes::ShapeRef.new(shape: StackInstanceDetailedStatus, location_name: "DetailedStatus"))
|
1128
|
+
StackInstanceComprehensiveStatus.struct_class = Types::StackInstanceComprehensiveStatus
|
1129
|
+
|
1130
|
+
StackInstanceFilter.add_member(:name, Shapes::ShapeRef.new(shape: StackInstanceFilterName, location_name: "Name"))
|
1131
|
+
StackInstanceFilter.add_member(:values, Shapes::ShapeRef.new(shape: StackInstanceFilterValues, location_name: "Values"))
|
1132
|
+
StackInstanceFilter.struct_class = Types::StackInstanceFilter
|
1133
|
+
|
1134
|
+
StackInstanceFilters.member = Shapes::ShapeRef.new(shape: StackInstanceFilter)
|
1135
|
+
|
1119
1136
|
StackInstanceNotFoundException.struct_class = Types::StackInstanceNotFoundException
|
1120
1137
|
|
1121
1138
|
StackInstanceSummaries.member = Shapes::ShapeRef.new(shape: StackInstanceSummary)
|
@@ -1126,6 +1143,7 @@ module Aws::CloudFormation
|
|
1126
1143
|
StackInstanceSummary.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
|
1127
1144
|
StackInstanceSummary.add_member(:status, Shapes::ShapeRef.new(shape: StackInstanceStatus, location_name: "Status"))
|
1128
1145
|
StackInstanceSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
|
1146
|
+
StackInstanceSummary.add_member(:stack_instance_status, Shapes::ShapeRef.new(shape: StackInstanceComprehensiveStatus, location_name: "StackInstanceStatus"))
|
1129
1147
|
StackInstanceSummary.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1130
1148
|
StackInstanceSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1131
1149
|
StackInstanceSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
@@ -3565,6 +3565,12 @@ module Aws::CloudFormation
|
|
3565
3565
|
# stack_set_name: "StackSetName", # required
|
3566
3566
|
# next_token: "NextToken",
|
3567
3567
|
# max_results: 1,
|
3568
|
+
# filters: [
|
3569
|
+
# {
|
3570
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
3571
|
+
# values: "StackInstanceFilterValues",
|
3572
|
+
# },
|
3573
|
+
# ],
|
3568
3574
|
# stack_instance_account: "Account",
|
3569
3575
|
# stack_instance_region: "Region",
|
3570
3576
|
# }
|
@@ -3590,6 +3596,10 @@ module Aws::CloudFormation
|
|
3590
3596
|
# request parameter to get the next set of results.
|
3591
3597
|
# @return [Integer]
|
3592
3598
|
#
|
3599
|
+
# @!attribute [rw] filters
|
3600
|
+
# The status that stack instances are filtered by.
|
3601
|
+
# @return [Array<Types::StackInstanceFilter>]
|
3602
|
+
#
|
3593
3603
|
# @!attribute [rw] stack_instance_account
|
3594
3604
|
# The name of the AWS account that you want to list stack instances
|
3595
3605
|
# for.
|
@@ -3605,6 +3615,7 @@ module Aws::CloudFormation
|
|
3605
3615
|
:stack_set_name,
|
3606
3616
|
:next_token,
|
3607
3617
|
:max_results,
|
3618
|
+
:filters,
|
3608
3619
|
:stack_instance_account,
|
3609
3620
|
:stack_instance_region)
|
3610
3621
|
SENSITIVE = []
|
@@ -4955,7 +4966,13 @@ module Aws::CloudFormation
|
|
4955
4966
|
#
|
4956
4967
|
# @!attribute [rw] resource_type
|
4957
4968
|
# The type of resource to import into your stack, such as
|
4958
|
-
# `AWS::S3::Bucket`.
|
4969
|
+
# `AWS::S3::Bucket`. For a list of supported resource types, see
|
4970
|
+
# [Resources that support import operations][1] in the AWS
|
4971
|
+
# CloudFormation User Guide.
|
4972
|
+
#
|
4973
|
+
#
|
4974
|
+
#
|
4975
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
|
4959
4976
|
# @return [String]
|
4960
4977
|
#
|
4961
4978
|
# @!attribute [rw] logical_resource_id
|
@@ -5631,6 +5648,10 @@ module Aws::CloudFormation
|
|
5631
5648
|
# * `CURRENT`\: The stack is currently up to date with the stack set.
|
5632
5649
|
# @return [String]
|
5633
5650
|
#
|
5651
|
+
# @!attribute [rw] stack_instance_status
|
5652
|
+
# The detailed status of the stack instance.
|
5653
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5654
|
+
#
|
5634
5655
|
# @!attribute [rw] status_reason
|
5635
5656
|
# The explanation for the specific status code that is assigned to
|
5636
5657
|
# this stack instance.
|
@@ -5680,6 +5701,7 @@ module Aws::CloudFormation
|
|
5680
5701
|
:stack_id,
|
5681
5702
|
:parameter_overrides,
|
5682
5703
|
:status,
|
5704
|
+
:stack_instance_status,
|
5683
5705
|
:status_reason,
|
5684
5706
|
:organizational_unit_id,
|
5685
5707
|
:drift_status,
|
@@ -5688,6 +5710,71 @@ module Aws::CloudFormation
|
|
5688
5710
|
include Aws::Structure
|
5689
5711
|
end
|
5690
5712
|
|
5713
|
+
# The detailed status of the stack instance.
|
5714
|
+
#
|
5715
|
+
# @!attribute [rw] detailed_status
|
5716
|
+
# * `CANCELLED`\: The operation in the specified account and Region
|
5717
|
+
# has been cancelled. This is either because a user has stopped the
|
5718
|
+
# stack set operation, or because the failure tolerance of the stack
|
5719
|
+
# set operation has been exceeded.
|
5720
|
+
#
|
5721
|
+
# * `FAILED`\: The operation in the specified account and Region
|
5722
|
+
# failed. If the stack set operation fails in enough accounts within
|
5723
|
+
# a Region, the failure tolerance for the stack set operation as a
|
5724
|
+
# whole might be exceeded.
|
5725
|
+
#
|
5726
|
+
# * `INOPERABLE`\: A `DeleteStackInstances` operation has failed and
|
5727
|
+
# left the stack in an unstable state. Stacks in this state are
|
5728
|
+
# excluded from further `UpdateStackSet` operations. You might need
|
5729
|
+
# to perform a `DeleteStackInstances` operation, with `RetainStacks`
|
5730
|
+
# set to `true`, to delete the stack instance, and then delete the
|
5731
|
+
# stack manually.
|
5732
|
+
#
|
5733
|
+
# * `PENDING`\: The operation in the specified account and Region has
|
5734
|
+
# yet to start.
|
5735
|
+
#
|
5736
|
+
# * `RUNNING`\: The operation in the specified account and Region is
|
5737
|
+
# currently in progress.
|
5738
|
+
#
|
5739
|
+
# * `SUCCEEDED`\: The operation in the specified account and Region
|
5740
|
+
# completed successfully.
|
5741
|
+
# @return [String]
|
5742
|
+
#
|
5743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceComprehensiveStatus AWS API Documentation
|
5744
|
+
#
|
5745
|
+
class StackInstanceComprehensiveStatus < Struct.new(
|
5746
|
+
:detailed_status)
|
5747
|
+
SENSITIVE = []
|
5748
|
+
include Aws::Structure
|
5749
|
+
end
|
5750
|
+
|
5751
|
+
# The status that stack instances are filtered by.
|
5752
|
+
#
|
5753
|
+
# @note When making an API call, you may pass StackInstanceFilter
|
5754
|
+
# data as a hash:
|
5755
|
+
#
|
5756
|
+
# {
|
5757
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
5758
|
+
# values: "StackInstanceFilterValues",
|
5759
|
+
# }
|
5760
|
+
#
|
5761
|
+
# @!attribute [rw] name
|
5762
|
+
# The type of filter to apply.
|
5763
|
+
# @return [String]
|
5764
|
+
#
|
5765
|
+
# @!attribute [rw] values
|
5766
|
+
# The status to filter by.
|
5767
|
+
# @return [String]
|
5768
|
+
#
|
5769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceFilter AWS API Documentation
|
5770
|
+
#
|
5771
|
+
class StackInstanceFilter < Struct.new(
|
5772
|
+
:name,
|
5773
|
+
:values)
|
5774
|
+
SENSITIVE = []
|
5775
|
+
include Aws::Structure
|
5776
|
+
end
|
5777
|
+
|
5691
5778
|
# The specified stack instance doesn't exist.
|
5692
5779
|
#
|
5693
5780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceNotFoundException AWS API Documentation
|
@@ -5745,6 +5832,10 @@ module Aws::CloudFormation
|
|
5745
5832
|
# instance.
|
5746
5833
|
# @return [String]
|
5747
5834
|
#
|
5835
|
+
# @!attribute [rw] stack_instance_status
|
5836
|
+
# The detailed status of the stack instance.
|
5837
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5838
|
+
#
|
5748
5839
|
# @!attribute [rw] organizational_unit_id
|
5749
5840
|
# \[`Service-managed` permissions\] The organization root ID or
|
5750
5841
|
# organizational unit (OU) IDs that you specified for
|
@@ -5789,6 +5880,7 @@ module Aws::CloudFormation
|
|
5789
5880
|
:stack_id,
|
5790
5881
|
:status,
|
5791
5882
|
:status_reason,
|
5883
|
+
:stack_instance_status,
|
5792
5884
|
:organizational_unit_id,
|
5793
5885
|
:drift_status,
|
5794
5886
|
:last_drift_check_timestamp)
|
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.40.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: 2020-06-
|
11
|
+
date: 2020-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|