aws-sdk-quicksight 1.162.0 → 1.163.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 +1233 -57
- data/lib/aws-sdk-quicksight/client_api.rb +383 -14
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/types.rb +1358 -58
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +911 -5
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +341 -1
- metadata +1 -1
|
@@ -35,6 +35,7 @@ module Aws::QuickSight
|
|
|
35
35
|
# * {IdentityTypeNotSupportedException}
|
|
36
36
|
# * {InternalFailureException}
|
|
37
37
|
# * {InternalServerException}
|
|
38
|
+
# * {InvalidDataSetParameterValueException}
|
|
38
39
|
# * {InvalidNextTokenException}
|
|
39
40
|
# * {InvalidParameterValueException}
|
|
40
41
|
# * {InvalidRequestException}
|
|
@@ -210,6 +211,26 @@ module Aws::QuickSight
|
|
|
210
211
|
end
|
|
211
212
|
end
|
|
212
213
|
|
|
214
|
+
class InvalidDataSetParameterValueException < ServiceError
|
|
215
|
+
|
|
216
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
217
|
+
# @param [String] message
|
|
218
|
+
# @param [Aws::QuickSight::Types::InvalidDataSetParameterValueException] data
|
|
219
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
220
|
+
super(context, message, data)
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
# @return [String]
|
|
224
|
+
def message
|
|
225
|
+
@message || @data[:message]
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# @return [String]
|
|
229
|
+
def request_id
|
|
230
|
+
@data[:request_id]
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
|
|
213
234
|
class InvalidNextTokenException < ServiceError
|
|
214
235
|
|
|
215
236
|
# @param [Seahorse::Client::RequestContext] context
|