aws-sdk-ecs 1.104.0 → 1.106.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +571 -9
- data/lib/aws-sdk-ecs/client_api.rb +149 -0
- data/lib/aws-sdk-ecs/endpoints.rb +42 -0
- data/lib/aws-sdk-ecs/errors.rb +11 -0
- data/lib/aws-sdk-ecs/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-ecs/types.rb +989 -26
- 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: 9ad7a14e9cb8ec0e0ce2edac9dde415b55baaa4c39e4741a9d94a75141f59217
|
4
|
+
data.tar.gz: d18c642e8b82230c2fcc72db6ee51bef52b3dbe0f9d8ecb89a3dfad4dc161ce9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a13b05ed6ea9d6cbf2744fff086b49dc2880dcd6e4d363582845953d1f76eca6117d1842c44e9879aaebb13e7adc9b3cc6a6e49899891c9967fba1ab46deecd3
|
7
|
+
data.tar.gz: 6ef7601de6468b6444c4054e445c6b64a2ea0511a5c3b6793e255d0420109016e69bbf4992d439d62bc7d38c92aa68a5bc3021156cd1f222ac5ae95b40632131
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.106.0 (2022-11-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for ECS Service Connect, a new capability that simplifies writing and operating resilient distributed applications. This release updates the TaskDefinition, Cluster, Service mutation APIs with Service connect constructs and also adds a new ListServicesByNamespace API.
|
8
|
+
|
9
|
+
1.105.0 (2022-11-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for task scale-in protection with updateTaskProtection and getTaskProtection APIs. UpdateTaskProtection API can be used to protect a service managed task from being terminated by scale-in events and getTaskProtection API to get the scale-in protection status of a task.
|
13
|
+
|
4
14
|
1.104.0 (2022-10-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.106.0
|