aws-sdk-cloudformation 1.131.0 → 1.133.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +2 -2
- data/lib/aws-sdk-cloudformation/types.rb +1 -1
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/types.rbs +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: 62cba80578f8ac18fe327ada9111ff0fcf5bbda945f2d19d562b72a7e46929bb
|
4
|
+
data.tar.gz: 9f2c6eddb8577c8b9454ab7275cdee991e4ffe5a4ed1ebf8406e4f3a697288cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fcb6d83ba8cf5502041751dc7385227ccd0fcfb9f244f9689cdb2cdc9a3ccccdfd9139817a029d6d7a28476fbe04a414c5ddfa5165fde39f5d78139a5cd563d
|
7
|
+
data.tar.gz: 020052b53558d19f465bab8820c6f95427bb7e2a3876aebd1a1f0dd7edc6e722f2d51308f855c211b88a50d31443838f9c21c2689bc499c26ea76c20fa8a8384
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.133.0 (2025-06-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add new warning type 'EXCLUDED_PROPERTIES'
|
8
|
+
|
9
|
+
1.132.0 (2025-06-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.131.0 (2025-05-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.133.0
|
@@ -2870,7 +2870,7 @@ module Aws::CloudFormation
|
|
2870
2870
|
# resp.resources[0].resource_status #=> String, one of "PENDING", "IN_PROGRESS", "FAILED", "COMPLETE"
|
2871
2871
|
# resp.resources[0].resource_status_reason #=> String
|
2872
2872
|
# resp.resources[0].warnings #=> Array
|
2873
|
-
# resp.resources[0].warnings[0].type #=> String, one of "MUTUALLY_EXCLUSIVE_PROPERTIES", "UNSUPPORTED_PROPERTIES", "MUTUALLY_EXCLUSIVE_TYPES"
|
2873
|
+
# resp.resources[0].warnings[0].type #=> String, one of "MUTUALLY_EXCLUSIVE_PROPERTIES", "UNSUPPORTED_PROPERTIES", "MUTUALLY_EXCLUSIVE_TYPES", "EXCLUDED_PROPERTIES"
|
2874
2874
|
# resp.resources[0].warnings[0].properties #=> Array
|
2875
2875
|
# resp.resources[0].warnings[0].properties[0].property_path #=> String
|
2876
2876
|
# resp.resources[0].warnings[0].properties[0].required #=> Boolean
|
@@ -8703,7 +8703,7 @@ module Aws::CloudFormation
|
|
8703
8703
|
tracer: tracer
|
8704
8704
|
)
|
8705
8705
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8706
|
-
context[:gem_version] = '1.
|
8706
|
+
context[:gem_version] = '1.133.0'
|
8707
8707
|
Seahorse::Client::Request.new(handlers, context)
|
8708
8708
|
end
|
8709
8709
|
|
@@ -7624,7 +7624,7 @@ module Aws::CloudFormation
|
|
7624
7624
|
# *CloudFormation User Guide*.
|
7625
7625
|
#
|
7626
7626
|
# To scan all resource types within a service, you can use a wildcard,
|
7627
|
-
# represented by an asterisk (`*`). You can place
|
7627
|
+
# represented by an asterisk (`*`). You can place an asterisk at only
|
7628
7628
|
# the end of the string, for example, `AWS::S3::*`.
|
7629
7629
|
#
|
7630
7630
|
#
|
data/sig/types.rbs
CHANGED
@@ -2084,7 +2084,7 @@ module Aws::CloudFormation
|
|
2084
2084
|
end
|
2085
2085
|
|
2086
2086
|
class WarningDetail
|
2087
|
-
attr_accessor type: ("MUTUALLY_EXCLUSIVE_PROPERTIES" | "UNSUPPORTED_PROPERTIES" | "MUTUALLY_EXCLUSIVE_TYPES")
|
2087
|
+
attr_accessor type: ("MUTUALLY_EXCLUSIVE_PROPERTIES" | "UNSUPPORTED_PROPERTIES" | "MUTUALLY_EXCLUSIVE_TYPES" | "EXCLUDED_PROPERTIES")
|
2088
2088
|
attr_accessor properties: ::Array[Types::WarningProperty]
|
2089
2089
|
SENSITIVE: []
|
2090
2090
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.133.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -92,7 +92,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
92
|
requirements:
|
93
93
|
- - ">="
|
94
94
|
- !ruby/object:Gem::Version
|
95
|
-
version: '2.
|
95
|
+
version: '2.7'
|
96
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
97
|
requirements:
|
98
98
|
- - ">="
|