aws-sdk-cloudformation 1.78.0 → 1.80.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 +208 -100
- data/lib/aws-sdk-cloudformation/client_api.rb +51 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +42 -0
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-cloudformation/resource.rb +15 -0
- data/lib/aws-sdk-cloudformation/stack.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +197 -89
- data/lib/aws-sdk-cloudformation.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 991862c4ff91b382803cc6b3fea833f48b7de96ea258478dcfc771e9259cf1e0
|
4
|
+
data.tar.gz: 575ad8cfbe2a5aa9c0905a652622b009811d2d60c741dbb1305047015b654e56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4214f5baba615ebb2eadb9c3b01685833ded03f2a7c28faadc5478dca7960221ee4bf4193f35f5c4efe81e655f4fd51206e8e21332bbcab51ad1e23b6f8a356
|
7
|
+
data.tar.gz: '094477830a53c38ed2b3872bd4d148d372dbac4e405f4eafc5bf7f0e07776b32e796a844a1e97fcb999f8b14a6c95532a7454ef6aebdb887232ffaf609ed3cd6'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2023-06-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS CloudFormation StackSets is updating the deployment experience for all stackset operations to skip suspended AWS accounts during deployments. StackSets will skip target AWS accounts that are suspended and set the Detailed Status of the corresponding stack instances as SKIPPED_SUSPENDED_ACCOUNT
|
8
|
+
|
9
|
+
1.79.0 (2023-06-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS CloudFormation StackSets provides customers with three new APIs to activate, deactivate, and describe AWS Organizations trusted access which is needed to get started with service-managed StackSets.
|
13
|
+
|
4
14
|
1.78.0 (2023-05-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|