aws-sdk-s3tables 1.20.0 → 1.22.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3tables/client.rb +630 -6
- data/lib/aws-sdk-s3tables/client_api.rb +387 -0
- data/lib/aws-sdk-s3tables/errors.rb +16 -0
- data/lib/aws-sdk-s3tables/types.rb +700 -4
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +170 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +213 -0
- metadata +3 -3
|
@@ -32,6 +32,7 @@ module Aws::S3Tables
|
|
|
32
32
|
# * {ConflictException}
|
|
33
33
|
# * {ForbiddenException}
|
|
34
34
|
# * {InternalServerErrorException}
|
|
35
|
+
# * {MethodNotAllowedException}
|
|
35
36
|
# * {NotFoundException}
|
|
36
37
|
# * {TooManyRequestsException}
|
|
37
38
|
#
|
|
@@ -116,6 +117,21 @@ module Aws::S3Tables
|
|
|
116
117
|
end
|
|
117
118
|
end
|
|
118
119
|
|
|
120
|
+
class MethodNotAllowedException < ServiceError
|
|
121
|
+
|
|
122
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
123
|
+
# @param [String] message
|
|
124
|
+
# @param [Aws::S3Tables::Types::MethodNotAllowedException] data
|
|
125
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
126
|
+
super(context, message, data)
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# @return [String]
|
|
130
|
+
def message
|
|
131
|
+
@message || @data[:message]
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
|
|
119
135
|
class NotFoundException < ServiceError
|
|
120
136
|
|
|
121
137
|
# @param [Seahorse::Client::RequestContext] context
|