aws-sdk-cloudformation 1.76.0 → 1.81.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +233 -122
- data/lib/aws-sdk-cloudformation/client_api.rb +51 -0
- data/lib/aws-sdk-cloudformation/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-cloudformation/endpoint_provider.rb +29 -32
- data/lib/aws-sdk-cloudformation/endpoints.rb +43 -0
- data/lib/aws-sdk-cloudformation/event.rb +3 -1
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-cloudformation/resource.rb +21 -2
- data/lib/aws-sdk-cloudformation/stack.rb +30 -12
- data/lib/aws-sdk-cloudformation/stack_resource.rb +6 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +3 -1
- data/lib/aws-sdk-cloudformation/types.rb +339 -231
- data/lib/aws-sdk-cloudformation/waiters.rb +6 -0
- data/lib/aws-sdk-cloudformation.rb +2 -2
- metadata +4 -4
@@ -267,6 +267,12 @@ module Aws::CloudFormation
|
|
267
267
|
"expected" => "UPDATE_ROLLBACK_COMPLETE",
|
268
268
|
"matcher" => "pathAny",
|
269
269
|
"state" => "failure"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"argument" => "stacks[].stack_status",
|
273
|
+
"expected" => "UPDATE_COMPLETE",
|
274
|
+
"matcher" => "pathAny",
|
275
|
+
"state" => "failure"
|
270
276
|
}
|
271
277
|
]
|
272
278
|
)
|
@@ -37,7 +37,7 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
37
37
|
# structure.
|
38
38
|
#
|
39
39
|
# cloud_formation = Aws::CloudFormation::Client.new
|
40
|
-
# resp = cloud_formation.
|
40
|
+
# resp = cloud_formation.activate_organizations_access(params)
|
41
41
|
#
|
42
42
|
# See {Client} for more information.
|
43
43
|
#
|
@@ -57,6 +57,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
57
57
|
# @!group service
|
58
58
|
module Aws::CloudFormation
|
59
59
|
|
60
|
-
GEM_VERSION = '1.
|
60
|
+
GEM_VERSION = '1.81.0'
|
61
61
|
|
62
62
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|