aws-sdk-ecs 1.170.0 → 1.171.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: d5ba3a8adb0ca2a0cbe572d3c5316851447e9cf94c082b8962079a660961bb16
4
- data.tar.gz: 2b8d641cf8f3efe8640f04c071bd6b54efc5f4c09777310122b219602abd203c
3
+ metadata.gz: 88ccea68f205a92d9da5e2b856a4231d9de923ad3547e10bc7609b9922b9d7e1
4
+ data.tar.gz: aca1bda31828f6721925f74a48383fc4395f8e2505d8f1151fbd1a1eb678ed36
5
5
  SHA512:
6
- metadata.gz: 3a897493042c405f4f6a354741bfe3ce5242483221053021cbc2f8b9a36b66b02d89d436e49255a1082a72234142651a772465595140fbd28daed83fa695134d
7
- data.tar.gz: fe995a23ea6e9eeca1637f7361225817c561dafeb4d2debfda75ae375a55b3d410d22fe0e47fc4b24cae7570eb46401db44f9c4545fdadd9e88b271087e3705b
6
+ metadata.gz: c897395e2379e1f7fac7f3915e957060709cfb9ee502429367241f2625eff539c91bfcf3b790531b2373375a7219328981d0e86cf5049119c53be3aa0ee90a6e
7
+ data.tar.gz: d9d8525ac28e0061fb07942493d1dcd03fa71642ac8246d080820dcbb9523256e33bdb0f308b3848da67c6e97d3e9dfb4f1c279c6ef66456c1671ff3ba4f3924
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.171.0 (2024-12-02)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Container Insights with Enhanced Observability for Amazon ECS.
8
+
4
9
  1.170.0 (2024-11-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.170.0
1
+ 1.171.0
@@ -2176,7 +2176,7 @@ module Aws::ECS
2176
2176
  #
2177
2177
  # <note markdown="1"> The `FARGATE` and `FARGATE_SPOT` capacity providers are reserved and
2178
2178
  # can't be deleted. You can disassociate them from a cluster using
2179
- # either [PutCapacityProviderProviders][1] or by deleting the cluster.
2179
+ # either [PutClusterCapacityProviders][1] or by deleting the cluster.
2180
2180
  #
2181
2181
  # </note>
2182
2182
  #
@@ -2189,14 +2189,13 @@ module Aws::ECS
2189
2189
  # transitioned to use the capacity from the remaining capacity
2190
2190
  # providers. Only capacity providers that aren't associated with a
2191
2191
  # cluster can be deleted. To remove a capacity provider from a cluster,
2192
- # you can either use [PutClusterCapacityProviders][3] or delete the
2192
+ # you can either use [PutClusterCapacityProviders][1] or delete the
2193
2193
  # cluster.
2194
2194
  #
2195
2195
  #
2196
2196
  #
2197
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutCapacityProviderProviders.html
2197
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutClusterCapacityProviders.html
2198
2198
  # [2]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_UpdateService.html
2199
- # [3]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutClusterCapacityProviders.html
2200
2199
  #
2201
2200
  # @option params [required, String] :capacity_provider
2202
2201
  # The short name or full Amazon Resource Name (ARN) of the capacity
@@ -3381,6 +3380,12 @@ module Aws::ECS
3381
3380
 
3382
3381
  # Describes one or more of your clusters.
3383
3382
  #
3383
+ # For CLI examples, see [describe-clusters.rst][1] on GitHub.
3384
+ #
3385
+ #
3386
+ #
3387
+ # [1]: https://github.com/aws/aws-cli/blob/develop/awscli/examples/ecs/describe-clusters.rst
3388
+ #
3384
3389
  # @option params [Array<String>] :clusters
3385
3390
  # A list of up to 100 cluster names or full cluster Amazon Resource Name
3386
3391
  # (ARN) entries. If you do not specify a cluster, the default cluster is
@@ -4573,9 +4578,8 @@ module Aws::ECS
4573
4578
  # @option params [String] :cluster
4574
4579
  # The short name or full Amazon Resource Name (ARN) of the cluster that
4575
4580
  # hosts the task or tasks to describe. If you do not specify a cluster,
4576
- # the default cluster is assumed. This parameter is required if the task
4577
- # or tasks you are describing were launched in any cluster other than
4578
- # the default cluster.
4581
+ # the default cluster is assumed. This parameter is required. If you do
4582
+ # not specify a value, the `default` cluster is used.
4579
4583
  #
4580
4584
  # @option params [required, Array<String>] :tasks
4581
4585
  # A list of up to 100 task IDs or full ARN entries.
@@ -5392,7 +5396,7 @@ module Aws::ECS
5392
5396
  # name or ARN. Starting April 15, 2023, Amazon Web Services will not
5393
5397
  # onboard new customers to Amazon Elastic Inference (EI), and will help
5394
5398
  # current customers migrate their workloads to options that offer better
5395
- # price and performanceIf you don't specify a cluster, `deault` is
5399
+ # price and performanceIf you don't specify a cluster, `default` is
5396
5400
  # used.
5397
5401
  #
5398
5402
  # @option params [Array<String>] :status
@@ -6106,12 +6110,25 @@ module Aws::ECS
6106
6110
  # Network Interface Trunking][1] in the *Amazon Elastic Container
6107
6111
  # Service Developer Guide*.
6108
6112
  #
6109
- # * `containerInsights` - When modified, the default setting indicating
6110
- # whether Amazon Web Services CloudWatch Container Insights is turned
6111
- # on for your clusters is changed. If `containerInsights` is turned
6112
- # on, any new clusters that are created will have Container Insights
6113
- # turned on unless you disable it during cluster creation. For more
6114
- # information, see [CloudWatch Container Insights][2] in the *Amazon
6113
+ # * `containerInsights` - Container Insights with enhanced observability
6114
+ # provides all the Container Insights metrics, plus additional task
6115
+ # and container metrics. This version supports enhanced observability
6116
+ # for Amazon ECS clusters using the Amazon EC2 and Fargate launch
6117
+ # types. After you configure Container Insights with enhanced
6118
+ # observability on Amazon ECS, Container Insights auto-collects
6119
+ # detailed infrastructure telemetry from the cluster level down to the
6120
+ # container level in your environment and displays these critical
6121
+ # performance data in curated dashboards removing the heavy lifting in
6122
+ # observability set-up.
6123
+ #
6124
+ # To use Container Insights with enhanced observability, set the
6125
+ # `containerInsights` account setting to `enhanced`.
6126
+ #
6127
+ # To use Container Insights, set the `containerInsights` account
6128
+ # setting to `enabled`.
6129
+ #
6130
+ # For more information, see [Monitor Amazon ECS containers using
6131
+ # Container Insights with enhanced observability][2] in the *Amazon
6115
6132
  # Elastic Container Service Developer Guide*.
6116
6133
  #
6117
6134
  # * `dualStackIPv6` - When turned on, when using a VPC in dual stack
@@ -6159,7 +6176,7 @@ module Aws::ECS
6159
6176
  #
6160
6177
  # @option params [required, String] :value
6161
6178
  # The account setting value for the specified principal ARN. Accepted
6162
- # values are `enabled`, `disabled`, `on`, and `off`.
6179
+ # values are `enabled`, `disabled`, `enhanced`, `on`, and `off`.
6163
6180
  #
6164
6181
  # When you specify `fargateTaskRetirementWaitPeriod` for the `name`, the
6165
6182
  # following are the valid values:
@@ -6302,12 +6319,25 @@ module Aws::ECS
6302
6319
  # Network Interface Trunking][1] in the *Amazon Elastic Container
6303
6320
  # Service Developer Guide*.
6304
6321
  #
6305
- # * `containerInsights` - When modified, the default setting indicating
6306
- # whether Amazon Web Services CloudWatch Container Insights is turned
6307
- # on for your clusters is changed. If `containerInsights` is turned
6308
- # on, any new clusters that are created will have Container Insights
6309
- # turned on unless you disable it during cluster creation. For more
6310
- # information, see [CloudWatch Container Insights][2] in the *Amazon
6322
+ # * `containerInsights` - Container Insights with enhanced observability
6323
+ # provides all the Container Insights metrics, plus additional task
6324
+ # and container metrics. This version supports enhanced observability
6325
+ # for Amazon ECS clusters using the Amazon EC2 and Fargate launch
6326
+ # types. After you configure Container Insights with enhanced
6327
+ # observability on Amazon ECS, Container Insights auto-collects
6328
+ # detailed infrastructure telemetry from the cluster level down to the
6329
+ # container level in your environment and displays these critical
6330
+ # performance data in curated dashboards removing the heavy lifting in
6331
+ # observability set-up.
6332
+ #
6333
+ # To use Container Insights with enhanced observability, set the
6334
+ # `containerInsights` account setting to `enhanced`.
6335
+ #
6336
+ # To use Container Insights, set the `containerInsights` account
6337
+ # setting to `enabled`.
6338
+ #
6339
+ # For more information, see [Monitor Amazon ECS containers using
6340
+ # Container Insights with enhanced observability][2] in the *Amazon
6311
6341
  # Elastic Container Service Developer Guide*.
6312
6342
  #
6313
6343
  # * `dualStackIPv6` - When turned on, when using a VPC in dual stack
@@ -6358,7 +6388,7 @@ module Aws::ECS
6358
6388
  #
6359
6389
  # @option params [required, String] :value
6360
6390
  # The account setting value for the specified principal ARN. Accepted
6361
- # values are `enabled`, `disabled`, `on`, and `off`.
6391
+ # values are `enabled`, `disabled`, `on`, `enhanced`, and `off`.
6362
6392
  #
6363
6393
  # When you specify `fargateTaskRetirementWaitPeriod` for the `name`, the
6364
6394
  # following are the valid values:
@@ -10803,7 +10833,7 @@ module Aws::ECS
10803
10833
  tracer: tracer
10804
10834
  )
10805
10835
  context[:gem_name] = 'aws-sdk-ecs'
10806
- context[:gem_version] = '1.170.0'
10836
+ context[:gem_version] = '1.171.0'
10807
10837
  Seahorse::Client::Request.new(handlers, context)
10808
10838
  end
10809
10839
 
@@ -267,7 +267,7 @@ module Aws::ECS
267
267
  #
268
268
  # @!attribute [rw] assign_public_ip
269
269
  # Whether the task's elastic network interface receives a public IP
270
- # address. The default value is `DISABLED`.
270
+ # address. The default value is `ENABLED`.
271
271
  # @return [String]
272
272
  #
273
273
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/AwsVpcConfiguration AWS API Documentation
@@ -871,7 +871,26 @@ module Aws::ECS
871
871
  end
872
872
 
873
873
  # The settings to use when creating a cluster. This parameter is used to
874
- # turn on CloudWatch Container Insights for a cluster.
874
+ # turn on CloudWatch Container Insights with enhanced observability or
875
+ # CloudWatch Container Insights for a cluster.
876
+ #
877
+ # Container Insights with enhanced observability provides all the
878
+ # Container Insights metrics, plus additional task and container
879
+ # metrics. This version supports enhanced observability for Amazon ECS
880
+ # clusters using the Amazon EC2 and Fargate launch types. After you
881
+ # configure Container Insights with enhanced observability on Amazon
882
+ # ECS, Container Insights auto-collects detailed infrastructure
883
+ # telemetry from the cluster level down to the container level in your
884
+ # environment and displays these critical performance data in curated
885
+ # dashboards removing the heavy lifting in observability set-up.
886
+ #
887
+ # For more information, see [Monitor Amazon ECS containers using
888
+ # Container Insights with enhanced observability][1] in the *Amazon
889
+ # Elastic Container Service Developer Guide*.
890
+ #
891
+ #
892
+ #
893
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
875
894
  #
876
895
  # @!attribute [rw] name
877
896
  # The name of the cluster setting. The value is `containerInsights` .
@@ -879,12 +898,15 @@ module Aws::ECS
879
898
  #
880
899
  # @!attribute [rw] value
881
900
  # The value to set for the cluster setting. The supported values are
882
- # `enabled` and `disabled`.
901
+ # `enhanced`, `enabled`, and `disabled`.
883
902
  #
884
- # If you set `name` to `containerInsights` and `value` to `enabled`,
885
- # CloudWatch Container Insights will be on for the cluster, otherwise
886
- # it will be off unless the `containerInsights` account setting is
887
- # turned on. If a cluster value is specified, it will override the
903
+ # To use Container Insights with enhanced observability, set the
904
+ # `containerInsights` account setting to `enhanced`.
905
+ #
906
+ # To use Container Insights, set the `containerInsights` account
907
+ # setting to `enabled`.
908
+ #
909
+ # If a cluster value is specified, it will override the
888
910
  # `containerInsights` value set with [PutAccountSetting][1] or
889
911
  # [PutAccountSettingDefault][2].
890
912
  #
@@ -4506,9 +4528,8 @@ module Aws::ECS
4506
4528
  # @!attribute [rw] cluster
4507
4529
  # The short name or full Amazon Resource Name (ARN) of the cluster
4508
4530
  # that hosts the task or tasks to describe. If you do not specify a
4509
- # cluster, the default cluster is assumed. This parameter is required
4510
- # if the task or tasks you are describing were launched in any cluster
4511
- # other than the default cluster.
4531
+ # cluster, the default cluster is assumed. This parameter is required.
4532
+ # If you do not specify a value, the `default` cluster is used.
4512
4533
  # @return [String]
4513
4534
  #
4514
4535
  # @!attribute [rw] tasks
@@ -4894,7 +4915,7 @@ module Aws::ECS
4894
4915
  #
4895
4916
  # @!attribute [rw] size_in_gi_b
4896
4917
  # The total amount, in GiB, of ephemeral storage to set for the task.
4897
- # The minimum supported value is `20` GiB and the maximum supported
4918
+ # The minimum supported value is `21` GiB and the maximum supported
4898
4919
  # value is `200` GiB.
4899
4920
  # @return [Integer]
4900
4921
  #
@@ -6107,7 +6128,7 @@ module Aws::ECS
6107
6128
  # onboard new customers to Amazon Elastic Inference (EI), and will
6108
6129
  # help current customers migrate their workloads to options that offer
6109
6130
  # better price and performanceIf you don't specify a cluster,
6110
- # `deault` is used.
6131
+ # `default` is used.
6111
6132
  # @return [String]
6112
6133
  #
6113
6134
  # @!attribute [rw] status
@@ -7840,14 +7861,26 @@ module Aws::ECS
7840
7861
  # [Elastic Network Interface Trunking][1] in the *Amazon Elastic
7841
7862
  # Container Service Developer Guide*.
7842
7863
  #
7843
- # * `containerInsights` - When modified, the default setting
7844
- # indicating whether Amazon Web Services CloudWatch Container
7845
- # Insights is turned on for your clusters is changed. If
7846
- # `containerInsights` is turned on, any new clusters that are
7847
- # created will have Container Insights turned on unless you disable
7848
- # it during cluster creation. For more information, see [CloudWatch
7849
- # Container Insights][2] in the *Amazon Elastic Container Service
7850
- # Developer Guide*.
7864
+ # * `containerInsights` - Container Insights with enhanced
7865
+ # observability provides all the Container Insights metrics, plus
7866
+ # additional task and container metrics. This version supports
7867
+ # enhanced observability for Amazon ECS clusters using the Amazon
7868
+ # EC2 and Fargate launch types. After you configure Container
7869
+ # Insights with enhanced observability on Amazon ECS, Container
7870
+ # Insights auto-collects detailed infrastructure telemetry from the
7871
+ # cluster level down to the container level in your environment and
7872
+ # displays these critical performance data in curated dashboards
7873
+ # removing the heavy lifting in observability set-up.
7874
+ #
7875
+ # To use Container Insights with enhanced observability, set the
7876
+ # `containerInsights` account setting to `enhanced`.
7877
+ #
7878
+ # To use Container Insights, set the `containerInsights` account
7879
+ # setting to `enabled`.
7880
+ #
7881
+ # For more information, see [Monitor Amazon ECS containers using
7882
+ # Container Insights with enhanced observability][2] in the *Amazon
7883
+ # Elastic Container Service Developer Guide*.
7851
7884
  #
7852
7885
  # * `dualStackIPv6` - When turned on, when using a VPC in dual stack
7853
7886
  # mode, your tasks using the `awsvpc` network mode can have an IPv6
@@ -7898,7 +7931,7 @@ module Aws::ECS
7898
7931
  #
7899
7932
  # @!attribute [rw] value
7900
7933
  # The account setting value for the specified principal ARN. Accepted
7901
- # values are `enabled`, `disabled`, `on`, and `off`.
7934
+ # values are `enabled`, `disabled`, `on`, `enhanced`, and `off`.
7902
7935
  #
7903
7936
  # When you specify `fargateTaskRetirementWaitPeriod` for the `name`,
7904
7937
  # the following are the valid values:
@@ -7974,14 +8007,26 @@ module Aws::ECS
7974
8007
  # [Elastic Network Interface Trunking][1] in the *Amazon Elastic
7975
8008
  # Container Service Developer Guide*.
7976
8009
  #
7977
- # * `containerInsights` - When modified, the default setting
7978
- # indicating whether Amazon Web Services CloudWatch Container
7979
- # Insights is turned on for your clusters is changed. If
7980
- # `containerInsights` is turned on, any new clusters that are
7981
- # created will have Container Insights turned on unless you disable
7982
- # it during cluster creation. For more information, see [CloudWatch
7983
- # Container Insights][2] in the *Amazon Elastic Container Service
7984
- # Developer Guide*.
8010
+ # * `containerInsights` - Container Insights with enhanced
8011
+ # observability provides all the Container Insights metrics, plus
8012
+ # additional task and container metrics. This version supports
8013
+ # enhanced observability for Amazon ECS clusters using the Amazon
8014
+ # EC2 and Fargate launch types. After you configure Container
8015
+ # Insights with enhanced observability on Amazon ECS, Container
8016
+ # Insights auto-collects detailed infrastructure telemetry from the
8017
+ # cluster level down to the container level in your environment and
8018
+ # displays these critical performance data in curated dashboards
8019
+ # removing the heavy lifting in observability set-up.
8020
+ #
8021
+ # To use Container Insights with enhanced observability, set the
8022
+ # `containerInsights` account setting to `enhanced`.
8023
+ #
8024
+ # To use Container Insights, set the `containerInsights` account
8025
+ # setting to `enabled`.
8026
+ #
8027
+ # For more information, see [Monitor Amazon ECS containers using
8028
+ # Container Insights with enhanced observability][2] in the *Amazon
8029
+ # Elastic Container Service Developer Guide*.
7985
8030
  #
7986
8031
  # * `dualStackIPv6` - When turned on, when using a VPC in dual stack
7987
8032
  # mode, your tasks using the `awsvpc` network mode can have an IPv6
@@ -8029,7 +8074,7 @@ module Aws::ECS
8029
8074
  #
8030
8075
  # @!attribute [rw] value
8031
8076
  # The account setting value for the specified principal ARN. Accepted
8032
- # values are `enabled`, `disabled`, `on`, and `off`.
8077
+ # values are `enabled`, `disabled`, `enhanced`, `on`, and `off`.
8033
8078
  #
8034
8079
  # When you specify `fargateTaskRetirementWaitPeriod` for the `name`,
8035
8080
  # the following are the valid values:
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.170.0'
58
+ GEM_VERSION = '1.171.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.170.0
4
+ version: 1.171.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-20 00:00:00.000000000 Z
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core