aws-sdk-ecs 1.138.0 → 1.139.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: 790a3a94d91437d16e4f629c589e1880ef1fbf831ab5ba1095d459abe10fab23
4
- data.tar.gz: 0d23237919cad844eacade43d22d9cd2e4f03ed006d5794ed2d8854346ad3171
3
+ metadata.gz: 97d3ecbfb0d705982ded1dae3b8da79ff665d900615950b1a286e6d9f1b55dcc
4
+ data.tar.gz: 75fafba54a7a246f7746121c4c9830ed7648c85c9e9d561ed12900aa7a5b4621
5
5
  SHA512:
6
- metadata.gz: eafa9caaaff0b2cad1fa5efcaa930dbc67b2129556fe3c1a367bc0ef9f799a627dd8bb8bfdb475e69784014a00c688a19172480f3608c952ba16286fb21e7ea5
7
- data.tar.gz: 488ce9ff95934600916da828b120ae3c0e3f3b32b36eefdd49da50b7ecaae9c33543bc5bc552fc28084d5ca071dc0d039eb0871002596e414f312853fd86f556
6
+ metadata.gz: 3dc386aa0f5b7aff424ea6c43cb83f2c2cfd981b8df356f7f0aec1a8029650bb367ea9482144e860e6ad14b1793dd458a10b1b2245011a7581eb24ceb7ca3c77
7
+ data.tar.gz: d9d2515bc8fbb7be791e632112a8cae1e15123f8a6bc4562401799b590f1c296606e8b81506f7651ab6aa3d29cf317e22f602e4ed435a2fa530d790ae37cd37a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.139.0 (2024-01-24)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon ECS.
8
+
4
9
  1.138.0 (2024-01-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.138.0
1
+ 1.139.0
@@ -1690,11 +1690,14 @@ module Aws::ECS
1690
1690
  # more information, see [Amazon ECS deployment types][1] in the *Amazon
1691
1691
  # Elastic Container Service Developer Guide*.
1692
1692
  #
1693
- # You can create a maximum of 5 tasks sets for a deployment.
1693
+ # For information about the maximum number of task sets and otther
1694
+ # quotas, see [Amazon ECS service quotas][2] in the *Amazon Elastic
1695
+ # Container Service Developer Guide*.
1694
1696
  #
1695
1697
  #
1696
1698
  #
1697
1699
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html
1700
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html
1698
1701
  #
1699
1702
  # @option params [required, String] :service
1700
1703
  # The short name or full Amazon Resource Name (ARN) of the service to
@@ -8085,8 +8088,7 @@ module Aws::ECS
8085
8088
  # An optional message specified when a task is stopped. For example, if
8086
8089
  # you're using a custom scheduler, you can use this parameter to
8087
8090
  # specify the reason for stopping the task here, and the message appears
8088
- # in subsequent DescribeTasks API operations on this task. Up to 255
8089
- # characters are allowed in this message.
8091
+ # in subsequent DescribeTasks API operations on this task.
8090
8092
  #
8091
8093
  # @return [Types::StopTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8092
8094
  #
@@ -10165,7 +10167,7 @@ module Aws::ECS
10165
10167
  params: params,
10166
10168
  config: config)
10167
10169
  context[:gem_name] = 'aws-sdk-ecs'
10168
- context[:gem_version] = '1.138.0'
10170
+ context[:gem_version] = '1.139.0'
10169
10171
  Seahorse::Client::Request.new(handlers, context)
10170
10172
  end
10171
10173
 
@@ -236,6 +236,8 @@ module Aws::ECS
236
236
  end
237
237
 
238
238
  # An object representing the networking details for a task or service.
239
+ # For example
240
+ # `awsvpcConfiguration=\{subnets=["subnet-12344321"],securityGroups=["sg-12344321"]\}`
239
241
  #
240
242
  # @!attribute [rw] subnets
241
243
  # The IDs of the subnets associated with the task or service. There's
@@ -1773,7 +1775,7 @@ module Aws::ECS
1773
1775
  # `nofile` resource limit parameter which Fargate overrides. The
1774
1776
  # `nofile` resource limit sets a restriction on the number of open
1775
1777
  # files that a container can use. The default `nofile` soft limit is
1776
- # `1024` and the default hard limit is `4096`.
1778
+ # `1024` and the default hard limit is `65535`.
1777
1779
  #
1778
1780
  # This parameter requires version 1.18 of the Docker Remote API or
1779
1781
  # greater on your container instance. To check the Docker Remote API
@@ -2023,10 +2025,15 @@ module Aws::ECS
2023
2025
  #
2024
2026
  # </note>
2025
2027
  #
2028
+ # For more information about how to create a container dependency, see
2029
+ # [Container dependency][3] in the *Amazon Elastic Container Service
2030
+ # Developer Guide*.
2031
+ #
2026
2032
  #
2027
2033
  #
2028
2034
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html
2029
2035
  # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html
2036
+ # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/example_task_definitions.html#example_task_definition-containerdependency
2030
2037
  #
2031
2038
  # @!attribute [rw] container_name
2032
2039
  # The name of a container.
@@ -3828,8 +3835,8 @@ module Aws::ECS
3828
3835
  # amount of time the service scheduler can wait for is determined by
3829
3836
  # the container health check settings.
3830
3837
  #
3831
- # For services are that *do* use a load balancer, the following should
3832
- # be noted:
3838
+ # For services that *do* use a load balancer, the following should be
3839
+ # noted:
3833
3840
  #
3834
3841
  # * If a task has no essential containers with a health check defined,
3835
3842
  # the service scheduler will wait for the load balancer target group
@@ -9228,7 +9235,8 @@ module Aws::ECS
9228
9235
  # @return [Types::TimeoutConfiguration]
9229
9236
  #
9230
9237
  # @!attribute [rw] tls
9231
- # An object that represents the configuration for Service Connect TLS.
9238
+ # A reference to an object that represents a Transport Layer Security
9239
+ # (TLS) configuration.
9232
9240
  # @return [Types::ServiceConnectTlsConfiguration]
9233
9241
  #
9234
9242
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ServiceConnectService AWS API Documentation
@@ -9887,8 +9895,7 @@ module Aws::ECS
9887
9895
  # An optional message specified when a task is stopped. For example,
9888
9896
  # if you're using a custom scheduler, you can use this parameter to
9889
9897
  # specify the reason for stopping the task here, and the message
9890
- # appears in subsequent DescribeTasks API operations on this task. Up
9891
- # to 255 characters are allowed in this message.
9898
+ # appears in subsequent DescribeTasks API operations on this task.
9892
9899
  # @return [String]
9893
9900
  #
9894
9901
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopTaskRequest AWS API Documentation
@@ -10505,20 +10512,6 @@ module Aws::ECS
10505
10512
  # For more information about stop code, see [Stopped tasks error
10506
10513
  # codes][1] in the *Amazon ECS User Guide*.
10507
10514
  #
10508
- # The following are valid values:
10509
- #
10510
- # * `TaskFailedToStart`
10511
- #
10512
- # * `EssentialContainerExited`
10513
- #
10514
- # * `UserInitiated`
10515
- #
10516
- # * `TerminationNotice`
10517
- #
10518
- # * `ServiceSchedulerInitiated`
10519
- #
10520
- # * `SpotInterruption`
10521
- #
10522
10515
  #
10523
10516
  #
10524
10517
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/userguide/stopped-task-error-codes.html
@@ -11729,7 +11722,7 @@ module Aws::ECS
11729
11722
  # resource limit parameter which Fargate overrides. The `nofile`
11730
11723
  # resource limit sets a restriction on the number of open files that a
11731
11724
  # container can use. The default `nofile` soft limit is `1024` and the
11732
- # default hard limit is `4096`.
11725
+ # default hard limit is `65535`.
11733
11726
  #
11734
11727
  # You can specify the `ulimit` settings for a container in a task
11735
11728
  # definition.
data/lib/aws-sdk-ecs.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ecs/customizations'
53
53
  # @!group service
54
54
  module Aws::ECS
55
55
 
56
- GEM_VERSION = '1.138.0'
56
+ GEM_VERSION = '1.139.0'
57
57
 
58
58
  end
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.138.0
4
+ version: 1.139.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: 2024-01-22 00:00:00.000000000 Z
11
+ date: 2024-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core