aws-sdk-cloudformation 1.143.0 → 1.144.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 +169 -119
- data/lib/aws-sdk-cloudformation/client_api.rb +57 -1
- data/lib/aws-sdk-cloudformation/resource.rb +4 -11
- data/lib/aws-sdk-cloudformation/stack.rb +18 -16
- data/lib/aws-sdk-cloudformation/types.rb +298 -134
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +24 -2
- data/sig/types.rbs +40 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -624,10 +624,10 @@ module Aws
|
|
|
624
624
|
end
|
|
625
625
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_events-instance_method
|
|
626
626
|
def describe_stack_events: (
|
|
627
|
-
|
|
627
|
+
stack_name: ::String,
|
|
628
628
|
?next_token: ::String
|
|
629
629
|
) -> _DescribeStackEventsResponseSuccess
|
|
630
|
-
| (
|
|
630
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackEventsResponseSuccess
|
|
631
631
|
|
|
632
632
|
interface _DescribeStackInstanceResponseSuccess
|
|
633
633
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackInstanceOutput]
|
|
@@ -877,6 +877,28 @@ module Aws
|
|
|
877
877
|
) -> _GetGeneratedTemplateResponseSuccess
|
|
878
878
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGeneratedTemplateResponseSuccess
|
|
879
879
|
|
|
880
|
+
interface _GetHookResultResponseSuccess
|
|
881
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetHookResultOutput]
|
|
882
|
+
def hook_result_id: () -> ::String
|
|
883
|
+
def invocation_point: () -> ("PRE_PROVISION")
|
|
884
|
+
def failure_mode: () -> ("FAIL" | "WARN")
|
|
885
|
+
def type_name: () -> ::String
|
|
886
|
+
def original_type_name: () -> ::String
|
|
887
|
+
def type_version_id: () -> ::String
|
|
888
|
+
def type_configuration_version_id: () -> ::String
|
|
889
|
+
def type_arn: () -> ::String
|
|
890
|
+
def status: () -> ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
891
|
+
def hook_status_reason: () -> ::String
|
|
892
|
+
def invoked_at: () -> ::Time
|
|
893
|
+
def target: () -> Types::HookTarget
|
|
894
|
+
def annotations: () -> ::Array[Types::Annotation]
|
|
895
|
+
end
|
|
896
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_hook_result-instance_method
|
|
897
|
+
def get_hook_result: (
|
|
898
|
+
?hook_result_id: ::String
|
|
899
|
+
) -> _GetHookResultResponseSuccess
|
|
900
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHookResultResponseSuccess
|
|
901
|
+
|
|
880
902
|
interface _GetStackPolicyResponseSuccess
|
|
881
903
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStackPolicyOutput]
|
|
882
904
|
def stack_policy_body: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -48,6 +48,16 @@ module Aws::CloudFormation
|
|
|
48
48
|
class AlreadyExistsException < Aws::EmptyStructure
|
|
49
49
|
end
|
|
50
50
|
|
|
51
|
+
class Annotation
|
|
52
|
+
attr_accessor annotation_name: ::String
|
|
53
|
+
attr_accessor status: ("PASSED" | "FAILED" | "SKIPPED")
|
|
54
|
+
attr_accessor status_message: ::String
|
|
55
|
+
attr_accessor remediation_message: ::String
|
|
56
|
+
attr_accessor remediation_link: ::String
|
|
57
|
+
attr_accessor severity_level: ("INFORMATIONAL" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL")
|
|
58
|
+
SENSITIVE: []
|
|
59
|
+
end
|
|
60
|
+
|
|
51
61
|
class AutoDeployment
|
|
52
62
|
attr_accessor enabled: bool
|
|
53
63
|
attr_accessor retain_stacks_on_account_removal: bool
|
|
@@ -752,6 +762,28 @@ module Aws::CloudFormation
|
|
|
752
762
|
SENSITIVE: []
|
|
753
763
|
end
|
|
754
764
|
|
|
765
|
+
class GetHookResultInput
|
|
766
|
+
attr_accessor hook_result_id: ::String
|
|
767
|
+
SENSITIVE: []
|
|
768
|
+
end
|
|
769
|
+
|
|
770
|
+
class GetHookResultOutput
|
|
771
|
+
attr_accessor hook_result_id: ::String
|
|
772
|
+
attr_accessor invocation_point: ("PRE_PROVISION")
|
|
773
|
+
attr_accessor failure_mode: ("FAIL" | "WARN")
|
|
774
|
+
attr_accessor type_name: ::String
|
|
775
|
+
attr_accessor original_type_name: ::String
|
|
776
|
+
attr_accessor type_version_id: ::String
|
|
777
|
+
attr_accessor type_configuration_version_id: ::String
|
|
778
|
+
attr_accessor type_arn: ::String
|
|
779
|
+
attr_accessor status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
780
|
+
attr_accessor hook_status_reason: ::String
|
|
781
|
+
attr_accessor invoked_at: ::Time
|
|
782
|
+
attr_accessor target: Types::HookTarget
|
|
783
|
+
attr_accessor annotations: ::Array[Types::Annotation]
|
|
784
|
+
SENSITIVE: []
|
|
785
|
+
end
|
|
786
|
+
|
|
755
787
|
class GetStackPolicyInput
|
|
756
788
|
attr_accessor stack_name: ::String
|
|
757
789
|
SENSITIVE: []
|
|
@@ -819,6 +851,14 @@ module Aws::CloudFormation
|
|
|
819
851
|
SENSITIVE: []
|
|
820
852
|
end
|
|
821
853
|
|
|
854
|
+
class HookTarget
|
|
855
|
+
attr_accessor target_type: ("RESOURCE")
|
|
856
|
+
attr_accessor target_type_name: ::String
|
|
857
|
+
attr_accessor target_id: ::String
|
|
858
|
+
attr_accessor action: ("CREATE" | "UPDATE" | "DELETE" | "IMPORT")
|
|
859
|
+
SENSITIVE: []
|
|
860
|
+
end
|
|
861
|
+
|
|
822
862
|
class ImportStacksToStackSetInput
|
|
823
863
|
attr_accessor stack_set_name: ::String
|
|
824
864
|
attr_accessor stack_ids: ::Array[::String]
|