aws-sdk-cloudformation 1.156.0 → 1.157.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 +2 -2
- data/lib/aws-sdk-cloudformation/types.rb +6 -3
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/types.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d216efc4344ebada671ce0f5c973138662c9e51c080c361da15a08c76cbc606
|
|
4
|
+
data.tar.gz: 01c7949ac49a5ae057c92a14b574614b34f522c409b6a2b79c9731983be007bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bfe33355633e4a7ded556637f97e5c8ee9f7cfedca2c3399c80b2eab8657e3ed318c45ce7f39415d92f8a98db39e1d95628209d271eb5f2b1bac426dcdad239
|
|
7
|
+
data.tar.gz: d3eda0b01aadb9b24004ed48fad46e3ea6ab769699f66d55d232685216a1e1a54cfc4988c1ec5f7e90ab0d126968910a59a88b6380d5dff96269def222d3deb4
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.157.0
|
|
@@ -2850,7 +2850,7 @@ module Aws::CloudFormation
|
|
|
2850
2850
|
# resp.changes[0].resource_change.resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
2851
2851
|
# resp.changes[0].resource_change.resource_drift_ignored_attributes #=> Array
|
|
2852
2852
|
# resp.changes[0].resource_change.resource_drift_ignored_attributes[0].path #=> String
|
|
2853
|
-
# resp.changes[0].resource_change.resource_drift_ignored_attributes[0].reason #=> String, one of "MANAGED_BY_AWS", "WRITE_ONLY_PROPERTY"
|
|
2853
|
+
# resp.changes[0].resource_change.resource_drift_ignored_attributes[0].reason #=> String, one of "MANAGED_BY_AWS", "WRITE_ONLY_PROPERTY", "SENSITIVE_PROPERTY"
|
|
2854
2854
|
# resp.changes[0].resource_change.details #=> Array
|
|
2855
2855
|
# resp.changes[0].resource_change.details[0].target.attribute #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
|
|
2856
2856
|
# resp.changes[0].resource_change.details[0].target.name #=> String
|
|
@@ -9191,7 +9191,7 @@ module Aws::CloudFormation
|
|
|
9191
9191
|
tracer: tracer
|
|
9192
9192
|
)
|
|
9193
9193
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
9194
|
-
context[:gem_version] = '1.
|
|
9194
|
+
context[:gem_version] = '1.157.0'
|
|
9195
9195
|
Seahorse::Client::Request.new(handlers, context)
|
|
9196
9196
|
end
|
|
9197
9197
|
|
|
@@ -7895,14 +7895,17 @@ module Aws::CloudFormation
|
|
|
7895
7895
|
# @return [String]
|
|
7896
7896
|
#
|
|
7897
7897
|
# @!attribute [rw] reason
|
|
7898
|
-
# Reason why drift was ignored for the attribute, can have
|
|
7898
|
+
# Reason why drift was ignored for the attribute, can have 3 possible
|
|
7899
7899
|
# values:
|
|
7900
7900
|
#
|
|
7901
|
-
# * `WRITE_ONLY_PROPERTY`
|
|
7901
|
+
# * `WRITE_ONLY_PROPERTY` – Property is not included in read response
|
|
7902
7902
|
# for the resource’s live state.
|
|
7903
7903
|
#
|
|
7904
|
-
# * `MANAGED_BY_AWS`
|
|
7904
|
+
# * `MANAGED_BY_AWS` – Property is managed by an Amazon Web Services
|
|
7905
7905
|
# service and is expected to be dynamically modified.
|
|
7906
|
+
#
|
|
7907
|
+
# * `SENSITIVE_PROPERTY` – Property has a sensitive value, such as an
|
|
7908
|
+
# Amazon Web Services Secrets Manager value.
|
|
7906
7909
|
# @return [String]
|
|
7907
7910
|
#
|
|
7908
7911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceDriftIgnoredAttribute AWS API Documentation
|
data/sig/types.rbs
CHANGED
|
@@ -1462,7 +1462,7 @@ module Aws::CloudFormation
|
|
|
1462
1462
|
|
|
1463
1463
|
class ResourceDriftIgnoredAttribute
|
|
1464
1464
|
attr_accessor path: ::String
|
|
1465
|
-
attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY")
|
|
1465
|
+
attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY" | "SENSITIVE_PROPERTY")
|
|
1466
1466
|
SENSITIVE: []
|
|
1467
1467
|
end
|
|
1468
1468
|
|