aws-sdk-ecs 1.185.0 → 1.186.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: 38b36fd18655c03f5aaa5e0fc9480552102fbd86936d7f99c5df56e07bc3410d
4
- data.tar.gz: 03d61e712ac92d82f613cd2149524e5e00ca638962e6fc35e167149851f2716d
3
+ metadata.gz: 1b3e8695d557b760fcfa1a14ebc499561f78bd27dafcc1e7a4fcc1a8a3e9218c
4
+ data.tar.gz: b1f3fcfef917ef6deeb70d413b2dbb52dc15b3b7d5d13382290cd2d71260487a
5
5
  SHA512:
6
- metadata.gz: f29dd5c74908e40eda0c548c493c07390c5dbec200e549de3c3d2c14e7b1e20705db1727aa5fb27ac5f8b1c61642a59f1f932503b20d6aa21d2de075262f9c00
7
- data.tar.gz: b39f6ef29070ec0be6325bf1552e8a57fa549dbda4fab10b27b8002503fb20317d19972c7e832ac831212cce0f872749c3c1377e51b1d0cfab82f3a3e8dbd3ec
6
+ metadata.gz: b1380f891e5033281a39f8c62e0f8e0ad60f5c2a1cdd90ca7ba6182dd903e715c0a409673aba30449a69dbd1befc79e4be69fed84dacb2cf91f63d5aaa25ea7c
7
+ data.tar.gz: 5c66e32c78cf2695c027535f412e633ff2e99f65a57a6aa99eefe0153aed0e94cae25ba999bb755ce44f92f5ca434dc2dd89ab106a3ece9d7db5959487384dc1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.186.0 (2025-04-24)
5
+ ------------------
6
+
7
+ * Feature - Documentation only release for Amazon ECS
8
+
4
9
  1.185.0 (2025-04-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.185.0
1
+ 1.186.0
@@ -8658,6 +8658,19 @@ module Aws::ECS
8658
8658
  # algorithm starting with a couple of seconds of wait time, and
8659
8659
  # increase gradually up to about five minutes of wait time.
8660
8660
  #
8661
+ # If you get a `ConflictException` error, the `RunTask` request could
8662
+ # not be processed due to conflicts. The provided `clientToken` is
8663
+ # already in use with a different `RunTask` request. The `resourceIds`
8664
+ # are the existing task ARNs which are already associated with the
8665
+ # `clientToken`.
8666
+ #
8667
+ # To fix this issue:
8668
+ #
8669
+ # * Run `RunTask` with a unique `clientToken`.
8670
+ #
8671
+ # * Run `RunTask` with the `clientToken` and the original set of
8672
+ # parameters
8673
+ #
8661
8674
  #
8662
8675
  #
8663
8676
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/scheduling_tasks.html
@@ -9625,28 +9638,17 @@ module Aws::ECS
9625
9638
 
9626
9639
  # Stops an ongoing service deployment.
9627
9640
  #
9628
- # The following stop types are avaiable:
9629
- #
9630
- # * ROLLBACK - This option rolls back the service deployment to the
9631
- # previous service revision.
9632
- #
9633
- # You can use this option even if you didn't configure the service
9634
- # deployment for the rollback option.
9641
+ # <note markdown="1"> StopServiceDeployment isn't currently supported.
9635
9642
  #
9636
- # For more information, see [Stopping Amazon ECS service deployments][1]
9637
- # in the *Amazon Elastic Container Service Developer Guide*.
9638
- #
9639
- #
9640
- #
9641
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/stop-service-deployment.html
9643
+ # </note>
9642
9644
  #
9643
9645
  # @option params [required, String] :service_deployment_arn
9644
9646
  # The ARN of the service deployment that you want to stop.
9645
9647
  #
9646
9648
  # @option params [String] :stop_type
9647
- # How you want Amazon ECS to stop the task.
9649
+ # How you want Amazon ECS to stop the service.
9648
9650
  #
9649
- # The valid values are `ROLLBACK`.
9651
+ # The ROLLBACK and ABORT stopType aren't supported.
9650
9652
  #
9651
9653
  # @return [Types::StopServiceDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9652
9654
  #
@@ -12533,7 +12535,7 @@ module Aws::ECS
12533
12535
  tracer: tracer
12534
12536
  )
12535
12537
  context[:gem_name] = 'aws-sdk-ecs'
12536
- context[:gem_version] = '1.185.0'
12538
+ context[:gem_version] = '1.186.0'
12537
12539
  Seahorse::Client::Request.new(handlers, context)
12538
12540
  end
12539
12541
 
@@ -932,17 +932,8 @@ module Aws::ECS
932
932
  include Aws::Structure
933
933
  end
934
934
 
935
- # The `RunTask` request could not be processed due to conflicts. The
936
- # provided `clientToken` is already in use with a different `RunTask`
937
- # request. The `resourceIds` are the existing task ARNs which are
938
- # already associated with the `clientToken`.
939
- #
940
- # To fix this issue:
941
- #
942
- # * Run `RunTask` with a unique `clientToken`.
943
- #
944
- # * Run `RunTask` with the `clientToken` and the original set of
945
- # parameters
935
+ # The request could not be processed because of conflict in the current
936
+ # state of the resource.
946
937
  #
947
938
  # @!attribute [rw] resource_ids
948
939
  # The existing task ARNs which are already associated with the
@@ -11070,9 +11061,9 @@ module Aws::ECS
11070
11061
  # @return [String]
11071
11062
  #
11072
11063
  # @!attribute [rw] stop_type
11073
- # How you want Amazon ECS to stop the task.
11064
+ # How you want Amazon ECS to stop the service.
11074
11065
  #
11075
- # The valid values are `ROLLBACK`.
11066
+ # The ROLLBACK and ABORT stopType aren't supported.
11076
11067
  # @return [String]
11077
11068
  #
11078
11069
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopServiceDeploymentRequest 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.185.0'
58
+ GEM_VERSION = '1.186.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.185.0
4
+ version: 1.186.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: 2025-04-23 00:00:00.000000000 Z
11
+ date: 2025-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core