aws-sdk-cloudformation 1.132.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d8539ae2a3ca07a70253c3c3293b811b4b4795b355b99760893478f984ca0b8
4
- data.tar.gz: e93579ebe17b7119e2ff4da39138ebf549c3cd955c0c5bff5266bd205ec4ce2e
3
+ metadata.gz: 62cba80578f8ac18fe327ada9111ff0fcf5bbda945f2d19d562b72a7e46929bb
4
+ data.tar.gz: 9f2c6eddb8577c8b9454ab7275cdee991e4ffe5a4ed1ebf8406e4f3a697288cd
5
5
  SHA512:
6
- metadata.gz: 13ae19ed43206d0e9f54b7641650ac14d458ec1806e2d790269e63af5ec03961d785c64924c7bf1194d8113375fe5cf64fa3e58b7efd13c1aa0c07c8fedffbe8
7
- data.tar.gz: 5e5a79e965db7caa285d115ca0853a02d2c475646713c1823037f3a703b67649eb9a01fda2c35809cd413dd8e8fbdcc74dffca12ff616f58a057503e4a138b01
6
+ metadata.gz: 1fcb6d83ba8cf5502041751dc7385227ccd0fcfb9f244f9689cdb2cdc9a3ccccdfd9139817a029d6d7a28476fbe04a414c5ddfa5165fde39f5d78139a5cd563d
7
+ data.tar.gz: 020052b53558d19f465bab8820c6f95427bb7e2a3876aebd1a1f0dd7edc6e722f2d51308f855c211b88a50d31443838f9c21c2689bc499c26ea76c20fa8a8384
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.132.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.132.0
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.132.0'
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 a asterisk at only
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
  #
@@ -59,7 +59,7 @@ module Aws::CloudFormation
59
59
  autoload :StackResource, 'aws-sdk-cloudformation/stack_resource'
60
60
  autoload :StackResourceSummary, 'aws-sdk-cloudformation/stack_resource_summary'
61
61
 
62
- GEM_VERSION = '1.132.0'
62
+ GEM_VERSION = '1.133.0'
63
63
 
64
64
  end
65
65
 
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.132.0
4
+ version: 1.133.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services