aws-sdk-cloudformation 1.133.0 → 1.134.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 +226 -125
- data/lib/aws-sdk-cloudformation/client_api.rb +2 -0
- data/lib/aws-sdk-cloudformation/event.rb +2 -2
- data/lib/aws-sdk-cloudformation/resource.rb +26 -23
- data/lib/aws-sdk-cloudformation/stack.rb +68 -61
- data/lib/aws-sdk-cloudformation/types.rb +190 -163
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +7 -6
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -676,7 +676,7 @@ module Aws
|
|
676
676
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
|
677
677
|
def describe_stack_resource_drifts: (
|
678
678
|
stack_name: ::String,
|
679
|
-
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")],
|
679
|
+
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
680
680
|
?next_token: ::String,
|
681
681
|
?max_results: ::Integer
|
682
682
|
) -> _DescribeStackResourceDriftsResponseSuccess
|
@@ -1070,7 +1070,7 @@ module Aws
|
|
1070
1070
|
stack_set_name: ::String,
|
1071
1071
|
?next_token: ::String,
|
1072
1072
|
?max_results: ::Integer,
|
1073
|
-
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")],
|
1073
|
+
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
1074
1074
|
stack_instance_account: ::String,
|
1075
1075
|
stack_instance_region: ::String,
|
1076
1076
|
operation_id: ::String,
|
data/sig/types.rbs
CHANGED
@@ -542,7 +542,7 @@ module Aws::CloudFormation
|
|
542
542
|
|
543
543
|
class DescribeStackResourceDriftsInput
|
544
544
|
attr_accessor stack_name: ::String
|
545
|
-
attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")]
|
545
|
+
attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
|
546
546
|
attr_accessor next_token: ::String
|
547
547
|
attr_accessor max_results: ::Integer
|
548
548
|
SENSITIVE: []
|
@@ -954,7 +954,7 @@ module Aws::CloudFormation
|
|
954
954
|
attr_accessor stack_set_name: ::String
|
955
955
|
attr_accessor next_token: ::String
|
956
956
|
attr_accessor max_results: ::Integer
|
957
|
-
attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")]
|
957
|
+
attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
|
958
958
|
attr_accessor stack_instance_account: ::String
|
959
959
|
attr_accessor stack_instance_region: ::String
|
960
960
|
attr_accessor operation_id: ::String
|
@@ -1574,7 +1574,7 @@ module Aws::CloudFormation
|
|
1574
1574
|
attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
|
1575
1575
|
attr_accessor resource_type: ::String
|
1576
1576
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
1577
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
|
1577
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
1578
1578
|
attr_accessor timestamp: ::Time
|
1579
1579
|
SENSITIVE: []
|
1580
1580
|
end
|
@@ -1664,20 +1664,21 @@ module Aws::CloudFormation
|
|
1664
1664
|
attr_accessor expected_properties: ::String
|
1665
1665
|
attr_accessor actual_properties: ::String
|
1666
1666
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
1667
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
|
1667
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
1668
1668
|
attr_accessor timestamp: ::Time
|
1669
1669
|
attr_accessor module_info: Types::ModuleInfo
|
1670
|
+
attr_accessor drift_status_reason: ::String
|
1670
1671
|
SENSITIVE: []
|
1671
1672
|
end
|
1672
1673
|
|
1673
1674
|
class StackResourceDriftInformation
|
1674
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
|
1675
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
1675
1676
|
attr_accessor last_check_timestamp: ::Time
|
1676
1677
|
SENSITIVE: []
|
1677
1678
|
end
|
1678
1679
|
|
1679
1680
|
class StackResourceDriftInformationSummary
|
1680
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED")
|
1681
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
1681
1682
|
attr_accessor last_check_timestamp: ::Time
|
1682
1683
|
SENSITIVE: []
|
1683
1684
|
end
|