aws-sdk-ecs 1.116.0 → 1.118.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: c9d5abbd33de57234e3078be526939c5597427b4eede4c19c00673fdaad5f396
4
- data.tar.gz: df76354c0704f80d1e6f928cd61454cb90c8bd8611a71f6b20aecf1589c09cd4
3
+ metadata.gz: 800f6bdffb7243ba2c5adc64c8b0da72ab60ff66749b0262ca6f8a2f4fc26366
4
+ data.tar.gz: 18cbb49e6faa571451822572f3f05d0bd109e58ff8e76fc749eaaf9932e3c96e
5
5
  SHA512:
6
- metadata.gz: 03343a21e3e167f02764d438d3a6b16e02bdd59a1d50f224a5e61d767a760e3065a239a61455279d2516fce34cf68d54328f7e18a796521c5548cfac4c016935
7
- data.tar.gz: 8240e9af8ac51480be4922d4079bcd52cd3665ee1dd1c031a6af0fe92126edd0e93847257f57a5d003e233059c7a53564b66d191e189ff3311edc7fddac8a5bb
6
+ metadata.gz: c9c51d94299aa0163551e021e1eca6610a602889b1bd209d4b9d32a4f3498aea01e9d618e31cd45609e0a9dadacd4deeb76cd70ff7a2ba255a168a9726965ef2
7
+ data.tar.gz: 389b6393d2fff0bba2c95389c095a8d66591623096fd82548b41413662fa266ec4c0b9870e796c9b2295e4b4ba36fbd2c078df387017d01824f0a540fc44bbf7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.118.0 (2023-05-04)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster
8
+
9
+ 1.117.0 (2023-05-02)
10
+ ------------------
11
+
12
+ * Feature - Documentation only update to address Amazon ECS tickets.
13
+
4
14
  1.116.0 (2023-04-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.116.0
1
+ 1.118.0
@@ -5479,7 +5479,7 @@ module Aws::ECS
5479
5479
  #
5480
5480
  # @option params [required, String] :value
5481
5481
  # The account setting value for the specified principal ARN. Accepted
5482
- # values are `enabled` and `disabled`.
5482
+ # values are `enabled`, `disabled`, `on`, and `off`.
5483
5483
  #
5484
5484
  # @option params [String] :principal_arn
5485
5485
  # The ARN of the principal, which can be a user, role, or the root user.
@@ -5595,7 +5595,7 @@ module Aws::ECS
5595
5595
  #
5596
5596
  # @option params [required, String] :value
5597
5597
  # The account setting value for the specified principal ARN. Accepted
5598
- # values are `enabled` and `disabled`.
5598
+ # values are `enabled`, `disabled`, `on`, and `off`.
5599
5599
  #
5600
5600
  # @return [Types::PutAccountSettingDefaultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5601
5601
  #
@@ -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.116.0'
9707
+ context[:gem_version] = '1.118.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|
@@ -7186,7 +7186,7 @@ module Aws::ECS
7186
7186
  #
7187
7187
  # @!attribute [rw] value
7188
7188
  # The account setting value for the specified principal ARN. Accepted
7189
- # values are `enabled` and `disabled`.
7189
+ # values are `enabled`, `disabled`, `on`, and `off`.
7190
7190
  # @return [String]
7191
7191
  #
7192
7192
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAccountSettingDefaultRequest AWS API Documentation
@@ -7234,7 +7234,7 @@ module Aws::ECS
7234
7234
  #
7235
7235
  # @!attribute [rw] value
7236
7236
  # The account setting value for the specified principal ARN. Accepted
7237
- # values are `enabled` and `disabled`.
7237
+ # values are `enabled`, `disabled`, `on`, and `off`.
7238
7238
  # @return [String]
7239
7239
  #
7240
7240
  # @!attribute [rw] principal_arn
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.116.0'
56
+ GEM_VERSION = '1.118.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.116.0
4
+ version: 1.118.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-04-21 00:00:00.000000000 Z
11
+ date: 2023-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core