aws-sdk-cloudformation 1.134.0 → 1.150.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 +80 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +775 -454
- data/lib/aws-sdk-cloudformation/client_api.rb +195 -3
- data/lib/aws-sdk-cloudformation/customizations.rb +0 -8
- data/lib/aws-sdk-cloudformation/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-cloudformation/errors.rb +0 -1
- data/lib/aws-sdk-cloudformation/event.rb +19 -6
- data/lib/aws-sdk-cloudformation/resource.rb +12 -11
- data/lib/aws-sdk-cloudformation/stack.rb +33 -17
- data/lib/aws-sdk-cloudformation/types.rb +1374 -692
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +60 -10
- data/sig/event.rbs +6 -0
- data/sig/resource.rbs +1 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +146 -11
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f077779b8054def4dbbf0735cb7970ffe69f6773dba356b001a69ccca2aea92
|
|
4
|
+
data.tar.gz: 5ffd73b7d793bb3df40db4397f26fb0e401a54ab366089faeb0c4218c7963bcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5703d11f8b9185cecae2a8a7277e190ac1c2d630ba1d478290c53cff44dcaa98fde9133102d01723baa203d8190f9fe51e381a19dc556c560a5055006027b417
|
|
7
|
+
data.tar.gz: 2a7e95ccf1f8b15bc47a267d6791db9014e5e709217dafd8f025b24f700d6ac9e764e2dcb0d9ad142f649961e4e03e7dfcc519ae763f60bf7f180ad5112a0fe8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,86 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.150.0 (2026-03-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.149.0 (2026-01-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.148.0 (2026-01-08)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.147.0 (2026-01-05)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
24
|
+
1.146.0 (2025-11-21)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets
|
|
28
|
+
|
|
29
|
+
1.145.0 (2025-11-18)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Feature - New CloudFormation DescribeEvents API with operation ID tracking and failure filtering capabilities to quickly identify root causes of deployment failures. Also, a DeploymentMode parameter for the CreateChangeSet API that enables creation of drift-aware change sets for safe drift management.
|
|
33
|
+
|
|
34
|
+
1.144.0 (2025-11-13)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - CloudFormation now supports GetHookResult API with annotations to retrieve structured compliance check results and remediation guidance for each evaluated resource, replacing the previous single-message limitation with detailed validation outcomes.
|
|
38
|
+
|
|
39
|
+
1.143.0 (2025-10-22)
|
|
40
|
+
------------------
|
|
41
|
+
|
|
42
|
+
* Feature - Update endpoint ruleset parameters casing
|
|
43
|
+
|
|
44
|
+
1.142.0 (2025-10-21)
|
|
45
|
+
------------------
|
|
46
|
+
|
|
47
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
48
|
+
|
|
49
|
+
1.141.0 (2025-10-02)
|
|
50
|
+
------------------
|
|
51
|
+
|
|
52
|
+
* Feature - Add new warning type 'EXCLUDED_RESOURCES'
|
|
53
|
+
|
|
54
|
+
1.140.0 (2025-09-04)
|
|
55
|
+
------------------
|
|
56
|
+
|
|
57
|
+
* Feature - ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN.
|
|
58
|
+
|
|
59
|
+
1.139.0 (2025-08-26)
|
|
60
|
+
------------------
|
|
61
|
+
|
|
62
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
63
|
+
|
|
64
|
+
1.138.0 (2025-08-25)
|
|
65
|
+
------------------
|
|
66
|
+
|
|
67
|
+
* Feature - Remove incorrect endpoint tests
|
|
68
|
+
|
|
69
|
+
1.137.0 (2025-08-04)
|
|
70
|
+
------------------
|
|
71
|
+
|
|
72
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
73
|
+
|
|
74
|
+
1.136.0 (2025-07-31)
|
|
75
|
+
------------------
|
|
76
|
+
|
|
77
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
78
|
+
|
|
79
|
+
1.135.0 (2025-07-21)
|
|
80
|
+
------------------
|
|
81
|
+
|
|
82
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
83
|
+
|
|
4
84
|
1.134.0 (2025-06-30)
|
|
5
85
|
------------------
|
|
6
86
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.150.0
|