aws-sdk-ecs 1.210.0 → 1.211.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: 186f3d6ebf1a0afa3dbb5faa3ba4cc819391dd1770a560877e158f1d1af98fa5
4
- data.tar.gz: 61061122d12949814a85b83a90acd90a8b43cce65c3008fa30625da5b689c0a2
3
+ metadata.gz: 6332378626df5ab73fa3c610243478d3a98505debbbd2c919caa90b9a73efbb5
4
+ data.tar.gz: 1c9728a78aa78129629d7d19f2154f463c327238ef941518d9134f8e579c163b
5
5
  SHA512:
6
- metadata.gz: 0d05db94ea95bc69edba8e6dc6cfbd2fb58b6b54116d77a2317b52d4125fbfa4b05ee5ce85888ca779c169d6d225f478dc1de0d54580bab520835e043d431ec1
7
- data.tar.gz: bdd95519b8fd96bef874dab9896542cc29bfa2484d6a2e6b09845deccdf12efe333d215ce18be0825a8c597d2fb606241dfc5a43676ce87fbe819d705ec5968a
6
+ metadata.gz: 4315c4ea33bb5db6e612662a56fee7baf17372e37ca656da3817e2e49d9ebaa31048d71d7312aaf2a509c806dfbc82383e48b9d1aa914b5a55fad42387d7e7a9
7
+ data.tar.gz: 7a9b217d2d16479ac475345343f1f510ef2b17722d62e2dfb01803688fa6547125f15e735e1c9a103583abd02ffafcda8e2353d04ecd64dbbe4598536cee8742
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.211.0 (2025-11-03)
5
+ ------------------
6
+
7
+ * Feature - Documentation-only update for LINEAR and CANARY deployment strategies.
8
+
4
9
  1.210.0 (2025-10-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.210.0
1
+ 1.211.0
@@ -1153,10 +1153,10 @@ module Aws::ECS
1153
1153
  # Load Balancer, Network Load Balancer, or Service Connect
1154
1154
  # * `LINEAR`: A *linear* deployment strategy (`LINEAR`) gradually
1155
1155
  # shifts traffic from the current production environment to a new
1156
- # environment in equal percentage increments over a specified time
1157
- # period. With Amazon ECS linear deployments, you can control the
1158
- # pace of traffic shifting and validate new service revisions with
1159
- # increasing amounts of production traffic.
1156
+ # environment in equal percentage increments. With Amazon ECS linear
1157
+ # deployments, you can control the pace of traffic shifting and
1158
+ # validate new service revisions with increasing amounts of
1159
+ # production traffic.
1160
1160
  #
1161
1161
  # Linear deployments are best suited for the following scenarios:
1162
1162
  #
@@ -1170,7 +1170,7 @@ module Aws::ECS
1170
1170
  # the new version to production traffic incrementally
1171
1171
  #
1172
1172
  # * Load balancer requirement: When your service uses Application
1173
- # Load Balancer, Network Load Balancer, or Service Connect
1173
+ # Load Balancer or Service Connect
1174
1174
  # * `CANARY`: A *canary* deployment strategy (`CANARY`) shifts a small
1175
1175
  # percentage of traffic to the new service revision first, then
1176
1176
  # shifts the remaining traffic all at once after a specified time
@@ -1189,7 +1189,7 @@ module Aws::ECS
1189
1189
  # issues are discovered in the new version
1190
1190
  #
1191
1191
  # * Load balancer requirement: When your service uses Application
1192
- # Load Balancer, Network Load Balancer, or Service Connect
1192
+ # Load Balancer or Service Connect
1193
1193
  # * External
1194
1194
  #
1195
1195
  # Use a third-party deployment controller.
@@ -13352,7 +13352,7 @@ module Aws::ECS
13352
13352
  tracer: tracer
13353
13353
  )
13354
13354
  context[:gem_name] = 'aws-sdk-ecs'
13355
- context[:gem_version] = '1.210.0'
13355
+ context[:gem_version] = '1.211.0'
13356
13356
  Seahorse::Client::Request.new(handlers, context)
13357
13357
  end
13358
13358
 
@@ -362,8 +362,8 @@ module Aws::ECS
362
362
  #
363
363
  # Consider the following when you set this value:
364
364
  #
365
- # * When you use `create-service` or `update-service`, the The default
366
- # is `DISABLED`.
365
+ # * When you use `create-service` or `update-service`, the default is
366
+ # `DISABLED`.
367
367
  #
368
368
  # * When the service `deploymentController` is `ECS`, the value must
369
369
  # be `DISABLED`.
@@ -413,7 +413,7 @@ module Aws::ECS
413
413
  #
414
414
  class BlockedException < Aws::EmptyStructure; end
415
415
 
416
- # Configuration for canary deployment strategy that shifts a fixed
416
+ # Configuration for a canary deployment strategy that shifts a fixed
417
417
  # percentage of traffic to the new service revision, waits for a
418
418
  # specified bake time, then shifts the remaining traffic.
419
419
  #
@@ -423,8 +423,8 @@ module Aws::ECS
423
423
  #
424
424
  # @!attribute [rw] canary_percent
425
425
  # The percentage of production traffic to shift to the new service
426
- # revision during the canary phase. Valid values are 0.1 to 100.0. The
427
- # default value is 5.0.
426
+ # revision during the canary phase. Valid values are multiples of 0.1
427
+ # from 0.1 to 100.0. The default value is 5.0.
428
428
  # @return [Float]
429
429
  #
430
430
  # @!attribute [rw] canary_bake_time_in_minutes
@@ -4290,6 +4290,19 @@ module Aws::ECS
4290
4290
  # revisions before directing production traffic to them. This
4291
4291
  # approach provides a safer way to deploy changes with the ability
4292
4292
  # to quickly roll back if needed.
4293
+ #
4294
+ # * `LINEAR` - A *linear* deployment strategy (`LINEAR`) gradually
4295
+ # shifts traffic from the current production environment to a new
4296
+ # environment in equal percentages over time. With Amazon ECS linear
4297
+ # deployments, you can control the pace of traffic shifting and
4298
+ # validate new service revisions with increasing amounts of
4299
+ # production traffic.
4300
+ #
4301
+ # * `CANARY` - A *canary* deployment strategy (`CANARY`) shifts a
4302
+ # small percentage of traffic to the new service revision first,
4303
+ # then shifts the remaining traffic all at once after a specified
4304
+ # time period. This allows you to test the new version with a subset
4305
+ # of users before full deployment.
4293
4306
  # @return [String]
4294
4307
  #
4295
4308
  # @!attribute [rw] bake_time_in_minutes
@@ -6651,15 +6664,15 @@ module Aws::ECS
6651
6664
  #
6652
6665
  # @!attribute [rw] step_percent
6653
6666
  # The percentage of production traffic to shift in each step during a
6654
- # linear deployment. Valid values are 3.0 to 100.0. The default value
6655
- # is 10.0.
6667
+ # linear deployment. Valid values are multiples of 0.1 from 3.0 to
6668
+ # 100.0. The default value is 10.0.
6656
6669
  # @return [Float]
6657
6670
  #
6658
6671
  # @!attribute [rw] step_bake_time_in_minutes
6659
6672
  # The amount of time in minutes to wait between each traffic shifting
6660
6673
  # step during a linear deployment. Valid values are 0 to 1440 minutes
6661
6674
  # (24 hours). The default value is 6. This bake time is not applied
6662
- # after reaching 100% traffic.
6675
+ # after reaching 100 percent traffic.
6663
6676
  # @return [Integer]
6664
6677
  #
6665
6678
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/LinearConfiguration AWS API Documentation
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.210.0'
58
+ GEM_VERSION = '1.211.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.210.0
4
+ version: 1.211.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services