aws-sdk-cloudformation 1.144.0 → 1.146.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +187 -17
- data/lib/aws-sdk-cloudformation/client_api.rb +125 -0
- data/lib/aws-sdk-cloudformation/event.rb +7 -0
- data/lib/aws-sdk-cloudformation/stack.rb +6 -0
- data/lib/aws-sdk-cloudformation/types.rb +460 -15
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +30 -5
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +96 -10
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -198,7 +198,8 @@ module Aws
|
|
|
198
198
|
],
|
|
199
199
|
?include_nested_stacks: bool,
|
|
200
200
|
?on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE"),
|
|
201
|
-
?import_existing_resources: bool
|
|
201
|
+
?import_existing_resources: bool,
|
|
202
|
+
?deployment_mode: ("REVERT_DRIFT")
|
|
202
203
|
) -> _CreateChangeSetResponseSuccess
|
|
203
204
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChangeSetResponseSuccess
|
|
204
205
|
|
|
@@ -227,6 +228,7 @@ module Aws
|
|
|
227
228
|
interface _CreateStackResponseSuccess
|
|
228
229
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackOutput]
|
|
229
230
|
def stack_id: () -> ::String
|
|
231
|
+
def operation_id: () -> ::String
|
|
230
232
|
end
|
|
231
233
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#create_stack-instance_method
|
|
232
234
|
def create_stack: (
|
|
@@ -369,7 +371,8 @@ module Aws
|
|
|
369
371
|
?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
|
|
370
372
|
?auto_deployment: {
|
|
371
373
|
enabled: bool?,
|
|
372
|
-
retain_stacks_on_account_removal: bool
|
|
374
|
+
retain_stacks_on_account_removal: bool?,
|
|
375
|
+
depends_on: Array[::String]?
|
|
373
376
|
},
|
|
374
377
|
?call_as: ("SELF" | "DELEGATED_ADMIN"),
|
|
375
378
|
?client_request_token: ::String,
|
|
@@ -499,6 +502,7 @@ module Aws
|
|
|
499
502
|
def execution_status: () -> ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
500
503
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
501
504
|
def status_reason: () -> ::String
|
|
505
|
+
def stack_drift_status: () -> ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
502
506
|
def notification_arns: () -> ::Array[::String]
|
|
503
507
|
def rollback_configuration: () -> Types::RollbackConfiguration
|
|
504
508
|
def capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -510,6 +514,7 @@ module Aws
|
|
|
510
514
|
def root_change_set_id: () -> ::String
|
|
511
515
|
def on_stack_failure: () -> ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
512
516
|
def import_existing_resources: () -> bool
|
|
517
|
+
def deployment_mode: () -> ("REVERT_DRIFT")
|
|
513
518
|
end
|
|
514
519
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_change_set-instance_method
|
|
515
520
|
def describe_change_set: (
|
|
@@ -539,6 +544,23 @@ module Aws
|
|
|
539
544
|
) -> _DescribeChangeSetHooksResponseSuccess
|
|
540
545
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetHooksResponseSuccess
|
|
541
546
|
|
|
547
|
+
interface _DescribeEventsResponseSuccess
|
|
548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsOutput]
|
|
549
|
+
def operation_events: () -> ::Array[Types::OperationEvent]
|
|
550
|
+
def next_token: () -> ::String
|
|
551
|
+
end
|
|
552
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_events-instance_method
|
|
553
|
+
def describe_events: (
|
|
554
|
+
?stack_name: ::String,
|
|
555
|
+
?change_set_name: ::String,
|
|
556
|
+
?operation_id: ::String,
|
|
557
|
+
?filters: {
|
|
558
|
+
failed_events: bool?
|
|
559
|
+
},
|
|
560
|
+
?next_token: ::String
|
|
561
|
+
) -> _DescribeEventsResponseSuccess
|
|
562
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
|
|
563
|
+
|
|
542
564
|
interface _DescribeGeneratedTemplateResponseSuccess
|
|
543
565
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGeneratedTemplateOutput]
|
|
544
566
|
def generated_template_id: () -> ::String
|
|
@@ -677,7 +699,7 @@ module Aws
|
|
|
677
699
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#describe_stack_resource_drifts-instance_method
|
|
678
700
|
def describe_stack_resource_drifts: (
|
|
679
701
|
stack_name: ::String,
|
|
680
|
-
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
702
|
+
?stack_resource_drift_status_filters: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
681
703
|
?next_token: ::String,
|
|
682
704
|
?max_results: ::Integer
|
|
683
705
|
) -> _DescribeStackResourceDriftsResponseSuccess
|
|
@@ -1095,7 +1117,7 @@ module Aws
|
|
|
1095
1117
|
stack_set_name: ::String,
|
|
1096
1118
|
?next_token: ::String,
|
|
1097
1119
|
?max_results: ::Integer,
|
|
1098
|
-
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")],
|
|
1120
|
+
?stack_instance_resource_drift_statuses: Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")],
|
|
1099
1121
|
stack_instance_account: ::String,
|
|
1100
1122
|
stack_instance_region: ::String,
|
|
1101
1123
|
operation_id: ::String,
|
|
@@ -1352,6 +1374,7 @@ module Aws
|
|
|
1352
1374
|
interface _RollbackStackResponseSuccess
|
|
1353
1375
|
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackStackOutput]
|
|
1354
1376
|
def stack_id: () -> ::String
|
|
1377
|
+
def operation_id: () -> ::String
|
|
1355
1378
|
end
|
|
1356
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#rollback_stack-instance_method
|
|
1357
1380
|
def rollback_stack: (
|
|
@@ -1472,6 +1495,7 @@ module Aws
|
|
|
1472
1495
|
interface _UpdateStackResponseSuccess
|
|
1473
1496
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStackOutput]
|
|
1474
1497
|
def stack_id: () -> ::String
|
|
1498
|
+
def operation_id: () -> ::String
|
|
1475
1499
|
end
|
|
1476
1500
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#update_stack-instance_method
|
|
1477
1501
|
def update_stack: (
|
|
@@ -1599,7 +1623,8 @@ module Aws
|
|
|
1599
1623
|
?permission_model: ("SERVICE_MANAGED" | "SELF_MANAGED"),
|
|
1600
1624
|
?auto_deployment: {
|
|
1601
1625
|
enabled: bool?,
|
|
1602
|
-
retain_stacks_on_account_removal: bool
|
|
1626
|
+
retain_stacks_on_account_removal: bool?,
|
|
1627
|
+
depends_on: Array[::String]?
|
|
1603
1628
|
},
|
|
1604
1629
|
?operation_id: ::String,
|
|
1605
1630
|
?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
|
|
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
|
data/sig/types.rbs
CHANGED
|
@@ -61,6 +61,7 @@ module Aws::CloudFormation
|
|
|
61
61
|
class AutoDeployment
|
|
62
62
|
attr_accessor enabled: bool
|
|
63
63
|
attr_accessor retain_stacks_on_account_removal: bool
|
|
64
|
+
attr_accessor depends_on: ::Array[::String]
|
|
64
65
|
SENSITIVE: []
|
|
65
66
|
end
|
|
66
67
|
|
|
@@ -114,7 +115,7 @@ module Aws::CloudFormation
|
|
|
114
115
|
class ChangeSetHookResourceTargetDetails
|
|
115
116
|
attr_accessor logical_resource_id: ::String
|
|
116
117
|
attr_accessor resource_type: ::String
|
|
117
|
-
attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
|
|
118
|
+
attr_accessor resource_action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
|
|
118
119
|
SENSITIVE: []
|
|
119
120
|
end
|
|
120
121
|
|
|
@@ -178,6 +179,7 @@ module Aws::CloudFormation
|
|
|
178
179
|
attr_accessor include_nested_stacks: bool
|
|
179
180
|
attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
180
181
|
attr_accessor import_existing_resources: bool
|
|
182
|
+
attr_accessor deployment_mode: ("REVERT_DRIFT")
|
|
181
183
|
SENSITIVE: []
|
|
182
184
|
end
|
|
183
185
|
|
|
@@ -241,6 +243,7 @@ module Aws::CloudFormation
|
|
|
241
243
|
|
|
242
244
|
class CreateStackOutput
|
|
243
245
|
attr_accessor stack_id: ::String
|
|
246
|
+
attr_accessor operation_id: ::String
|
|
244
247
|
SENSITIVE: []
|
|
245
248
|
end
|
|
246
249
|
|
|
@@ -417,6 +420,7 @@ module Aws::CloudFormation
|
|
|
417
420
|
attr_accessor execution_status: ("UNAVAILABLE" | "AVAILABLE" | "EXECUTE_IN_PROGRESS" | "EXECUTE_COMPLETE" | "EXECUTE_FAILED" | "OBSOLETE")
|
|
418
421
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "FAILED")
|
|
419
422
|
attr_accessor status_reason: ::String
|
|
423
|
+
attr_accessor stack_drift_status: ("DRIFTED" | "IN_SYNC" | "UNKNOWN" | "NOT_CHECKED")
|
|
420
424
|
attr_accessor notification_arns: ::Array[::String]
|
|
421
425
|
attr_accessor rollback_configuration: Types::RollbackConfiguration
|
|
422
426
|
attr_accessor capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND")]
|
|
@@ -428,6 +432,22 @@ module Aws::CloudFormation
|
|
|
428
432
|
attr_accessor root_change_set_id: ::String
|
|
429
433
|
attr_accessor on_stack_failure: ("DO_NOTHING" | "ROLLBACK" | "DELETE")
|
|
430
434
|
attr_accessor import_existing_resources: bool
|
|
435
|
+
attr_accessor deployment_mode: ("REVERT_DRIFT")
|
|
436
|
+
SENSITIVE: []
|
|
437
|
+
end
|
|
438
|
+
|
|
439
|
+
class DescribeEventsInput
|
|
440
|
+
attr_accessor stack_name: ::String
|
|
441
|
+
attr_accessor change_set_name: ::String
|
|
442
|
+
attr_accessor operation_id: ::String
|
|
443
|
+
attr_accessor filters: Types::EventFilter
|
|
444
|
+
attr_accessor next_token: ::String
|
|
445
|
+
SENSITIVE: []
|
|
446
|
+
end
|
|
447
|
+
|
|
448
|
+
class DescribeEventsOutput
|
|
449
|
+
attr_accessor operation_events: ::Array[Types::OperationEvent]
|
|
450
|
+
attr_accessor next_token: ::String
|
|
431
451
|
SENSITIVE: []
|
|
432
452
|
end
|
|
433
453
|
|
|
@@ -552,7 +572,7 @@ module Aws::CloudFormation
|
|
|
552
572
|
|
|
553
573
|
class DescribeStackResourceDriftsInput
|
|
554
574
|
attr_accessor stack_name: ::String
|
|
555
|
-
attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
|
|
575
|
+
attr_accessor stack_resource_drift_status_filters: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")]
|
|
556
576
|
attr_accessor next_token: ::String
|
|
557
577
|
attr_accessor max_results: ::Integer
|
|
558
578
|
SENSITIVE: []
|
|
@@ -723,6 +743,11 @@ module Aws::CloudFormation
|
|
|
723
743
|
SENSITIVE: []
|
|
724
744
|
end
|
|
725
745
|
|
|
746
|
+
class EventFilter
|
|
747
|
+
attr_accessor failed_events: bool
|
|
748
|
+
SENSITIVE: []
|
|
749
|
+
end
|
|
750
|
+
|
|
726
751
|
class ExecuteChangeSetInput
|
|
727
752
|
attr_accessor change_set_name: ::String
|
|
728
753
|
attr_accessor stack_name: ::String
|
|
@@ -1002,7 +1027,7 @@ module Aws::CloudFormation
|
|
|
1002
1027
|
attr_accessor stack_set_name: ::String
|
|
1003
1028
|
attr_accessor next_token: ::String
|
|
1004
1029
|
attr_accessor max_results: ::Integer
|
|
1005
|
-
attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")]
|
|
1030
|
+
attr_accessor stack_instance_resource_drift_statuses: ::Array[("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")]
|
|
1006
1031
|
attr_accessor stack_instance_account: ::String
|
|
1007
1032
|
attr_accessor stack_instance_region: ::String
|
|
1008
1033
|
attr_accessor operation_id: ::String
|
|
@@ -1191,6 +1216,13 @@ module Aws::CloudFormation
|
|
|
1191
1216
|
SENSITIVE: []
|
|
1192
1217
|
end
|
|
1193
1218
|
|
|
1219
|
+
class LiveResourceDrift
|
|
1220
|
+
attr_accessor previous_value: ::String
|
|
1221
|
+
attr_accessor actual_value: ::String
|
|
1222
|
+
attr_accessor drift_detection_timestamp: ::Time
|
|
1223
|
+
SENSITIVE: []
|
|
1224
|
+
end
|
|
1225
|
+
|
|
1194
1226
|
class LoggingConfig
|
|
1195
1227
|
attr_accessor log_role_arn: ::String
|
|
1196
1228
|
attr_accessor log_group_name: ::String
|
|
@@ -1211,6 +1243,43 @@ module Aws::CloudFormation
|
|
|
1211
1243
|
class NameAlreadyExistsException < Aws::EmptyStructure
|
|
1212
1244
|
end
|
|
1213
1245
|
|
|
1246
|
+
class OperationEntry
|
|
1247
|
+
attr_accessor operation_type: ("CREATE_STACK" | "UPDATE_STACK" | "DELETE_STACK" | "CONTINUE_ROLLBACK" | "ROLLBACK" | "CREATE_CHANGESET")
|
|
1248
|
+
attr_accessor operation_id: ::String
|
|
1249
|
+
SENSITIVE: []
|
|
1250
|
+
end
|
|
1251
|
+
|
|
1252
|
+
class OperationEvent
|
|
1253
|
+
attr_accessor event_id: ::String
|
|
1254
|
+
attr_accessor stack_id: ::String
|
|
1255
|
+
attr_accessor operation_id: ::String
|
|
1256
|
+
attr_accessor operation_type: ("CREATE_STACK" | "UPDATE_STACK" | "DELETE_STACK" | "CONTINUE_ROLLBACK" | "ROLLBACK" | "CREATE_CHANGESET")
|
|
1257
|
+
attr_accessor operation_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
1258
|
+
attr_accessor event_type: ("STACK_EVENT" | "PROGRESS_EVENT" | "VALIDATION_ERROR" | "PROVISIONING_ERROR" | "HOOK_INVOCATION_ERROR")
|
|
1259
|
+
attr_accessor logical_resource_id: ::String
|
|
1260
|
+
attr_accessor physical_resource_id: ::String
|
|
1261
|
+
attr_accessor resource_type: ::String
|
|
1262
|
+
attr_accessor timestamp: ::Time
|
|
1263
|
+
attr_accessor start_time: ::Time
|
|
1264
|
+
attr_accessor end_time: ::Time
|
|
1265
|
+
attr_accessor resource_status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
|
|
1266
|
+
attr_accessor resource_status_reason: ::String
|
|
1267
|
+
attr_accessor resource_properties: ::String
|
|
1268
|
+
attr_accessor client_request_token: ::String
|
|
1269
|
+
attr_accessor hook_type: ::String
|
|
1270
|
+
attr_accessor hook_status: ("HOOK_IN_PROGRESS" | "HOOK_COMPLETE_SUCCEEDED" | "HOOK_COMPLETE_FAILED" | "HOOK_FAILED")
|
|
1271
|
+
attr_accessor hook_status_reason: ::String
|
|
1272
|
+
attr_accessor hook_invocation_point: ("PRE_PROVISION")
|
|
1273
|
+
attr_accessor hook_failure_mode: ("FAIL" | "WARN")
|
|
1274
|
+
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
1275
|
+
attr_accessor validation_failure_mode: ("FAIL" | "WARN")
|
|
1276
|
+
attr_accessor validation_name: ::String
|
|
1277
|
+
attr_accessor validation_status: ("FAILED" | "SKIPPED")
|
|
1278
|
+
attr_accessor validation_status_reason: ::String
|
|
1279
|
+
attr_accessor validation_path: ::String
|
|
1280
|
+
SENSITIVE: []
|
|
1281
|
+
end
|
|
1282
|
+
|
|
1214
1283
|
class OperationIdAlreadyExistsException < Aws::EmptyStructure
|
|
1215
1284
|
end
|
|
1216
1285
|
|
|
@@ -1337,24 +1406,27 @@ module Aws::CloudFormation
|
|
|
1337
1406
|
|
|
1338
1407
|
class ResourceChange
|
|
1339
1408
|
attr_accessor policy_action: ("Delete" | "Retain" | "Snapshot" | "ReplaceAndDelete" | "ReplaceAndRetain" | "ReplaceAndSnapshot")
|
|
1340
|
-
attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic")
|
|
1409
|
+
attr_accessor action: ("Add" | "Modify" | "Remove" | "Import" | "Dynamic" | "SyncWithActual")
|
|
1341
1410
|
attr_accessor logical_resource_id: ::String
|
|
1342
1411
|
attr_accessor physical_resource_id: ::String
|
|
1343
1412
|
attr_accessor resource_type: ::String
|
|
1344
1413
|
attr_accessor replacement: ("True" | "False" | "Conditional")
|
|
1345
1414
|
attr_accessor scope: ::Array[("Properties" | "Metadata" | "CreationPolicy" | "UpdatePolicy" | "DeletionPolicy" | "UpdateReplacePolicy" | "Tags")]
|
|
1415
|
+
attr_accessor resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1416
|
+
attr_accessor resource_drift_ignored_attributes: ::Array[Types::ResourceDriftIgnoredAttribute]
|
|
1346
1417
|
attr_accessor details: ::Array[Types::ResourceChangeDetail]
|
|
1347
1418
|
attr_accessor change_set_id: ::String
|
|
1348
1419
|
attr_accessor module_info: Types::ModuleInfo
|
|
1349
1420
|
attr_accessor before_context: ::String
|
|
1350
1421
|
attr_accessor after_context: ::String
|
|
1422
|
+
attr_accessor previous_deployment_context: ::String
|
|
1351
1423
|
SENSITIVE: []
|
|
1352
1424
|
end
|
|
1353
1425
|
|
|
1354
1426
|
class ResourceChangeDetail
|
|
1355
1427
|
attr_accessor target: Types::ResourceTargetDefinition
|
|
1356
1428
|
attr_accessor evaluation: ("Static" | "Dynamic")
|
|
1357
|
-
attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic")
|
|
1429
|
+
attr_accessor change_source: ("ResourceReference" | "ParameterReference" | "ResourceAttribute" | "DirectModification" | "Automatic" | "NoModification")
|
|
1358
1430
|
attr_accessor causing_entity: ::String
|
|
1359
1431
|
SENSITIVE: []
|
|
1360
1432
|
end
|
|
@@ -1376,6 +1448,12 @@ module Aws::CloudFormation
|
|
|
1376
1448
|
SENSITIVE: []
|
|
1377
1449
|
end
|
|
1378
1450
|
|
|
1451
|
+
class ResourceDriftIgnoredAttribute
|
|
1452
|
+
attr_accessor path: ::String
|
|
1453
|
+
attr_accessor reason: ("MANAGED_BY_AWS" | "WRITE_ONLY_PROPERTY")
|
|
1454
|
+
SENSITIVE: []
|
|
1455
|
+
end
|
|
1456
|
+
|
|
1379
1457
|
class ResourceIdentifierSummary
|
|
1380
1458
|
attr_accessor resource_type: ::String
|
|
1381
1459
|
attr_accessor logical_resource_ids: ::Array[::String]
|
|
@@ -1422,7 +1500,10 @@ module Aws::CloudFormation
|
|
|
1422
1500
|
attr_accessor path: ::String
|
|
1423
1501
|
attr_accessor before_value: ::String
|
|
1424
1502
|
attr_accessor after_value: ::String
|
|
1425
|
-
attr_accessor
|
|
1503
|
+
attr_accessor before_value_from: ("PREVIOUS_DEPLOYMENT_STATE" | "ACTUAL_STATE")
|
|
1504
|
+
attr_accessor after_value_from: ("TEMPLATE")
|
|
1505
|
+
attr_accessor drift: Types::LiveResourceDrift
|
|
1506
|
+
attr_accessor attribute_change_type: ("Add" | "Remove" | "Modify" | "SyncWithActual")
|
|
1426
1507
|
SENSITIVE: []
|
|
1427
1508
|
end
|
|
1428
1509
|
|
|
@@ -1449,6 +1530,7 @@ module Aws::CloudFormation
|
|
|
1449
1530
|
|
|
1450
1531
|
class RollbackStackOutput
|
|
1451
1532
|
attr_accessor stack_id: ::String
|
|
1533
|
+
attr_accessor operation_id: ::String
|
|
1452
1534
|
SENSITIVE: []
|
|
1453
1535
|
end
|
|
1454
1536
|
|
|
@@ -1542,6 +1624,7 @@ module Aws::CloudFormation
|
|
|
1542
1624
|
attr_accessor retain_except_on_create: bool
|
|
1543
1625
|
attr_accessor deletion_mode: ("STANDARD" | "FORCE_DELETE_STACK")
|
|
1544
1626
|
attr_accessor detailed_status: ("CONFIGURATION_COMPLETE" | "VALIDATION_FAILED")
|
|
1627
|
+
attr_accessor last_operations: ::Array[Types::OperationEntry]
|
|
1545
1628
|
SENSITIVE: []
|
|
1546
1629
|
end
|
|
1547
1630
|
|
|
@@ -1568,6 +1651,7 @@ module Aws::CloudFormation
|
|
|
1568
1651
|
attr_accessor stack_id: ::String
|
|
1569
1652
|
attr_accessor event_id: ::String
|
|
1570
1653
|
attr_accessor stack_name: ::String
|
|
1654
|
+
attr_accessor operation_id: ::String
|
|
1571
1655
|
attr_accessor logical_resource_id: ::String
|
|
1572
1656
|
attr_accessor physical_resource_id: ::String
|
|
1573
1657
|
attr_accessor resource_type: ::String
|
|
@@ -1623,7 +1707,7 @@ module Aws::CloudFormation
|
|
|
1623
1707
|
attr_accessor physical_resource_id_context: ::Array[Types::PhysicalResourceIdContextKeyValuePair]
|
|
1624
1708
|
attr_accessor resource_type: ::String
|
|
1625
1709
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
|
1626
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1710
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1627
1711
|
attr_accessor timestamp: ::Time
|
|
1628
1712
|
SENSITIVE: []
|
|
1629
1713
|
end
|
|
@@ -1713,7 +1797,7 @@ module Aws::CloudFormation
|
|
|
1713
1797
|
attr_accessor expected_properties: ::String
|
|
1714
1798
|
attr_accessor actual_properties: ::String
|
|
1715
1799
|
attr_accessor property_differences: ::Array[Types::PropertyDifference]
|
|
1716
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1800
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1717
1801
|
attr_accessor timestamp: ::Time
|
|
1718
1802
|
attr_accessor module_info: Types::ModuleInfo
|
|
1719
1803
|
attr_accessor drift_status_reason: ::String
|
|
@@ -1721,13 +1805,13 @@ module Aws::CloudFormation
|
|
|
1721
1805
|
end
|
|
1722
1806
|
|
|
1723
1807
|
class StackResourceDriftInformation
|
|
1724
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1808
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1725
1809
|
attr_accessor last_check_timestamp: ::Time
|
|
1726
1810
|
SENSITIVE: []
|
|
1727
1811
|
end
|
|
1728
1812
|
|
|
1729
1813
|
class StackResourceDriftInformationSummary
|
|
1730
|
-
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN")
|
|
1814
|
+
attr_accessor stack_resource_drift_status: ("IN_SYNC" | "MODIFIED" | "DELETED" | "NOT_CHECKED" | "UNKNOWN" | "UNSUPPORTED")
|
|
1731
1815
|
attr_accessor last_check_timestamp: ::Time
|
|
1732
1816
|
SENSITIVE: []
|
|
1733
1817
|
end
|
|
@@ -1870,6 +1954,7 @@ module Aws::CloudFormation
|
|
|
1870
1954
|
attr_accessor parent_id: ::String
|
|
1871
1955
|
attr_accessor root_id: ::String
|
|
1872
1956
|
attr_accessor drift_information: Types::StackDriftInformationSummary
|
|
1957
|
+
attr_accessor last_operations: ::Array[Types::OperationEntry]
|
|
1873
1958
|
SENSITIVE: []
|
|
1874
1959
|
end
|
|
1875
1960
|
|
|
@@ -2076,6 +2161,7 @@ module Aws::CloudFormation
|
|
|
2076
2161
|
|
|
2077
2162
|
class UpdateStackOutput
|
|
2078
2163
|
attr_accessor stack_id: ::String
|
|
2164
|
+
attr_accessor operation_id: ::String
|
|
2079
2165
|
SENSITIVE: []
|
|
2080
2166
|
end
|
|
2081
2167
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.146.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|