aws-sdk-shield 1.36.0 → 1.37.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8802154dbb7f78038d59ecb626119acfe8273f6257f9d0b51965a7cf8ed83c85
4
- data.tar.gz: 7db7ccd3a656fb079afec4bd1262a63406733405fbc92804a2d4ad81d4447c88
3
+ metadata.gz: 879c6b88e06bd722d2015a9f8970f372ae2485a60775d7f7b02fd75797503fbf
4
+ data.tar.gz: ca8a001ad6a7d3c4ae4470549cb87b5bc707166652634da9b6b7a4d20d1d1ae6
5
5
  SHA512:
6
- metadata.gz: bbb2c1693316839ce802122c244fb9e87c5f5a14fa8536c1faa8b85cfd2f553ef5666fcc044c8d919290faff7775daec9ed24ef223e7449427b154a64a8606d9
7
- data.tar.gz: 81ad1da9f8fb31fcfe8d7fe57aee4f4ef7533232805299dbcfb49c9954a6225f981abab8ae7e211025e88c1185f79fca4b95cbcd9620a38cc076c00035889936
6
+ metadata.gz: 22c72a55bc53073aa29422b028b6c8a2cdfb5157b49f9dbd1db75e62c5146c732f5b4562a8d36155cda5611486afb4fb3718406d64d3629cedf2e35f7c7a0627
7
+ data.tar.gz: 8396bc9a95170b6d8a85876f0efec7202fe6b4d38364c2f9d86fd47cc47db6b45ecb77b5ad37473aa267d386c2f336b37305601ef4acc495fe16646ba5c94fde
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2021-04-09)
5
+ ------------------
6
+
7
+ * Feature - CreateProtection now throws InvalidParameterException instead of InternalErrorException when system tags (tag with keys prefixed with "aws:") are passed in.
8
+
4
9
  1.36.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-shield/customizations'
48
48
  # @!group service
49
49
  module Aws::Shield
50
50
 
51
- GEM_VERSION = '1.36.0'
51
+ GEM_VERSION = '1.37.0'
52
52
 
53
53
  end
@@ -1659,7 +1659,7 @@ module Aws::Shield
1659
1659
  params: params,
1660
1660
  config: config)
1661
1661
  context[:gem_name] = 'aws-sdk-shield'
1662
- context[:gem_version] = '1.36.0'
1662
+ context[:gem_version] = '1.37.0'
1663
1663
  Seahorse::Client::Request.new(handlers, context)
1664
1664
  end
1665
1665
 
@@ -677,6 +677,7 @@ module Aws::Shield
677
677
  o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
678
678
  o.errors << Shapes::ShapeRef.new(shape: OptimisticLockException)
679
679
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
680
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
680
681
  end)
681
682
 
682
683
  api.add_operation(:create_protection_group, Seahorse::Model::Operation.new.tap do |o|
@@ -1123,17 +1123,15 @@ module Aws::Shield
1123
1123
 
1124
1124
  # Exception that indicates that the operation would exceed a limit.
1125
1125
  #
1126
- # `Type` is the type of limit that would be exceeded.
1127
- #
1128
- # `Limit` is the threshold that would be exceeded.
1129
- #
1130
1126
  # @!attribute [rw] message
1131
1127
  # @return [String]
1132
1128
  #
1133
1129
  # @!attribute [rw] type
1130
+ # The type of limit that would be exceeded.
1134
1131
  # @return [String]
1135
1132
  #
1136
1133
  # @!attribute [rw] limit
1134
+ # The threshold that would be exceeded.
1137
1135
  # @return [Integer]
1138
1136
  #
1139
1137
  # @see http://docs.aws.amazon.com/goto/WebAPI/shield-2016-06-02/LimitsExceededException AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-shield
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.37.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-shield
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-shield/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-shield
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-shield/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths: