aws-sdk-ecs 1.227.0 → 1.229.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-ecs/client.rb +16 -1
- data/lib/aws-sdk-ecs/client_api.rb +77 -6
- data/lib/aws-sdk-ecs/types.rb +56 -12
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +13 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60758ff6695ca706e164a0809f22d94c41f954fc9b4899ae3b7fa13535163d57
|
|
4
|
+
data.tar.gz: 29ba7be4d6fc0977c1aa87f3213845ef00b5926ccd22b97e4b3e957c46b1d070
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d2fb1d9b4a25d2ee7f7c4df292ba44234b53a921e7ead124088e0f91bfaa16a328333023746a4697e6d1f5c70782e8cc3bc497275ef186e392f62088f3fce20
|
|
7
|
+
data.tar.gz: 57c9d4ea97f39efffc025ea29af10eae7f0bb988ca0b5bfcc68b89bf63d43fddf02283d1e4ac03839e778cdf78ae9141024de986028c2ed9dbfaf25281f6e115
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.229.0 (2026-04-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - GPU health monitoring and auto-repair for ECS Managed Instances
|
|
8
|
+
|
|
9
|
+
1.228.0 (2026-04-10)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Minor updates to exceptions for completeness
|
|
13
|
+
|
|
4
14
|
1.227.0 (2026-04-07)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.229.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -680,6 +680,9 @@ module Aws::ECS
|
|
|
680
680
|
# infrastructure_optimization: {
|
|
681
681
|
# scale_in_after: 1,
|
|
682
682
|
# },
|
|
683
|
+
# auto_repair_configuration: {
|
|
684
|
+
# actions_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
685
|
+
# },
|
|
683
686
|
# },
|
|
684
687
|
# tags: [
|
|
685
688
|
# {
|
|
@@ -760,6 +763,7 @@ module Aws::ECS
|
|
|
760
763
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.capacity_reservations.reservation_preference #=> String, one of "RESERVATIONS_ONLY", "RESERVATIONS_FIRST", "RESERVATIONS_EXCLUDED"
|
|
761
764
|
# resp.capacity_provider.managed_instances_provider.propagate_tags #=> String, one of "CAPACITY_PROVIDER", "NONE"
|
|
762
765
|
# resp.capacity_provider.managed_instances_provider.infrastructure_optimization.scale_in_after #=> Integer
|
|
766
|
+
# resp.capacity_provider.managed_instances_provider.auto_repair_configuration.actions_status #=> String, one of "ENABLED", "DISABLED"
|
|
763
767
|
# resp.capacity_provider.update_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED"
|
|
764
768
|
# resp.capacity_provider.update_status_reason #=> String
|
|
765
769
|
# resp.capacity_provider.tags #=> Array
|
|
@@ -3220,6 +3224,7 @@ module Aws::ECS
|
|
|
3220
3224
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.capacity_reservations.reservation_preference #=> String, one of "RESERVATIONS_ONLY", "RESERVATIONS_FIRST", "RESERVATIONS_EXCLUDED"
|
|
3221
3225
|
# resp.capacity_provider.managed_instances_provider.propagate_tags #=> String, one of "CAPACITY_PROVIDER", "NONE"
|
|
3222
3226
|
# resp.capacity_provider.managed_instances_provider.infrastructure_optimization.scale_in_after #=> Integer
|
|
3227
|
+
# resp.capacity_provider.managed_instances_provider.auto_repair_configuration.actions_status #=> String, one of "ENABLED", "DISABLED"
|
|
3223
3228
|
# resp.capacity_provider.update_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED"
|
|
3224
3229
|
# resp.capacity_provider.update_status_reason #=> String
|
|
3225
3230
|
# resp.capacity_provider.tags #=> Array
|
|
@@ -4388,6 +4393,7 @@ module Aws::ECS
|
|
|
4388
4393
|
# resp.container_instance.health_status.details #=> Array
|
|
4389
4394
|
# resp.container_instance.health_status.details[0].type #=> String, one of "CONTAINER_RUNTIME", "ACCELERATED_COMPUTE", "DAEMON"
|
|
4390
4395
|
# resp.container_instance.health_status.details[0].status #=> String, one of "OK", "IMPAIRED", "INSUFFICIENT_DATA", "INITIALIZING"
|
|
4396
|
+
# resp.container_instance.health_status.details[0].status_reason #=> String
|
|
4391
4397
|
# resp.container_instance.health_status.details[0].last_updated #=> Time
|
|
4392
4398
|
# resp.container_instance.health_status.details[0].last_status_change #=> Time
|
|
4393
4399
|
#
|
|
@@ -4882,6 +4888,7 @@ module Aws::ECS
|
|
|
4882
4888
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.capacity_reservations.reservation_preference #=> String, one of "RESERVATIONS_ONLY", "RESERVATIONS_FIRST", "RESERVATIONS_EXCLUDED"
|
|
4883
4889
|
# resp.capacity_providers[0].managed_instances_provider.propagate_tags #=> String, one of "CAPACITY_PROVIDER", "NONE"
|
|
4884
4890
|
# resp.capacity_providers[0].managed_instances_provider.infrastructure_optimization.scale_in_after #=> Integer
|
|
4891
|
+
# resp.capacity_providers[0].managed_instances_provider.auto_repair_configuration.actions_status #=> String, one of "ENABLED", "DISABLED"
|
|
4885
4892
|
# resp.capacity_providers[0].update_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED"
|
|
4886
4893
|
# resp.capacity_providers[0].update_status_reason #=> String
|
|
4887
4894
|
# resp.capacity_providers[0].tags #=> Array
|
|
@@ -5204,6 +5211,7 @@ module Aws::ECS
|
|
|
5204
5211
|
# resp.container_instances[0].health_status.details #=> Array
|
|
5205
5212
|
# resp.container_instances[0].health_status.details[0].type #=> String, one of "CONTAINER_RUNTIME", "ACCELERATED_COMPUTE", "DAEMON"
|
|
5206
5213
|
# resp.container_instances[0].health_status.details[0].status #=> String, one of "OK", "IMPAIRED", "INSUFFICIENT_DATA", "INITIALIZING"
|
|
5214
|
+
# resp.container_instances[0].health_status.details[0].status_reason #=> String
|
|
5207
5215
|
# resp.container_instances[0].health_status.details[0].last_updated #=> Time
|
|
5208
5216
|
# resp.container_instances[0].health_status.details[0].last_status_change #=> Time
|
|
5209
5217
|
# resp.failures #=> Array
|
|
@@ -9963,6 +9971,7 @@ module Aws::ECS
|
|
|
9963
9971
|
# resp.container_instance.health_status.details #=> Array
|
|
9964
9972
|
# resp.container_instance.health_status.details[0].type #=> String, one of "CONTAINER_RUNTIME", "ACCELERATED_COMPUTE", "DAEMON"
|
|
9965
9973
|
# resp.container_instance.health_status.details[0].status #=> String, one of "OK", "IMPAIRED", "INSUFFICIENT_DATA", "INITIALIZING"
|
|
9974
|
+
# resp.container_instance.health_status.details[0].status_reason #=> String
|
|
9966
9975
|
# resp.container_instance.health_status.details[0].last_updated #=> Time
|
|
9967
9976
|
# resp.container_instance.health_status.details[0].last_status_change #=> Time
|
|
9968
9977
|
#
|
|
@@ -12973,6 +12982,9 @@ module Aws::ECS
|
|
|
12973
12982
|
# infrastructure_optimization: {
|
|
12974
12983
|
# scale_in_after: 1,
|
|
12975
12984
|
# },
|
|
12985
|
+
# auto_repair_configuration: {
|
|
12986
|
+
# actions_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
12987
|
+
# },
|
|
12976
12988
|
# },
|
|
12977
12989
|
# })
|
|
12978
12990
|
#
|
|
@@ -13047,6 +13059,7 @@ module Aws::ECS
|
|
|
13047
13059
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.capacity_reservations.reservation_preference #=> String, one of "RESERVATIONS_ONLY", "RESERVATIONS_FIRST", "RESERVATIONS_EXCLUDED"
|
|
13048
13060
|
# resp.capacity_provider.managed_instances_provider.propagate_tags #=> String, one of "CAPACITY_PROVIDER", "NONE"
|
|
13049
13061
|
# resp.capacity_provider.managed_instances_provider.infrastructure_optimization.scale_in_after #=> Integer
|
|
13062
|
+
# resp.capacity_provider.managed_instances_provider.auto_repair_configuration.actions_status #=> String, one of "ENABLED", "DISABLED"
|
|
13050
13063
|
# resp.capacity_provider.update_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED"
|
|
13051
13064
|
# resp.capacity_provider.update_status_reason #=> String
|
|
13052
13065
|
# resp.capacity_provider.tags #=> Array
|
|
@@ -13634,6 +13647,7 @@ module Aws::ECS
|
|
|
13634
13647
|
# resp.container_instance.health_status.details #=> Array
|
|
13635
13648
|
# resp.container_instance.health_status.details[0].type #=> String, one of "CONTAINER_RUNTIME", "ACCELERATED_COMPUTE", "DAEMON"
|
|
13636
13649
|
# resp.container_instance.health_status.details[0].status #=> String, one of "OK", "IMPAIRED", "INSUFFICIENT_DATA", "INITIALIZING"
|
|
13650
|
+
# resp.container_instance.health_status.details[0].status_reason #=> String
|
|
13637
13651
|
# resp.container_instance.health_status.details[0].last_updated #=> Time
|
|
13638
13652
|
# resp.container_instance.health_status.details[0].last_status_change #=> Time
|
|
13639
13653
|
#
|
|
@@ -13961,6 +13975,7 @@ module Aws::ECS
|
|
|
13961
13975
|
# resp.container_instances[0].health_status.details #=> Array
|
|
13962
13976
|
# resp.container_instances[0].health_status.details[0].type #=> String, one of "CONTAINER_RUNTIME", "ACCELERATED_COMPUTE", "DAEMON"
|
|
13963
13977
|
# resp.container_instances[0].health_status.details[0].status #=> String, one of "OK", "IMPAIRED", "INSUFFICIENT_DATA", "INITIALIZING"
|
|
13978
|
+
# resp.container_instances[0].health_status.details[0].status_reason #=> String
|
|
13964
13979
|
# resp.container_instances[0].health_status.details[0].last_updated #=> Time
|
|
13965
13980
|
# resp.container_instances[0].health_status.details[0].last_status_change #=> Time
|
|
13966
13981
|
# resp.failures #=> Array
|
|
@@ -15630,7 +15645,7 @@ module Aws::ECS
|
|
|
15630
15645
|
tracer: tracer
|
|
15631
15646
|
)
|
|
15632
15647
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
15633
|
-
context[:gem_version] = '1.
|
|
15648
|
+
context[:gem_version] = '1.229.0'
|
|
15634
15649
|
Seahorse::Client::Request.new(handlers, context)
|
|
15635
15650
|
end
|
|
15636
15651
|
|
|
@@ -38,6 +38,8 @@ module Aws::ECS
|
|
|
38
38
|
Attribute = Shapes::StructureShape.new(name: 'Attribute')
|
|
39
39
|
AttributeLimitExceededException = Shapes::StructureShape.new(name: 'AttributeLimitExceededException')
|
|
40
40
|
Attributes = Shapes::ListShape.new(name: 'Attributes')
|
|
41
|
+
AutoRepairActionsStatus = Shapes::StringShape.new(name: 'AutoRepairActionsStatus')
|
|
42
|
+
AutoRepairConfiguration = Shapes::StructureShape.new(name: 'AutoRepairConfiguration')
|
|
41
43
|
AutoScalingGroupProvider = Shapes::StructureShape.new(name: 'AutoScalingGroupProvider')
|
|
42
44
|
AutoScalingGroupProviderUpdate = Shapes::StructureShape.new(name: 'AutoScalingGroupProviderUpdate')
|
|
43
45
|
AvailabilityZoneRebalancing = Shapes::StringShape.new(name: 'AvailabilityZoneRebalancing')
|
|
@@ -682,6 +684,9 @@ module Aws::ECS
|
|
|
682
684
|
|
|
683
685
|
Attributes.member = Shapes::ShapeRef.new(shape: Attribute)
|
|
684
686
|
|
|
687
|
+
AutoRepairConfiguration.add_member(:actions_status, Shapes::ShapeRef.new(shape: AutoRepairActionsStatus, location_name: "actionsStatus"))
|
|
688
|
+
AutoRepairConfiguration.struct_class = Types::AutoRepairConfiguration
|
|
689
|
+
|
|
685
690
|
AutoScalingGroupProvider.add_member(:auto_scaling_group_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "autoScalingGroupArn"))
|
|
686
691
|
AutoScalingGroupProvider.add_member(:managed_scaling, Shapes::ShapeRef.new(shape: ManagedScaling, location_name: "managedScaling"))
|
|
687
692
|
AutoScalingGroupProvider.add_member(:managed_termination_protection, Shapes::ShapeRef.new(shape: ManagedTerminationProtection, location_name: "managedTerminationProtection"))
|
|
@@ -997,6 +1002,7 @@ module Aws::ECS
|
|
|
997
1002
|
CreateManagedInstancesProviderConfiguration.add_member(:instance_launch_template, Shapes::ShapeRef.new(shape: InstanceLaunchTemplate, required: true, location_name: "instanceLaunchTemplate"))
|
|
998
1003
|
CreateManagedInstancesProviderConfiguration.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateMITags, location_name: "propagateTags"))
|
|
999
1004
|
CreateManagedInstancesProviderConfiguration.add_member(:infrastructure_optimization, Shapes::ShapeRef.new(shape: InfrastructureOptimization, location_name: "infrastructureOptimization"))
|
|
1005
|
+
CreateManagedInstancesProviderConfiguration.add_member(:auto_repair_configuration, Shapes::ShapeRef.new(shape: AutoRepairConfiguration, location_name: "autoRepairConfiguration"))
|
|
1000
1006
|
CreateManagedInstancesProviderConfiguration.struct_class = Types::CreateManagedInstancesProviderConfiguration
|
|
1001
1007
|
|
|
1002
1008
|
CreateServiceRequest.add_member(:cluster, Shapes::ShapeRef.new(shape: String, location_name: "cluster"))
|
|
@@ -1720,9 +1726,9 @@ module Aws::ECS
|
|
|
1720
1726
|
InferenceAcceleratorOverride.add_member(:device_type, Shapes::ShapeRef.new(shape: String, location_name: "deviceType"))
|
|
1721
1727
|
InferenceAcceleratorOverride.struct_class = Types::InferenceAcceleratorOverride
|
|
1722
1728
|
|
|
1723
|
-
InferenceAcceleratorOverrides.member = Shapes::ShapeRef.new(shape: InferenceAcceleratorOverride)
|
|
1729
|
+
InferenceAcceleratorOverrides.member = Shapes::ShapeRef.new(shape: InferenceAcceleratorOverride, deprecated: true)
|
|
1724
1730
|
|
|
1725
|
-
InferenceAccelerators.member = Shapes::ShapeRef.new(shape: InferenceAccelerator)
|
|
1731
|
+
InferenceAccelerators.member = Shapes::ShapeRef.new(shape: InferenceAccelerator, deprecated: true)
|
|
1726
1732
|
|
|
1727
1733
|
InfrastructureOptimization.add_member(:scale_in_after, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "scaleInAfter"))
|
|
1728
1734
|
InfrastructureOptimization.struct_class = Types::InfrastructureOptimization
|
|
@@ -1737,6 +1743,7 @@ module Aws::ECS
|
|
|
1737
1743
|
|
|
1738
1744
|
InstanceHealthCheckResult.add_member(:type, Shapes::ShapeRef.new(shape: InstanceHealthCheckType, location_name: "type"))
|
|
1739
1745
|
InstanceHealthCheckResult.add_member(:status, Shapes::ShapeRef.new(shape: InstanceHealthCheckState, location_name: "status"))
|
|
1746
|
+
InstanceHealthCheckResult.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
1740
1747
|
InstanceHealthCheckResult.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdated"))
|
|
1741
1748
|
InstanceHealthCheckResult.add_member(:last_status_change, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastStatusChange"))
|
|
1742
1749
|
InstanceHealthCheckResult.struct_class = Types::InstanceHealthCheckResult
|
|
@@ -2053,6 +2060,7 @@ module Aws::ECS
|
|
|
2053
2060
|
ManagedInstancesProvider.add_member(:instance_launch_template, Shapes::ShapeRef.new(shape: InstanceLaunchTemplate, location_name: "instanceLaunchTemplate"))
|
|
2054
2061
|
ManagedInstancesProvider.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateMITags, location_name: "propagateTags"))
|
|
2055
2062
|
ManagedInstancesProvider.add_member(:infrastructure_optimization, Shapes::ShapeRef.new(shape: InfrastructureOptimization, location_name: "infrastructureOptimization"))
|
|
2063
|
+
ManagedInstancesProvider.add_member(:auto_repair_configuration, Shapes::ShapeRef.new(shape: AutoRepairConfiguration, location_name: "autoRepairConfiguration"))
|
|
2056
2064
|
ManagedInstancesProvider.struct_class = Types::ManagedInstancesProvider
|
|
2057
2065
|
|
|
2058
2066
|
ManagedInstancesStorageConfiguration.add_member(:storage_size_gi_b, Shapes::ShapeRef.new(shape: TaskVolumeStorageGiB, location_name: "storageSizeGiB"))
|
|
@@ -2305,7 +2313,7 @@ module Aws::ECS
|
|
|
2305
2313
|
RegisterTaskDefinitionRequest.add_member(:pid_mode, Shapes::ShapeRef.new(shape: PidMode, location_name: "pidMode"))
|
|
2306
2314
|
RegisterTaskDefinitionRequest.add_member(:ipc_mode, Shapes::ShapeRef.new(shape: IpcMode, location_name: "ipcMode"))
|
|
2307
2315
|
RegisterTaskDefinitionRequest.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
|
|
2308
|
-
RegisterTaskDefinitionRequest.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, location_name: "inferenceAccelerators"))
|
|
2316
|
+
RegisterTaskDefinitionRequest.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, deprecated: true, location_name: "inferenceAccelerators", metadata: {"deprecatedMessage" => "This feature is no longer available.", "deprecatedSince" => "2023-04-15"}))
|
|
2309
2317
|
RegisterTaskDefinitionRequest.add_member(:ephemeral_storage, Shapes::ShapeRef.new(shape: EphemeralStorage, location_name: "ephemeralStorage"))
|
|
2310
2318
|
RegisterTaskDefinitionRequest.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
|
|
2311
2319
|
RegisterTaskDefinitionRequest.add_member(:enable_fault_injection, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "enableFaultInjection"))
|
|
@@ -2761,7 +2769,7 @@ module Aws::ECS
|
|
|
2761
2769
|
Task.add_member(:execution_stopped_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "executionStoppedAt"))
|
|
2762
2770
|
Task.add_member(:group, Shapes::ShapeRef.new(shape: String, location_name: "group"))
|
|
2763
2771
|
Task.add_member(:health_status, Shapes::ShapeRef.new(shape: HealthStatus, location_name: "healthStatus"))
|
|
2764
|
-
Task.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, location_name: "inferenceAccelerators"))
|
|
2772
|
+
Task.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, deprecated: true, location_name: "inferenceAccelerators"))
|
|
2765
2773
|
Task.add_member(:last_status, Shapes::ShapeRef.new(shape: String, location_name: "lastStatus"))
|
|
2766
2774
|
Task.add_member(:launch_type, Shapes::ShapeRef.new(shape: LaunchType, location_name: "launchType"))
|
|
2767
2775
|
Task.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
@@ -2800,7 +2808,7 @@ module Aws::ECS
|
|
|
2800
2808
|
TaskDefinition.add_member(:requires_compatibilities, Shapes::ShapeRef.new(shape: CompatibilityList, location_name: "requiresCompatibilities"))
|
|
2801
2809
|
TaskDefinition.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
2802
2810
|
TaskDefinition.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
2803
|
-
TaskDefinition.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, location_name: "inferenceAccelerators"))
|
|
2811
|
+
TaskDefinition.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, deprecated: true, location_name: "inferenceAccelerators"))
|
|
2804
2812
|
TaskDefinition.add_member(:pid_mode, Shapes::ShapeRef.new(shape: PidMode, location_name: "pidMode"))
|
|
2805
2813
|
TaskDefinition.add_member(:ipc_mode, Shapes::ShapeRef.new(shape: IpcMode, location_name: "ipcMode"))
|
|
2806
2814
|
TaskDefinition.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
|
|
@@ -2847,7 +2855,7 @@ module Aws::ECS
|
|
|
2847
2855
|
|
|
2848
2856
|
TaskOverride.add_member(:container_overrides, Shapes::ShapeRef.new(shape: ContainerOverrides, location_name: "containerOverrides"))
|
|
2849
2857
|
TaskOverride.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
2850
|
-
TaskOverride.add_member(:inference_accelerator_overrides, Shapes::ShapeRef.new(shape: InferenceAcceleratorOverrides, location_name: "inferenceAcceleratorOverrides"))
|
|
2858
|
+
TaskOverride.add_member(:inference_accelerator_overrides, Shapes::ShapeRef.new(shape: InferenceAcceleratorOverrides, deprecated: true, location_name: "inferenceAcceleratorOverrides"))
|
|
2851
2859
|
TaskOverride.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "executionRoleArn"))
|
|
2852
2860
|
TaskOverride.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
2853
2861
|
TaskOverride.add_member(:task_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskRoleArn"))
|
|
@@ -3005,6 +3013,7 @@ module Aws::ECS
|
|
|
3005
3013
|
UpdateManagedInstancesProviderConfiguration.add_member(:instance_launch_template, Shapes::ShapeRef.new(shape: InstanceLaunchTemplateUpdate, required: true, location_name: "instanceLaunchTemplate"))
|
|
3006
3014
|
UpdateManagedInstancesProviderConfiguration.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateMITags, location_name: "propagateTags"))
|
|
3007
3015
|
UpdateManagedInstancesProviderConfiguration.add_member(:infrastructure_optimization, Shapes::ShapeRef.new(shape: InfrastructureOptimization, location_name: "infrastructureOptimization"))
|
|
3016
|
+
UpdateManagedInstancesProviderConfiguration.add_member(:auto_repair_configuration, Shapes::ShapeRef.new(shape: AutoRepairConfiguration, location_name: "autoRepairConfiguration"))
|
|
3008
3017
|
UpdateManagedInstancesProviderConfiguration.struct_class = Types::UpdateManagedInstancesProviderConfiguration
|
|
3009
3018
|
|
|
3010
3019
|
UpdateServicePrimaryTaskSetRequest.add_member(:cluster, Shapes::ShapeRef.new(shape: String, required: true, location_name: "cluster"))
|
|
@@ -3131,6 +3140,7 @@ module Aws::ECS
|
|
|
3131
3140
|
o.http_request_uri = "/"
|
|
3132
3141
|
o.input = Shapes::ShapeRef.new(shape: CreateCapacityProviderRequest)
|
|
3133
3142
|
o.output = Shapes::ShapeRef.new(shape: CreateCapacityProviderResponse)
|
|
3143
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3134
3144
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
3135
3145
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3136
3146
|
o.errors << Shapes::ShapeRef.new(shape: UpdateInProgressException)
|
|
@@ -3146,6 +3156,7 @@ module Aws::ECS
|
|
|
3146
3156
|
o.http_request_uri = "/"
|
|
3147
3157
|
o.input = Shapes::ShapeRef.new(shape: CreateClusterRequest)
|
|
3148
3158
|
o.output = Shapes::ShapeRef.new(shape: CreateClusterResponse)
|
|
3159
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3149
3160
|
o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
|
|
3150
3161
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3151
3162
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -3207,6 +3218,7 @@ module Aws::ECS
|
|
|
3207
3218
|
o.input = Shapes::ShapeRef.new(shape: CreateTaskSetRequest)
|
|
3208
3219
|
o.output = Shapes::ShapeRef.new(shape: CreateTaskSetResponse)
|
|
3209
3220
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3221
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
3210
3222
|
o.errors << Shapes::ShapeRef.new(shape: PlatformUnknownException)
|
|
3211
3223
|
o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
|
|
3212
3224
|
o.errors << Shapes::ShapeRef.new(shape: ServiceNotActiveException)
|
|
@@ -3225,6 +3237,7 @@ module Aws::ECS
|
|
|
3225
3237
|
o.http_request_uri = "/"
|
|
3226
3238
|
o.input = Shapes::ShapeRef.new(shape: DeleteAccountSettingRequest)
|
|
3227
3239
|
o.output = Shapes::ShapeRef.new(shape: DeleteAccountSettingResponse)
|
|
3240
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3228
3241
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3229
3242
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3230
3243
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3236,8 +3249,11 @@ module Aws::ECS
|
|
|
3236
3249
|
o.http_request_uri = "/"
|
|
3237
3250
|
o.input = Shapes::ShapeRef.new(shape: DeleteAttributesRequest)
|
|
3238
3251
|
o.output = Shapes::ShapeRef.new(shape: DeleteAttributesResponse)
|
|
3252
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3239
3253
|
o.errors << Shapes::ShapeRef.new(shape: TargetNotFoundException)
|
|
3254
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3240
3255
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3256
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3241
3257
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3242
3258
|
end)
|
|
3243
3259
|
|
|
@@ -3247,7 +3263,9 @@ module Aws::ECS
|
|
|
3247
3263
|
o.http_request_uri = "/"
|
|
3248
3264
|
o.input = Shapes::ShapeRef.new(shape: DeleteCapacityProviderRequest)
|
|
3249
3265
|
o.output = Shapes::ShapeRef.new(shape: DeleteCapacityProviderResponse)
|
|
3266
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3250
3267
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3268
|
+
o.errors << Shapes::ShapeRef.new(shape: UpdateInProgressException)
|
|
3251
3269
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3252
3270
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3253
3271
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
@@ -3261,6 +3279,7 @@ module Aws::ECS
|
|
|
3261
3279
|
o.input = Shapes::ShapeRef.new(shape: DeleteClusterRequest)
|
|
3262
3280
|
o.output = Shapes::ShapeRef.new(shape: DeleteClusterResponse)
|
|
3263
3281
|
o.errors << Shapes::ShapeRef.new(shape: ClusterContainsContainerInstancesException)
|
|
3282
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3264
3283
|
o.errors << Shapes::ShapeRef.new(shape: ClusterContainsServicesException)
|
|
3265
3284
|
o.errors << Shapes::ShapeRef.new(shape: ClusterContainsCapacityProviderException)
|
|
3266
3285
|
o.errors << Shapes::ShapeRef.new(shape: ClusterContainsTasksException)
|
|
@@ -3321,6 +3340,7 @@ module Aws::ECS
|
|
|
3321
3340
|
o.http_request_uri = "/"
|
|
3322
3341
|
o.input = Shapes::ShapeRef.new(shape: DeleteServiceRequest)
|
|
3323
3342
|
o.output = Shapes::ShapeRef.new(shape: DeleteServiceResponse)
|
|
3343
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3324
3344
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3325
3345
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3326
3346
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3347,6 +3367,7 @@ module Aws::ECS
|
|
|
3347
3367
|
o.input = Shapes::ShapeRef.new(shape: DeleteTaskSetRequest)
|
|
3348
3368
|
o.output = Shapes::ShapeRef.new(shape: DeleteTaskSetResponse)
|
|
3349
3369
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3370
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
3350
3371
|
o.errors << Shapes::ShapeRef.new(shape: ServiceNotActiveException)
|
|
3351
3372
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3352
3373
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -3363,6 +3384,7 @@ module Aws::ECS
|
|
|
3363
3384
|
o.http_request_uri = "/"
|
|
3364
3385
|
o.input = Shapes::ShapeRef.new(shape: DeregisterContainerInstanceRequest)
|
|
3365
3386
|
o.output = Shapes::ShapeRef.new(shape: DeregisterContainerInstanceResponse)
|
|
3387
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3366
3388
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3367
3389
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3368
3390
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3375,6 +3397,7 @@ module Aws::ECS
|
|
|
3375
3397
|
o.http_request_uri = "/"
|
|
3376
3398
|
o.input = Shapes::ShapeRef.new(shape: DeregisterTaskDefinitionRequest)
|
|
3377
3399
|
o.output = Shapes::ShapeRef.new(shape: DeregisterTaskDefinitionResponse)
|
|
3400
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3378
3401
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3379
3402
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3380
3403
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3386,6 +3409,7 @@ module Aws::ECS
|
|
|
3386
3409
|
o.http_request_uri = "/"
|
|
3387
3410
|
o.input = Shapes::ShapeRef.new(shape: DescribeCapacityProvidersRequest)
|
|
3388
3411
|
o.output = Shapes::ShapeRef.new(shape: DescribeCapacityProvidersResponse)
|
|
3412
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3389
3413
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3390
3414
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3391
3415
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3399,6 +3423,7 @@ module Aws::ECS
|
|
|
3399
3423
|
o.http_request_uri = "/"
|
|
3400
3424
|
o.input = Shapes::ShapeRef.new(shape: DescribeClustersRequest)
|
|
3401
3425
|
o.output = Shapes::ShapeRef.new(shape: DescribeClustersResponse)
|
|
3426
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3402
3427
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3403
3428
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3404
3429
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3410,6 +3435,7 @@ module Aws::ECS
|
|
|
3410
3435
|
o.http_request_uri = "/"
|
|
3411
3436
|
o.input = Shapes::ShapeRef.new(shape: DescribeContainerInstancesRequest)
|
|
3412
3437
|
o.output = Shapes::ShapeRef.new(shape: DescribeContainerInstancesResponse)
|
|
3438
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3413
3439
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3414
3440
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3415
3441
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3522,6 +3548,7 @@ module Aws::ECS
|
|
|
3522
3548
|
o.http_request_uri = "/"
|
|
3523
3549
|
o.input = Shapes::ShapeRef.new(shape: DescribeServicesRequest)
|
|
3524
3550
|
o.output = Shapes::ShapeRef.new(shape: DescribeServicesResponse)
|
|
3551
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3525
3552
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3526
3553
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3527
3554
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3534,6 +3561,7 @@ module Aws::ECS
|
|
|
3534
3561
|
o.http_request_uri = "/"
|
|
3535
3562
|
o.input = Shapes::ShapeRef.new(shape: DescribeTaskDefinitionRequest)
|
|
3536
3563
|
o.output = Shapes::ShapeRef.new(shape: DescribeTaskDefinitionResponse)
|
|
3564
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3537
3565
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3538
3566
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3539
3567
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3561,6 +3589,7 @@ module Aws::ECS
|
|
|
3561
3589
|
o.http_request_uri = "/"
|
|
3562
3590
|
o.input = Shapes::ShapeRef.new(shape: DescribeTasksRequest)
|
|
3563
3591
|
o.output = Shapes::ShapeRef.new(shape: DescribeTasksResponse)
|
|
3592
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3564
3593
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3565
3594
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3566
3595
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3573,7 +3602,9 @@ module Aws::ECS
|
|
|
3573
3602
|
o.http_request_uri = "/"
|
|
3574
3603
|
o.input = Shapes::ShapeRef.new(shape: DiscoverPollEndpointRequest)
|
|
3575
3604
|
o.output = Shapes::ShapeRef.new(shape: DiscoverPollEndpointResponse)
|
|
3605
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3576
3606
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3607
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3577
3608
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3578
3609
|
end)
|
|
3579
3610
|
|
|
@@ -3612,6 +3643,7 @@ module Aws::ECS
|
|
|
3612
3643
|
o.http_request_uri = "/"
|
|
3613
3644
|
o.input = Shapes::ShapeRef.new(shape: ListAccountSettingsRequest)
|
|
3614
3645
|
o.output = Shapes::ShapeRef.new(shape: ListAccountSettingsResponse)
|
|
3646
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3615
3647
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3616
3648
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3617
3649
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3629,7 +3661,10 @@ module Aws::ECS
|
|
|
3629
3661
|
o.http_request_uri = "/"
|
|
3630
3662
|
o.input = Shapes::ShapeRef.new(shape: ListAttributesRequest)
|
|
3631
3663
|
o.output = Shapes::ShapeRef.new(shape: ListAttributesResponse)
|
|
3664
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3665
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3632
3666
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3667
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3633
3668
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3634
3669
|
o[:pager] = Aws::Pager.new(
|
|
3635
3670
|
limit_key: "max_results",
|
|
@@ -3645,6 +3680,7 @@ module Aws::ECS
|
|
|
3645
3680
|
o.http_request_uri = "/"
|
|
3646
3681
|
o.input = Shapes::ShapeRef.new(shape: ListClustersRequest)
|
|
3647
3682
|
o.output = Shapes::ShapeRef.new(shape: ListClustersResponse)
|
|
3683
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3648
3684
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3649
3685
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3650
3686
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3662,6 +3698,7 @@ module Aws::ECS
|
|
|
3662
3698
|
o.http_request_uri = "/"
|
|
3663
3699
|
o.input = Shapes::ShapeRef.new(shape: ListContainerInstancesRequest)
|
|
3664
3700
|
o.output = Shapes::ShapeRef.new(shape: ListContainerInstancesResponse)
|
|
3701
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3665
3702
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3666
3703
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3667
3704
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3725,6 +3762,7 @@ module Aws::ECS
|
|
|
3725
3762
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3726
3763
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3727
3764
|
o.errors << Shapes::ShapeRef.new(shape: ServiceNotFoundException)
|
|
3765
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3728
3766
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedFeatureException)
|
|
3729
3767
|
end)
|
|
3730
3768
|
|
|
@@ -3734,6 +3772,7 @@ module Aws::ECS
|
|
|
3734
3772
|
o.http_request_uri = "/"
|
|
3735
3773
|
o.input = Shapes::ShapeRef.new(shape: ListServicesRequest)
|
|
3736
3774
|
o.output = Shapes::ShapeRef.new(shape: ListServicesResponse)
|
|
3775
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3737
3776
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3738
3777
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3739
3778
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3752,6 +3791,7 @@ module Aws::ECS
|
|
|
3752
3791
|
o.http_request_uri = "/"
|
|
3753
3792
|
o.input = Shapes::ShapeRef.new(shape: ListServicesByNamespaceRequest)
|
|
3754
3793
|
o.output = Shapes::ShapeRef.new(shape: ListServicesByNamespaceResponse)
|
|
3794
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3755
3795
|
o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
|
|
3756
3796
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3757
3797
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -3770,6 +3810,7 @@ module Aws::ECS
|
|
|
3770
3810
|
o.http_request_uri = "/"
|
|
3771
3811
|
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
|
3772
3812
|
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
|
3813
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3773
3814
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3774
3815
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3775
3816
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3782,6 +3823,7 @@ module Aws::ECS
|
|
|
3782
3823
|
o.http_request_uri = "/"
|
|
3783
3824
|
o.input = Shapes::ShapeRef.new(shape: ListTaskDefinitionFamiliesRequest)
|
|
3784
3825
|
o.output = Shapes::ShapeRef.new(shape: ListTaskDefinitionFamiliesResponse)
|
|
3826
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3785
3827
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3786
3828
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3787
3829
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3799,6 +3841,7 @@ module Aws::ECS
|
|
|
3799
3841
|
o.http_request_uri = "/"
|
|
3800
3842
|
o.input = Shapes::ShapeRef.new(shape: ListTaskDefinitionsRequest)
|
|
3801
3843
|
o.output = Shapes::ShapeRef.new(shape: ListTaskDefinitionsResponse)
|
|
3844
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3802
3845
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3803
3846
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3804
3847
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3816,6 +3859,7 @@ module Aws::ECS
|
|
|
3816
3859
|
o.http_request_uri = "/"
|
|
3817
3860
|
o.input = Shapes::ShapeRef.new(shape: ListTasksRequest)
|
|
3818
3861
|
o.output = Shapes::ShapeRef.new(shape: ListTasksResponse)
|
|
3862
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3819
3863
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3820
3864
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3821
3865
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3835,6 +3879,7 @@ module Aws::ECS
|
|
|
3835
3879
|
o.http_request_uri = "/"
|
|
3836
3880
|
o.input = Shapes::ShapeRef.new(shape: PutAccountSettingRequest)
|
|
3837
3881
|
o.output = Shapes::ShapeRef.new(shape: PutAccountSettingResponse)
|
|
3882
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3838
3883
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3839
3884
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3840
3885
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3846,6 +3891,7 @@ module Aws::ECS
|
|
|
3846
3891
|
o.http_request_uri = "/"
|
|
3847
3892
|
o.input = Shapes::ShapeRef.new(shape: PutAccountSettingDefaultRequest)
|
|
3848
3893
|
o.output = Shapes::ShapeRef.new(shape: PutAccountSettingDefaultResponse)
|
|
3894
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3849
3895
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3850
3896
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3851
3897
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3857,9 +3903,12 @@ module Aws::ECS
|
|
|
3857
3903
|
o.http_request_uri = "/"
|
|
3858
3904
|
o.input = Shapes::ShapeRef.new(shape: PutAttributesRequest)
|
|
3859
3905
|
o.output = Shapes::ShapeRef.new(shape: PutAttributesResponse)
|
|
3906
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3860
3907
|
o.errors << Shapes::ShapeRef.new(shape: TargetNotFoundException)
|
|
3908
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3861
3909
|
o.errors << Shapes::ShapeRef.new(shape: AttributeLimitExceededException)
|
|
3862
3910
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3911
|
+
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3863
3912
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3864
3913
|
end)
|
|
3865
3914
|
|
|
@@ -3869,6 +3918,7 @@ module Aws::ECS
|
|
|
3869
3918
|
o.http_request_uri = "/"
|
|
3870
3919
|
o.input = Shapes::ShapeRef.new(shape: PutClusterCapacityProvidersRequest)
|
|
3871
3920
|
o.output = Shapes::ShapeRef.new(shape: PutClusterCapacityProvidersResponse)
|
|
3921
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3872
3922
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3873
3923
|
o.errors << Shapes::ShapeRef.new(shape: UpdateInProgressException)
|
|
3874
3924
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -3883,9 +3933,11 @@ module Aws::ECS
|
|
|
3883
3933
|
o.http_request_uri = "/"
|
|
3884
3934
|
o.input = Shapes::ShapeRef.new(shape: RegisterContainerInstanceRequest)
|
|
3885
3935
|
o.output = Shapes::ShapeRef.new(shape: RegisterContainerInstanceResponse)
|
|
3936
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3886
3937
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3887
3938
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3888
3939
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
3940
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3889
3941
|
end)
|
|
3890
3942
|
|
|
3891
3943
|
api.add_operation(:register_daemon_task_definition, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -3907,6 +3959,8 @@ module Aws::ECS
|
|
|
3907
3959
|
o.http_request_uri = "/"
|
|
3908
3960
|
o.input = Shapes::ShapeRef.new(shape: RegisterTaskDefinitionRequest)
|
|
3909
3961
|
o.output = Shapes::ShapeRef.new(shape: RegisterTaskDefinitionResponse)
|
|
3962
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3963
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
3910
3964
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3911
3965
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3912
3966
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3936,6 +3990,8 @@ module Aws::ECS
|
|
|
3936
3990
|
o.http_request_uri = "/"
|
|
3937
3991
|
o.input = Shapes::ShapeRef.new(shape: StartTaskRequest)
|
|
3938
3992
|
o.output = Shapes::ShapeRef.new(shape: StartTaskResponse)
|
|
3993
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3994
|
+
o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
|
|
3939
3995
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3940
3996
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3941
3997
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3964,6 +4020,7 @@ module Aws::ECS
|
|
|
3964
4020
|
o.http_request_uri = "/"
|
|
3965
4021
|
o.input = Shapes::ShapeRef.new(shape: StopTaskRequest)
|
|
3966
4022
|
o.output = Shapes::ShapeRef.new(shape: StopTaskResponse)
|
|
4023
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3967
4024
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3968
4025
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3969
4026
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -3980,6 +4037,7 @@ module Aws::ECS
|
|
|
3980
4037
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
3981
4038
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3982
4039
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
4040
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3983
4041
|
end)
|
|
3984
4042
|
|
|
3985
4043
|
api.add_operation(:submit_container_state_change, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -3990,7 +4048,9 @@ module Aws::ECS
|
|
|
3990
4048
|
o.output = Shapes::ShapeRef.new(shape: SubmitContainerStateChangeResponse)
|
|
3991
4049
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3992
4050
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4051
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3993
4052
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
4053
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
3994
4054
|
end)
|
|
3995
4055
|
|
|
3996
4056
|
api.add_operation(:submit_task_state_change, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -4003,6 +4063,7 @@ module Aws::ECS
|
|
|
4003
4063
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4004
4064
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
4005
4065
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
4066
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
4006
4067
|
end)
|
|
4007
4068
|
|
|
4008
4069
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -4011,6 +4072,8 @@ module Aws::ECS
|
|
|
4011
4072
|
o.http_request_uri = "/"
|
|
4012
4073
|
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
|
4013
4074
|
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
|
4075
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4076
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
4014
4077
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
4015
4078
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4016
4079
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -4024,6 +4087,7 @@ module Aws::ECS
|
|
|
4024
4087
|
o.http_request_uri = "/"
|
|
4025
4088
|
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
|
4026
4089
|
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
|
4090
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4027
4091
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
4028
4092
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4029
4093
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -4037,6 +4101,7 @@ module Aws::ECS
|
|
|
4037
4101
|
o.http_request_uri = "/"
|
|
4038
4102
|
o.input = Shapes::ShapeRef.new(shape: UpdateCapacityProviderRequest)
|
|
4039
4103
|
o.output = Shapes::ShapeRef.new(shape: UpdateCapacityProviderResponse)
|
|
4104
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4040
4105
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4041
4106
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
4042
4107
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -4050,6 +4115,7 @@ module Aws::ECS
|
|
|
4050
4115
|
o.http_request_uri = "/"
|
|
4051
4116
|
o.input = Shapes::ShapeRef.new(shape: UpdateClusterRequest)
|
|
4052
4117
|
o.output = Shapes::ShapeRef.new(shape: UpdateClusterResponse)
|
|
4118
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4053
4119
|
o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
|
|
4054
4120
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4055
4121
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
@@ -4063,7 +4129,9 @@ module Aws::ECS
|
|
|
4063
4129
|
o.http_request_uri = "/"
|
|
4064
4130
|
o.input = Shapes::ShapeRef.new(shape: UpdateClusterSettingsRequest)
|
|
4065
4131
|
o.output = Shapes::ShapeRef.new(shape: UpdateClusterSettingsResponse)
|
|
4132
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4066
4133
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4134
|
+
o.errors << Shapes::ShapeRef.new(shape: UpdateInProgressException)
|
|
4067
4135
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
4068
4136
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
4069
4137
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
|
|
@@ -4075,6 +4143,7 @@ module Aws::ECS
|
|
|
4075
4143
|
o.http_request_uri = "/"
|
|
4076
4144
|
o.input = Shapes::ShapeRef.new(shape: UpdateContainerAgentRequest)
|
|
4077
4145
|
o.output = Shapes::ShapeRef.new(shape: UpdateContainerAgentResponse)
|
|
4146
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4078
4147
|
o.errors << Shapes::ShapeRef.new(shape: NoUpdateAvailableException)
|
|
4079
4148
|
o.errors << Shapes::ShapeRef.new(shape: MissingVersionException)
|
|
4080
4149
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
@@ -4090,6 +4159,7 @@ module Aws::ECS
|
|
|
4090
4159
|
o.http_request_uri = "/"
|
|
4091
4160
|
o.input = Shapes::ShapeRef.new(shape: UpdateContainerInstancesStateRequest)
|
|
4092
4161
|
o.output = Shapes::ShapeRef.new(shape: UpdateContainerInstancesStateResponse)
|
|
4162
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4093
4163
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4094
4164
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
4095
4165
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
@@ -4187,6 +4257,7 @@ module Aws::ECS
|
|
|
4187
4257
|
o.input = Shapes::ShapeRef.new(shape: UpdateTaskSetRequest)
|
|
4188
4258
|
o.output = Shapes::ShapeRef.new(shape: UpdateTaskSetResponse)
|
|
4189
4259
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4260
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
4190
4261
|
o.errors << Shapes::ShapeRef.new(shape: ServiceNotActiveException)
|
|
4191
4262
|
o.errors << Shapes::ShapeRef.new(shape: ServerException)
|
|
4192
4263
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -245,6 +245,28 @@ module Aws::ECS
|
|
|
245
245
|
include Aws::Structure
|
|
246
246
|
end
|
|
247
247
|
|
|
248
|
+
# The auto repair configuration for an Amazon ECS Managed Instances
|
|
249
|
+
# capacity provider. When enabled, Amazon ECS automatically replaces
|
|
250
|
+
# container instances that are detected as unhealthy based on container
|
|
251
|
+
# instance health checks, including accelerated compute device and
|
|
252
|
+
# daemon health checks.
|
|
253
|
+
#
|
|
254
|
+
# @!attribute [rw] actions_status
|
|
255
|
+
# The status of auto repair actions for the capacity provider. When
|
|
256
|
+
# set to `ENABLED`, Amazon ECS automatically replaces container
|
|
257
|
+
# instances with an `IMPAIRED` health status. When set to `DISABLED`,
|
|
258
|
+
# Amazon ECS still monitors container instance health but does not
|
|
259
|
+
# automatically replace impaired instances.
|
|
260
|
+
# @return [String]
|
|
261
|
+
#
|
|
262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/AutoRepairConfiguration AWS API Documentation
|
|
263
|
+
#
|
|
264
|
+
class AutoRepairConfiguration < Struct.new(
|
|
265
|
+
:actions_status)
|
|
266
|
+
SENSITIVE = []
|
|
267
|
+
include Aws::Structure
|
|
268
|
+
end
|
|
269
|
+
|
|
248
270
|
# The details of the Auto Scaling group for the capacity provider.
|
|
249
271
|
#
|
|
250
272
|
# @!attribute [rw] auto_scaling_group_arn
|
|
@@ -2210,7 +2232,7 @@ module Aws::ECS
|
|
|
2210
2232
|
:resource_requirements,
|
|
2211
2233
|
:firelens_configuration,
|
|
2212
2234
|
:credential_specs)
|
|
2213
|
-
SENSITIVE = [:repository_credentials]
|
|
2235
|
+
SENSITIVE = [:repository_credentials, :environment]
|
|
2214
2236
|
include Aws::Structure
|
|
2215
2237
|
end
|
|
2216
2238
|
|
|
@@ -2620,7 +2642,7 @@ module Aws::ECS
|
|
|
2620
2642
|
:memory,
|
|
2621
2643
|
:memory_reservation,
|
|
2622
2644
|
:resource_requirements)
|
|
2623
|
-
SENSITIVE = []
|
|
2645
|
+
SENSITIVE = [:environment]
|
|
2624
2646
|
include Aws::Structure
|
|
2625
2647
|
end
|
|
2626
2648
|
|
|
@@ -3292,13 +3314,20 @@ module Aws::ECS
|
|
|
3292
3314
|
# and when Amazon ECS optimizes them.
|
|
3293
3315
|
# @return [Types::InfrastructureOptimization]
|
|
3294
3316
|
#
|
|
3317
|
+
# @!attribute [rw] auto_repair_configuration
|
|
3318
|
+
# The auto repair configuration for the Amazon ECS Managed Instances
|
|
3319
|
+
# capacity provider. Use this to enable or disable automatic
|
|
3320
|
+
# replacement of container instances that are detected as unhealthy.
|
|
3321
|
+
# @return [Types::AutoRepairConfiguration]
|
|
3322
|
+
#
|
|
3295
3323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateManagedInstancesProviderConfiguration AWS API Documentation
|
|
3296
3324
|
#
|
|
3297
3325
|
class CreateManagedInstancesProviderConfiguration < Struct.new(
|
|
3298
3326
|
:infrastructure_role_arn,
|
|
3299
3327
|
:instance_launch_template,
|
|
3300
3328
|
:propagate_tags,
|
|
3301
|
-
:infrastructure_optimization
|
|
3329
|
+
:infrastructure_optimization,
|
|
3330
|
+
:auto_repair_configuration)
|
|
3302
3331
|
SENSITIVE = []
|
|
3303
3332
|
include Aws::Structure
|
|
3304
3333
|
end
|
|
@@ -4235,7 +4264,7 @@ module Aws::ECS
|
|
|
4235
4264
|
:interactive,
|
|
4236
4265
|
:pseudo_terminal,
|
|
4237
4266
|
:restart_policy)
|
|
4238
|
-
SENSITIVE = [:repository_credentials]
|
|
4267
|
+
SENSITIVE = [:repository_credentials, :environment]
|
|
4239
4268
|
include Aws::Structure
|
|
4240
4269
|
end
|
|
4241
4270
|
|
|
@@ -4614,6 +4643,7 @@ module Aws::ECS
|
|
|
4614
4643
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateDaemon.html
|
|
4615
4644
|
#
|
|
4616
4645
|
# @!attribute [rw] message
|
|
4646
|
+
# Message that describes the cause of the exception.
|
|
4617
4647
|
# @return [String]
|
|
4618
4648
|
#
|
|
4619
4649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DaemonNotActiveException AWS API Documentation
|
|
@@ -4633,6 +4663,7 @@ module Aws::ECS
|
|
|
4633
4663
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ListDaemons.html
|
|
4634
4664
|
#
|
|
4635
4665
|
# @!attribute [rw] message
|
|
4666
|
+
# Message that describes the cause of the exception.
|
|
4636
4667
|
# @return [String]
|
|
4637
4668
|
#
|
|
4638
4669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DaemonNotFoundException AWS API Documentation
|
|
@@ -7505,7 +7536,7 @@ module Aws::ECS
|
|
|
7505
7536
|
:command,
|
|
7506
7537
|
:environment,
|
|
7507
7538
|
:secrets)
|
|
7508
|
-
SENSITIVE = []
|
|
7539
|
+
SENSITIVE = [:environment]
|
|
7509
7540
|
include Aws::Structure
|
|
7510
7541
|
end
|
|
7511
7542
|
|
|
@@ -8285,6 +8316,10 @@ module Aws::ECS
|
|
|
8285
8316
|
# The container instance health status.
|
|
8286
8317
|
# @return [String]
|
|
8287
8318
|
#
|
|
8319
|
+
# @!attribute [rw] status_reason
|
|
8320
|
+
# The reason for the container instance health status.
|
|
8321
|
+
# @return [String]
|
|
8322
|
+
#
|
|
8288
8323
|
# @!attribute [rw] last_updated
|
|
8289
8324
|
# The Unix timestamp for when the container instance health status was
|
|
8290
8325
|
# last updated.
|
|
@@ -8300,6 +8335,7 @@ module Aws::ECS
|
|
|
8300
8335
|
class InstanceHealthCheckResult < Struct.new(
|
|
8301
8336
|
:type,
|
|
8302
8337
|
:status,
|
|
8338
|
+
:status_reason,
|
|
8303
8339
|
:last_updated,
|
|
8304
8340
|
:last_status_change)
|
|
8305
8341
|
SENSITIVE = []
|
|
@@ -8976,11 +9012,6 @@ module Aws::ECS
|
|
|
8976
9012
|
# @!attribute [rw] tmpfs
|
|
8977
9013
|
# The container path, mount options, and size (in MiB) of the tmpfs
|
|
8978
9014
|
# mount. This parameter maps to the `--tmpfs` option to docker run.
|
|
8979
|
-
#
|
|
8980
|
-
# <note markdown="1"> If you're using tasks that use the Fargate launch type, the `tmpfs`
|
|
8981
|
-
# parameter isn't supported.
|
|
8982
|
-
#
|
|
8983
|
-
# </note>
|
|
8984
9015
|
# @return [Array<Types::Tmpfs>]
|
|
8985
9016
|
#
|
|
8986
9017
|
# @!attribute [rw] max_swap
|
|
@@ -10917,13 +10948,20 @@ module Aws::ECS
|
|
|
10917
10948
|
# delay.
|
|
10918
10949
|
# @return [Types::InfrastructureOptimization]
|
|
10919
10950
|
#
|
|
10951
|
+
# @!attribute [rw] auto_repair_configuration
|
|
10952
|
+
# The auto repair configuration for the Amazon ECS Managed Instances
|
|
10953
|
+
# capacity provider. Indicates whether Amazon ECS automatically
|
|
10954
|
+
# replaces container instances that are detected as unhealthy.
|
|
10955
|
+
# @return [Types::AutoRepairConfiguration]
|
|
10956
|
+
#
|
|
10920
10957
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedInstancesProvider AWS API Documentation
|
|
10921
10958
|
#
|
|
10922
10959
|
class ManagedInstancesProvider < Struct.new(
|
|
10923
10960
|
:infrastructure_role_arn,
|
|
10924
10961
|
:instance_launch_template,
|
|
10925
10962
|
:propagate_tags,
|
|
10926
|
-
:infrastructure_optimization
|
|
10963
|
+
:infrastructure_optimization,
|
|
10964
|
+
:auto_repair_configuration)
|
|
10927
10965
|
SENSITIVE = []
|
|
10928
10966
|
include Aws::Structure
|
|
10929
10967
|
end
|
|
@@ -18425,13 +18463,19 @@ module Aws::ECS
|
|
|
18425
18463
|
# forward.
|
|
18426
18464
|
# @return [Types::InfrastructureOptimization]
|
|
18427
18465
|
#
|
|
18466
|
+
# @!attribute [rw] auto_repair_configuration
|
|
18467
|
+
# The updated auto repair configuration for the Amazon ECS Managed
|
|
18468
|
+
# Instances capacity provider.
|
|
18469
|
+
# @return [Types::AutoRepairConfiguration]
|
|
18470
|
+
#
|
|
18428
18471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateManagedInstancesProviderConfiguration AWS API Documentation
|
|
18429
18472
|
#
|
|
18430
18473
|
class UpdateManagedInstancesProviderConfiguration < Struct.new(
|
|
18431
18474
|
:infrastructure_role_arn,
|
|
18432
18475
|
:instance_launch_template,
|
|
18433
18476
|
:propagate_tags,
|
|
18434
|
-
:infrastructure_optimization
|
|
18477
|
+
:infrastructure_optimization,
|
|
18478
|
+
:auto_repair_configuration)
|
|
18435
18479
|
SENSITIVE = []
|
|
18436
18480
|
include Aws::Structure
|
|
18437
18481
|
end
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -178,6 +178,9 @@ module Aws
|
|
|
178
178
|
propagate_tags: ("CAPACITY_PROVIDER" | "NONE")?,
|
|
179
179
|
infrastructure_optimization: {
|
|
180
180
|
scale_in_after: ::Integer?
|
|
181
|
+
}?,
|
|
182
|
+
auto_repair_configuration: {
|
|
183
|
+
actions_status: ("ENABLED" | "DISABLED")?
|
|
181
184
|
}?
|
|
182
185
|
},
|
|
183
186
|
?tags: Array[
|
|
@@ -2127,6 +2130,9 @@ module Aws
|
|
|
2127
2130
|
propagate_tags: ("CAPACITY_PROVIDER" | "NONE")?,
|
|
2128
2131
|
infrastructure_optimization: {
|
|
2129
2132
|
scale_in_after: ::Integer?
|
|
2133
|
+
}?,
|
|
2134
|
+
auto_repair_configuration: {
|
|
2135
|
+
actions_status: ("ENABLED" | "DISABLED")?
|
|
2130
2136
|
}?
|
|
2131
2137
|
}
|
|
2132
2138
|
) -> _UpdateCapacityProviderResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -60,6 +60,11 @@ module Aws::ECS
|
|
|
60
60
|
SENSITIVE: []
|
|
61
61
|
end
|
|
62
62
|
|
|
63
|
+
class AutoRepairConfiguration
|
|
64
|
+
attr_accessor actions_status: ("ENABLED" | "DISABLED")
|
|
65
|
+
SENSITIVE: []
|
|
66
|
+
end
|
|
67
|
+
|
|
63
68
|
class AutoScalingGroupProvider
|
|
64
69
|
attr_accessor auto_scaling_group_arn: ::String
|
|
65
70
|
attr_accessor managed_scaling: Types::ManagedScaling
|
|
@@ -268,7 +273,7 @@ module Aws::ECS
|
|
|
268
273
|
attr_accessor resource_requirements: ::Array[Types::ResourceRequirement]
|
|
269
274
|
attr_accessor firelens_configuration: Types::FirelensConfiguration
|
|
270
275
|
attr_accessor credential_specs: ::Array[::String]
|
|
271
|
-
SENSITIVE: [:repository_credentials]
|
|
276
|
+
SENSITIVE: [:repository_credentials, :environment]
|
|
272
277
|
end
|
|
273
278
|
|
|
274
279
|
class ContainerDependency
|
|
@@ -321,7 +326,7 @@ module Aws::ECS
|
|
|
321
326
|
attr_accessor memory: ::Integer
|
|
322
327
|
attr_accessor memory_reservation: ::Integer
|
|
323
328
|
attr_accessor resource_requirements: ::Array[Types::ResourceRequirement]
|
|
324
|
-
SENSITIVE: []
|
|
329
|
+
SENSITIVE: [:environment]
|
|
325
330
|
end
|
|
326
331
|
|
|
327
332
|
class ContainerRestartPolicy
|
|
@@ -420,6 +425,7 @@ module Aws::ECS
|
|
|
420
425
|
attr_accessor instance_launch_template: Types::InstanceLaunchTemplate
|
|
421
426
|
attr_accessor propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
422
427
|
attr_accessor infrastructure_optimization: Types::InfrastructureOptimization
|
|
428
|
+
attr_accessor auto_repair_configuration: Types::AutoRepairConfiguration
|
|
423
429
|
SENSITIVE: []
|
|
424
430
|
end
|
|
425
431
|
|
|
@@ -535,7 +541,7 @@ module Aws::ECS
|
|
|
535
541
|
attr_accessor interactive: bool
|
|
536
542
|
attr_accessor pseudo_terminal: bool
|
|
537
543
|
attr_accessor restart_policy: Types::ContainerRestartPolicy
|
|
538
|
-
SENSITIVE: [:repository_credentials]
|
|
544
|
+
SENSITIVE: [:repository_credentials, :environment]
|
|
539
545
|
end
|
|
540
546
|
|
|
541
547
|
class DaemonContainerImage
|
|
@@ -1203,7 +1209,7 @@ module Aws::ECS
|
|
|
1203
1209
|
attr_accessor command: ::Array[::String]
|
|
1204
1210
|
attr_accessor environment: ::Array[Types::KeyValuePair]
|
|
1205
1211
|
attr_accessor secrets: ::Array[Types::Secret]
|
|
1206
|
-
SENSITIVE: []
|
|
1212
|
+
SENSITIVE: [:environment]
|
|
1207
1213
|
end
|
|
1208
1214
|
|
|
1209
1215
|
class ExpressGatewayRepositoryCredentials
|
|
@@ -1336,6 +1342,7 @@ module Aws::ECS
|
|
|
1336
1342
|
class InstanceHealthCheckResult
|
|
1337
1343
|
attr_accessor type: ("CONTAINER_RUNTIME" | "ACCELERATED_COMPUTE" | "DAEMON")
|
|
1338
1344
|
attr_accessor status: ("OK" | "IMPAIRED" | "INSUFFICIENT_DATA" | "INITIALIZING")
|
|
1345
|
+
attr_accessor status_reason: ::String
|
|
1339
1346
|
attr_accessor last_updated: ::Time
|
|
1340
1347
|
attr_accessor last_status_change: ::Time
|
|
1341
1348
|
SENSITIVE: []
|
|
@@ -1729,6 +1736,7 @@ module Aws::ECS
|
|
|
1729
1736
|
attr_accessor instance_launch_template: Types::InstanceLaunchTemplate
|
|
1730
1737
|
attr_accessor propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
1731
1738
|
attr_accessor infrastructure_optimization: Types::InfrastructureOptimization
|
|
1739
|
+
attr_accessor auto_repair_configuration: Types::AutoRepairConfiguration
|
|
1732
1740
|
SENSITIVE: []
|
|
1733
1741
|
end
|
|
1734
1742
|
|
|
@@ -2852,6 +2860,7 @@ module Aws::ECS
|
|
|
2852
2860
|
attr_accessor instance_launch_template: Types::InstanceLaunchTemplateUpdate
|
|
2853
2861
|
attr_accessor propagate_tags: ("CAPACITY_PROVIDER" | "NONE")
|
|
2854
2862
|
attr_accessor infrastructure_optimization: Types::InfrastructureOptimization
|
|
2863
|
+
attr_accessor auto_repair_configuration: Types::AutoRepairConfiguration
|
|
2855
2864
|
SENSITIVE: []
|
|
2856
2865
|
end
|
|
2857
2866
|
|