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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +18 -16
- data/lib/aws-sdk-ecs/types.rb +4 -13
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b3e8695d557b760fcfa1a14ebc499561f78bd27dafcc1e7a4fcc1a8a3e9218c
|
4
|
+
data.tar.gz: b1f3fcfef917ef6deeb70d413b2dbb52dc15b3b7d5d13382290cd2d71260487a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1380f891e5033281a39f8c62e0f8e0ad60f5c2a1cdd90ca7ba6182dd903e715c0a409673aba30449a69dbd1befc79e4be69fed84dacb2cf91f63d5aaa25ea7c
|
7
|
+
data.tar.gz: 5c66e32c78cf2695c027535f412e633ff2e99f65a57a6aa99eefe0153aed0e94cae25ba999bb755ce44f92f5ca434dc2dd89ab106a3ece9d7db5959487384dc1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.186.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -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
|
-
#
|
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
|
-
#
|
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
|
9649
|
+
# How you want Amazon ECS to stop the service.
|
9648
9650
|
#
|
9649
|
-
# The
|
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.
|
12538
|
+
context[:gem_version] = '1.186.0'
|
12537
12539
|
Seahorse::Client::Request.new(handlers, context)
|
12538
12540
|
end
|
12539
12541
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -932,17 +932,8 @@ module Aws::ECS
|
|
932
932
|
include Aws::Structure
|
933
933
|
end
|
934
934
|
|
935
|
-
# The
|
936
|
-
#
|
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
|
11064
|
+
# How you want Amazon ECS to stop the service.
|
11074
11065
|
#
|
11075
|
-
# The
|
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
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.
|
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-
|
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
|