aws-sdk-ecs 1.117.0 → 1.119.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab6e8f908b4baa4205d6adaba4bf9be2383afd92fc329a3e69f3ec96facdbac6
4
- data.tar.gz: c6ec15bfffe19579c59090da933cf2ad809f3cf879a60adf9d75865a270ae1d4
3
+ metadata.gz: 6d51f932c0ca092778235d7913b205e68085c38e16916c14fd36d88c33ff0e67
4
+ data.tar.gz: 2d98839ec831ff8d645b5c73acccba8471bd9ca2f7ddc3a6bc069063a24d0ec7
5
5
  SHA512:
6
- metadata.gz: 963cbe6cc13453a29fe98b287fe9c18ac40214b6ffafbed48985518e5ec18ff353c046d272eee7143f62a78c49ab1f9114efdff3af2943879f1f84610ca9a1ad
7
- data.tar.gz: 5ccd70c444ae1dea5a87d101b5c1585aca0854cfb0d215a04865826f347dad469e80bce989f93748896ba1a9060ed9af78349686c78bb34429ca96d6ac784d06
6
+ metadata.gz: 947aa8c44aff67b696dcf19e464f421f12cfe3839b4e3e65efbc119a360ed5cc57e803cb9c9b7294dab73a7da98c6737c1644f148d069dd41c4e0ef5067b7832
7
+ data.tar.gz: 9d8bbb734c54e354781e8ba19be00c22a43bc91470838cf5a0b3dbf55959e9eb01a6ce496f89b306fd36f70b6aed571ebcbc73c7d03e63b34a5a028f707c8a76
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.119.0 (2023-05-18)
5
+ ------------------
6
+
7
+ * Feature - Documentation only release to address various tickets.
8
+
9
+ 1.118.0 (2023-05-04)
10
+ ------------------
11
+
12
+ * Feature - Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster
13
+
4
14
  1.117.0 (2023-05-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.117.0
1
+ 1.119.0
@@ -946,7 +946,7 @@ module Aws::ECS
946
946
  #
947
947
  # @option params [Integer] :desired_count
948
948
  # The number of instantiations of the specified task definition to place
949
- # and keep running on your cluster.
949
+ # and keep running in your service.
950
950
  #
951
951
  # This is required if `schedulingStrategy` is `REPLICA` or isn't
952
952
  # specified. If `schedulingStrategy` is `DAEMON` then this isn't
@@ -9704,7 +9704,7 @@ module Aws::ECS
9704
9704
  params: params,
9705
9705
  config: config)
9706
9706
  context[:gem_name] = 'aws-sdk-ecs'
9707
- context[:gem_version] = '1.117.0'
9707
+ context[:gem_version] = '1.119.0'
9708
9708
  Seahorse::Client::Request.new(handlers, context)
9709
9709
  end
9710
9710
 
@@ -1857,6 +1857,7 @@ module Aws::ECS
1857
1857
  o.errors << Shapes::ShapeRef.new(shape: ServerException)
1858
1858
  o.errors << Shapes::ShapeRef.new(shape: ClientException)
1859
1859
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1860
+ o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
1860
1861
  end)
1861
1862
 
1862
1863
  api.add_operation(:create_service, Seahorse::Model::Operation.new.tap do |o|
@@ -2495,6 +2496,7 @@ module Aws::ECS
2495
2496
  o.errors << Shapes::ShapeRef.new(shape: ClientException)
2496
2497
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundException)
2497
2498
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2499
+ o.errors << Shapes::ShapeRef.new(shape: NamespaceNotFoundException)
2498
2500
  end)
2499
2501
 
2500
2502
  api.add_operation(:update_cluster_settings, Seahorse::Model::Operation.new.tap do |o|
@@ -837,11 +837,6 @@ module Aws::ECS
837
837
  #
838
838
  # @!attribute [rw] image_digest
839
839
  # The container image manifest digest.
840
- #
841
- # <note markdown="1"> The `imageDigest` is only returned if the container is using an
842
- # image hosted in Amazon ECR, otherwise it is omitted.
843
- #
844
- # </note>
845
840
  # @return [String]
846
841
  #
847
842
  # @!attribute [rw] runtime_id
@@ -2601,7 +2596,7 @@ module Aws::ECS
2601
2596
  #
2602
2597
  # @!attribute [rw] desired_count
2603
2598
  # The number of instantiations of the specified task definition to
2604
- # place and keep running on your cluster.
2599
+ # place and keep running in your service.
2605
2600
  #
2606
2601
  # This is required if `schedulingStrategy` is `REPLICA` or isn't
2607
2602
  # specified. If `schedulingStrategy` is `DAEMON` then this isn't
data/lib/aws-sdk-ecs.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ecs/customizations'
53
53
  # @!group service
54
54
  module Aws::ECS
55
55
 
56
- GEM_VERSION = '1.117.0'
56
+ GEM_VERSION = '1.119.0'
57
57
 
58
58
  end
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.117.0
4
+ version: 1.119.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: 2023-05-02 00:00:00.000000000 Z
11
+ date: 2023-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core