aws-sdk-cloudformation 1.101.0 → 1.103.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +165 -94
- data/lib/aws-sdk-cloudformation/client_api.rb +29 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +14 -0
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-cloudformation/resource.rb +10 -10
- data/lib/aws-sdk-cloudformation/stack.rb +20 -20
- data/lib/aws-sdk-cloudformation/types.rb +228 -122
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +14 -0
- data/sig/types.rbs +20 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -1036,6 +1036,20 @@ module Aws
|
|
1036
1036
|
) -> _ListStackResourcesResponseSuccess
|
1037
1037
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackResourcesResponseSuccess
|
1038
1038
|
|
1039
|
+
interface _ListStackSetAutoDeploymentTargetsResponseSuccess
|
1040
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetAutoDeploymentTargetsOutput]
|
1041
|
+
def summaries: () -> ::Array[Types::StackSetAutoDeploymentTargetSummary]
|
1042
|
+
def next_token: () -> ::String
|
1043
|
+
end
|
1044
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_auto_deployment_targets-instance_method
|
1045
|
+
def list_stack_set_auto_deployment_targets: (
|
1046
|
+
stack_set_name: ::String,
|
1047
|
+
?next_token: ::String,
|
1048
|
+
?max_results: ::Integer,
|
1049
|
+
?call_as: ("SELF" | "DELEGATED_ADMIN")
|
1050
|
+
) -> _ListStackSetAutoDeploymentTargetsResponseSuccess
|
1051
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetAutoDeploymentTargetsResponseSuccess
|
1052
|
+
|
1039
1053
|
interface _ListStackSetOperationResultsResponseSuccess
|
1040
1054
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetOperationResultsOutput]
|
1041
1055
|
def summaries: () -> ::Array[Types::StackSetOperationResultSummary]
|
data/sig/types.rbs
CHANGED
@@ -930,6 +930,20 @@ module Aws::CloudFormation
|
|
930
930
|
SENSITIVE: []
|
931
931
|
end
|
932
932
|
|
933
|
+
class ListStackSetAutoDeploymentTargetsInput
|
934
|
+
attr_accessor stack_set_name: ::String
|
935
|
+
attr_accessor next_token: ::String
|
936
|
+
attr_accessor max_results: ::Integer
|
937
|
+
attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class ListStackSetAutoDeploymentTargetsOutput
|
942
|
+
attr_accessor summaries: ::Array[Types::StackSetAutoDeploymentTargetSummary]
|
943
|
+
attr_accessor next_token: ::String
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
933
947
|
class ListStackSetOperationResultsInput
|
934
948
|
attr_accessor stack_set_name: ::String
|
935
949
|
attr_accessor operation_id: ::String
|
@@ -1548,6 +1562,12 @@ module Aws::CloudFormation
|
|
1548
1562
|
SENSITIVE: []
|
1549
1563
|
end
|
1550
1564
|
|
1565
|
+
class StackSetAutoDeploymentTargetSummary
|
1566
|
+
attr_accessor organizational_unit_id: ::String
|
1567
|
+
attr_accessor regions: ::Array[::String]
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1551
1571
|
class StackSetDriftDetectionDetails
|
1552
1572
|
attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKED")
|
1553
1573
|
attr_accessor drift_detection_status: ("COMPLETED" | "FAILED" | "PARTIAL_SUCCESS" | "IN_PROGRESS" | "STOPPED")
|
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.103.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-03-
|
11
|
+
date: 2024-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|