aws-sdk-quicksight 1.165.0 → 1.167.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-quicksight/client.rb +481 -6
- data/lib/aws-sdk-quicksight/client_api.rb +347 -1
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/types.rb +1034 -10
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +1566 -15
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +272 -0
- metadata +1 -1
|
@@ -37,6 +37,7 @@ module Aws::QuickSight
|
|
|
37
37
|
# * {InternalServerException}
|
|
38
38
|
# * {InvalidDataSetParameterValueException}
|
|
39
39
|
# * {InvalidNextTokenException}
|
|
40
|
+
# * {InvalidParameterException}
|
|
40
41
|
# * {InvalidParameterValueException}
|
|
41
42
|
# * {InvalidRequestException}
|
|
42
43
|
# * {LimitExceededException}
|
|
@@ -251,6 +252,26 @@ module Aws::QuickSight
|
|
|
251
252
|
end
|
|
252
253
|
end
|
|
253
254
|
|
|
255
|
+
class InvalidParameterException < ServiceError
|
|
256
|
+
|
|
257
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
258
|
+
# @param [String] message
|
|
259
|
+
# @param [Aws::QuickSight::Types::InvalidParameterException] data
|
|
260
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
261
|
+
super(context, message, data)
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
# @return [String]
|
|
265
|
+
def message
|
|
266
|
+
@message || @data[:message]
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
# @return [String]
|
|
270
|
+
def request_id
|
|
271
|
+
@data[:request_id]
|
|
272
|
+
end
|
|
273
|
+
end
|
|
274
|
+
|
|
254
275
|
class InvalidParameterValueException < ServiceError
|
|
255
276
|
|
|
256
277
|
# @param [Seahorse::Client::RequestContext] context
|