aws-sdk-quicksight 1.135.0 → 1.136.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +1121 -1
- data/lib/aws-sdk-quicksight/client_api.rb +607 -0
- data/lib/aws-sdk-quicksight/errors.rb +16 -0
- data/lib/aws-sdk-quicksight/types.rb +1252 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +421 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +385 -0
- metadata +2 -2
@@ -34,6 +34,7 @@ module Aws::QuickSight
|
|
34
34
|
# * {DomainNotWhitelistedException}
|
35
35
|
# * {IdentityTypeNotSupportedException}
|
36
36
|
# * {InternalFailureException}
|
37
|
+
# * {InternalServerException}
|
37
38
|
# * {InvalidNextTokenException}
|
38
39
|
# * {InvalidParameterValueException}
|
39
40
|
# * {InvalidRequestException}
|
@@ -194,6 +195,21 @@ module Aws::QuickSight
|
|
194
195
|
end
|
195
196
|
end
|
196
197
|
|
198
|
+
class InternalServerException < ServiceError
|
199
|
+
|
200
|
+
# @param [Seahorse::Client::RequestContext] context
|
201
|
+
# @param [String] message
|
202
|
+
# @param [Aws::QuickSight::Types::InternalServerException] data
|
203
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
204
|
+
super(context, message, data)
|
205
|
+
end
|
206
|
+
|
207
|
+
# @return [String]
|
208
|
+
def message
|
209
|
+
@message || @data[:message]
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
197
213
|
class InvalidNextTokenException < ServiceError
|
198
214
|
|
199
215
|
# @param [Seahorse::Client::RequestContext] context
|