aws-sdk-ecs 1.185.0 → 1.187.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
  SHA256:
3
- metadata.gz: 38b36fd18655c03f5aaa5e0fc9480552102fbd86936d7f99c5df56e07bc3410d
4
- data.tar.gz: 03d61e712ac92d82f613cd2149524e5e00ca638962e6fc35e167149851f2716d
3
+ metadata.gz: '09c619b78988ca5a2fa649f490f1cf3aecc5b3c1eed42080433dbd9772395b3c'
4
+ data.tar.gz: 4b2518777e4fb53f18a1888d685757a7eae6b3e1dc14ffaac12394079526b171
5
5
  SHA512:
6
- metadata.gz: f29dd5c74908e40eda0c548c493c07390c5dbec200e549de3c3d2c14e7b1e20705db1727aa5fb27ac5f8b1c61642a59f1f932503b20d6aa21d2de075262f9c00
7
- data.tar.gz: b39f6ef29070ec0be6325bf1552e8a57fa549dbda4fab10b27b8002503fb20317d19972c7e832ac831212cce0f872749c3c1377e51b1d0cfab82f3a3e8dbd3ec
6
+ metadata.gz: 00f4e4804053306a2c19d3d9845eb2ae858b4a476dfec8db1992781f453715b034e8b23c272705dcd0ee689a78cfe9e2500b19440661cf3e22db037c145fc352
7
+ data.tar.gz: 0d97846575b79ce159643ab3f981b4d9aca6a5a93fdf5a8fdddf1f1fcf45a62d7a5dafe8133f66e396f9ab69d6370a6a18f36a09cf18a1e383c1b17574650c7a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.187.0 (2025-04-25)
5
+ ------------------
6
+
7
+ * Feature - Documentation only release for Amazon ECS.
8
+
9
+ 1.186.0 (2025-04-24)
10
+ ------------------
11
+
12
+ * Feature - Documentation only release for Amazon ECS
13
+
4
14
  1.185.0 (2025-04-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.185.0
1
+ 1.187.0
@@ -7891,37 +7891,13 @@ module Aws::ECS
7891
7891
  # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
7892
7892
  # specify a value, the parameter is ignored.
7893
7893
  #
7894
- # If you're using the Fargate launch type, this field is required and
7895
- # you must use one of the following values, which determines your range
7896
- # of supported values for the `memory` parameter:
7897
- #
7898
- # The CPU units cannot be less than 1 vCPU when you use Windows
7899
- # containers on Fargate.
7900
- #
7901
- # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5 GB), 1024 (1
7902
- # GB), 2048 (2 GB)
7903
- #
7904
- # * 512 (.5 vCPU) - Available `memory` values: 1024 (1 GB), 2048 (2 GB),
7905
- # 3072 (3 GB), 4096 (4 GB)
7906
- #
7907
- # * 1024 (1 vCPU) - Available `memory` values: 2048 (2 GB), 3072 (3 GB),
7908
- # 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)
7909
- #
7910
- # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384 (16
7911
- # GB) in increments of 1024 (1 GB)
7912
- #
7913
- # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720 (30
7914
- # GB) in increments of 1024 (1 GB)
7915
- #
7916
- # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
7917
- # increments
7894
+ # This field is required for Fargate. For information about the valid
7895
+ # values, see [Task size][1] in the *Amazon Elastic Container Service
7896
+ # Developer Guide*.
7918
7897
  #
7919
- # This option requires Linux platform `1.4.0` or later.
7920
7898
  #
7921
- # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8 GB
7922
- # increments
7923
7899
  #
7924
- # This option requires Linux platform `1.4.0` or later.
7900
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size
7925
7901
  #
7926
7902
  # @option params [String] :memory
7927
7903
  # The amount of memory (in MiB) used by the task. It can be expressed as
@@ -8658,6 +8634,19 @@ module Aws::ECS
8658
8634
  # algorithm starting with a couple of seconds of wait time, and
8659
8635
  # increase gradually up to about five minutes of wait time.
8660
8636
  #
8637
+ # If you get a `ConflictException` error, the `RunTask` request could
8638
+ # not be processed due to conflicts. The provided `clientToken` is
8639
+ # already in use with a different `RunTask` request. The `resourceIds`
8640
+ # are the existing task ARNs which are already associated with the
8641
+ # `clientToken`.
8642
+ #
8643
+ # To fix this issue:
8644
+ #
8645
+ # * Run `RunTask` with a unique `clientToken`.
8646
+ #
8647
+ # * Run `RunTask` with the `clientToken` and the original set of
8648
+ # parameters
8649
+ #
8661
8650
  #
8662
8651
  #
8663
8652
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/scheduling_tasks.html
@@ -9625,28 +9614,17 @@ module Aws::ECS
9625
9614
 
9626
9615
  # Stops an ongoing service deployment.
9627
9616
  #
9628
- # The following stop types are avaiable:
9629
- #
9630
- # * ROLLBACK - This option rolls back the service deployment to the
9631
- # previous service revision.
9632
- #
9633
- # You can use this option even if you didn't configure the service
9634
- # deployment for the rollback option.
9617
+ # <note markdown="1"> StopServiceDeployment isn't currently supported.
9635
9618
  #
9636
- # For more information, see [Stopping Amazon ECS service deployments][1]
9637
- # in the *Amazon Elastic Container Service Developer Guide*.
9638
- #
9639
- #
9640
- #
9641
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/stop-service-deployment.html
9619
+ # </note>
9642
9620
  #
9643
9621
  # @option params [required, String] :service_deployment_arn
9644
9622
  # The ARN of the service deployment that you want to stop.
9645
9623
  #
9646
9624
  # @option params [String] :stop_type
9647
- # How you want Amazon ECS to stop the task.
9625
+ # How you want Amazon ECS to stop the service.
9648
9626
  #
9649
- # The valid values are `ROLLBACK`.
9627
+ # The ROLLBACK and ABORT stopType aren't supported.
9650
9628
  #
9651
9629
  # @return [Types::StopServiceDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9652
9630
  #
@@ -12533,7 +12511,7 @@ module Aws::ECS
12533
12511
  tracer: tracer
12534
12512
  )
12535
12513
  context[:gem_name] = 'aws-sdk-ecs'
12536
- context[:gem_version] = '1.185.0'
12514
+ context[:gem_version] = '1.187.0'
12537
12515
  Seahorse::Client::Request.new(handlers, context)
12538
12516
  end
12539
12517
 
@@ -932,17 +932,8 @@ module Aws::ECS
932
932
  include Aws::Structure
933
933
  end
934
934
 
935
- # The `RunTask` request could not be processed due to conflicts. The
936
- # provided `clientToken` is already in use with a different `RunTask`
937
- # request. The `resourceIds` are the existing task ARNs which are
938
- # already associated with the `clientToken`.
939
- #
940
- # To fix this issue:
941
- #
942
- # * Run `RunTask` with a unique `clientToken`.
943
- #
944
- # * Run `RunTask` with the `clientToken` and the original set of
945
- # parameters
935
+ # The request could not be processed because of conflict in the current
936
+ # state of the resource.
946
937
  #
947
938
  # @!attribute [rw] resource_ids
948
939
  # The existing task ARNs which are already associated with the
@@ -8567,38 +8558,13 @@ module Aws::ECS
8567
8558
  # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
8568
8559
  # specify a value, the parameter is ignored.
8569
8560
  #
8570
- # If you're using the Fargate launch type, this field is required and
8571
- # you must use one of the following values, which determines your
8572
- # range of supported values for the `memory` parameter:
8573
- #
8574
- # The CPU units cannot be less than 1 vCPU when you use Windows
8575
- # containers on Fargate.
8576
- #
8577
- # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5 GB), 1024 (1
8578
- # GB), 2048 (2 GB)
8579
- #
8580
- # * 512 (.5 vCPU) - Available `memory` values: 1024 (1 GB), 2048 (2
8581
- # GB), 3072 (3 GB), 4096 (4 GB)
8582
- #
8583
- # * 1024 (1 vCPU) - Available `memory` values: 2048 (2 GB), 3072 (3
8584
- # GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
8585
- # GB)
8586
- #
8587
- # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
8588
- # (16 GB) in increments of 1024 (1 GB)
8589
- #
8590
- # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
8591
- # (30 GB) in increments of 1024 (1 GB)
8592
- #
8593
- # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
8594
- # increments
8561
+ # This field is required for Fargate. For information about the valid
8562
+ # values, see [Task size][1] in the *Amazon Elastic Container Service
8563
+ # Developer Guide*.
8595
8564
  #
8596
- # This option requires Linux platform `1.4.0` or later.
8597
8565
  #
8598
- # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
8599
- # GB increments
8600
8566
  #
8601
- # This option requires Linux platform `1.4.0` or later.
8567
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size
8602
8568
  # @return [String]
8603
8569
  #
8604
8570
  # @!attribute [rw] memory
@@ -11070,9 +11036,9 @@ module Aws::ECS
11070
11036
  # @return [String]
11071
11037
  #
11072
11038
  # @!attribute [rw] stop_type
11073
- # How you want Amazon ECS to stop the task.
11039
+ # How you want Amazon ECS to stop the service.
11074
11040
  #
11075
- # The valid values are `ROLLBACK`.
11041
+ # The ROLLBACK and ABORT stopType aren't supported.
11076
11042
  # @return [String]
11077
11043
  #
11078
11044
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopServiceDeploymentRequest AWS API Documentation
@@ -11577,38 +11543,13 @@ module Aws::ECS
11577
11543
  # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
11578
11544
  # specify a value, the parameter is ignored.
11579
11545
  #
11580
- # If you're using the Fargate launch type, this field is required.
11581
- # You must use one of the following values. These values determine the
11582
- # range of supported values for the `memory` parameter:
11583
- #
11584
- # The CPU units cannot be less than 1 vCPU when you use Windows
11585
- # containers on Fargate.
11586
- #
11587
- # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5 GB), 1024 (1
11588
- # GB), 2048 (2 GB)
11589
- #
11590
- # * 512 (.5 vCPU) - Available `memory` values: 1024 (1 GB), 2048 (2
11591
- # GB), 3072 (3 GB), 4096 (4 GB)
11592
- #
11593
- # * 1024 (1 vCPU) - Available `memory` values: 2048 (2 GB), 3072 (3
11594
- # GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
11595
- # GB)
11596
- #
11597
- # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
11598
- # (16 GB) in increments of 1024 (1 GB)
11599
- #
11600
- # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
11601
- # (30 GB) in increments of 1024 (1 GB)
11602
- #
11603
- # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
11604
- # increments
11546
+ # This field is required for Fargate. For information about the valid
11547
+ # values, see [Task size][1] in the *Amazon Elastic Container Service
11548
+ # Developer Guide*.
11605
11549
  #
11606
- # This option requires Linux platform `1.4.0` or later.
11607
11550
  #
11608
- # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
11609
- # GB increments
11610
11551
  #
11611
- # This option requires Linux platform `1.4.0` or later.
11552
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size
11612
11553
  # @return [String]
11613
11554
  #
11614
11555
  # @!attribute [rw] created_at
@@ -12092,35 +12033,15 @@ module Aws::ECS
12092
12033
  #
12093
12034
  # If you're using the EC2 launch type or the external launch type,
12094
12035
  # this field is optional. Supported values are between `128` CPU units
12095
- # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). The CPU units
12096
- # cannot be less than 1 vCPU when you use Windows containers on
12097
- # Fargate.
12036
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs).
12098
12037
  #
12099
- # * 256 (.25 vCPU) - Available `memory` values: 512 (0.5 GB), 1024 (1
12100
- # GB), 2048 (2 GB)
12101
- #
12102
- # * 512 (.5 vCPU) - Available `memory` values: 1024 (1 GB), 2048 (2
12103
- # GB), 3072 (3 GB), 4096 (4 GB)
12104
- #
12105
- # * 1024 (1 vCPU) - Available `memory` values: 2048 (2 GB), 3072 (3
12106
- # GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8
12107
- # GB)
12108
- #
12109
- # * 2048 (2 vCPU) - Available `memory` values: 4096 (4 GB) and 16384
12110
- # (16 GB) in increments of 1024 (1 GB)
12111
- #
12112
- # * 4096 (4 vCPU) - Available `memory` values: 8192 (8 GB) and 30720
12113
- # (30 GB) in increments of 1024 (1 GB)
12114
- #
12115
- # * 8192 (8 vCPU) - Available `memory` values: 16 GB and 60 GB in 4 GB
12116
- # increments
12038
+ # This field is required for Fargate. For information about the valid
12039
+ # values, see [Task size][1] in the *Amazon Elastic Container Service
12040
+ # Developer Guide*.
12117
12041
  #
12118
- # This option requires Linux platform `1.4.0` or later.
12119
12042
  #
12120
- # * 16384 (16vCPU) - Available `memory` values: 32GB and 120 GB in 8
12121
- # GB increments
12122
12043
  #
12123
- # This option requires Linux platform `1.4.0` or later.
12044
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size
12124
12045
  # @return [String]
12125
12046
  #
12126
12047
  # @!attribute [rw] memory
data/lib/aws-sdk-ecs.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECS
55
55
  autoload :EndpointProvider, 'aws-sdk-ecs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecs/endpoints'
57
57
 
58
- GEM_VERSION = '1.185.0'
58
+ GEM_VERSION = '1.187.0'
59
59
 
60
60
  end
61
61
 
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.185.0
4
+ version: 1.187.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: 2025-04-23 00:00:00.000000000 Z
11
+ date: 2025-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core