aws-sdk-cloudformation 1.139.0 → 1.140.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +361 -278
- data/lib/aws-sdk-cloudformation/client_api.rb +13 -2
- data/lib/aws-sdk-cloudformation/event.rb +12 -6
- data/lib/aws-sdk-cloudformation/resource.rb +8 -0
- data/lib/aws-sdk-cloudformation/stack.rb +9 -1
- data/lib/aws-sdk-cloudformation/types.rb +594 -514
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +5 -3
- data/sig/event.rbs +3 -0
- data/sig/types.rbs +9 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -994,11 +994,13 @@ module Aws
|
|
994
994
|
end
|
995
995
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_hook_results-instance_method
|
996
996
|
def list_hook_results: (
|
997
|
-
target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
|
998
|
-
target_id: ::String,
|
997
|
+
?target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
|
998
|
+
?target_id: ::String,
|
999
|
+
?type_arn: ::String,
|
1000
|
+
?status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED"),
|
999
1001
|
?next_token: ::String
|
1000
1002
|
) -> _ListHookResultsResponseSuccess
|
1001
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
|
1003
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
|
1002
1004
|
|
1003
1005
|
interface _ListImportsResponseSuccess
|
1004
1006
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsOutput]
|
data/sig/event.rbs
CHANGED
@@ -60,6 +60,9 @@ module Aws
|
|
60
60
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_invocation_point-instance_method
|
61
61
|
def hook_invocation_point: () -> ("PRE_PROVISION")
|
62
62
|
|
63
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_invocation_id-instance_method
|
64
|
+
def hook_invocation_id: () -> ::String
|
65
|
+
|
63
66
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_failure_mode-instance_method
|
64
67
|
def hook_failure_mode: () -> ("FAIL" | "WARN")
|
65
68
|
|
data/sig/types.rbs
CHANGED
@@ -803,6 +803,7 @@ module Aws::CloudFormation
|
|
803
803
|
end
|
804
804
|
|
805
805
|
class HookResultSummary
|
806
|
+
attr_accessor hook_result_id: ::String
|
806
807
|
attr_accessor invocation_point: ("PRE_PROVISION")
|
807
808
|
attr_accessor failure_mode: ("FAIL" | "WARN")
|
808
809
|
attr_accessor type_name: ::String
|
@@ -810,6 +811,11 @@ module Aws::CloudFormation
|
|
810
811
|
attr_accessor type_configuration_version_id: ::String
|
811
812
|
attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
812
813
|
attr_accessor hook_status_reason: ::String
|
814
|
+
attr_accessor invoked_at: ::Time
|
815
|
+
attr_accessor target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
|
816
|
+
attr_accessor target_id: ::String
|
817
|
+
attr_accessor type_arn: ::String
|
818
|
+
attr_accessor hook_execution_target: ::String
|
813
819
|
SENSITIVE: []
|
814
820
|
end
|
815
821
|
|
@@ -882,6 +888,8 @@ module Aws::CloudFormation
|
|
882
888
|
class ListHookResultsInput
|
883
889
|
attr_accessor target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
|
884
890
|
attr_accessor target_id: ::String
|
891
|
+
attr_accessor type_arn: ::String
|
892
|
+
attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
885
893
|
attr_accessor next_token: ::String
|
886
894
|
SENSITIVE: []
|
887
895
|
end
|
@@ -1532,6 +1540,7 @@ module Aws::CloudFormation
|
|
1532
1540
|
attr_accessor hook_status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
1533
1541
|
attr_accessor hook_status_reason: ::String
|
1534
1542
|
attr_accessor hook_invocation_point: ("PRE_PROVISION")
|
1543
|
+
attr_accessor hook_invocation_id: ::String
|
1535
1544
|
attr_accessor hook_failure_mode: ("FAIL" | "WARN")
|
1536
1545
|
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
1537
1546
|
SENSITIVE: []
|