aws-sdk-cloudformation 1.99.0 → 1.100.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +121 -111
- data/lib/aws-sdk-cloudformation/client_api.rb +3 -0
- data/lib/aws-sdk-cloudformation/event.rb +24 -0
- data/lib/aws-sdk-cloudformation/resource.rb +15 -13
- data/lib/aws-sdk-cloudformation/stack.rb +48 -27
- data/lib/aws-sdk-cloudformation/types.rb +211 -144
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +3 -1
- metadata +2 -2
data/sig/event.rbs
CHANGED
@@ -63,6 +63,9 @@ module Aws
|
|
63
63
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_failure_mode-instance_method
|
64
64
|
def hook_failure_mode: () -> ("FAIL" | "WARN")
|
65
65
|
|
66
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#detailed_status-instance_method
|
67
|
+
def detailed_status: () -> ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
68
|
+
|
66
69
|
def client: () -> Client
|
67
70
|
|
68
71
|
|
data/sig/stack.rbs
CHANGED
@@ -84,6 +84,9 @@ module Aws
|
|
84
84
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#retain_except_on_create-instance_method
|
85
85
|
def retain_except_on_create: () -> bool
|
86
86
|
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#detailed_status-instance_method
|
88
|
+
def detailed_status: () -> ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
89
|
+
|
87
90
|
def client: () -> Client
|
88
91
|
|
89
92
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#load-instance_method
|
data/sig/types.rbs
CHANGED
@@ -1360,6 +1360,7 @@ module Aws::CloudFormation
|
|
1360
1360
|
attr_accessor root_id: ::String
|
1361
1361
|
attr_accessor drift_information: Types::StackDriftInformation
|
1362
1362
|
attr_accessor retain_except_on_create: bool
|
1363
|
+
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
1363
1364
|
SENSITIVE: []
|
1364
1365
|
end
|
1365
1366
|
|
@@ -1392,6 +1393,7 @@ module Aws::CloudFormation
|
|
1392
1393
|
attr_accessor hook_status_reason: ::String
|
1393
1394
|
attr_accessor hook_invocation_point: ("PRE_PROVISION")
|
1394
1395
|
attr_accessor hook_failure_mode: ("FAIL" | "WARN")
|
1396
|
+
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
1395
1397
|
SENSITIVE: []
|
1396
1398
|
end
|
1397
1399
|
|
@@ -1412,7 +1414,7 @@ module Aws::CloudFormation
|
|
1412
1414
|
end
|
1413
1415
|
|
1414
1416
|
class StackInstanceComprehensiveStatus
|
1415
|
-
attr_accessor detailed_status: ("PENDING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLED" | "INOPERABLE" | "SKIPPED_SUSPENDED_ACCOUNT")
|
1417
|
+
attr_accessor detailed_status: ("PENDING" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLED" | "INOPERABLE" | "SKIPPED_SUSPENDED_ACCOUNT" | "FAILED_IMPORT")
|
1416
1418
|
SENSITIVE: []
|
1417
1419
|
end
|
1418
1420
|
|
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.100.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: 2024-
|
11
|
+
date: 2024-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|