aws-sdk-ecs 1.144.0 → 1.146.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
  SHA256:
3
- metadata.gz: 21435feeacbac309446d33890d3261f38cbea1d23a3db469faec64a0e411794d
4
- data.tar.gz: '042429b968f451e6c444328e330c0edf316dfb689cdbe6c687308a92d21f084f'
3
+ metadata.gz: 36068a96dece7656cc530d857c9fbd2412cde348c445a644c21ff036b1c65161
4
+ data.tar.gz: 6152278a3311b1c944e53ae0744be85809d2c42b7accc4b7ef452f6b25901c27
5
5
  SHA512:
6
- metadata.gz: e068ccad0cd96cdb5cbf651480dcd5722556d16585469d90d0e7bbf87d16f07fe7373bc3bb5354449d6d37481c43a12820d0836ec081f0e71170c316291c8907
7
- data.tar.gz: 39a8dbe4a43be21989ff613142369cac8d8bf3f450d3df8bcfa2141c3c4427f8c4ee157f1902f3478739bce95b71fad2623e9298d1cbbffc0db8da910c314c54
6
+ metadata.gz: bb5f6ea92938e01f7639b4eb519c55de337e53cc8f1d71cff1195b8bd2feb0825c0fbb72a42f6006c5f057de9ba5f81a76f2ec10ad582392f91bbad7d0df6268
7
+ data.tar.gz: a0a969f14cf77a43226b10a284398270287b92ced318e5d6218391856dc07007946fd420fd6e779d08cf8b51044682e1105466c175c0753e03de2569510028c0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.145.0 (2024-04-02)
10
+ ------------------
11
+
12
+ * Feature - Documentation only update for Amazon ECS.
13
+
4
14
  1.144.0 (2024-03-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.146.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::ECS
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::ECS
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::ECS
347
356
  # @option options [Aws::ECS::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ECS::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
375
- #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
378
409
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
382
412
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
388
415
  #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -7430,28 +7454,22 @@ module Aws::ECS
7430
7454
  # task definition to run. If a `revision` isn't specified, the latest
7431
7455
  # `ACTIVE` revision is used.
7432
7456
  #
7433
- # When you create a policy for run-task, you can set the resource to be
7434
- # the latest task definition revision, or a specific revision.
7435
- #
7436
7457
  # The full ARN value must match the value that you specified as the
7437
7458
  # `Resource` of the principal's permissions policy.
7438
7459
  #
7439
- # When you specify the policy resource as the latest task definition
7440
- # version (by setting the `Resource` in the policy to
7441
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`),
7442
- # then set this value to
7443
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`.
7460
+ # When you specify a task definition, you must either specify a specific
7461
+ # revision, or all revisions in the ARN.
7462
+ #
7463
+ # To specify a specific revision, include the revision number in the
7464
+ # ARN. For example, to specify revision 2, use
7465
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2`.
7444
7466
  #
7445
- # When you specify the policy resource as a specific task definition
7446
- # version (by setting the `Resource` in the policy to
7447
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`
7448
- # or
7449
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`),
7450
- # then set this value to
7451
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`.
7467
+ # To specify all revisions, use the wildcard (*) in the ARN. For
7468
+ # example, to specify all revisions, use
7469
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`.
7452
7470
  #
7453
7471
  # For more information, see [Policy Resources for Amazon ECS][1] in the
7454
- # Amazon Elastic Container Service developer Guide.
7472
+ # Amazon Elastic Container Service Developer Guide.
7455
7473
  #
7456
7474
  #
7457
7475
  #
@@ -10259,7 +10277,7 @@ module Aws::ECS
10259
10277
  params: params,
10260
10278
  config: config)
10261
10279
  context[:gem_name] = 'aws-sdk-ecs'
10262
- context[:gem_version] = '1.144.0'
10280
+ context[:gem_version] = '1.146.0'
10263
10281
  Seahorse::Client::Request.new(handlers, context)
10264
10282
  end
10265
10283
 
@@ -3833,6 +3833,16 @@ module Aws::ECS
3833
3833
  # return a healthy status before counting the task towards the
3834
3834
  # minimum healthy percent total.
3835
3835
  #
3836
+ # The default value for a replica service for `minimumHealthyPercent`
3837
+ # is 100%. The default `minimumHealthyPercent` value for a service
3838
+ # using the `DAEMON` service schedule is 0% for the CLI, the Amazon
3839
+ # Web Services SDKs, and the APIs and 50% for the Amazon Web Services
3840
+ # Management Console.
3841
+ #
3842
+ # The minimum number of healthy tasks during a deployment is the
3843
+ # `desiredCount` multiplied by the `minimumHealthyPercent`/100,
3844
+ # rounded up to the nearest integer value.
3845
+ #
3836
3846
  # If a service is using either the blue/green (`CODE_DEPLOY`) or
3837
3847
  # `EXTERNAL` deployment types and is running tasks that use the EC2
3838
3848
  # launch type, the **minimum healthy percent** value is set to the
@@ -8603,28 +8613,22 @@ module Aws::ECS
8603
8613
  # task definition to run. If a `revision` isn't specified, the latest
8604
8614
  # `ACTIVE` revision is used.
8605
8615
  #
8606
- # When you create a policy for run-task, you can set the resource to
8607
- # be the latest task definition revision, or a specific revision.
8608
- #
8609
8616
  # The full ARN value must match the value that you specified as the
8610
8617
  # `Resource` of the principal's permissions policy.
8611
8618
  #
8612
- # When you specify the policy resource as the latest task definition
8613
- # version (by setting the `Resource` in the policy to
8614
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`),
8615
- # then set this value to
8616
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName`.
8619
+ # When you specify a task definition, you must either specify a
8620
+ # specific revision, or all revisions in the ARN.
8621
+ #
8622
+ # To specify a specific revision, include the revision number in the
8623
+ # ARN. For example, to specify revision 2, use
8624
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2`.
8617
8625
  #
8618
- # When you specify the policy resource as a specific task definition
8619
- # version (by setting the `Resource` in the policy to
8620
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`
8621
- # or
8622
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`),
8623
- # then set this value to
8624
- # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1`.
8626
+ # To specify all revisions, use the wildcard (*) in the ARN. For
8627
+ # example, to specify all revisions, use
8628
+ # `arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*`.
8625
8629
  #
8626
8630
  # For more information, see [Policy Resources for Amazon ECS][1] in
8627
- # the Amazon Elastic Container Service developer Guide.
8631
+ # the Amazon Elastic Container Service Developer Guide.
8628
8632
  #
8629
8633
  #
8630
8634
  #
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.144.0'
56
+ GEM_VERSION = '1.146.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.144.0
4
+ version: 1.146.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-03-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement