aws-sdk-ecs 1.161.0 → 1.163.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +16 -30
- data/lib/aws-sdk-ecs/types.rb +201 -11
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44d27d9a269ed64d38a3a5135e191b4b8c72ef56b5bc715754a3f9660f1a3558
|
4
|
+
data.tar.gz: e177f0ecca6c86a859ad47ee6811d412dd6380ffde1c28e1bfbd5faaf5a3bb56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d369d0b8b10e20090723dad673169955729286e98a58b1db40ffc63ffb7e5e083112b759caaa2b7a704145bd9fe5770e83af4261aeb3624b59026f754775dd7f
|
7
|
+
data.tar.gz: b44bc62bdd812a17ab7a1345eb60971583875e5e278b147bf8bcc30ef8d21ee0f3a608b405fb5fd5bb8010c6f6055c7c4f9741bac45b9bf7fa1e4db0ae6ec080
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.163.0 (2024-10-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This is an Amazon ECS documentation only update to address tickets.
|
8
|
+
|
9
|
+
1.162.0 (2024-10-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This is a documentation only release that updates to documentation to let customers know that Amazon Elastic Inference is no longer available.
|
13
|
+
|
4
14
|
1.161.0 (2024-09-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.163.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -832,6 +832,10 @@ module Aws::ECS
|
|
832
832
|
#
|
833
833
|
# </note>
|
834
834
|
#
|
835
|
+
# <note markdown="1"> Amazon Elastic Inference (EI) is no longer available to customers.
|
836
|
+
#
|
837
|
+
# </note>
|
838
|
+
#
|
835
839
|
# In addition to maintaining the desired count of tasks in your service,
|
836
840
|
# you can optionally run your service behind one or more load balancers.
|
837
841
|
# The load balancers distribute traffic across the tasks that are
|
@@ -932,15 +936,6 @@ module Aws::ECS
|
|
932
936
|
# strategies, see [Amazon ECS task placement][7] in the *Amazon Elastic
|
933
937
|
# Container Service Developer Guide*
|
934
938
|
#
|
935
|
-
# Starting April 15, 2023, Amazon Web Services will not onboard new
|
936
|
-
# customers to Amazon Elastic Inference (EI), and will help current
|
937
|
-
# customers migrate their workloads to options that offer better price
|
938
|
-
# and performance. After April 15, 2023, new customers will not be able
|
939
|
-
# to launch instances with Amazon EI accelerators in Amazon SageMaker,
|
940
|
-
# Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
|
941
|
-
# at least once during the past 30-day period are considered current
|
942
|
-
# customers and will be able to continue using the service.
|
943
|
-
#
|
944
939
|
#
|
945
940
|
#
|
946
941
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_UpdateService.html
|
@@ -7325,6 +7320,10 @@ module Aws::ECS
|
|
7325
7320
|
#
|
7326
7321
|
# </note>
|
7327
7322
|
#
|
7323
|
+
# <note markdown="1"> Amazon Elastic Inference (EI) is no longer available to customers.
|
7324
|
+
#
|
7325
|
+
# </note>
|
7326
|
+
#
|
7328
7327
|
# You can allow Amazon ECS to place tasks for you, or you can customize
|
7329
7328
|
# how Amazon ECS places tasks using placement constraints and placement
|
7330
7329
|
# strategies. For more information, see [Scheduling Tasks][1] in the
|
@@ -7333,15 +7332,6 @@ module Aws::ECS
|
|
7333
7332
|
# Alternatively, you can use `StartTask` to use your own scheduler or
|
7334
7333
|
# place tasks manually on specific container instances.
|
7335
7334
|
#
|
7336
|
-
# Starting April 15, 2023, Amazon Web Services will not onboard new
|
7337
|
-
# customers to Amazon Elastic Inference (EI), and will help current
|
7338
|
-
# customers migrate their workloads to options that offer better price
|
7339
|
-
# and performance. After April 15, 2023, new customers will not be able
|
7340
|
-
# to launch instances with Amazon EI accelerators in Amazon SageMaker,
|
7341
|
-
# Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
|
7342
|
-
# at least once during the past 30-day period are considered current
|
7343
|
-
# customers and will be able to continue using the service.
|
7344
|
-
#
|
7345
7335
|
# You can attach Amazon EBS volumes to Amazon ECS tasks by configuring
|
7346
7336
|
# the volume when creating or updating a service. For more infomation,
|
7347
7337
|
# see [Amazon EBS volumes][2] in the *Amazon Elastic Container Service
|
@@ -7511,8 +7501,8 @@ module Aws::ECS
|
|
7511
7501
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html
|
7512
7502
|
#
|
7513
7503
|
# @option params [String] :reference_id
|
7514
|
-
#
|
7515
|
-
#
|
7504
|
+
# This parameter is only used by Amazon ECS. It is not intended for use
|
7505
|
+
# by customers.
|
7516
7506
|
#
|
7517
7507
|
# @option params [String] :started_by
|
7518
7508
|
# An optional tag specified when a task is started. For example, if you
|
@@ -7909,14 +7899,9 @@ module Aws::ECS
|
|
7909
7899
|
#
|
7910
7900
|
# </note>
|
7911
7901
|
#
|
7912
|
-
#
|
7913
|
-
#
|
7914
|
-
#
|
7915
|
-
# and performance. After April 15, 2023, new customers will not be able
|
7916
|
-
# to launch instances with Amazon EI accelerators in Amazon SageMaker,
|
7917
|
-
# Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI
|
7918
|
-
# at least once during the past 30-day period are considered current
|
7919
|
-
# customers and will be able to continue using the service.
|
7902
|
+
# <note markdown="1"> Amazon Elastic Inference (EI) is no longer available to customers.
|
7903
|
+
#
|
7904
|
+
# </note>
|
7920
7905
|
#
|
7921
7906
|
# Alternatively, you can use`RunTask` to place tasks for you. For more
|
7922
7907
|
# information, see [Scheduling Tasks][1] in the *Amazon Elastic
|
@@ -7987,7 +7972,8 @@ module Aws::ECS
|
|
7987
7972
|
# propagated.
|
7988
7973
|
#
|
7989
7974
|
# @option params [String] :reference_id
|
7990
|
-
#
|
7975
|
+
# This parameter is only used by Amazon ECS. It is not intended for use
|
7976
|
+
# by customers.
|
7991
7977
|
#
|
7992
7978
|
# @option params [String] :started_by
|
7993
7979
|
# An optional tag specified when a task is started. For example, if you
|
@@ -10446,7 +10432,7 @@ module Aws::ECS
|
|
10446
10432
|
tracer: tracer
|
10447
10433
|
)
|
10448
10434
|
context[:gem_name] = 'aws-sdk-ecs'
|
10449
|
-
context[:gem_version] = '1.
|
10435
|
+
context[:gem_version] = '1.163.0'
|
10450
10436
|
Seahorse::Client::Request.new(handlers, context)
|
10451
10437
|
end
|
10452
10438
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -405,8 +405,10 @@ module Aws::ECS
|
|
405
405
|
# that's discounted compared to the `FARGATE` price. `FARGATE_SPOT`
|
406
406
|
# runs tasks on spare compute capacity. When Amazon Web Services needs
|
407
407
|
# the capacity back, your tasks are interrupted with a two-minute
|
408
|
-
# warning. `FARGATE_SPOT`
|
409
|
-
# architecture on platform version 1.3.0 or later.
|
408
|
+
# warning. `FARGATE_SPOT` supports Linux tasks with the X86\_64
|
409
|
+
# architecture on platform version 1.3.0 or later. `FARGATE_SPOT`
|
410
|
+
# supports Linux tasks with the ARM64 architecture on platform version
|
411
|
+
# 1.4.0 or later.
|
410
412
|
#
|
411
413
|
# A capacity provider strategy may contain a maximum of 6 capacity
|
412
414
|
# providers.
|
@@ -6528,12 +6530,199 @@ module Aws::ECS
|
|
6528
6530
|
# @return [String]
|
6529
6531
|
#
|
6530
6532
|
# @!attribute [rw] options
|
6531
|
-
# The configuration options to send to the log driver.
|
6532
|
-
#
|
6533
|
-
#
|
6534
|
-
#
|
6535
|
-
#
|
6536
|
-
#
|
6533
|
+
# The configuration options to send to the log driver.
|
6534
|
+
#
|
6535
|
+
# The options you can specify depend on the log driver. Some of the
|
6536
|
+
# options you can specify when you use the `awslogs` log driver to
|
6537
|
+
# route logs to Amazon CloudWatch include the following:
|
6538
|
+
#
|
6539
|
+
# awslogs-create-group
|
6540
|
+
#
|
6541
|
+
# : Required: No
|
6542
|
+
#
|
6543
|
+
# Specify whether you want the log group to be created
|
6544
|
+
# automatically. If this option isn't specified, it defaults to
|
6545
|
+
# `false`.
|
6546
|
+
#
|
6547
|
+
# <note markdown="1"> Your IAM policy must include the `logs:CreateLogGroup` permission
|
6548
|
+
# before you attempt to use `awslogs-create-group`.
|
6549
|
+
#
|
6550
|
+
# </note>
|
6551
|
+
#
|
6552
|
+
# awslogs-region
|
6553
|
+
#
|
6554
|
+
# : Required: Yes
|
6555
|
+
#
|
6556
|
+
# Specify the Amazon Web Services Region that the `awslogs` log
|
6557
|
+
# driver is to send your Docker logs to. You can choose to send all
|
6558
|
+
# of your logs from clusters in different Regions to a single region
|
6559
|
+
# in CloudWatch Logs. This is so that they're all visible in one
|
6560
|
+
# location. Otherwise, you can separate them by Region for more
|
6561
|
+
# granularity. Make sure that the specified log group exists in the
|
6562
|
+
# Region that you specify with this option.
|
6563
|
+
#
|
6564
|
+
# awslogs-group
|
6565
|
+
#
|
6566
|
+
# : Required: Yes
|
6567
|
+
#
|
6568
|
+
# Make sure to specify a log group that the `awslogs` log driver
|
6569
|
+
# sends its log streams to.
|
6570
|
+
#
|
6571
|
+
# awslogs-stream-prefix
|
6572
|
+
#
|
6573
|
+
# : Required: Yes, when using the Fargate launch type.Optional for the
|
6574
|
+
# EC2 launch type, required for the Fargate launch type.
|
6575
|
+
#
|
6576
|
+
# Use the `awslogs-stream-prefix` option to associate a log stream
|
6577
|
+
# with the specified prefix, the container name, and the ID of the
|
6578
|
+
# Amazon ECS task that the container belongs to. If you specify a
|
6579
|
+
# prefix with this option, then the log stream takes the format
|
6580
|
+
# `prefix-name/container-name/ecs-task-id`.
|
6581
|
+
#
|
6582
|
+
# If you don't specify a prefix with this option, then the log
|
6583
|
+
# stream is named after the container ID that's assigned by the
|
6584
|
+
# Docker daemon on the container instance. Because it's difficult
|
6585
|
+
# to trace logs back to the container that sent them with just the
|
6586
|
+
# Docker container ID (which is only available on the container
|
6587
|
+
# instance), we recommend that you specify a prefix with this
|
6588
|
+
# option.
|
6589
|
+
#
|
6590
|
+
# For Amazon ECS services, you can use the service name as the
|
6591
|
+
# prefix. Doing so, you can trace log streams to the service that
|
6592
|
+
# the container belongs to, the name of the container that sent
|
6593
|
+
# them, and the ID of the task that the container belongs to.
|
6594
|
+
#
|
6595
|
+
# You must specify a stream-prefix for your logs to have your logs
|
6596
|
+
# appear in the Log pane when using the Amazon ECS console.
|
6597
|
+
#
|
6598
|
+
# awslogs-datetime-format
|
6599
|
+
#
|
6600
|
+
# : Required: No
|
6601
|
+
#
|
6602
|
+
# This option defines a multiline start pattern in Python `strftime`
|
6603
|
+
# format. A log message consists of a line that matches the pattern
|
6604
|
+
# and any following lines that don’t match the pattern. The matched
|
6605
|
+
# line is the delimiter between log messages.
|
6606
|
+
#
|
6607
|
+
# One example of a use case for using this format is for parsing
|
6608
|
+
# output such as a stack dump, which might otherwise be logged in
|
6609
|
+
# multiple entries. The correct pattern allows it to be captured in
|
6610
|
+
# a single entry.
|
6611
|
+
#
|
6612
|
+
# For more information, see [awslogs-datetime-format][1].
|
6613
|
+
#
|
6614
|
+
# You cannot configure both the `awslogs-datetime-format` and
|
6615
|
+
# `awslogs-multiline-pattern` options.
|
6616
|
+
#
|
6617
|
+
# <note markdown="1"> Multiline logging performs regular expression parsing and matching
|
6618
|
+
# of all log messages. This might have a negative impact on logging
|
6619
|
+
# performance.
|
6620
|
+
#
|
6621
|
+
# </note>
|
6622
|
+
#
|
6623
|
+
# awslogs-multiline-pattern
|
6624
|
+
#
|
6625
|
+
# : Required: No
|
6626
|
+
#
|
6627
|
+
# This option defines a multiline start pattern that uses a regular
|
6628
|
+
# expression. A log message consists of a line that matches the
|
6629
|
+
# pattern and any following lines that don’t match the pattern. The
|
6630
|
+
# matched line is the delimiter between log messages.
|
6631
|
+
#
|
6632
|
+
# For more information, see [awslogs-multiline-pattern][2].
|
6633
|
+
#
|
6634
|
+
# This option is ignored if `awslogs-datetime-format` is also
|
6635
|
+
# configured.
|
6636
|
+
#
|
6637
|
+
# You cannot configure both the `awslogs-datetime-format` and
|
6638
|
+
# `awslogs-multiline-pattern` options.
|
6639
|
+
#
|
6640
|
+
# <note markdown="1"> Multiline logging performs regular expression parsing and matching
|
6641
|
+
# of all log messages. This might have a negative impact on logging
|
6642
|
+
# performance.
|
6643
|
+
#
|
6644
|
+
# </note>
|
6645
|
+
#
|
6646
|
+
# mode
|
6647
|
+
#
|
6648
|
+
# : Required: No
|
6649
|
+
#
|
6650
|
+
# Valid values: `non-blocking` \| `blocking`
|
6651
|
+
#
|
6652
|
+
# This option defines the delivery mode of log messages from the
|
6653
|
+
# container to CloudWatch Logs. The delivery mode you choose affects
|
6654
|
+
# application availability when the flow of logs from container to
|
6655
|
+
# CloudWatch is interrupted.
|
6656
|
+
#
|
6657
|
+
# If you use the `blocking` mode and the flow of logs to CloudWatch
|
6658
|
+
# is interrupted, calls from container code to write to the `stdout`
|
6659
|
+
# and `stderr` streams will block. The logging thread of the
|
6660
|
+
# application will block as a result. This may cause the application
|
6661
|
+
# to become unresponsive and lead to container healthcheck failure.
|
6662
|
+
#
|
6663
|
+
# If you use the `non-blocking` mode, the container's logs are
|
6664
|
+
# instead stored in an in-memory intermediate buffer configured with
|
6665
|
+
# the `max-buffer-size` option. This prevents the application from
|
6666
|
+
# becoming unresponsive when logs cannot be sent to CloudWatch. We
|
6667
|
+
# recommend using this mode if you want to ensure service
|
6668
|
+
# availability and are okay with some log loss. For more
|
6669
|
+
# information, see [Preventing log loss with non-blocking mode in
|
6670
|
+
# the `awslogs` container log driver][3].
|
6671
|
+
#
|
6672
|
+
# max-buffer-size
|
6673
|
+
#
|
6674
|
+
# : Required: No
|
6675
|
+
#
|
6676
|
+
# Default value: `1m`
|
6677
|
+
#
|
6678
|
+
# When `non-blocking` mode is used, the `max-buffer-size` log option
|
6679
|
+
# controls the size of the buffer that's used for intermediate
|
6680
|
+
# message storage. Make sure to specify an adequate buffer size
|
6681
|
+
# based on your application. When the buffer fills up, further logs
|
6682
|
+
# cannot be stored. Logs that cannot be stored are lost.
|
6683
|
+
#
|
6684
|
+
# To route logs using the `splunk` log router, you need to specify a
|
6685
|
+
# `splunk-token` and a `splunk-url`.
|
6686
|
+
#
|
6687
|
+
# When you use the `awsfirelens` log router to route logs to an Amazon
|
6688
|
+
# Web Services Service or Amazon Web Services Partner Network
|
6689
|
+
# destination for log storage and analytics, you can set the
|
6690
|
+
# `log-driver-buffer-limit` option to limit the number of events that
|
6691
|
+
# are buffered in memory, before being sent to the log router
|
6692
|
+
# container. It can help to resolve potential log loss issue because
|
6693
|
+
# high throughput might result in memory running out for the buffer
|
6694
|
+
# inside of Docker.
|
6695
|
+
#
|
6696
|
+
# Other options you can specify when using `awsfirelens` to route logs
|
6697
|
+
# depend on the destination. When you export logs to Amazon Data
|
6698
|
+
# Firehose, you can specify the Amazon Web Services Region with
|
6699
|
+
# `region` and a name for the log stream with `delivery_stream`.
|
6700
|
+
#
|
6701
|
+
# When you export logs to Amazon Kinesis Data Streams, you can specify
|
6702
|
+
# an Amazon Web Services Region with `region` and a data stream name
|
6703
|
+
# with `stream`.
|
6704
|
+
#
|
6705
|
+
# When you export logs to Amazon OpenSearch Service, you can specify
|
6706
|
+
# options like `Name`, `Host` (OpenSearch Service endpoint without
|
6707
|
+
# protocol), `Port`, `Index`, `Type`, `Aws_auth`, `Aws_region`,
|
6708
|
+
# `Suppress_Type_Name`, and `tls`.
|
6709
|
+
#
|
6710
|
+
# When you export logs to Amazon S3, you can specify the bucket using
|
6711
|
+
# the `bucket` option. You can also specify `region`,
|
6712
|
+
# `total_file_size`, `upload_timeout`, and `use_put_object` as
|
6713
|
+
# options.
|
6714
|
+
#
|
6715
|
+
# This parameter requires version 1.19 of the Docker Remote API or
|
6716
|
+
# greater on your container instance. To check the Docker Remote API
|
6717
|
+
# version on your container instance, log in to your container
|
6718
|
+
# instance and run the following command: `sudo docker version
|
6719
|
+
# --format '\{\{.Server.APIVersion\}\}'`
|
6720
|
+
#
|
6721
|
+
#
|
6722
|
+
#
|
6723
|
+
# [1]: https://docs.docker.com/config/containers/logging/awslogs/#awslogs-datetime-format
|
6724
|
+
# [2]: https://docs.docker.com/config/containers/logging/awslogs/#awslogs-multiline-pattern
|
6725
|
+
# [3]: http://aws.amazon.com/blogs/containers/preventing-log-loss-with-non-blocking-mode-in-the-awslogs-container-log-driver/
|
6537
6726
|
# @return [Hash<String,String>]
|
6538
6727
|
#
|
6539
6728
|
# @!attribute [rw] secret_options
|
@@ -8503,8 +8692,8 @@ module Aws::ECS
|
|
8503
8692
|
# @return [String]
|
8504
8693
|
#
|
8505
8694
|
# @!attribute [rw] reference_id
|
8506
|
-
#
|
8507
|
-
#
|
8695
|
+
# This parameter is only used by Amazon ECS. It is not intended for
|
8696
|
+
# use by customers.
|
8508
8697
|
# @return [String]
|
8509
8698
|
#
|
8510
8699
|
# @!attribute [rw] started_by
|
@@ -9858,7 +10047,8 @@ module Aws::ECS
|
|
9858
10047
|
# @return [String]
|
9859
10048
|
#
|
9860
10049
|
# @!attribute [rw] reference_id
|
9861
|
-
#
|
10050
|
+
# This parameter is only used by Amazon ECS. It is not intended for
|
10051
|
+
# use by customers.
|
9862
10052
|
# @return [String]
|
9863
10053
|
#
|
9864
10054
|
# @!attribute [rw] started_by
|
data/lib/aws-sdk-ecs.rb
CHANGED
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.
|
4
|
+
version: 1.163.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-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|