aws-sdk-ecs 1.54.0 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c4fd12bab4a4fb6121d082b4315075e92fa8dec4
4
- data.tar.gz: 73b3553d6d9f0156a3d80de25ba95eb89b61214b
3
+ metadata.gz: 3ca3a0c50f0c0e1a013a23c0fcd073b9a34ba825
4
+ data.tar.gz: 6a044345fc35e27e065ada5e2887a96cb405f743
5
5
  SHA512:
6
- metadata.gz: 7f94a174ec611d21a5221ca915754961253fb8369e56459dd2c3cdb7c6a298d07734080a7524726c729097e5c36b63aa33a9a39cb7e8f4f89e688d6fe89e7e6f
7
- data.tar.gz: f5a0bb12697d2ffe5fd63433db30d0396fe4111b7546a33b3ae93df7b349162bb043c22c74f102485be5dcfa7ddb00dc661a72af4c56738686aa301723acd02c
6
+ metadata.gz: '009a3605ba2d762cefa81ff5d5750695d5ed39287c748582b765f1b538fd0c16973a78c718275529f2ce9c8a76928fd57522edf8f93423f14f5668664b0ec82c'
7
+ data.tar.gz: 65d4673090b51a53ecec9eb9252bbf0a4e01a720d57e6c1721aa6f3821a122ff2764c2f46de42a2f7e9dfdb0e977853b8ee1b40b5d46d4dbc5f13d937485b913
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-ecs/customizations'
43
43
  # @service
44
44
  module Aws::ECS
45
45
 
46
- GEM_VERSION = '1.54.0'
46
+ GEM_VERSION = '1.55.0'
47
47
 
48
48
  end
@@ -4647,8 +4647,8 @@ module Aws::ECS
4647
4647
  # cluster, the default cluster is assumed.
4648
4648
  #
4649
4649
  # @option params [required, Array<String>] :capacity_providers
4650
- # The short name or full Amazon Resource Name (ARN) of one or more
4651
- # capacity providers to associate with the cluster.
4650
+ # The name of one or more capacity providers to associate with the
4651
+ # cluster.
4652
4652
  #
4653
4653
  # If specifying a capacity provider that uses an Auto Scaling group, the
4654
4654
  # capacity provider must already be created. New capacity providers can
@@ -7701,7 +7701,7 @@ module Aws::ECS
7701
7701
  params: params,
7702
7702
  config: config)
7703
7703
  context[:gem_name] = 'aws-sdk-ecs'
7704
- context[:gem_version] = '1.54.0'
7704
+ context[:gem_version] = '1.55.0'
7705
7705
  Seahorse::Client::Request.new(handlers, context)
7706
7706
  end
7707
7707
 
@@ -1428,29 +1428,32 @@ module Aws::ECS
1428
1428
  # multi-level security systems. This field is not valid for containers
1429
1429
  # in tasks using the Fargate launch type.
1430
1430
  #
1431
- # This parameter maps to `SecurityOpt` in the [Create a container][1]
1432
- # section of the [Docker Remote API][2] and the `--security-opt`
1433
- # option to [docker run][3].
1431
+ # With Windows containers, this parameter can be used to reference a
1432
+ # credential spec file when configuring a container for Active
1433
+ # Directory authentication. For more information, see [Using gMSAs for
1434
+ # Windows Containers][1] in the *Amazon Elastic Container Service
1435
+ # Developer Guide*.
1436
+ #
1437
+ # This parameter maps to `SecurityOpt` in the [Create a container][2]
1438
+ # section of the [Docker Remote API][3] and the `--security-opt`
1439
+ # option to [docker run][4].
1434
1440
  #
1435
1441
  # <note markdown="1"> The Amazon ECS container agent running on a container instance must
1436
1442
  # register with the `ECS_SELINUX_CAPABLE=true` or
1437
1443
  # `ECS_APPARMOR_CAPABLE=true` environment variables before containers
1438
1444
  # placed on that instance can use these security options. For more
1439
- # information, see [Amazon ECS Container Agent Configuration][4] in
1445
+ # information, see [Amazon ECS Container Agent Configuration][5] in
1440
1446
  # the *Amazon Elastic Container Service Developer Guide*.
1441
1447
  #
1442
1448
  # </note>
1443
1449
  #
1444
- # <note markdown="1"> This parameter is not supported for Windows containers.
1445
- #
1446
- # </note>
1447
- #
1448
1450
  #
1449
1451
  #
1450
- # [1]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
1451
- # [2]: https://docs.docker.com/engine/api/v1.35/
1452
- # [3]: https://docs.docker.com/engine/reference/run/
1453
- # [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1452
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows-gmsa.html
1453
+ # [2]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
1454
+ # [3]: https://docs.docker.com/engine/api/v1.35/
1455
+ # [4]: https://docs.docker.com/engine/reference/run/
1456
+ # [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1454
1457
  # @return [Array<String>]
1455
1458
  #
1456
1459
  # @!attribute [rw] interactive
@@ -5457,8 +5460,52 @@ module Aws::ECS
5457
5460
  include Aws::Structure
5458
5461
  end
5459
5462
 
5460
- # Log configuration options to send to a custom log driver for the
5461
- # container.
5463
+ # The log configuration specification for the container.
5464
+ #
5465
+ # This parameter maps to `LogConfig` in the [Create a container][1]
5466
+ # section of the [Docker Remote API][2] and the `--log-driver` option to
5467
+ # [ `docker run` ][3]. By default, containers use the same logging
5468
+ # driver that the Docker daemon uses; however the container may use a
5469
+ # different logging driver than the Docker daemon by specifying a log
5470
+ # driver with this parameter in the container definition. To use a
5471
+ # different logging driver for a container, the log system must be
5472
+ # configured properly on the container instance (or on a different log
5473
+ # server for remote logging options). For more information on the
5474
+ # options for different supported log drivers, see [Configure logging
5475
+ # drivers][4] in the Docker documentation.
5476
+ #
5477
+ # The following should be noted when specifying a log configuration for
5478
+ # your containers:
5479
+ #
5480
+ # * Amazon ECS currently supports a subset of the logging drivers
5481
+ # available to the Docker daemon (shown in the valid values below).
5482
+ # Additional log drivers may be available in future releases of the
5483
+ # Amazon ECS container agent.
5484
+ #
5485
+ # * This parameter requires version 1.18 of the Docker Remote API or
5486
+ # greater on your container instance.
5487
+ #
5488
+ # * For tasks using the EC2 launch type, the Amazon ECS container agent
5489
+ # running on a container instance must register the logging drivers
5490
+ # available on that instance with the `ECS_AVAILABLE_LOGGING_DRIVERS`
5491
+ # environment variable before containers placed on that instance can
5492
+ # use these log configuration options. For more information, see
5493
+ # [Amazon ECS Container Agent Configuration][5] in the *Amazon Elastic
5494
+ # Container Service Developer Guide*.
5495
+ #
5496
+ # * For tasks using the Fargate launch type, because you do not have
5497
+ # access to the underlying infrastructure your tasks are hosted on,
5498
+ # any additional software needed will have to be installed outside of
5499
+ # the task. For example, the Fluentd output aggregators or a remote
5500
+ # host running Logstash to send Gelf logs to.
5501
+ #
5502
+ #
5503
+ #
5504
+ # [1]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
5505
+ # [2]: https://docs.docker.com/engine/api/v1.35/
5506
+ # [3]: https://docs.docker.com/engine/reference/commandline/run/
5507
+ # [4]: https://docs.docker.com/engine/admin/logging/overview/
5508
+ # [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
5462
5509
  #
5463
5510
  # @note When making an API call, you may pass LogConfiguration
5464
5511
  # data as a hash:
@@ -5477,41 +5524,39 @@ module Aws::ECS
5477
5524
  # }
5478
5525
  #
5479
5526
  # @!attribute [rw] log_driver
5480
- # The log driver to use for the container. The valid values listed for
5481
- # this parameter are log drivers that the Amazon ECS container agent
5482
- # can communicate with by default.
5527
+ # The log driver to use for the container. The valid values listed
5528
+ # earlier are log drivers that the Amazon ECS container agent can
5529
+ # communicate with by default.
5483
5530
  #
5484
5531
  # For tasks using the Fargate launch type, the supported log drivers
5485
- # are `awslogs` and `splunk`.
5532
+ # are `awslogs`, `splunk`, and `awsfirelens`.
5486
5533
  #
5487
5534
  # For tasks using the EC2 launch type, the supported log drivers are
5488
- # `awslogs`, `fluentd`, `gelf`, `json-file`, `journald`, `logentries`,
5489
- # `syslog`, and `splunk`.
5535
+ # `awslogs`, `fluentd`, `gelf`, `json-file`, `journald`,
5536
+ # `logentries`,`syslog`, `splunk`, and `awsfirelens`.
5490
5537
  #
5491
5538
  # For more information about using the `awslogs` log driver, see
5492
5539
  # [Using the awslogs Log Driver][1] in the *Amazon Elastic Container
5493
5540
  # Service Developer Guide*.
5494
5541
  #
5495
- # <note markdown="1"> If you have a custom driver that is not listed above that you would
5496
- # like to work with the Amazon ECS container agent, you can fork the
5497
- # Amazon ECS container agent project that is [available on GitHub][2]
5542
+ # For more information about using the `awsfirelens` log driver, see
5543
+ # [Custom Log Routing][2] in the *Amazon Elastic Container Service
5544
+ # Developer Guide*.
5545
+ #
5546
+ # <note markdown="1"> If you have a custom driver that is not listed, you can fork the
5547
+ # Amazon ECS container agent project that is [available on GitHub][3]
5498
5548
  # and customize it to work with that driver. We encourage you to
5499
5549
  # submit pull requests for changes that you would like to have
5500
- # included. However, Amazon Web Services does not currently support
5501
- # running modified copies of this software.
5550
+ # included. However, we do not currently provide support for running
5551
+ # modified copies of this software.
5502
5552
  #
5503
5553
  # </note>
5504
5554
  #
5505
- # This parameter requires version 1.18 of the Docker Remote API or
5506
- # greater on your container instance. To check the Docker Remote API
5507
- # version on your container instance, log in to your container
5508
- # instance and run the following command: `sudo docker version
5509
- # --format '\{\{.Server.APIVersion\}\}'`
5510
- #
5511
5555
  #
5512
5556
  #
5513
5557
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_awslogs.html
5514
- # [2]: https://github.com/aws/amazon-ecs-agent
5558
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html
5559
+ # [3]: https://github.com/aws/amazon-ecs-agent
5515
5560
  # @return [String]
5516
5561
  #
5517
5562
  # @!attribute [rw] options
@@ -6204,8 +6249,8 @@ module Aws::ECS
6204
6249
  # @return [String]
6205
6250
  #
6206
6251
  # @!attribute [rw] capacity_providers
6207
- # The short name or full Amazon Resource Name (ARN) of one or more
6208
- # capacity providers to associate with the cluster.
6252
+ # The name of one or more capacity providers to associate with the
6253
+ # cluster.
6209
6254
  #
6210
6255
  # If specifying a capacity provider that uses an Auto Scaling group,
6211
6256
  # the capacity provider must already be created. New capacity
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.54.0
4
+ version: 1.55.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: 2019-12-03 00:00:00.000000000 Z
11
+ date: 2019-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core