aws-sdk-ecs 1.86.0 → 1.90.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.
@@ -31,6 +31,7 @@ module Aws::ECS
31
31
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
32
32
  BoxedBoolean = Shapes::BooleanShape.new(name: 'BoxedBoolean')
33
33
  BoxedInteger = Shapes::IntegerShape.new(name: 'BoxedInteger')
34
+ CPUArchitecture = Shapes::StringShape.new(name: 'CPUArchitecture')
34
35
  CapacityProvider = Shapes::StructureShape.new(name: 'CapacityProvider')
35
36
  CapacityProviderField = Shapes::StringShape.new(name: 'CapacityProviderField')
36
37
  CapacityProviderFieldList = Shapes::ListShape.new(name: 'CapacityProviderFieldList')
@@ -66,6 +67,7 @@ module Aws::ECS
66
67
  ContainerInstance = Shapes::StructureShape.new(name: 'ContainerInstance')
67
68
  ContainerInstanceField = Shapes::StringShape.new(name: 'ContainerInstanceField')
68
69
  ContainerInstanceFieldList = Shapes::ListShape.new(name: 'ContainerInstanceFieldList')
70
+ ContainerInstanceHealthStatus = Shapes::StructureShape.new(name: 'ContainerInstanceHealthStatus')
69
71
  ContainerInstanceStatus = Shapes::StringShape.new(name: 'ContainerInstanceStatus')
70
72
  ContainerInstances = Shapes::ListShape.new(name: 'ContainerInstances')
71
73
  ContainerOverride = Shapes::StructureShape.new(name: 'ContainerOverride')
@@ -159,6 +161,10 @@ module Aws::ECS
159
161
  InferenceAcceleratorOverride = Shapes::StructureShape.new(name: 'InferenceAcceleratorOverride')
160
162
  InferenceAcceleratorOverrides = Shapes::ListShape.new(name: 'InferenceAcceleratorOverrides')
161
163
  InferenceAccelerators = Shapes::ListShape.new(name: 'InferenceAccelerators')
164
+ InstanceHealthCheckResult = Shapes::StructureShape.new(name: 'InstanceHealthCheckResult')
165
+ InstanceHealthCheckResultList = Shapes::ListShape.new(name: 'InstanceHealthCheckResultList')
166
+ InstanceHealthCheckState = Shapes::StringShape.new(name: 'InstanceHealthCheckState')
167
+ InstanceHealthCheckType = Shapes::StringShape.new(name: 'InstanceHealthCheckType')
162
168
  Integer = Shapes::IntegerShape.new(name: 'Integer')
163
169
  InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
164
170
  IpcMode = Shapes::StringShape.new(name: 'IpcMode')
@@ -212,6 +218,7 @@ module Aws::ECS
212
218
  NetworkInterfaces = Shapes::ListShape.new(name: 'NetworkInterfaces')
213
219
  NetworkMode = Shapes::StringShape.new(name: 'NetworkMode')
214
220
  NoUpdateAvailableException = Shapes::StructureShape.new(name: 'NoUpdateAvailableException')
221
+ OSFamily = Shapes::StringShape.new(name: 'OSFamily')
215
222
  PidMode = Shapes::StringShape.new(name: 'PidMode')
216
223
  PlacementConstraint = Shapes::StructureShape.new(name: 'PlacementConstraint')
217
224
  PlacementConstraintType = Shapes::StringShape.new(name: 'PlacementConstraintType')
@@ -253,6 +260,7 @@ module Aws::ECS
253
260
  Resources = Shapes::ListShape.new(name: 'Resources')
254
261
  RunTaskRequest = Shapes::StructureShape.new(name: 'RunTaskRequest')
255
262
  RunTaskResponse = Shapes::StructureShape.new(name: 'RunTaskResponse')
263
+ RuntimePlatform = Shapes::StructureShape.new(name: 'RuntimePlatform')
256
264
  Scale = Shapes::StructureShape.new(name: 'Scale')
257
265
  ScaleUnit = Shapes::StringShape.new(name: 'ScaleUnit')
258
266
  SchedulingStrategy = Shapes::StringShape.new(name: 'SchedulingStrategy')
@@ -547,10 +555,15 @@ module Aws::ECS
547
555
  ContainerInstance.add_member(:registered_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "registeredAt"))
548
556
  ContainerInstance.add_member(:attachments, Shapes::ShapeRef.new(shape: Attachments, location_name: "attachments"))
549
557
  ContainerInstance.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
558
+ ContainerInstance.add_member(:health_status, Shapes::ShapeRef.new(shape: ContainerInstanceHealthStatus, location_name: "healthStatus"))
550
559
  ContainerInstance.struct_class = Types::ContainerInstance
551
560
 
552
561
  ContainerInstanceFieldList.member = Shapes::ShapeRef.new(shape: ContainerInstanceField)
553
562
 
563
+ ContainerInstanceHealthStatus.add_member(:overall_status, Shapes::ShapeRef.new(shape: InstanceHealthCheckState, location_name: "overallStatus"))
564
+ ContainerInstanceHealthStatus.add_member(:details, Shapes::ShapeRef.new(shape: InstanceHealthCheckResultList, location_name: "details"))
565
+ ContainerInstanceHealthStatus.struct_class = Types::ContainerInstanceHealthStatus
566
+
554
567
  ContainerInstances.member = Shapes::ShapeRef.new(shape: ContainerInstance)
555
568
 
556
569
  ContainerOverride.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
@@ -697,6 +710,7 @@ module Aws::ECS
697
710
  Deployment.add_member(:capacity_provider_strategy, Shapes::ShapeRef.new(shape: CapacityProviderStrategy, location_name: "capacityProviderStrategy"))
698
711
  Deployment.add_member(:launch_type, Shapes::ShapeRef.new(shape: LaunchType, location_name: "launchType"))
699
712
  Deployment.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "platformVersion"))
713
+ Deployment.add_member(:platform_family, Shapes::ShapeRef.new(shape: String, location_name: "platformFamily"))
700
714
  Deployment.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
701
715
  Deployment.add_member(:rollout_state, Shapes::ShapeRef.new(shape: DeploymentRolloutState, location_name: "rolloutState"))
702
716
  Deployment.add_member(:rollout_state_reason, Shapes::ShapeRef.new(shape: String, location_name: "rolloutStateReason"))
@@ -923,6 +937,14 @@ module Aws::ECS
923
937
 
924
938
  InferenceAccelerators.member = Shapes::ShapeRef.new(shape: InferenceAccelerator)
925
939
 
940
+ InstanceHealthCheckResult.add_member(:type, Shapes::ShapeRef.new(shape: InstanceHealthCheckType, location_name: "type"))
941
+ InstanceHealthCheckResult.add_member(:status, Shapes::ShapeRef.new(shape: InstanceHealthCheckState, location_name: "status"))
942
+ InstanceHealthCheckResult.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdated"))
943
+ InstanceHealthCheckResult.add_member(:last_status_change, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastStatusChange"))
944
+ InstanceHealthCheckResult.struct_class = Types::InstanceHealthCheckResult
945
+
946
+ InstanceHealthCheckResultList.member = Shapes::ShapeRef.new(shape: InstanceHealthCheckResult)
947
+
926
948
  InvalidParameterException.struct_class = Types::InvalidParameterException
927
949
 
928
950
  KernelCapabilities.add_member(:add, Shapes::ShapeRef.new(shape: StringList, location_name: "add"))
@@ -1204,6 +1226,7 @@ module Aws::ECS
1204
1226
  RegisterTaskDefinitionRequest.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "proxyConfiguration"))
1205
1227
  RegisterTaskDefinitionRequest.add_member(:inference_accelerators, Shapes::ShapeRef.new(shape: InferenceAccelerators, location_name: "inferenceAccelerators"))
1206
1228
  RegisterTaskDefinitionRequest.add_member(:ephemeral_storage, Shapes::ShapeRef.new(shape: EphemeralStorage, location_name: "ephemeralStorage"))
1229
+ RegisterTaskDefinitionRequest.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
1207
1230
  RegisterTaskDefinitionRequest.struct_class = Types::RegisterTaskDefinitionRequest
1208
1231
 
1209
1232
  RegisterTaskDefinitionResponse.add_member(:task_definition, Shapes::ShapeRef.new(shape: TaskDefinition, location_name: "taskDefinition"))
@@ -1258,6 +1281,10 @@ module Aws::ECS
1258
1281
  RunTaskResponse.add_member(:failures, Shapes::ShapeRef.new(shape: Failures, location_name: "failures"))
1259
1282
  RunTaskResponse.struct_class = Types::RunTaskResponse
1260
1283
 
1284
+ RuntimePlatform.add_member(:cpu_architecture, Shapes::ShapeRef.new(shape: CPUArchitecture, location_name: "cpuArchitecture"))
1285
+ RuntimePlatform.add_member(:operating_system_family, Shapes::ShapeRef.new(shape: OSFamily, location_name: "operatingSystemFamily"))
1286
+ RuntimePlatform.struct_class = Types::RuntimePlatform
1287
+
1261
1288
  Scale.add_member(:value, Shapes::ShapeRef.new(shape: Double, location_name: "value"))
1262
1289
  Scale.add_member(:unit, Shapes::ShapeRef.new(shape: ScaleUnit, location_name: "unit"))
1263
1290
  Scale.struct_class = Types::Scale
@@ -1283,6 +1310,7 @@ module Aws::ECS
1283
1310
  Service.add_member(:launch_type, Shapes::ShapeRef.new(shape: LaunchType, location_name: "launchType"))
1284
1311
  Service.add_member(:capacity_provider_strategy, Shapes::ShapeRef.new(shape: CapacityProviderStrategy, location_name: "capacityProviderStrategy"))
1285
1312
  Service.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "platformVersion"))
1313
+ Service.add_member(:platform_family, Shapes::ShapeRef.new(shape: String, location_name: "platformFamily"))
1286
1314
  Service.add_member(:task_definition, Shapes::ShapeRef.new(shape: String, location_name: "taskDefinition"))
1287
1315
  Service.add_member(:deployment_configuration, Shapes::ShapeRef.new(shape: DeploymentConfiguration, location_name: "deploymentConfiguration"))
1288
1316
  Service.add_member(:task_sets, Shapes::ShapeRef.new(shape: TaskSets, location_name: "taskSets"))
@@ -1452,6 +1480,7 @@ module Aws::ECS
1452
1480
  Task.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
1453
1481
  Task.add_member(:overrides, Shapes::ShapeRef.new(shape: TaskOverride, location_name: "overrides"))
1454
1482
  Task.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "platformVersion"))
1483
+ Task.add_member(:platform_family, Shapes::ShapeRef.new(shape: String, location_name: "platformFamily"))
1455
1484
  Task.add_member(:pull_started_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "pullStartedAt"))
1456
1485
  Task.add_member(:pull_stopped_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "pullStoppedAt"))
1457
1486
  Task.add_member(:started_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startedAt"))
@@ -1479,6 +1508,7 @@ module Aws::ECS
1479
1508
  TaskDefinition.add_member(:requires_attributes, Shapes::ShapeRef.new(shape: RequiresAttributes, location_name: "requiresAttributes"))
1480
1509
  TaskDefinition.add_member(:placement_constraints, Shapes::ShapeRef.new(shape: TaskDefinitionPlacementConstraints, location_name: "placementConstraints"))
1481
1510
  TaskDefinition.add_member(:compatibilities, Shapes::ShapeRef.new(shape: CompatibilityList, location_name: "compatibilities"))
1511
+ TaskDefinition.add_member(:runtime_platform, Shapes::ShapeRef.new(shape: RuntimePlatform, location_name: "runtimePlatform"))
1482
1512
  TaskDefinition.add_member(:requires_compatibilities, Shapes::ShapeRef.new(shape: CompatibilityList, location_name: "requiresCompatibilities"))
1483
1513
  TaskDefinition.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
1484
1514
  TaskDefinition.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
@@ -1527,6 +1557,7 @@ module Aws::ECS
1527
1557
  TaskSet.add_member(:launch_type, Shapes::ShapeRef.new(shape: LaunchType, location_name: "launchType"))
1528
1558
  TaskSet.add_member(:capacity_provider_strategy, Shapes::ShapeRef.new(shape: CapacityProviderStrategy, location_name: "capacityProviderStrategy"))
1529
1559
  TaskSet.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "platformVersion"))
1560
+ TaskSet.add_member(:platform_family, Shapes::ShapeRef.new(shape: String, location_name: "platformFamily"))
1530
1561
  TaskSet.add_member(:network_configuration, Shapes::ShapeRef.new(shape: NetworkConfiguration, location_name: "networkConfiguration"))
1531
1562
  TaskSet.add_member(:load_balancers, Shapes::ShapeRef.new(shape: LoadBalancers, location_name: "loadBalancers"))
1532
1563
  TaskSet.add_member(:service_registries, Shapes::ShapeRef.new(shape: ServiceRegistries, location_name: "serviceRegistries"))