aws-sdk-ecs 1.123.0 → 1.125.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: 920bd326ba4a1bed54d4ddb85ce52dccb4dd2b69a372213b02a0410a84e59477
4
- data.tar.gz: e5b82ba469fc84928aa7c68b163ad7a835d9ef0f92304c33609217a89ce617e5
3
+ metadata.gz: 2b8f80dcbe88fd463330ece6adef178de752090da72c68f784dd66129c1bedab
4
+ data.tar.gz: 21f4b7892fa470a3b4a73d0b6dc25bc9b3bdf6c807d91740267c8f21cc2500e0
5
5
  SHA512:
6
- metadata.gz: e554d81eba122ca77cca2619459a2fa4e85aa2aaed9c712672df1044a64602efd9646969d5eab1c1c2d3dcda3c29a6f00e17dabca0d1bb1242e0bf29a4371760
7
- data.tar.gz: dd27b051a6c5ef349a221fb9931b294ba8f7822e647ad11a18d62c2801d1fae76a2706b90d411d847a7813527a1d6e66a694533a8aa483ba3288104cf9dc4486
6
+ metadata.gz: 570ce141e4bad468ae9fcb0be2904ba9de341a7352ccf69bc69f43ee015ca1e75a3056ba8aa6fd65bb6a4657fde179f4ff629280e470b1674679588565b86a5a
7
+ data.tar.gz: e70fe3054f4ee832e4f7a4eb698f4595a329482a90393a896295e83280d9e1f10d1000f0c3797a64866edd75d005038fc9adf1d94b373eb191d128fa97329374
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.125.0 (2023-07-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.124.0 (2023-06-30)
10
+ ------------------
11
+
12
+ * Feature - Added new field "credentialspecs" to the ecs task definition to support gMSA of windows/linux in both domainless and domain-joined mode
13
+
4
14
  1.123.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.123.0
1
+ 1.125.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::ECS
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::ECS
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::ECS
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -2499,6 +2510,8 @@ module Aws::ECS
2499
2510
  # resp.task_definitions[0].container_definitions[0].firelens_configuration.type #=> String, one of "fluentd", "fluentbit"
2500
2511
  # resp.task_definitions[0].container_definitions[0].firelens_configuration.options #=> Hash
2501
2512
  # resp.task_definitions[0].container_definitions[0].firelens_configuration.options["String"] #=> String
2513
+ # resp.task_definitions[0].container_definitions[0].credential_specs #=> Array
2514
+ # resp.task_definitions[0].container_definitions[0].credential_specs[0] #=> String
2502
2515
  # resp.task_definitions[0].family #=> String
2503
2516
  # resp.task_definitions[0].task_role_arn #=> String
2504
2517
  # resp.task_definitions[0].execution_role_arn #=> String
@@ -2952,6 +2965,8 @@ module Aws::ECS
2952
2965
  # resp.task_definition.container_definitions[0].firelens_configuration.type #=> String, one of "fluentd", "fluentbit"
2953
2966
  # resp.task_definition.container_definitions[0].firelens_configuration.options #=> Hash
2954
2967
  # resp.task_definition.container_definitions[0].firelens_configuration.options["String"] #=> String
2968
+ # resp.task_definition.container_definitions[0].credential_specs #=> Array
2969
+ # resp.task_definition.container_definitions[0].credential_specs[0] #=> String
2955
2970
  # resp.task_definition.family #=> String
2956
2971
  # resp.task_definition.task_role_arn #=> String
2957
2972
  # resp.task_definition.execution_role_arn #=> String
@@ -3868,6 +3883,8 @@ module Aws::ECS
3868
3883
  # resp.task_definition.container_definitions[0].firelens_configuration.type #=> String, one of "fluentd", "fluentbit"
3869
3884
  # resp.task_definition.container_definitions[0].firelens_configuration.options #=> Hash
3870
3885
  # resp.task_definition.container_definitions[0].firelens_configuration.options["String"] #=> String
3886
+ # resp.task_definition.container_definitions[0].credential_specs #=> Array
3887
+ # resp.task_definition.container_definitions[0].credential_specs[0] #=> String
3871
3888
  # resp.task_definition.family #=> String
3872
3889
  # resp.task_definition.task_role_arn #=> String
3873
3890
  # resp.task_definition.execution_role_arn #=> String
@@ -6610,6 +6627,7 @@ module Aws::ECS
6610
6627
  # "String" => "String",
6611
6628
  # },
6612
6629
  # },
6630
+ # credential_specs: ["String"],
6613
6631
  # },
6614
6632
  # ],
6615
6633
  # volumes: [
@@ -6798,6 +6816,8 @@ module Aws::ECS
6798
6816
  # resp.task_definition.container_definitions[0].firelens_configuration.type #=> String, one of "fluentd", "fluentbit"
6799
6817
  # resp.task_definition.container_definitions[0].firelens_configuration.options #=> Hash
6800
6818
  # resp.task_definition.container_definitions[0].firelens_configuration.options["String"] #=> String
6819
+ # resp.task_definition.container_definitions[0].credential_specs #=> Array
6820
+ # resp.task_definition.container_definitions[0].credential_specs[0] #=> String
6801
6821
  # resp.task_definition.family #=> String
6802
6822
  # resp.task_definition.task_role_arn #=> String
6803
6823
  # resp.task_definition.execution_role_arn #=> String
@@ -9722,7 +9742,7 @@ module Aws::ECS
9722
9742
  params: params,
9723
9743
  config: config)
9724
9744
  context[:gem_name] = 'aws-sdk-ecs'
9725
- context[:gem_version] = '1.123.0'
9745
+ context[:gem_version] = '1.125.0'
9726
9746
  Seahorse::Client::Request.new(handlers, context)
9727
9747
  end
9728
9748
 
@@ -559,6 +559,7 @@ module Aws::ECS
559
559
  ContainerDefinition.add_member(:system_controls, Shapes::ShapeRef.new(shape: SystemControls, location_name: "systemControls"))
560
560
  ContainerDefinition.add_member(:resource_requirements, Shapes::ShapeRef.new(shape: ResourceRequirements, location_name: "resourceRequirements"))
561
561
  ContainerDefinition.add_member(:firelens_configuration, Shapes::ShapeRef.new(shape: FirelensConfiguration, location_name: "firelensConfiguration"))
562
+ ContainerDefinition.add_member(:credential_specs, Shapes::ShapeRef.new(shape: StringList, location_name: "credentialSpecs"))
562
563
  ContainerDefinition.struct_class = Types::ContainerDefinition
563
564
 
564
565
  ContainerDefinitions.member = Shapes::ShapeRef.new(shape: ContainerDefinition)
@@ -1837,6 +1837,30 @@ module Aws::ECS
1837
1837
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html
1838
1838
  # @return [Types::FirelensConfiguration]
1839
1839
  #
1840
+ # @!attribute [rw] credential_specs
1841
+ # A list of ARNs in SSM or Amazon S3 to a credential spec
1842
+ # (`credspec`code>) file that configures a container for Active
1843
+ # Directory authentication. This parameter is only used with
1844
+ # domainless authentication.
1845
+ #
1846
+ # The format for each ARN is `credentialspecdomainless:MyARN`. Replace
1847
+ # `MyARN` with the ARN in SSM or Amazon S3.
1848
+ #
1849
+ # The `credspec` must provide a ARN in Secrets Manager for a secret
1850
+ # containing the username, password, and the domain to connect to. For
1851
+ # better security, the instance isn't joined to the domain for
1852
+ # domainless authentication. Other applications on the instance can't
1853
+ # use the domainless credentials. You can use this parameter to run
1854
+ # tasks on the same instance, even it the tasks need to join different
1855
+ # domains. For more information, see [Using gMSAs for Windows
1856
+ # Containers][1] and [Using gMSAs for Linux Containers][2].
1857
+ #
1858
+ #
1859
+ #
1860
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows-gmsa.html
1861
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/linux-gmsa.html
1862
+ # @return [Array<String>]
1863
+ #
1840
1864
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerDefinition AWS API Documentation
1841
1865
  #
1842
1866
  class ContainerDefinition < Struct.new(
@@ -1878,7 +1902,8 @@ module Aws::ECS
1878
1902
  :health_check,
1879
1903
  :system_controls,
1880
1904
  :resource_requirements,
1881
- :firelens_configuration)
1905
+ :firelens_configuration,
1906
+ :credential_specs)
1882
1907
  SENSITIVE = []
1883
1908
  include Aws::Structure
1884
1909
  end
@@ -4950,6 +4975,9 @@ module Aws::ECS
4950
4975
  # task with the DescribeTasks API operation or when viewing the task
4951
4976
  # details in the console.
4952
4977
  #
4978
+ # The health check is designed to make sure that your containers survive
4979
+ # agent restarts, upgrades, or temporary unavailability.
4980
+ #
4953
4981
  # The following describes the possible `healthStatus` values for a
4954
4982
  # container:
4955
4983
  #
@@ -4982,6 +5010,13 @@ module Aws::ECS
4982
5010
  #
4983
5011
  # The following are notes about container health check support:
4984
5012
  #
5013
+ # * When the Amazon ECS agent cannot connect to the Amazon ECS service,
5014
+ # the service reports the container as `UNHEALTHY`.
5015
+ #
5016
+ # * The health check statuses are the "last heard from" response from
5017
+ # the Amazon ECS agent. There are no assumptions made about the status
5018
+ # of the container health checks.
5019
+ #
4985
5020
  # * Container health checks require version 1.17.0 or greater of the
4986
5021
  # Amazon ECS container agent. For more information, see [Updating the
4987
5022
  # Amazon ECS container agent][2].
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.123.0'
56
+ GEM_VERSION = '1.125.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.123.0
4
+ version: 1.125.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: 2023-06-28 00:00:00.000000000 Z
11
+ date: 2023-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.176.0
22
+ version: 3.177.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.176.0
32
+ version: 3.177.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement