aws-sdk-ecs 1.0.0.rc3 → 1.0.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ecs.rb +1 -1
- data/lib/aws-sdk-ecs/client.rb +69 -40
- data/lib/aws-sdk-ecs/client_api.rb +1 -0
- data/lib/aws-sdk-ecs/types.rb +52 -30
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 909526ccb5c7c4d8f50f8c23299b0e999ff35142
|
4
|
+
data.tar.gz: 7721ba02f035073278a30957964b13f824ea787d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 563f8704a669856af70e9da680fd54cc3bc7f677834be07678a400418e5a2be04cf938a01b014f7fc5b97e8c99389136be519333da797f3b272f30cd8375142d
|
7
|
+
data.tar.gz: 9411543132b46ed1deb4bfe3e7b8d03e1cdb6eb666900e69a2d59a0e953367a7b724981c89dd9f79c30d56c8ba5c52e7fbd147819e05898d4868dc9414879835
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -216,25 +216,27 @@ module Aws::ECS
|
|
216
216
|
# your service's tasks that must remain in the `RUNNING` state during a
|
217
217
|
# deployment, as a percentage of the `desiredCount` (rounded up to the
|
218
218
|
# nearest integer). This parameter enables you to deploy without using
|
219
|
-
# additional cluster capacity. For example, if
|
220
|
-
# tasks and
|
221
|
-
# tasks to free up cluster capacity
|
222
|
-
# for services that do not use a
|
223
|
-
# they are in the `RUNNING`
|
224
|
-
#
|
225
|
-
#
|
226
|
-
#
|
227
|
-
# for
|
219
|
+
# additional cluster capacity. For example, if your service has a
|
220
|
+
# `desiredCount` of four tasks and a `minimumHealthyPercent` of 50%, the
|
221
|
+
# scheduler can stop two existing tasks to free up cluster capacity
|
222
|
+
# before starting two new tasks. Tasks for services that *do not* use a
|
223
|
+
# load balancer are considered healthy if they are in the `RUNNING`
|
224
|
+
# state. Tasks for services that *do* use a load balancer are considered
|
225
|
+
# healthy if they are in the `RUNNING` state and the container instance
|
226
|
+
# they are hosted on is reported as healthy by the load balancer. The
|
227
|
+
# default value for `minimumHealthyPercent` is 50% in the console and
|
228
|
+
# 100% for the AWS CLI, the AWS SDKs, and the APIs.
|
228
229
|
#
|
229
230
|
# The `maximumPercent` parameter represents an upper limit on the number
|
230
231
|
# of your service's tasks that are allowed in the `RUNNING` or
|
231
232
|
# `PENDING` state during a deployment, as a percentage of the
|
232
233
|
# `desiredCount` (rounded down to the nearest integer). This parameter
|
233
|
-
# enables you to define the deployment batch size. For example, if
|
234
|
-
# `desiredCount`
|
235
|
-
# can start four new tasks before stopping
|
236
|
-
# (provided that the cluster resources required to
|
237
|
-
# available). The default value is
|
234
|
+
# enables you to define the deployment batch size. For example, if your
|
235
|
+
# service has a `desiredCount` of four tasks and a `maximumPercent`
|
236
|
+
# value of 200%, the scheduler can start four new tasks before stopping
|
237
|
+
# the four older tasks (provided that the cluster resources required to
|
238
|
+
# do this are available). The default value for `maximumPercent` is
|
239
|
+
# 200%.
|
238
240
|
#
|
239
241
|
# When the service scheduler launches new tasks, it determines task
|
240
242
|
# placement in your cluster using the following logic:
|
@@ -245,7 +247,8 @@ module Aws::ECS
|
|
245
247
|
#
|
246
248
|
# * By default, the service scheduler attempts to balance tasks across
|
247
249
|
# Availability Zones in this manner (although you can choose a
|
248
|
-
# different placement strategy)
|
250
|
+
# different placement strategy) with the `placementStrategy`
|
251
|
+
# parameter):
|
249
252
|
#
|
250
253
|
# * Sort the valid container instances by the fewest number of running
|
251
254
|
# tasks for this service in the same Availability Zone as the
|
@@ -430,7 +433,7 @@ module Aws::ECS
|
|
430
433
|
#
|
431
434
|
# @option params [String] :cluster
|
432
435
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
433
|
-
# contains the resource to
|
436
|
+
# contains the resource to delete attributes. If you do not specify a
|
434
437
|
# cluster, the default cluster is assumed.
|
435
438
|
#
|
436
439
|
# @option params [required, Array<Types::Attribute>] :attributes
|
@@ -532,8 +535,9 @@ module Aws::ECS
|
|
532
535
|
# </note>
|
533
536
|
#
|
534
537
|
# @option params [String] :cluster
|
535
|
-
# The name
|
536
|
-
# not specify a cluster, the
|
538
|
+
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
539
|
+
# hosts the service to delete. If you do not specify a cluster, the
|
540
|
+
# default cluster is assumed.
|
537
541
|
#
|
538
542
|
# @option params [required, String] :service
|
539
543
|
# The name of the service to delete.
|
@@ -692,6 +696,7 @@ module Aws::ECS
|
|
692
696
|
# resp.container_instance.attributes[0].value #=> String
|
693
697
|
# resp.container_instance.attributes[0].target_type #=> String, one of "container-instance"
|
694
698
|
# resp.container_instance.attributes[0].target_id #=> String
|
699
|
+
# resp.container_instance.registered_at #=> Time
|
695
700
|
#
|
696
701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterContainerInstance AWS API Documentation
|
697
702
|
#
|
@@ -715,6 +720,13 @@ module Aws::ECS
|
|
715
720
|
# 10 minute window following deregistration where these restrictions
|
716
721
|
# have not yet taken effect).
|
717
722
|
#
|
723
|
+
# <note markdown="1"> At this time, `INACTIVE` task definitions remain discoverable in your
|
724
|
+
# account indefinitely; however, this behavior is subject to change in
|
725
|
+
# the future, so you should not rely on `INACTIVE` task definitions
|
726
|
+
# persisting beyond the life cycle of any associated tasks and services.
|
727
|
+
#
|
728
|
+
# </note>
|
729
|
+
#
|
718
730
|
# @option params [required, String] :task_definition
|
719
731
|
# The `family` and `revision` (`family:revision`) or full Amazon
|
720
732
|
# Resource Name (ARN) of the task definition to deregister. You must
|
@@ -813,9 +825,9 @@ module Aws::ECS
|
|
813
825
|
# Describes one or more of your clusters.
|
814
826
|
#
|
815
827
|
# @option params [Array<String>] :clusters
|
816
|
-
# A
|
817
|
-
#
|
818
|
-
#
|
828
|
+
# A list of up to 100 cluster names or full cluster Amazon Resource Name
|
829
|
+
# (ARN) entries. If you do not specify a cluster, the default cluster is
|
830
|
+
# assumed.
|
819
831
|
#
|
820
832
|
# @return [Types::DescribeClustersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
821
833
|
#
|
@@ -861,8 +873,8 @@ module Aws::ECS
|
|
861
873
|
# cluster, the default cluster is assumed.
|
862
874
|
#
|
863
875
|
# @option params [required, Array<String>] :container_instances
|
864
|
-
# A
|
865
|
-
#
|
876
|
+
# A list of container instance IDs or full Amazon Resource Name (ARN)
|
877
|
+
# entries.
|
866
878
|
#
|
867
879
|
# @return [Types::DescribeContainerInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
868
880
|
#
|
@@ -911,6 +923,7 @@ module Aws::ECS
|
|
911
923
|
# resp.container_instances[0].attributes[0].value #=> String
|
912
924
|
# resp.container_instances[0].attributes[0].target_type #=> String, one of "container-instance"
|
913
925
|
# resp.container_instances[0].attributes[0].target_id #=> String
|
926
|
+
# resp.container_instances[0].registered_at #=> Time
|
914
927
|
# resp.failures #=> Array
|
915
928
|
# resp.failures[0].arn #=> String
|
916
929
|
# resp.failures[0].reason #=> String
|
@@ -927,8 +940,9 @@ module Aws::ECS
|
|
927
940
|
# Describes the specified services running in your cluster.
|
928
941
|
#
|
929
942
|
# @option params [String] :cluster
|
930
|
-
# The name
|
931
|
-
# not specify a cluster, the
|
943
|
+
# The short name or full Amazon Resource Name (ARN)the cluster that
|
944
|
+
# hosts the service to describe. If you do not specify a cluster, the
|
945
|
+
# default cluster is assumed.
|
932
946
|
#
|
933
947
|
# @option params [required, Array<String>] :services
|
934
948
|
# A list of services to describe. You may specify up to 10 services to
|
@@ -1111,7 +1125,7 @@ module Aws::ECS
|
|
1111
1125
|
# default cluster is assumed.
|
1112
1126
|
#
|
1113
1127
|
# @option params [required, Array<String>] :tasks
|
1114
|
-
# A
|
1128
|
+
# A list of up to 100 task IDs or full Amazon Resource Name (ARN)
|
1115
1129
|
# entries.
|
1116
1130
|
#
|
1117
1131
|
# @return [Types::DescribeTasksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1193,7 +1207,8 @@ module Aws::ECS
|
|
1193
1207
|
# `.
|
1194
1208
|
#
|
1195
1209
|
# @option params [String] :cluster
|
1196
|
-
# The
|
1210
|
+
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
1211
|
+
# the container instance belongs to.
|
1197
1212
|
#
|
1198
1213
|
# @return [Types::DiscoverPollEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1199
1214
|
#
|
@@ -1223,7 +1238,7 @@ module Aws::ECS
|
|
1223
1238
|
|
1224
1239
|
# Lists the attributes for Amazon ECS resources within a specified
|
1225
1240
|
# target type and cluster. When you specify a target type and cluster,
|
1226
|
-
# `
|
1241
|
+
# `ListAttributes` returns a list of attribute objects, one for each
|
1227
1242
|
# attribute on each resource. You can filter the list of results to a
|
1228
1243
|
# single attribute name to only return results that have that name. You
|
1229
1244
|
# can also filter the results by attribute name and value, for example,
|
@@ -1404,11 +1419,11 @@ module Aws::ECS
|
|
1404
1419
|
# `nextToken` value if applicable.
|
1405
1420
|
#
|
1406
1421
|
# @option params [String] :status
|
1407
|
-
#
|
1408
|
-
# `
|
1409
|
-
#
|
1410
|
-
#
|
1411
|
-
#
|
1422
|
+
# Filters the container instances by status. For example, if you specify
|
1423
|
+
# the `DRAINING` status, the results include only container instances
|
1424
|
+
# that have been set to `DRAINING` using UpdateContainerInstancesState.
|
1425
|
+
# If you do not specify this parameter, the default is to include
|
1426
|
+
# container instances set to `ACTIVE` and `DRAINING`.
|
1412
1427
|
#
|
1413
1428
|
# @return [Types::ListContainerInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1414
1429
|
#
|
@@ -1929,6 +1944,7 @@ module Aws::ECS
|
|
1929
1944
|
# resp.container_instance.attributes[0].value #=> String
|
1930
1945
|
# resp.container_instance.attributes[0].target_type #=> String, one of "container-instance"
|
1931
1946
|
# resp.container_instance.attributes[0].target_id #=> String
|
1947
|
+
# resp.container_instance.registered_at #=> Time
|
1932
1948
|
#
|
1933
1949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterContainerInstance AWS API Documentation
|
1934
1950
|
#
|
@@ -2492,10 +2508,21 @@ module Aws::ECS
|
|
2492
2508
|
#
|
2493
2509
|
# When StopTask is called on a task, the equivalent of `docker stop` is
|
2494
2510
|
# issued to the containers running in the task. This results in a
|
2495
|
-
# `SIGTERM` and a 30-second timeout, after which `SIGKILL` is
|
2496
|
-
# the containers are forcibly stopped. If the container handles
|
2497
|
-
# `SIGTERM` gracefully and exits within 30 seconds from receiving
|
2498
|
-
# `SIGKILL` is sent.
|
2511
|
+
# `SIGTERM` and a default 30-second timeout, after which `SIGKILL` is
|
2512
|
+
# sent and the containers are forcibly stopped. If the container handles
|
2513
|
+
# the `SIGTERM` gracefully and exits within 30 seconds from receiving
|
2514
|
+
# it, no `SIGKILL` is sent.
|
2515
|
+
#
|
2516
|
+
# <note markdown="1"> The default 30-second timeout can be configured on the Amazon ECS
|
2517
|
+
# container agent with the `ECS_CONTAINER_STOP_TIMEOUT` variable. For
|
2518
|
+
# more information, see [Amazon ECS Container Agent Configuration][1] in
|
2519
|
+
# the *Amazon EC2 Container Service Developer Guide*.
|
2520
|
+
#
|
2521
|
+
# </note>
|
2522
|
+
#
|
2523
|
+
#
|
2524
|
+
#
|
2525
|
+
# [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
|
2499
2526
|
#
|
2500
2527
|
# @option params [String] :cluster
|
2501
2528
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
@@ -2755,6 +2782,7 @@ module Aws::ECS
|
|
2755
2782
|
# resp.container_instance.attributes[0].value #=> String
|
2756
2783
|
# resp.container_instance.attributes[0].target_type #=> String, one of "container-instance"
|
2757
2784
|
# resp.container_instance.attributes[0].target_id #=> String
|
2785
|
+
# resp.container_instance.registered_at #=> Time
|
2758
2786
|
#
|
2759
2787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerAgent AWS API Documentation
|
2760
2788
|
#
|
@@ -2821,8 +2849,8 @@ module Aws::ECS
|
|
2821
2849
|
# cluster, the default cluster is assumed.
|
2822
2850
|
#
|
2823
2851
|
# @option params [required, Array<String>] :container_instances
|
2824
|
-
# A
|
2825
|
-
#
|
2852
|
+
# A list of container instance IDs or full Amazon Resource Name (ARN)
|
2853
|
+
# entries.
|
2826
2854
|
#
|
2827
2855
|
# @option params [required, String] :status
|
2828
2856
|
# The container instance state with which to update the container
|
@@ -2876,6 +2904,7 @@ module Aws::ECS
|
|
2876
2904
|
# resp.container_instances[0].attributes[0].value #=> String
|
2877
2905
|
# resp.container_instances[0].attributes[0].target_type #=> String, one of "container-instance"
|
2878
2906
|
# resp.container_instances[0].attributes[0].target_id #=> String
|
2907
|
+
# resp.container_instances[0].registered_at #=> Time
|
2879
2908
|
# resp.failures #=> Array
|
2880
2909
|
# resp.failures[0].arn #=> String
|
2881
2910
|
# resp.failures[0].reason #=> String
|
@@ -3067,7 +3096,7 @@ module Aws::ECS
|
|
3067
3096
|
params: params,
|
3068
3097
|
config: config)
|
3069
3098
|
context[:gem_name] = 'aws-sdk-ecs'
|
3070
|
-
context[:gem_version] = '1.0.0.
|
3099
|
+
context[:gem_version] = '1.0.0.rc4'
|
3071
3100
|
Seahorse::Client::Request.new(handlers, context)
|
3072
3101
|
end
|
3073
3102
|
|
@@ -237,6 +237,7 @@ module Aws::ECS
|
|
237
237
|
ContainerInstance.add_member(:pending_tasks_count, Shapes::ShapeRef.new(shape: Integer, location_name: "pendingTasksCount"))
|
238
238
|
ContainerInstance.add_member(:agent_update_status, Shapes::ShapeRef.new(shape: AgentUpdateStatus, location_name: "agentUpdateStatus"))
|
239
239
|
ContainerInstance.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "attributes"))
|
240
|
+
ContainerInstance.add_member(:registered_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "registeredAt"))
|
240
241
|
ContainerInstance.struct_class = Types::ContainerInstance
|
241
242
|
|
242
243
|
ContainerInstances.member = Shapes::ShapeRef.new(shape: ContainerInstance)
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -841,9 +841,17 @@ module Aws::ECS
|
|
841
841
|
# @return [Array<Types::Resource>]
|
842
842
|
#
|
843
843
|
# @!attribute [rw] status
|
844
|
-
# The status of the container instance. The valid values are `ACTIVE
|
845
|
-
# or `
|
846
|
-
# accept tasks.
|
844
|
+
# The status of the container instance. The valid values are `ACTIVE`,
|
845
|
+
# `INACTIVE`, or `DRAINING`. `ACTIVE` indicates that the container
|
846
|
+
# instance can accept tasks. `DRAINING` indicates that new tasks are
|
847
|
+
# not placed on the container instance and any service tasks running
|
848
|
+
# on the container instance are removed if possible. For more
|
849
|
+
# information, see [Container Instance Draining][1] in the *Amazon EC2
|
850
|
+
# Container Service Developer Guide*.
|
851
|
+
#
|
852
|
+
#
|
853
|
+
#
|
854
|
+
# [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-draining.html
|
847
855
|
# @return [String]
|
848
856
|
#
|
849
857
|
# @!attribute [rw] agent_connected
|
@@ -874,6 +882,10 @@ module Aws::ECS
|
|
874
882
|
# PutAttributes operation.
|
875
883
|
# @return [Array<Types::Attribute>]
|
876
884
|
#
|
885
|
+
# @!attribute [rw] registered_at
|
886
|
+
# The Unix timestamp for when the container instance was registered.
|
887
|
+
# @return [Time]
|
888
|
+
#
|
877
889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerInstance AWS API Documentation
|
878
890
|
#
|
879
891
|
class ContainerInstance < Struct.new(
|
@@ -888,7 +900,8 @@ module Aws::ECS
|
|
888
900
|
:running_tasks_count,
|
889
901
|
:pending_tasks_count,
|
890
902
|
:agent_update_status,
|
891
|
-
:attributes
|
903
|
+
:attributes,
|
904
|
+
:registered_at)
|
892
905
|
include Aws::Structure
|
893
906
|
end
|
894
907
|
|
@@ -909,19 +922,22 @@ module Aws::ECS
|
|
909
922
|
# }
|
910
923
|
#
|
911
924
|
# @!attribute [rw] name
|
912
|
-
# The name of the container that receives the override.
|
925
|
+
# The name of the container that receives the override. This parameter
|
926
|
+
# is required if a command or environment variable is specified.
|
913
927
|
# @return [String]
|
914
928
|
#
|
915
929
|
# @!attribute [rw] command
|
916
930
|
# The command to send to the container that overrides the default
|
917
|
-
# command from the Docker image or the task definition.
|
931
|
+
# command from the Docker image or the task definition. You must also
|
932
|
+
# specify a container name.
|
918
933
|
# @return [Array<String>]
|
919
934
|
#
|
920
935
|
# @!attribute [rw] environment
|
921
936
|
# The environment variables to send to the container. You can add new
|
922
937
|
# environment variables, which are added to the container at launch,
|
923
938
|
# or you can override the existing environment variables from the
|
924
|
-
# Docker image or the task definition.
|
939
|
+
# Docker image or the task definition. You must also specify a
|
940
|
+
# container name.
|
925
941
|
# @return [Array<Types::KeyValuePair>]
|
926
942
|
#
|
927
943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerOverride AWS API Documentation
|
@@ -1137,7 +1153,7 @@ module Aws::ECS
|
|
1137
1153
|
#
|
1138
1154
|
# @!attribute [rw] cluster
|
1139
1155
|
# The short name or full Amazon Resource Name (ARN) of the cluster
|
1140
|
-
# that contains the resource to
|
1156
|
+
# that contains the resource to delete attributes. If you do not
|
1141
1157
|
# specify a cluster, the default cluster is assumed.
|
1142
1158
|
# @return [String]
|
1143
1159
|
#
|
@@ -1208,8 +1224,9 @@ module Aws::ECS
|
|
1208
1224
|
# }
|
1209
1225
|
#
|
1210
1226
|
# @!attribute [rw] cluster
|
1211
|
-
# The name
|
1212
|
-
# not specify a cluster,
|
1227
|
+
# The short name or full Amazon Resource Name (ARN) of the cluster
|
1228
|
+
# that hosts the service to delete. If you do not specify a cluster,
|
1229
|
+
# the default cluster is assumed.
|
1213
1230
|
# @return [String]
|
1214
1231
|
#
|
1215
1232
|
# @!attribute [rw] service
|
@@ -1427,9 +1444,9 @@ module Aws::ECS
|
|
1427
1444
|
# }
|
1428
1445
|
#
|
1429
1446
|
# @!attribute [rw] clusters
|
1430
|
-
# A
|
1431
|
-
#
|
1432
|
-
#
|
1447
|
+
# A list of up to 100 cluster names or full cluster Amazon Resource
|
1448
|
+
# Name (ARN) entries. If you do not specify a cluster, the default
|
1449
|
+
# cluster is assumed.
|
1433
1450
|
# @return [Array<String>]
|
1434
1451
|
#
|
1435
1452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeClustersRequest AWS API Documentation
|
@@ -1470,8 +1487,8 @@ module Aws::ECS
|
|
1470
1487
|
# @return [String]
|
1471
1488
|
#
|
1472
1489
|
# @!attribute [rw] container_instances
|
1473
|
-
# A
|
1474
|
-
#
|
1490
|
+
# A list of container instance IDs or full Amazon Resource Name (ARN)
|
1491
|
+
# entries.
|
1475
1492
|
# @return [Array<String>]
|
1476
1493
|
#
|
1477
1494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeContainerInstancesRequest AWS API Documentation
|
@@ -1507,8 +1524,9 @@ module Aws::ECS
|
|
1507
1524
|
# }
|
1508
1525
|
#
|
1509
1526
|
# @!attribute [rw] cluster
|
1510
|
-
# The name
|
1511
|
-
# do not specify a cluster, the
|
1527
|
+
# The short name or full Amazon Resource Name (ARN)the cluster that
|
1528
|
+
# hosts the service to describe. If you do not specify a cluster, the
|
1529
|
+
# default cluster is assumed.
|
1512
1530
|
# @return [String]
|
1513
1531
|
#
|
1514
1532
|
# @!attribute [rw] services
|
@@ -1587,8 +1605,8 @@ module Aws::ECS
|
|
1587
1605
|
# @return [String]
|
1588
1606
|
#
|
1589
1607
|
# @!attribute [rw] tasks
|
1590
|
-
# A
|
1591
|
-
#
|
1608
|
+
# A list of up to 100 task IDs or full Amazon Resource Name (ARN)
|
1609
|
+
# entries.
|
1592
1610
|
# @return [Array<String>]
|
1593
1611
|
#
|
1594
1612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTasksRequest AWS API Documentation
|
@@ -1634,7 +1652,8 @@ module Aws::ECS
|
|
1634
1652
|
# @return [String]
|
1635
1653
|
#
|
1636
1654
|
# @!attribute [rw] cluster
|
1637
|
-
# The
|
1655
|
+
# The short name or full Amazon Resource Name (ARN) of the cluster
|
1656
|
+
# that the container instance belongs to.
|
1638
1657
|
# @return [String]
|
1639
1658
|
#
|
1640
1659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DiscoverPollEndpointRequest AWS API Documentation
|
@@ -1967,11 +1986,12 @@ module Aws::ECS
|
|
1967
1986
|
# @return [Integer]
|
1968
1987
|
#
|
1969
1988
|
# @!attribute [rw] status
|
1970
|
-
#
|
1971
|
-
# `
|
1972
|
-
#
|
1973
|
-
#
|
1974
|
-
#
|
1989
|
+
# Filters the container instances by status. For example, if you
|
1990
|
+
# specify the `DRAINING` status, the results include only container
|
1991
|
+
# instances that have been set to `DRAINING` using
|
1992
|
+
# UpdateContainerInstancesState. If you do not specify this parameter,
|
1993
|
+
# the default is to include container instances set to `ACTIVE` and
|
1994
|
+
# `DRAINING`.
|
1975
1995
|
# @return [String]
|
1976
1996
|
#
|
1977
1997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListContainerInstancesRequest AWS API Documentation
|
@@ -2398,7 +2418,7 @@ module Aws::ECS
|
|
2398
2418
|
# @return [String]
|
2399
2419
|
#
|
2400
2420
|
# @!attribute [rw] load_balancer_name
|
2401
|
-
# The name of
|
2421
|
+
# The name of a Classic load balancer.
|
2402
2422
|
# @return [String]
|
2403
2423
|
#
|
2404
2424
|
# @!attribute [rw] container_name
|
@@ -3991,8 +4011,8 @@ module Aws::ECS
|
|
3991
4011
|
# @return [String]
|
3992
4012
|
#
|
3993
4013
|
# @!attribute [rw] container_instances
|
3994
|
-
# A
|
3995
|
-
#
|
4014
|
+
# A list of container instance IDs or full Amazon Resource Name (ARN)
|
4015
|
+
# entries.
|
3996
4016
|
# @return [Array<String>]
|
3997
4017
|
#
|
3998
4018
|
# @!attribute [rw] status
|
@@ -4165,7 +4185,8 @@ module Aws::ECS
|
|
4165
4185
|
include Aws::Structure
|
4166
4186
|
end
|
4167
4187
|
|
4168
|
-
# Details on a data volume from another container
|
4188
|
+
# Details on a data volume from another container in the same task
|
4189
|
+
# definition.
|
4169
4190
|
#
|
4170
4191
|
# @note When making an API call, you may pass VolumeFrom
|
4171
4192
|
# data as a hash:
|
@@ -4176,7 +4197,8 @@ module Aws::ECS
|
|
4176
4197
|
# }
|
4177
4198
|
#
|
4178
4199
|
# @!attribute [rw] source_container
|
4179
|
-
# The name of
|
4200
|
+
# The name of another container within the same task definition to
|
4201
|
+
# mount volumes from.
|
4180
4202
|
# @return [String]
|
4181
4203
|
#
|
4182
4204
|
# @!attribute [rw] read_only
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ecs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|