aws-sdk-cloudformation 1.134.0 → 1.154.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 +100 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +776 -457
- data/lib/aws-sdk-cloudformation/client_api.rb +195 -3
- data/lib/aws-sdk-cloudformation/customizations.rb +0 -8
- data/lib/aws-sdk-cloudformation/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-cloudformation/errors.rb +0 -1
- data/lib/aws-sdk-cloudformation/event.rb +19 -6
- data/lib/aws-sdk-cloudformation/resource.rb +12 -11
- data/lib/aws-sdk-cloudformation/stack.rb +33 -17
- data/lib/aws-sdk-cloudformation/types.rb +1370 -688
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +92 -90
- data/sig/event.rbs +6 -0
- data/sig/params.rbs +23 -0
- data/sig/resource.rbs +4 -3
- data/sig/stack.rbs +9 -6
- data/sig/types.rbs +146 -11
- metadata +4 -3
data/sig/client.rbs
CHANGED
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
|
@@ -122,7 +123,7 @@ module Aws
|
|
|
122
123
|
type_configuration_arn: ::String?,
|
|
123
124
|
type: ("RESOURCE" | "MODULE" | "HOOK")?,
|
|
124
125
|
type_name: ::String?
|
|
125
|
-
}
|
|
126
|
+
}
|
|
126
127
|
]
|
|
127
128
|
) -> _BatchDescribeTypeConfigurationsResponseSuccess
|
|
128
129
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDescribeTypeConfigurationsResponseSuccess
|
|
@@ -163,7 +164,7 @@ module Aws
|
|
|
163
164
|
parameter_value: ::String?,
|
|
164
165
|
use_previous_value: bool?,
|
|
165
166
|
resolved_value: ::String?
|
|
166
|
-
}
|
|
167
|
+
}
|
|
167
168
|
],
|
|
168
169
|
?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
|
|
169
170
|
?resource_types: Array[::String],
|
|
@@ -173,7 +174,7 @@ module Aws
|
|
|
173
174
|
{
|
|
174
175
|
arn: ::String,
|
|
175
176
|
type: ::String
|
|
176
|
-
}
|
|
177
|
+
}
|
|
177
178
|
]?,
|
|
178
179
|
monitoring_time_in_minutes: ::Integer?
|
|
179
180
|
},
|
|
@@ -182,7 +183,7 @@ module Aws
|
|
|
182
183
|
{
|
|
183
184
|
key: ::String,
|
|
184
185
|
value: ::String
|
|
185
|
-
}
|
|
186
|
+
}
|
|
186
187
|
],
|
|
187
188
|
change_set_name: ::String,
|
|
188
189
|
?client_token: ::String,
|
|
@@ -193,11 +194,12 @@ module Aws
|
|
|
193
194
|
resource_type: ::String,
|
|
194
195
|
logical_resource_id: ::String,
|
|
195
196
|
resource_identifier: Hash[::String, ::String]
|
|
196
|
-
}
|
|
197
|
+
}
|
|
197
198
|
],
|
|
198
199
|
?include_nested_stacks: bool,
|
|
199
200
|
?on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
|
|
200
|
-
?import_existing_resources: bool
|
|
201
|
+
?import_existing_resources: bool,
|
|
202
|
+
?deployment_mode: ("REVERT_DRIFT")
|
|
201
203
|
) -> _CreateChangeSetResponseSuccess
|
|
202
204
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChangeSetResponseSuccess
|
|
203
205
|
|
|
@@ -212,7 +214,7 @@ module Aws
|
|
|
212
214
|
resource_type: ::String,
|
|
213
215
|
logical_resource_id: ::String?,
|
|
214
216
|
resource_identifier: Hash[::String, ::String]
|
|
215
|
-
}
|
|
217
|
+
}
|
|
216
218
|
],
|
|
217
219
|
generated_template_name: ::String,
|
|
218
220
|
?stack_name: ::String,
|
|
@@ -226,6 +228,7 @@ module Aws
|
|
|
226
228
|
interface _CreateStackResponseSuccess
|
|
227
229
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackOutput]
|
|
228
230
|
def stack_id: () -> ::String
|
|
231
|
+
def operation_id: () -> ::String
|
|
229
232
|
end
|
|
230
233
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack-instance_method
|
|
231
234
|
def create_stack: (
|
|
@@ -238,7 +241,7 @@ module Aws
|
|
|
238
241
|
parameter_value: ::String?,
|
|
239
242
|
use_previous_value: bool?,
|
|
240
243
|
resolved_value: ::String?
|
|
241
|
-
}
|
|
244
|
+
}
|
|
242
245
|
],
|
|
243
246
|
?disable_rollback: bool,
|
|
244
247
|
?rollback_configuration: {
|
|
@@ -246,7 +249,7 @@ module Aws
|
|
|
246
249
|
{
|
|
247
250
|
arn: ::String,
|
|
248
251
|
type: ::String
|
|
249
|
-
}
|
|
252
|
+
}
|
|
250
253
|
]?,
|
|
251
254
|
monitoring_time_in_minutes: ::Integer?
|
|
252
255
|
},
|
|
@@ -262,7 +265,7 @@ module Aws
|
|
|
262
265
|
{
|
|
263
266
|
key: ::String,
|
|
264
267
|
value: ::String
|
|
265
|
-
}
|
|
268
|
+
}
|
|
266
269
|
],
|
|
267
270
|
?client_request_token: ::String,
|
|
268
271
|
?enable_termination_protection: bool,
|
|
@@ -291,17 +294,9 @@ module Aws
|
|
|
291
294
|
parameter_value: ::String?,
|
|
292
295
|
use_previous_value: bool?,
|
|
293
296
|
resolved_value: ::String?
|
|
294
|
-
}
|
|
297
|
+
}
|
|
295
298
|
],
|
|
296
|
-
?operation_preferences:
|
|
297
|
-
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
298
|
-
region_order: Array[::String]?,
|
|
299
|
-
failure_tolerance_count: ::Integer?,
|
|
300
|
-
failure_tolerance_percentage: ::Integer?,
|
|
301
|
-
max_concurrent_count: ::Integer?,
|
|
302
|
-
max_concurrent_percentage: ::Integer?,
|
|
303
|
-
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
304
|
-
},
|
|
299
|
+
?operation_preferences: Params::stack_set_operation_preferences,
|
|
305
300
|
?operation_id: ::String,
|
|
306
301
|
?call_as: ("SELF" | "DELEGATED_ADMIN")
|
|
307
302
|
) -> _CreateStackInstancesResponseSuccess
|
|
@@ -325,14 +320,14 @@ module Aws
|
|
|
325
320
|
stack_name: ::String,
|
|
326
321
|
logical_resource_id: ::String
|
|
327
322
|
}
|
|
328
|
-
}
|
|
323
|
+
}
|
|
329
324
|
],
|
|
330
325
|
stack_definitions: Array[
|
|
331
326
|
{
|
|
332
327
|
stack_name: ::String?,
|
|
333
328
|
template_body: ::String?,
|
|
334
329
|
template_url: ::String?
|
|
335
|
-
}
|
|
330
|
+
}
|
|
336
331
|
]
|
|
337
332
|
) -> _CreateStackRefactorResponseSuccess
|
|
338
333
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackRefactorResponseSuccess
|
|
@@ -354,21 +349,22 @@ module Aws
|
|
|
354
349
|
parameter_value: ::String?,
|
|
355
350
|
use_previous_value: bool?,
|
|
356
351
|
resolved_value: ::String?
|
|
357
|
-
}
|
|
352
|
+
}
|
|
358
353
|
],
|
|
359
354
|
?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
|
|
360
355
|
?tags: Array[
|
|
361
356
|
{
|
|
362
357
|
key: ::String,
|
|
363
358
|
value: ::String
|
|
364
|
-
}
|
|
359
|
+
}
|
|
365
360
|
],
|
|
366
361
|
?administration_role_arn: ::String,
|
|
367
362
|
?execution_role_name: ::String,
|
|
368
363
|
?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
|
|
369
364
|
?auto_deployment: {
|
|
370
365
|
enabled: bool?,
|
|
371
|
-
retain_stacks_on_account_removal: bool
|
|
366
|
+
retain_stacks_on_account_removal: bool?,
|
|
367
|
+
depends_on: Array[::String]?
|
|
372
368
|
},
|
|
373
369
|
?call_as: ("SELF" | "DELEGATED_ADMIN"),
|
|
374
370
|
?client_request_token: ::String,
|
|
@@ -438,15 +434,7 @@ module Aws
|
|
|
438
434
|
account_filter_type: ("NONE" | "INTERSECTION" | "DIFFERENCE" | "UNION")?
|
|
439
435
|
},
|
|
440
436
|
regions: Array[::String],
|
|
441
|
-
?operation_preferences:
|
|
442
|
-
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
443
|
-
region_order: Array[::String]?,
|
|
444
|
-
failure_tolerance_count: ::Integer?,
|
|
445
|
-
failure_tolerance_percentage: ::Integer?,
|
|
446
|
-
max_concurrent_count: ::Integer?,
|
|
447
|
-
max_concurrent_percentage: ::Integer?,
|
|
448
|
-
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
449
|
-
},
|
|
437
|
+
?operation_preferences: Params::stack_set_operation_preferences,
|
|
450
438
|
retain_stacks: bool,
|
|
451
439
|
?operation_id: ::String,
|
|
452
440
|
?call_as: ("SELF" | "DELEGATED_ADMIN")
|
|
@@ -498,6 +486,7 @@ module Aws
|
|
|
498
486
|
def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
499
487
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
500
488
|
def status_reason: () -> ::String
|
|
489
|
+
def stack_drift_status: () -> ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
501
490
|
def notification_arns: () -> ::Array[::String]
|
|
502
491
|
def rollback_configuration: () -> Types::RollbackConfiguration
|
|
503
492
|
def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -509,6 +498,7 @@ module Aws
|
|
|
509
498
|
def root_change_set_id: () -> ::String
|
|
510
499
|
def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
511
500
|
def import_existing_resources: () -> bool
|
|
501
|
+
def deployment_mode: () -> ("REVERT_DRIFT")
|
|
512
502
|
end
|
|
513
503
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
|
|
514
504
|
def describe_change_set: (
|
|
@@ -538,6 +528,23 @@ module Aws
|
|
|
538
528
|
) -> _DescribeChangeSetHooksResponseSuccess
|
|
539
529
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetHooksResponseSuccess
|
|
540
530
|
|
|
531
|
+
interface _DescribeEventsResponseSuccess
|
|
532
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsOutput]
|
|
533
|
+
def operation_events: () -> ::Array[Types::OperationEvent]
|
|
534
|
+
def next_token: () -> ::String
|
|
535
|
+
end
|
|
536
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_events-instance_method
|
|
537
|
+
def describe_events: (
|
|
538
|
+
?stack_name: ::String,
|
|
539
|
+
?change_set_name: ::String,
|
|
540
|
+
?operation_id: ::String,
|
|
541
|
+
?filters: {
|
|
542
|
+
failed_events: bool?
|
|
543
|
+
},
|
|
544
|
+
?next_token: ::String
|
|
545
|
+
) -> _DescribeEventsResponseSuccess
|
|
546
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
|
|
547
|
+
|
|
541
548
|
interface _DescribeGeneratedTemplateResponseSuccess
|
|
542
549
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGeneratedTemplateOutput]
|
|
543
550
|
def generated_template_id: () -> ::String
|
|
@@ -623,10 +630,10 @@ module Aws
|
|
|
623
630
|
end
|
|
624
631
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_events-instance_method
|
|
625
632
|
def describe_stack_events: (
|
|
626
|
-
|
|
633
|
+
stack_name: ::String,
|
|
627
634
|
?next_token: ::String
|
|
628
635
|
) -> _DescribeStackEventsResponseSuccess
|
|
629
|
-
| (
|
|
636
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStackEventsResponseSuccess
|
|
630
637
|
|
|
631
638
|
interface _DescribeStackInstanceResponseSuccess
|
|
632
639
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStackInstanceOutput]
|
|
@@ -676,7 +683,7 @@ module Aws
|
|
|
676
683
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
|
|
677
684
|
def describe_stack_resource_drifts: (
|
|
678
685
|
stack_name: ::String,
|
|
679
|
-
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
686
|
+
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
680
687
|
?next_token: ::String,
|
|
681
688
|
?max_results: ::Integer
|
|
682
689
|
) -> _DescribeStackResourceDriftsResponseSuccess
|
|
@@ -812,15 +819,7 @@ module Aws
|
|
|
812
819
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#detect_stack_set_drift-instance_method
|
|
813
820
|
def detect_stack_set_drift: (
|
|
814
821
|
stack_set_name: ::String,
|
|
815
|
-
?operation_preferences:
|
|
816
|
-
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
817
|
-
region_order: Array[::String]?,
|
|
818
|
-
failure_tolerance_count: ::Integer?,
|
|
819
|
-
failure_tolerance_percentage: ::Integer?,
|
|
820
|
-
max_concurrent_count: ::Integer?,
|
|
821
|
-
max_concurrent_percentage: ::Integer?,
|
|
822
|
-
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
823
|
-
},
|
|
822
|
+
?operation_preferences: Params::stack_set_operation_preferences,
|
|
824
823
|
?operation_id: ::String,
|
|
825
824
|
?call_as: ("SELF" | "DELEGATED_ADMIN")
|
|
826
825
|
) -> _DetectStackSetDriftResponseSuccess
|
|
@@ -840,7 +839,7 @@ module Aws
|
|
|
840
839
|
parameter_value: ::String?,
|
|
841
840
|
use_previous_value: bool?,
|
|
842
841
|
resolved_value: ::String?
|
|
843
|
-
}
|
|
842
|
+
}
|
|
844
843
|
]
|
|
845
844
|
) -> _EstimateTemplateCostResponseSuccess
|
|
846
845
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EstimateTemplateCostResponseSuccess
|
|
@@ -876,6 +875,28 @@ module Aws
|
|
|
876
875
|
) -> _GetGeneratedTemplateResponseSuccess
|
|
877
876
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGeneratedTemplateResponseSuccess
|
|
878
877
|
|
|
878
|
+
interface _GetHookResultResponseSuccess
|
|
879
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetHookResultOutput]
|
|
880
|
+
def hook_result_id: () -> ::String
|
|
881
|
+
def invocation_point: () -> ("PRE_PROVISION")
|
|
882
|
+
def failure_mode: () -> ("FAIL" | "WARN")
|
|
883
|
+
def type_name: () -> ::String
|
|
884
|
+
def original_type_name: () -> ::String
|
|
885
|
+
def type_version_id: () -> ::String
|
|
886
|
+
def type_configuration_version_id: () -> ::String
|
|
887
|
+
def type_arn: () -> ::String
|
|
888
|
+
def status: () -> ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
889
|
+
def hook_status_reason: () -> ::String
|
|
890
|
+
def invoked_at: () -> ::Time
|
|
891
|
+
def target: () -> Types::HookTarget
|
|
892
|
+
def annotations: () -> ::Array[Types::Annotation]
|
|
893
|
+
end
|
|
894
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#get_hook_result-instance_method
|
|
895
|
+
def get_hook_result: (
|
|
896
|
+
?hook_result_id: ::String
|
|
897
|
+
) -> _GetHookResultResponseSuccess
|
|
898
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHookResultResponseSuccess
|
|
899
|
+
|
|
879
900
|
interface _GetStackPolicyResponseSuccess
|
|
880
901
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStackPolicyOutput]
|
|
881
902
|
def stack_policy_body: () -> ::String
|
|
@@ -935,15 +956,7 @@ module Aws
|
|
|
935
956
|
?stack_ids: Array[::String],
|
|
936
957
|
?stack_ids_url: ::String,
|
|
937
958
|
?organizational_unit_ids: Array[::String],
|
|
938
|
-
?operation_preferences:
|
|
939
|
-
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
940
|
-
region_order: Array[::String]?,
|
|
941
|
-
failure_tolerance_count: ::Integer?,
|
|
942
|
-
failure_tolerance_percentage: ::Integer?,
|
|
943
|
-
max_concurrent_count: ::Integer?,
|
|
944
|
-
max_concurrent_percentage: ::Integer?,
|
|
945
|
-
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
946
|
-
},
|
|
959
|
+
?operation_preferences: Params::stack_set_operation_preferences,
|
|
947
960
|
?operation_id: ::String,
|
|
948
961
|
?call_as: ("SELF" | "DELEGATED_ADMIN")
|
|
949
962
|
) -> _ImportStacksToStackSetResponseSuccess
|
|
@@ -993,11 +1006,13 @@ module Aws
|
|
|
993
1006
|
end
|
|
994
1007
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_hook_results-instance_method
|
|
995
1008
|
def list_hook_results: (
|
|
996
|
-
target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
|
|
997
|
-
target_id: ::String,
|
|
1009
|
+
?target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
|
|
1010
|
+
?target_id: ::String,
|
|
1011
|
+
?type_arn: ::String,
|
|
1012
|
+
?status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED"),
|
|
998
1013
|
?next_token: ::String
|
|
999
1014
|
) -> _ListHookResultsResponseSuccess
|
|
1000
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
|
|
1015
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
|
|
1001
1016
|
|
|
1002
1017
|
interface _ListImportsResponseSuccess
|
|
1003
1018
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsOutput]
|
|
@@ -1023,7 +1038,7 @@ module Aws
|
|
|
1023
1038
|
{
|
|
1024
1039
|
resource_type: ::String,
|
|
1025
1040
|
resource_identifier: Hash[::String, ::String]
|
|
1026
|
-
}
|
|
1041
|
+
}
|
|
1027
1042
|
],
|
|
1028
1043
|
?next_token: ::String,
|
|
1029
1044
|
?max_results: ::Integer
|
|
@@ -1070,7 +1085,7 @@ module Aws
|
|
|
1070
1085
|
stack_set_name: ::String,
|
|
1071
1086
|
?next_token: ::String,
|
|
1072
1087
|
?max_results: ::Integer,
|
|
1073
|
-
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
1088
|
+
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
1074
1089
|
stack_instance_account: ::String,
|
|
1075
1090
|
stack_instance_region: ::String,
|
|
1076
1091
|
operation_id: ::String,
|
|
@@ -1092,7 +1107,7 @@ module Aws
|
|
|
1092
1107
|
{
|
|
1093
1108
|
name: ("DETAILED_STATUS" | "LAST_OPERATION_ID" | "DRIFT_STATUS")?,
|
|
1094
1109
|
values: ::String?
|
|
1095
|
-
}
|
|
1110
|
+
}
|
|
1096
1111
|
],
|
|
1097
1112
|
?stack_instance_account: ::String,
|
|
1098
1113
|
?stack_instance_region: ::String,
|
|
@@ -1168,7 +1183,7 @@ module Aws
|
|
|
1168
1183
|
{
|
|
1169
1184
|
name: ("OPERATION_RESULT_STATUS")?,
|
|
1170
1185
|
values: ::String?
|
|
1171
|
-
}
|
|
1186
|
+
}
|
|
1172
1187
|
]
|
|
1173
1188
|
) -> _ListStackSetOperationResultsResponseSuccess
|
|
1174
1189
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetOperationResultsResponseSuccess
|
|
@@ -1327,6 +1342,7 @@ module Aws
|
|
|
1327
1342
|
interface _RollbackStackResponseSuccess
|
|
1328
1343
|
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
|
|
1329
1344
|
def stack_id: () -> ::String
|
|
1345
|
+
def operation_id: () -> ::String
|
|
1330
1346
|
end
|
|
1331
1347
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
|
|
1332
1348
|
def rollback_stack: (
|
|
@@ -1390,7 +1406,7 @@ module Aws
|
|
|
1390
1406
|
?scan_filters: Array[
|
|
1391
1407
|
{
|
|
1392
1408
|
types: Array[::String]?
|
|
1393
|
-
}
|
|
1409
|
+
}
|
|
1394
1410
|
]
|
|
1395
1411
|
) -> _StartResourceScanResponseSuccess
|
|
1396
1412
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartResourceScanResponseSuccess
|
|
@@ -1433,7 +1449,7 @@ module Aws
|
|
|
1433
1449
|
resource_type: ::String,
|
|
1434
1450
|
logical_resource_id: ::String?,
|
|
1435
1451
|
resource_identifier: Hash[::String, ::String]
|
|
1436
|
-
}
|
|
1452
|
+
}
|
|
1437
1453
|
],
|
|
1438
1454
|
?remove_resources: Array[::String],
|
|
1439
1455
|
?refresh_all_resources: bool,
|
|
@@ -1447,6 +1463,7 @@ module Aws
|
|
|
1447
1463
|
interface _UpdateStackResponseSuccess
|
|
1448
1464
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
|
|
1449
1465
|
def stack_id: () -> ::String
|
|
1466
|
+
def operation_id: () -> ::String
|
|
1450
1467
|
end
|
|
1451
1468
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
|
|
1452
1469
|
def update_stack: (
|
|
@@ -1462,7 +1479,7 @@ module Aws
|
|
|
1462
1479
|
parameter_value: ::String?,
|
|
1463
1480
|
use_previous_value: bool?,
|
|
1464
1481
|
resolved_value: ::String?
|
|
1465
|
-
}
|
|
1482
|
+
}
|
|
1466
1483
|
],
|
|
1467
1484
|
?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
|
|
1468
1485
|
?resource_types: Array[::String],
|
|
@@ -1472,7 +1489,7 @@ module Aws
|
|
|
1472
1489
|
{
|
|
1473
1490
|
arn: ::String,
|
|
1474
1491
|
type: ::String
|
|
1475
|
-
}
|
|
1492
|
+
}
|
|
1476
1493
|
]?,
|
|
1477
1494
|
monitoring_time_in_minutes: ::Integer?
|
|
1478
1495
|
},
|
|
@@ -1483,7 +1500,7 @@ module Aws
|
|
|
1483
1500
|
{
|
|
1484
1501
|
key: ::String,
|
|
1485
1502
|
value: ::String
|
|
1486
|
-
}
|
|
1503
|
+
}
|
|
1487
1504
|
],
|
|
1488
1505
|
?disable_rollback: bool,
|
|
1489
1506
|
?client_request_token: ::String,
|
|
@@ -1512,17 +1529,9 @@ module Aws
|
|
|
1512
1529
|
parameter_value: ::String?,
|
|
1513
1530
|
use_previous_value: bool?,
|
|
1514
1531
|
resolved_value: ::String?
|
|
1515
|
-
}
|
|
1532
|
+
}
|
|
1516
1533
|
],
|
|
1517
|
-
?operation_preferences:
|
|
1518
|
-
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
1519
|
-
region_order: Array[::String]?,
|
|
1520
|
-
failure_tolerance_count: ::Integer?,
|
|
1521
|
-
failure_tolerance_percentage: ::Integer?,
|
|
1522
|
-
max_concurrent_count: ::Integer?,
|
|
1523
|
-
max_concurrent_percentage: ::Integer?,
|
|
1524
|
-
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
1525
|
-
},
|
|
1534
|
+
?operation_preferences: Params::stack_set_operation_preferences,
|
|
1526
1535
|
?operation_id: ::String,
|
|
1527
1536
|
?call_as: ("SELF" | "DELEGATED_ADMIN")
|
|
1528
1537
|
) -> _UpdateStackInstancesResponseSuccess
|
|
@@ -1545,24 +1554,16 @@ module Aws
|
|
|
1545
1554
|
parameter_value: ::String?,
|
|
1546
1555
|
use_previous_value: bool?,
|
|
1547
1556
|
resolved_value: ::String?
|
|
1548
|
-
}
|
|
1557
|
+
}
|
|
1549
1558
|
],
|
|
1550
1559
|
?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
|
|
1551
1560
|
?tags: Array[
|
|
1552
1561
|
{
|
|
1553
1562
|
key: ::String,
|
|
1554
1563
|
value: ::String
|
|
1555
|
-
}
|
|
1564
|
+
}
|
|
1556
1565
|
],
|
|
1557
|
-
?operation_preferences:
|
|
1558
|
-
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
1559
|
-
region_order: Array[::String]?,
|
|
1560
|
-
failure_tolerance_count: ::Integer?,
|
|
1561
|
-
failure_tolerance_percentage: ::Integer?,
|
|
1562
|
-
max_concurrent_count: ::Integer?,
|
|
1563
|
-
max_concurrent_percentage: ::Integer?,
|
|
1564
|
-
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
1565
|
-
},
|
|
1566
|
+
?operation_preferences: Params::stack_set_operation_preferences,
|
|
1566
1567
|
?administration_role_arn: ::String,
|
|
1567
1568
|
?execution_role_name: ::String,
|
|
1568
1569
|
?deployment_targets: {
|
|
@@ -1574,7 +1575,8 @@ module Aws
|
|
|
1574
1575
|
?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
|
|
1575
1576
|
?auto_deployment: {
|
|
1576
1577
|
enabled: bool?,
|
|
1577
|
-
retain_stacks_on_account_removal: bool
|
|
1578
|
+
retain_stacks_on_account_removal: bool?,
|
|
1579
|
+
depends_on: Array[::String]?
|
|
1578
1580
|
},
|
|
1579
1581
|
?operation_id: ::String,
|
|
1580
1582
|
?accounts: Array[::String],
|
data/sig/event.rbs
CHANGED
|
@@ -24,6 +24,9 @@ module Aws
|
|
|
24
24
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#stack_name-instance_method
|
|
25
25
|
def stack_name: () -> ::String
|
|
26
26
|
|
|
27
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#operation_id-instance_method
|
|
28
|
+
def operation_id: () -> ::String
|
|
29
|
+
|
|
27
30
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#logical_resource_id-instance_method
|
|
28
31
|
def logical_resource_id: () -> ::String
|
|
29
32
|
|
|
@@ -60,6 +63,9 @@ module Aws
|
|
|
60
63
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_invocation_point-instance_method
|
|
61
64
|
def hook_invocation_point: () -> ("PRE_PROVISION")
|
|
62
65
|
|
|
66
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_invocation_id-instance_method
|
|
67
|
+
def hook_invocation_id: () -> ::String
|
|
68
|
+
|
|
63
69
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Event.html#hook_failure_mode-instance_method
|
|
64
70
|
def hook_failure_mode: () -> ("FAIL" | "WARN")
|
|
65
71
|
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CloudFormation
|
|
10
|
+
module Params
|
|
11
|
+
type stack_set_operation_preferences = {
|
|
12
|
+
region_concurrency_type: ("SEQUENTIAL" | "PARALLEL")?,
|
|
13
|
+
region_order: Array[::String]?,
|
|
14
|
+
failure_tolerance_count: ::Integer?,
|
|
15
|
+
failure_tolerance_percentage: ::Integer?,
|
|
16
|
+
max_concurrent_count: ::Integer?,
|
|
17
|
+
max_concurrent_percentage: ::Integer?,
|
|
18
|
+
concurrency_mode: ("STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE")?
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
data/sig/resource.rbs
CHANGED
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
|
@@ -90,7 +91,7 @@ module Aws
|
|
|
90
91
|
parameter_value: ::String?,
|
|
91
92
|
use_previous_value: bool?,
|
|
92
93
|
resolved_value: ::String?
|
|
93
|
-
}
|
|
94
|
+
}
|
|
94
95
|
],
|
|
95
96
|
?disable_rollback: bool,
|
|
96
97
|
?rollback_configuration: {
|
|
@@ -98,7 +99,7 @@ module Aws
|
|
|
98
99
|
{
|
|
99
100
|
arn: ::String,
|
|
100
101
|
type: ::String
|
|
101
|
-
}
|
|
102
|
+
}
|
|
102
103
|
]?,
|
|
103
104
|
monitoring_time_in_minutes: ::Integer?
|
|
104
105
|
},
|
|
@@ -114,7 +115,7 @@ module Aws
|
|
|
114
115
|
{
|
|
115
116
|
key: ::String,
|
|
116
117
|
value: ::String
|
|
117
|
-
}
|
|
118
|
+
}
|
|
118
119
|
],
|
|
119
120
|
?client_request_token: ::String,
|
|
120
121
|
?enable_termination_protection: bool,
|
data/sig/stack.rbs
CHANGED
|
@@ -90,6 +90,9 @@ module Aws
|
|
|
90
90
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#detailed_status-instance_method
|
|
91
91
|
def detailed_status: () -> ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
92
92
|
|
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#last_operations-instance_method
|
|
94
|
+
def last_operations: () -> ::Array[Types::OperationEntry]
|
|
95
|
+
|
|
93
96
|
def client: () -> Client
|
|
94
97
|
|
|
95
98
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Stack.html#load-instance_method
|
|
@@ -126,7 +129,7 @@ module Aws
|
|
|
126
129
|
parameter_value: ::String?,
|
|
127
130
|
use_previous_value: bool?,
|
|
128
131
|
resolved_value: ::String?
|
|
129
|
-
}
|
|
132
|
+
}
|
|
130
133
|
],
|
|
131
134
|
?disable_rollback: bool,
|
|
132
135
|
?rollback_configuration: {
|
|
@@ -134,7 +137,7 @@ module Aws
|
|
|
134
137
|
{
|
|
135
138
|
arn: ::String,
|
|
136
139
|
type: ::String
|
|
137
|
-
}
|
|
140
|
+
}
|
|
138
141
|
]?,
|
|
139
142
|
monitoring_time_in_minutes: ::Integer?
|
|
140
143
|
},
|
|
@@ -150,7 +153,7 @@ module Aws
|
|
|
150
153
|
{
|
|
151
154
|
key: ::String,
|
|
152
155
|
value: ::String
|
|
153
|
-
}
|
|
156
|
+
}
|
|
154
157
|
],
|
|
155
158
|
?client_request_token: ::String,
|
|
156
159
|
?enable_termination_protection: bool,
|
|
@@ -180,7 +183,7 @@ module Aws
|
|
|
180
183
|
parameter_value: ::String?,
|
|
181
184
|
use_previous_value: bool?,
|
|
182
185
|
resolved_value: ::String?
|
|
183
|
-
}
|
|
186
|
+
}
|
|
184
187
|
],
|
|
185
188
|
?capabilities: Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")],
|
|
186
189
|
?resource_types: Array[::String],
|
|
@@ -190,7 +193,7 @@ module Aws
|
|
|
190
193
|
{
|
|
191
194
|
arn: ::String,
|
|
192
195
|
type: ::String
|
|
193
|
-
}
|
|
196
|
+
}
|
|
194
197
|
]?,
|
|
195
198
|
monitoring_time_in_minutes: ::Integer?
|
|
196
199
|
},
|
|
@@ -201,7 +204,7 @@ module Aws
|
|
|
201
204
|
{
|
|
202
205
|
key: ::String,
|
|
203
206
|
value: ::String
|
|
204
|
-
}
|
|
207
|
+
}
|
|
205
208
|
],
|
|
206
209
|
?disable_rollback: bool,
|
|
207
210
|
?client_request_token: ::String,
|