aws-sdk-ecs 1.89.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +515 -470
- data/lib/aws-sdk-ecs/client_api.rb +18 -0
- data/lib/aws-sdk-ecs/types.rb +1073 -985
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +2 -2
@@ -67,6 +67,7 @@ module Aws::ECS
|
|
67
67
|
ContainerInstance = Shapes::StructureShape.new(name: 'ContainerInstance')
|
68
68
|
ContainerInstanceField = Shapes::StringShape.new(name: 'ContainerInstanceField')
|
69
69
|
ContainerInstanceFieldList = Shapes::ListShape.new(name: 'ContainerInstanceFieldList')
|
70
|
+
ContainerInstanceHealthStatus = Shapes::StructureShape.new(name: 'ContainerInstanceHealthStatus')
|
70
71
|
ContainerInstanceStatus = Shapes::StringShape.new(name: 'ContainerInstanceStatus')
|
71
72
|
ContainerInstances = Shapes::ListShape.new(name: 'ContainerInstances')
|
72
73
|
ContainerOverride = Shapes::StructureShape.new(name: 'ContainerOverride')
|
@@ -160,6 +161,10 @@ module Aws::ECS
|
|
160
161
|
InferenceAcceleratorOverride = Shapes::StructureShape.new(name: 'InferenceAcceleratorOverride')
|
161
162
|
InferenceAcceleratorOverrides = Shapes::ListShape.new(name: 'InferenceAcceleratorOverrides')
|
162
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')
|
163
168
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
164
169
|
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
165
170
|
IpcMode = Shapes::StringShape.new(name: 'IpcMode')
|
@@ -550,10 +555,15 @@ module Aws::ECS
|
|
550
555
|
ContainerInstance.add_member(:registered_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "registeredAt"))
|
551
556
|
ContainerInstance.add_member(:attachments, Shapes::ShapeRef.new(shape: Attachments, location_name: "attachments"))
|
552
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"))
|
553
559
|
ContainerInstance.struct_class = Types::ContainerInstance
|
554
560
|
|
555
561
|
ContainerInstanceFieldList.member = Shapes::ShapeRef.new(shape: ContainerInstanceField)
|
556
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
|
+
|
557
567
|
ContainerInstances.member = Shapes::ShapeRef.new(shape: ContainerInstance)
|
558
568
|
|
559
569
|
ContainerOverride.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
@@ -927,6 +937,14 @@ module Aws::ECS
|
|
927
937
|
|
928
938
|
InferenceAccelerators.member = Shapes::ShapeRef.new(shape: InferenceAccelerator)
|
929
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
|
+
|
930
948
|
InvalidParameterException.struct_class = Types::InvalidParameterException
|
931
949
|
|
932
950
|
KernelCapabilities.add_member(:add, Shapes::ShapeRef.new(shape: StringList, location_name: "add"))
|