aws-sdk-ecs 1.99.0 → 1.110.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 +58 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +723 -77
- data/lib/aws-sdk-ecs/client_api.rb +159 -0
- data/lib/aws-sdk-ecs/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-ecs/endpoint_provider.rb +51 -0
- data/lib/aws-sdk-ecs/endpoints.rb +785 -0
- data/lib/aws-sdk-ecs/errors.rb +11 -0
- data/lib/aws-sdk-ecs/plugins/endpoints.rb +178 -0
- data/lib/aws-sdk-ecs/types.rb +1301 -2247
- data/lib/aws-sdk-ecs.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '099a61e6b90333ac05b74ade4af404d2af9ddfeafdeb4c61920dd3bbc776a553'
|
4
|
+
data.tar.gz: 6d587065c7c63a201f17be4323cfaaa41c94b4c8a4cf45ed8cf8c56ba28881e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c783fd58a23fdccd6da398dbf30af9a78c8302784a3bf15af363ec7c26e380d375fe8c6fe33eae582a047ad7789aee118d21b6ff80c9537fee7f2e1ea66712fe
|
7
|
+
data.tar.gz: 785c6a884f7984b50eb7cb9d876e29f6c47d4ea3669b1d16ee62eb7022828a25067c8083f512c0b6a922f5d0f93b405c2adcd81758428397d690403d6866f500
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,63 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
11
|
+
1.109.0 (2022-12-19)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
* Feature - This release adds support for alarm-based rollbacks in ECS, a new feature that allows customers to add automated safeguards for Amazon ECS service rolling updates.
|
15
|
+
|
16
|
+
1.108.0 (2022-12-15)
|
17
|
+
------------------
|
18
|
+
|
19
|
+
* Feature - This release adds support for container port ranges in ECS, a new capability that allows customers to provide container port ranges to simplify use cases where multiple ports are in use in a container. This release updates TaskDefinition mutation APIs and the Task description APIs.
|
20
|
+
|
21
|
+
1.107.0 (2022-12-02)
|
22
|
+
------------------
|
23
|
+
|
24
|
+
* Feature - Documentation updates for Amazon ECS
|
25
|
+
|
26
|
+
1.106.0 (2022-11-28)
|
27
|
+
------------------
|
28
|
+
|
29
|
+
* 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.
|
30
|
+
|
31
|
+
1.105.0 (2022-11-10)
|
32
|
+
------------------
|
33
|
+
|
34
|
+
* 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.
|
35
|
+
|
36
|
+
1.104.0 (2022-10-25)
|
37
|
+
------------------
|
38
|
+
|
39
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
40
|
+
|
41
|
+
1.103.0 (2022-10-13)
|
42
|
+
------------------
|
43
|
+
|
44
|
+
* Feature - Documentation update to address tickets.
|
45
|
+
|
46
|
+
1.102.0 (2022-10-04)
|
47
|
+
------------------
|
48
|
+
|
49
|
+
* Feature - Documentation updates to address various Amazon ECS tickets.
|
50
|
+
|
51
|
+
1.101.0 (2022-09-16)
|
52
|
+
------------------
|
53
|
+
|
54
|
+
* Feature - This release supports new task definition sizes.
|
55
|
+
|
56
|
+
1.100.0 (2022-06-21)
|
57
|
+
------------------
|
58
|
+
|
59
|
+
* Feature - Amazon ECS UpdateService now supports the following parameters: PlacementStrategies, PlacementConstraints and CapacityProviderStrategy.
|
60
|
+
|
4
61
|
1.99.0 (2022-03-22)
|
5
62
|
------------------
|
6
63
|
|
@@ -577,4 +634,4 @@ Unreleased Changes
|
|
577
634
|
1.0.0.rc1 (2016-12-05)
|
578
635
|
------------------
|
579
636
|
|
580
|
-
* Feature - Initial preview release of the `aws-sdk-ecs` gem.
|
637
|
+
* Feature - Initial preview release of the `aws-sdk-ecs` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|