aws-sdk-ecs 1.8.0 → 1.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 682c486bafde5b6da76fbf35b1f8b84efa5e155e
4
- data.tar.gz: 92653c85f6ff86dd6a1423db69443583288539c4
3
+ metadata.gz: 7b5bbd5360e80d983c67d953bc5e90b71a046095
4
+ data.tar.gz: 06fd905b2ef60bfaa340b0d2b9a6cd60afce19bb
5
5
  SHA512:
6
- metadata.gz: 5965442af2109ea318880108f245b65d5b8be10cef1e462af0a358f540bc938145456e076527da85203b373c342fbbd142da778d47d2fedb1bd7b459441d9ade
7
- data.tar.gz: 2c6f665afcf1e1dd5e82beb9fe3400593ffa0b7f30f08c88140b2f727eda0199e3b3ac21647f5368708d4c90ca622e57ac49276e7889d640b3b0d3fa3adbd270
6
+ metadata.gz: 01c359e0886b2f64073992ac0c86cbb0bde13ca36551ef15fbe949cc58001052b53cfc1bcd99798fe9d085e5f13d92b10f7ff98a5abba6b044b4e67f143eddf4
7
+ data.tar.gz: 806333700ba5502586e30b830cc9d7686a6be1f6d82011071270ae14986ce97ad131134329ab68331eafdfa23a7727aee74f429d189b0b117ab4682f4d5c5f89
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-ecs/customizations'
43
43
  # @service
44
44
  module Aws::ECS
45
45
 
46
- GEM_VERSION = '1.8.0'
46
+ GEM_VERSION = '1.9.0'
47
47
 
48
48
  end
@@ -2909,8 +2909,11 @@ module Aws::ECS
2909
2909
  # defaults to `EC2`.
2910
2910
  #
2911
2911
  # @option params [String] :cpu
2912
- # The number of `cpu` units used by the task. If using the EC2 launch
2913
- # type, this field is optional and any value can be used.
2912
+ # The number of CPU units used by the task. It can be expressed as an
2913
+ # integer using CPU units, for example `1024`, or as a string using
2914
+ # vCPUs, for example `1 vCPU` or `1 vcpu`, in a task definition but will
2915
+ # be converted to an integer indicating the CPU units when the task
2916
+ # definition is registered.
2914
2917
  #
2915
2918
  # <note markdown="1"> Task-level CPU and memory parameters are ignored for Windows
2916
2919
  # containers. We recommend specifying container-level resources for
@@ -2918,26 +2921,34 @@ module Aws::ECS
2918
2921
  #
2919
2922
  # </note>
2920
2923
  #
2921
- # If you are using the Fargate launch type, this field is required and
2922
- # you must use one of the following values, which determines your range
2923
- # of valid values for the `memory` parameter:
2924
+ # If using the EC2 launch type, this field is optional. Supported values
2925
+ # are between `128` CPU units (`0.125` vCPUs) and `10240` CPU units
2926
+ # (`10` vCPUs).
2924
2927
  #
2925
- # * 256 (.25 vCPU) - Available `memory` values: 0.5GB, 1GB, 2GB
2928
+ # If using the Fargate launch type, this field is required and you must
2929
+ # use one of the following values, which determines your range of
2930
+ # supported values for the `memory` parameter:
2926
2931
  #
2927
- # * 512 (.5 vCPU) - Available `memory` values: 1GB, 2GB, 3GB, 4GB
2932
+ # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5GB), 1024 (1GB),
2933
+ # 2048 (2GB)
2928
2934
  #
2929
- # * 1024 (1 vCPU) - Available `memory` values: 2GB, 3GB, 4GB, 5GB, 6GB,
2930
- # 7GB, 8GB
2935
+ # * 512 (.5 vCPU) - Available `memory` values: 1024 (1GB), 2048 (2GB),
2936
+ # 3072 (3GB), 4096 (4GB)
2931
2937
  #
2932
- # * 2048 (2 vCPU) - Available `memory` values: Between 4GB and 16GB in
2933
- # 1GB increments
2938
+ # * 1024 (1 vCPU) - Available `memory` values: 2048 (2GB), 3072 (3GB),
2939
+ # 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168 (7GB), 8192 (8GB)
2934
2940
  #
2935
- # * 4096 (4 vCPU) - Available `memory` values: Between 8GB and 30GB in
2936
- # 1GB increments
2941
+ # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4GB) and
2942
+ # 16384 (16GB) in increments of 1024 (1GB)
2943
+ #
2944
+ # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8GB) and
2945
+ # 30720 (30GB) in increments of 1024 (1GB)
2937
2946
  #
2938
2947
  # @option params [String] :memory
2939
- # The amount (in MiB) of memory used by the task. If using the EC2
2940
- # launch type, this field is optional and any value can be used.
2948
+ # The amount of memory (in MiB) used by the task. It can be expressed as
2949
+ # an integer using MiB, for example `1024`, or as a string using GB, for
2950
+ # example `1GB` or `1 GB`, in a task definition but will be converted to
2951
+ # an integer indicating the MiB when the task definition is registered.
2941
2952
  #
2942
2953
  # <note markdown="1"> Task-level CPU and memory parameters are ignored for Windows
2943
2954
  # containers. We recommend specifying container-level resources for
@@ -2945,22 +2956,26 @@ module Aws::ECS
2945
2956
  #
2946
2957
  # </note>
2947
2958
  #
2948
- # If you are using the Fargate launch type, this field is required and
2949
- # you must use one of the following values, which determines your range
2950
- # of valid values for the `cpu` parameter:
2959
+ # If using the EC2 launch type, this field is optional.
2960
+ #
2961
+ # If using the Fargate launch type, this field is required and you must
2962
+ # use one of the following values, which determines your range of
2963
+ # supported values for the `cpu` parameter:
2951
2964
  #
2952
- # * 0\.5GB, 1GB, 2GB - Available `cpu` values: 256 (.25 vCPU)
2965
+ # * 512 (0.5GB), 1024 (1GB), 2048 (2GB) - Available `cpu` values: 256
2966
+ # (.25 vCPU)
2953
2967
  #
2954
- # * 1GB, 2GB, 3GB, 4GB - Available `cpu` values: 512 (.5 vCPU)
2968
+ # * 1024 (1GB), 2048 (2GB), 3072 (3GB), 4096 (4GB) - Available `cpu`
2969
+ # values: 512 (.5 vCPU)
2955
2970
  #
2956
- # * 2GB, 3GB, 4GB, 5GB, 6GB, 7GB, 8GB - Available `cpu` values: 1024 (1
2957
- # vCPU)
2971
+ # * 2048 (2GB), 3072 (3GB), 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168
2972
+ # (7GB), 8192 (8GB) - Available `cpu` values: 1024 (1 vCPU)
2958
2973
  #
2959
- # * Between 4GB and 16GB in 1GB increments - Available `cpu` values:
2960
- # 2048 (2 vCPU)
2974
+ # * Between 4096 (4GB) and 16384 (16GB) in increments of 1024 (1GB) -
2975
+ # Available `cpu` values: 2048 (2 vCPU)
2961
2976
  #
2962
- # * Between 8GB and 30GB in 1GB increments - Available `cpu` values:
2963
- # 4096 (4 vCPU)
2977
+ # * Between 8192 (8GB) and 30720 (30GB) in increments of 1024 (1GB) -
2978
+ # Available `cpu` values: 4096 (4 vCPU)
2964
2979
  #
2965
2980
  # @return [Types::RegisterTaskDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2966
2981
  #
@@ -4296,7 +4311,8 @@ module Aws::ECS
4296
4311
  # The platform version you want to update your service to run.
4297
4312
  #
4298
4313
  # @option params [Boolean] :force_new_deployment
4299
- # Whether or not to force a new deployment of the service.
4314
+ # Whether or not to force a new deployment of the service. By default,
4315
+ # `--no-force-new-deployment` is assumed unless specified otherwise.
4300
4316
  #
4301
4317
  # @option params [Integer] :health_check_grace_period_seconds
4302
4318
  # The period of time, in seconds, that the Amazon ECS service scheduler
@@ -4439,7 +4455,7 @@ module Aws::ECS
4439
4455
  params: params,
4440
4456
  config: config)
4441
4457
  context[:gem_name] = 'aws-sdk-ecs'
4442
- context[:gem_version] = '1.8.0'
4458
+ context[:gem_version] = '1.9.0'
4443
4459
  Seahorse::Client::Request.new(handlers, context)
4444
4460
  end
4445
4461
 
@@ -395,6 +395,11 @@ module Aws::ECS
395
395
  # container][1] section of the [Docker Remote API][2] and the `IMAGE`
396
396
  # parameter of [docker run][3].
397
397
  #
398
+ # * When a new task starts, the Amazon ECS container agent pulls the
399
+ # latest version of the specified image and tag for the container to
400
+ # use. However, subsequent updates to a repository image are not
401
+ # propagated to already running tasks.
402
+ #
398
403
  # * Images in Amazon ECR repositories can be specified by either using
399
404
  # the full `registry/repository:tag` or
400
405
  # `registry/repository@digest`. For example,
@@ -730,8 +735,7 @@ module Aws::ECS
730
735
  # Linux-specific modifications that are applied to the container, such
731
736
  # as Linux KernelCapabilities.
732
737
  #
733
- # <note markdown="1"> This parameter is not supported for Windows containers or tasks
734
- # using the Fargate launch type.
738
+ # <note markdown="1"> This parameter is not supported for Windows containers.
735
739
  #
736
740
  # </note>
737
741
  # @return [Types::LinuxParameters]
@@ -2234,6 +2238,11 @@ module Aws::ECS
2234
2238
  # `CapAdd` in the [Create a container][1] section of the [Docker
2235
2239
  # Remote API][2] and the `--cap-add` option to [docker run][3].
2236
2240
  #
2241
+ # <note markdown="1"> If you are using tasks that use the Fargate launch type, the `add`
2242
+ # parameter is not supported.
2243
+ #
2244
+ # </note>
2245
+ #
2237
2246
  # Valid values: `"ALL" | "AUDIT_CONTROL" | "AUDIT_WRITE" |
2238
2247
  # "BLOCK_SUSPEND" | "CHOWN" | "DAC_OVERRIDE" | "DAC_READ_SEARCH" |
2239
2248
  # "FOWNER" | "FSETID" | "IPC_LOCK" | "IPC_OWNER" | "KILL" | "LEASE" |
@@ -2334,6 +2343,12 @@ module Aws::ECS
2334
2343
  # @!attribute [rw] capabilities
2335
2344
  # The Linux capabilities for the container that are added to or
2336
2345
  # dropped from the default configuration provided by Docker.
2346
+ #
2347
+ # <note markdown="1"> If you are using tasks that use the Fargate launch type,
2348
+ # `capabilities` is supported but the `add` parameter is not
2349
+ # supported.
2350
+ #
2351
+ # </note>
2337
2352
  # @return [Types::KernelCapabilities]
2338
2353
  #
2339
2354
  # @!attribute [rw] devices
@@ -2341,6 +2356,11 @@ module Aws::ECS
2341
2356
  # `Devices` in the [Create a container][1] section of the [Docker
2342
2357
  # Remote API][2] and the `--device` option to [docker run][3].
2343
2358
  #
2359
+ # <note markdown="1"> If you are using tasks that use the Fargate launch type, the
2360
+ # `devices` parameter is not supported.
2361
+ #
2362
+ # </note>
2363
+ #
2344
2364
  #
2345
2365
  #
2346
2366
  # [1]: https://docs.docker.com/engine/reference/api/docker_remote_api_v1.27/#create-a-container
@@ -3745,8 +3765,11 @@ module Aws::ECS
3745
3765
  # @return [Array<String>]
3746
3766
  #
3747
3767
  # @!attribute [rw] cpu
3748
- # The number of `cpu` units used by the task. If using the EC2 launch
3749
- # type, this field is optional and any value can be used.
3768
+ # The number of CPU units used by the task. It can be expressed as an
3769
+ # integer using CPU units, for example `1024`, or as a string using
3770
+ # vCPUs, for example `1 vCPU` or `1 vcpu`, in a task definition but
3771
+ # will be converted to an integer indicating the CPU units when the
3772
+ # task definition is registered.
3750
3773
  #
3751
3774
  # <note markdown="1"> Task-level CPU and memory parameters are ignored for Windows
3752
3775
  # containers. We recommend specifying container-level resources for
@@ -3754,27 +3777,36 @@ module Aws::ECS
3754
3777
  #
3755
3778
  # </note>
3756
3779
  #
3757
- # If you are using the Fargate launch type, this field is required and
3758
- # you must use one of the following values, which determines your
3759
- # range of valid values for the `memory` parameter:
3780
+ # If using the EC2 launch type, this field is optional. Supported
3781
+ # values are between `128` CPU units (`0.125` vCPUs) and `10240` CPU
3782
+ # units (`10` vCPUs).
3760
3783
  #
3761
- # * 256 (.25 vCPU) - Available `memory` values: 0.5GB, 1GB, 2GB
3784
+ # If using the Fargate launch type, this field is required and you
3785
+ # must use one of the following values, which determines your range of
3786
+ # supported values for the `memory` parameter:
3762
3787
  #
3763
- # * 512 (.5 vCPU) - Available `memory` values: 1GB, 2GB, 3GB, 4GB
3788
+ # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5GB), 1024
3789
+ # (1GB), 2048 (2GB)
3764
3790
  #
3765
- # * 1024 (1 vCPU) - Available `memory` values: 2GB, 3GB, 4GB, 5GB,
3766
- # 6GB, 7GB, 8GB
3791
+ # * 512 (.5 vCPU) - Available `memory` values: 1024 (1GB), 2048 (2GB),
3792
+ # 3072 (3GB), 4096 (4GB)
3767
3793
  #
3768
- # * 2048 (2 vCPU) - Available `memory` values: Between 4GB and 16GB in
3769
- # 1GB increments
3794
+ # * 1024 (1 vCPU) - Available `memory` values: 2048 (2GB), 3072 (3GB),
3795
+ # 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168 (7GB), 8192 (8GB)
3770
3796
  #
3771
- # * 4096 (4 vCPU) - Available `memory` values: Between 8GB and 30GB in
3772
- # 1GB increments
3797
+ # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4GB) and
3798
+ # 16384 (16GB) in increments of 1024 (1GB)
3799
+ #
3800
+ # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8GB) and
3801
+ # 30720 (30GB) in increments of 1024 (1GB)
3773
3802
  # @return [String]
3774
3803
  #
3775
3804
  # @!attribute [rw] memory
3776
- # The amount (in MiB) of memory used by the task. If using the EC2
3777
- # launch type, this field is optional and any value can be used.
3805
+ # The amount of memory (in MiB) used by the task. It can be expressed
3806
+ # as an integer using MiB, for example `1024`, or as a string using
3807
+ # GB, for example `1GB` or `1 GB`, in a task definition but will be
3808
+ # converted to an integer indicating the MiB when the task definition
3809
+ # is registered.
3778
3810
  #
3779
3811
  # <note markdown="1"> Task-level CPU and memory parameters are ignored for Windows
3780
3812
  # containers. We recommend specifying container-level resources for
@@ -3782,22 +3814,26 @@ module Aws::ECS
3782
3814
  #
3783
3815
  # </note>
3784
3816
  #
3785
- # If you are using the Fargate launch type, this field is required and
3786
- # you must use one of the following values, which determines your
3787
- # range of valid values for the `cpu` parameter:
3817
+ # If using the EC2 launch type, this field is optional.
3788
3818
  #
3789
- # * 0\.5GB, 1GB, 2GB - Available `cpu` values: 256 (.25 vCPU)
3819
+ # If using the Fargate launch type, this field is required and you
3820
+ # must use one of the following values, which determines your range of
3821
+ # supported values for the `cpu` parameter:
3790
3822
  #
3791
- # * 1GB, 2GB, 3GB, 4GB - Available `cpu` values: 512 (.5 vCPU)
3823
+ # * 512 (0.5GB), 1024 (1GB), 2048 (2GB) - Available `cpu` values: 256
3824
+ # (.25 vCPU)
3792
3825
  #
3793
- # * 2GB, 3GB, 4GB, 5GB, 6GB, 7GB, 8GB - Available `cpu` values: 1024
3794
- # (1 vCPU)
3826
+ # * 1024 (1GB), 2048 (2GB), 3072 (3GB), 4096 (4GB) - Available `cpu`
3827
+ # values: 512 (.5 vCPU)
3795
3828
  #
3796
- # * Between 4GB and 16GB in 1GB increments - Available `cpu` values:
3797
- # 2048 (2 vCPU)
3829
+ # * 2048 (2GB), 3072 (3GB), 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168
3830
+ # (7GB), 8192 (8GB) - Available `cpu` values: 1024 (1 vCPU)
3798
3831
  #
3799
- # * Between 8GB and 30GB in 1GB increments - Available `cpu` values:
3800
- # 4096 (4 vCPU)
3832
+ # * Between 4096 (4GB) and 16384 (16GB) in increments of 1024 (1GB) -
3833
+ # Available `cpu` values: 2048 (2 vCPU)
3834
+ #
3835
+ # * Between 8192 (8GB) and 30720 (30GB) in increments of 1024 (1GB) -
3836
+ # Available `cpu` values: 4096 (4 vCPU)
3801
3837
  # @return [String]
3802
3838
  #
3803
3839
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterTaskDefinitionRequest AWS API Documentation
@@ -4592,45 +4628,63 @@ module Aws::ECS
4592
4628
  # @return [String]
4593
4629
  #
4594
4630
  # @!attribute [rw] cpu
4595
- # The number of `cpu` units used by the task. If using the EC2 launch
4596
- # type, this field is optional and any value can be used. If using the
4597
- # Fargate launch type, this field is required and you must use one of
4598
- # the following values, which determines your range of valid values
4599
- # for the `memory` parameter:
4631
+ # The number of CPU units used by the task. It can be expressed as an
4632
+ # integer using CPU units, for example `1024`, or as a string using
4633
+ # vCPUs, for example `1 vCPU` or `1 vcpu`, in a task definition but
4634
+ # will be converted to an integer indicating the CPU units when the
4635
+ # task definition is registered.
4636
+ #
4637
+ # If using the EC2 launch type, this field is optional. Supported
4638
+ # values are between `128` CPU units (`0.125` vCPUs) and `10240` CPU
4639
+ # units (`10` vCPUs).
4640
+ #
4641
+ # If using the Fargate launch type, this field is required and you
4642
+ # must use one of the following values, which determines your range of
4643
+ # supported values for the `memory` parameter:
4600
4644
  #
4601
- # * 256 (.25 vCPU) - Available `memory` values: 0.5GB, 1GB, 2GB
4645
+ # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5GB), 1024
4646
+ # (1GB), 2048 (2GB)
4602
4647
  #
4603
- # * 512 (.5 vCPU) - Available `memory` values: 1GB, 2GB, 3GB, 4GB
4648
+ # * 512 (.5 vCPU) - Available `memory` values: 1024 (1GB), 2048 (2GB),
4649
+ # 3072 (3GB), 4096 (4GB)
4604
4650
  #
4605
- # * 1024 (1 vCPU) - Available `memory` values: 2GB, 3GB, 4GB, 5GB,
4606
- # 6GB, 7GB, 8GB
4651
+ # * 1024 (1 vCPU) - Available `memory` values: 2048 (2GB), 3072 (3GB),
4652
+ # 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168 (7GB), 8192 (8GB)
4607
4653
  #
4608
- # * 2048 (2 vCPU) - Available `memory` values: Between 4GB and 16GB in
4609
- # 1GB increments
4654
+ # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4GB) and
4655
+ # 16384 (16GB) in increments of 1024 (1GB)
4610
4656
  #
4611
- # * 4096 (4 vCPU) - Available `memory` values: Between 8GB and 30GB in
4612
- # 1GB increments
4657
+ # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8GB) and
4658
+ # 30720 (30GB) in increments of 1024 (1GB)
4613
4659
  # @return [String]
4614
4660
  #
4615
4661
  # @!attribute [rw] memory
4616
- # The amount (in MiB) of memory used by the task. If using the EC2
4617
- # launch type, this field is optional and any value can be used. If
4618
- # using the Fargate launch type, this field is required and you must
4619
- # use one of the following values, which determines your range of
4620
- # valid values for the `cpu` parameter:
4662
+ # The amount of memory (in MiB) used by the task. It can be expressed
4663
+ # as an integer using MiB, for example `1024`, or as a string using
4664
+ # GB, for example `1GB` or `1 GB`, in a task definition but will be
4665
+ # converted to an integer indicating the MiB when the task definition
4666
+ # is registered.
4667
+ #
4668
+ # If using the EC2 launch type, this field is optional.
4669
+ #
4670
+ # If using the Fargate launch type, this field is required and you
4671
+ # must use one of the following values, which determines your range of
4672
+ # supported values for the `cpu` parameter:
4621
4673
  #
4622
- # * 0\.5GB, 1GB, 2GB - Available `cpu` values: 256 (.25 vCPU)
4674
+ # * 512 (0.5GB), 1024 (1GB), 2048 (2GB) - Available `cpu` values: 256
4675
+ # (.25 vCPU)
4623
4676
  #
4624
- # * 1GB, 2GB, 3GB, 4GB - Available `cpu` values: 512 (.5 vCPU)
4677
+ # * 1024 (1GB), 2048 (2GB), 3072 (3GB), 4096 (4GB) - Available `cpu`
4678
+ # values: 512 (.5 vCPU)
4625
4679
  #
4626
- # * 2GB, 3GB, 4GB, 5GB, 6GB, 7GB, 8GB - Available `cpu` values: 1024
4627
- # (1 vCPU)
4680
+ # * 2048 (2GB), 3072 (3GB), 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168
4681
+ # (7GB), 8192 (8GB) - Available `cpu` values: 1024 (1 vCPU)
4628
4682
  #
4629
- # * Between 4GB and 16GB in 1GB increments - Available `cpu` values:
4630
- # 2048 (2 vCPU)
4683
+ # * Between 4096 (4GB) and 16384 (16GB) in increments of 1024 (1GB) -
4684
+ # Available `cpu` values: 2048 (2 vCPU)
4631
4685
  #
4632
- # * Between 8GB and 30GB in 1GB increments - Available `cpu` values:
4633
- # 4096 (4 vCPU)
4686
+ # * Between 8192 (8GB) and 30720 (30GB) in increments of 1024 (1GB) -
4687
+ # Available `cpu` values: 4096 (4 vCPU)
4634
4688
  # @return [String]
4635
4689
  #
4636
4690
  # @!attribute [rw] containers
@@ -4906,18 +4960,20 @@ module Aws::ECS
4906
4960
  # the following values, which determines your range of valid values
4907
4961
  # for the `memory` parameter:
4908
4962
  #
4909
- # * 256 (.25 vCPU) - Available `memory` values: 0.5GB, 1GB, 2GB
4963
+ # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5GB), 1024
4964
+ # (1GB), 2048 (2GB)
4910
4965
  #
4911
- # * 512 (.5 vCPU) - Available `memory` values: 1GB, 2GB, 3GB, 4GB
4966
+ # * 512 (.5 vCPU) - Available `memory` values: 1024 (1GB), 2048 (2GB),
4967
+ # 3072 (3GB), 4096 (4GB)
4912
4968
  #
4913
- # * 1024 (1 vCPU) - Available `memory` values: 2GB, 3GB, 4GB, 5GB,
4914
- # 6GB, 7GB, 8GB
4969
+ # * 1024 (1 vCPU) - Available `memory` values: 2048 (2GB), 3072 (3GB),
4970
+ # 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168 (7GB), 8192 (8GB)
4915
4971
  #
4916
- # * 2048 (2 vCPU) - Available `memory` values: Between 4GB and 16GB in
4917
- # 1GB increments
4972
+ # * 2048 (2 vCPU) - Available `memory` values: Between 4096 (4GB) and
4973
+ # 16384 (16GB) in increments of 1024 (1GB)
4918
4974
  #
4919
- # * 4096 (4 vCPU) - Available `memory` values: Between 8GB and 30GB in
4920
- # 1GB increments
4975
+ # * 4096 (4 vCPU) - Available `memory` values: Between 8192 (8GB) and
4976
+ # 30720 (30GB) in increments of 1024 (1GB)
4921
4977
  # @return [String]
4922
4978
  #
4923
4979
  # @!attribute [rw] memory
@@ -4927,18 +4983,20 @@ module Aws::ECS
4927
4983
  # use one of the following values, which determines your range of
4928
4984
  # valid values for the `cpu` parameter:
4929
4985
  #
4930
- # * 0\.5GB, 1GB, 2GB - Available `cpu` values: 256 (.25 vCPU)
4986
+ # * 512 (0.5GB), 1024 (1GB), 2048 (2GB) - Available `cpu` values: 256
4987
+ # (.25 vCPU)
4931
4988
  #
4932
- # * 1GB, 2GB, 3GB, 4GB - Available `cpu` values: 512 (.5 vCPU)
4989
+ # * 1024 (1GB), 2048 (2GB), 3072 (3GB), 4096 (4GB) - Available `cpu`
4990
+ # values: 512 (.5 vCPU)
4933
4991
  #
4934
- # * 2GB, 3GB, 4GB, 5GB, 6GB, 7GB, 8GB - Available `cpu` values: 1024
4935
- # (1 vCPU)
4992
+ # * 2048 (2GB), 3072 (3GB), 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168
4993
+ # (7GB), 8192 (8GB) - Available `cpu` values: 1024 (1 vCPU)
4936
4994
  #
4937
- # * Between 4GB and 16GB in 1GB increments - Available `cpu` values:
4938
- # 2048 (2 vCPU)
4995
+ # * Between 4096 (4GB) and 16384 (16GB) in increments of 1024 (1GB) -
4996
+ # Available `cpu` values: 2048 (2 vCPU)
4939
4997
  #
4940
- # * Between 8GB and 30GB in 1GB increments - Available `cpu` values:
4941
- # 4096 (4 vCPU)
4998
+ # * Between 8192 (8GB) and 30720 (30GB) in increments of 1024 (1GB) -
4999
+ # Available `cpu` values: 4096 (4 vCPU)
4942
5000
  # @return [String]
4943
5001
  #
4944
5002
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskDefinition AWS API Documentation
@@ -5257,7 +5315,8 @@ module Aws::ECS
5257
5315
  # @return [String]
5258
5316
  #
5259
5317
  # @!attribute [rw] force_new_deployment
5260
- # Whether or not to force a new deployment of the service.
5318
+ # Whether or not to force a new deployment of the service. By default,
5319
+ # `--no-force-new-deployment` is assumed unless specified otherwise.
5261
5320
  # @return [Boolean]
5262
5321
  #
5263
5322
  # @!attribute [rw] health_check_grace_period_seconds
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.8.0
4
+ version: 1.9.0
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-12-22 00:00:00.000000000 Z
11
+ date: 2018-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core