Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/boto/redshift/exceptions.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
1 # Copyright (c) 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved | |
2 # | |
3 # Permission is hereby granted, free of charge, to any person obtaining a | |
4 # copy of this software and associated documentation files (the | |
5 # "Software"), to deal in the Software without restriction, including | |
6 # without limitation the rights to use, copy, modify, merge, publish, dis- | |
7 # tribute, sublicense, and/or sell copies of the Software, and to permit | |
8 # persons to whom the Software is furnished to do so, subject to the fol- | |
9 # lowing conditions: | |
10 # | |
11 # The above copyright notice and this permission notice shall be included | |
12 # in all copies or substantial portions of the Software. | |
13 # | |
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | |
15 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- | |
16 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT | |
17 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | |
18 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |
20 # IN THE SOFTWARE. | |
21 # | |
22 from boto.exception import JSONResponseError | |
23 | |
24 | |
25 class ClusterNotFoundFault(JSONResponseError): | |
26 pass | |
27 | |
28 | |
29 class InvalidClusterSnapshotStateFault(JSONResponseError): | |
30 pass | |
31 | |
32 | |
33 class ClusterSnapshotNotFoundFault(JSONResponseError): | |
34 pass | |
35 | |
36 | |
37 class ClusterSecurityGroupQuotaExceededFault(JSONResponseError): | |
38 pass | |
39 | |
40 | |
41 class ReservedNodeOfferingNotFoundFault(JSONResponseError): | |
42 pass | |
43 | |
44 | |
45 class InvalidSubnet(JSONResponseError): | |
46 pass | |
47 | |
48 | |
49 class ClusterSubnetGroupQuotaExceededFault(JSONResponseError): | |
50 pass | |
51 | |
52 | |
53 class InvalidClusterStateFault(JSONResponseError): | |
54 pass | |
55 | |
56 | |
57 class InvalidClusterParameterGroupStateFault(JSONResponseError): | |
58 pass | |
59 | |
60 | |
61 class ClusterParameterGroupAlreadyExistsFault(JSONResponseError): | |
62 pass | |
63 | |
64 | |
65 class InvalidClusterSecurityGroupStateFault(JSONResponseError): | |
66 pass | |
67 | |
68 | |
69 class InvalidRestoreFault(JSONResponseError): | |
70 pass | |
71 | |
72 | |
73 class AuthorizationNotFoundFault(JSONResponseError): | |
74 pass | |
75 | |
76 | |
77 class ResizeNotFoundFault(JSONResponseError): | |
78 pass | |
79 | |
80 | |
81 class NumberOfNodesQuotaExceededFault(JSONResponseError): | |
82 pass | |
83 | |
84 | |
85 class ClusterSnapshotAlreadyExistsFault(JSONResponseError): | |
86 pass | |
87 | |
88 | |
89 class AuthorizationQuotaExceededFault(JSONResponseError): | |
90 pass | |
91 | |
92 | |
93 class AuthorizationAlreadyExistsFault(JSONResponseError): | |
94 pass | |
95 | |
96 | |
97 class ClusterSnapshotQuotaExceededFault(JSONResponseError): | |
98 pass | |
99 | |
100 | |
101 class ReservedNodeNotFoundFault(JSONResponseError): | |
102 pass | |
103 | |
104 | |
105 class ReservedNodeAlreadyExistsFault(JSONResponseError): | |
106 pass | |
107 | |
108 | |
109 class ClusterSecurityGroupAlreadyExistsFault(JSONResponseError): | |
110 pass | |
111 | |
112 | |
113 class ClusterParameterGroupNotFoundFault(JSONResponseError): | |
114 pass | |
115 | |
116 | |
117 class ReservedNodeQuotaExceededFault(JSONResponseError): | |
118 pass | |
119 | |
120 | |
121 class ClusterQuotaExceededFault(JSONResponseError): | |
122 pass | |
123 | |
124 | |
125 class ClusterSubnetQuotaExceededFault(JSONResponseError): | |
126 pass | |
127 | |
128 | |
129 class UnsupportedOptionFault(JSONResponseError): | |
130 pass | |
131 | |
132 | |
133 class InvalidVPCNetworkStateFault(JSONResponseError): | |
134 pass | |
135 | |
136 | |
137 class ClusterSecurityGroupNotFoundFault(JSONResponseError): | |
138 pass | |
139 | |
140 | |
141 class InvalidClusterSubnetGroupStateFault(JSONResponseError): | |
142 pass | |
143 | |
144 | |
145 class ClusterSubnetGroupAlreadyExistsFault(JSONResponseError): | |
146 pass | |
147 | |
148 | |
149 class NumberOfNodesPerClusterLimitExceededFault(JSONResponseError): | |
150 pass | |
151 | |
152 | |
153 class ClusterSubnetGroupNotFoundFault(JSONResponseError): | |
154 pass | |
155 | |
156 | |
157 class ClusterParameterGroupQuotaExceededFault(JSONResponseError): | |
158 pass | |
159 | |
160 | |
161 class ClusterAlreadyExistsFault(JSONResponseError): | |
162 pass | |
163 | |
164 | |
165 class InsufficientClusterCapacityFault(JSONResponseError): | |
166 pass | |
167 | |
168 | |
169 class InvalidClusterSubnetStateFault(JSONResponseError): | |
170 pass | |
171 | |
172 | |
173 class SubnetAlreadyInUse(JSONResponseError): | |
174 pass | |
175 | |
176 | |
177 class InvalidParameterCombinationFault(JSONResponseError): | |
178 pass | |
179 | |
180 | |
181 class AccessToSnapshotDeniedFault(JSONResponseError): | |
182 pass | |
183 | |
184 | |
185 class UnauthorizedOperationFault(JSONResponseError): | |
186 pass | |
187 | |
188 | |
189 class SnapshotCopyAlreadyDisabled(JSONResponseError): | |
190 pass | |
191 | |
192 | |
193 class ClusterNotFound(JSONResponseError): | |
194 pass | |
195 | |
196 | |
197 class UnknownSnapshotCopyRegion(JSONResponseError): | |
198 pass | |
199 | |
200 | |
201 class InvalidClusterSubnetState(JSONResponseError): | |
202 pass | |
203 | |
204 | |
205 class ReservedNodeQuotaExceeded(JSONResponseError): | |
206 pass | |
207 | |
208 | |
209 class InvalidClusterState(JSONResponseError): | |
210 pass | |
211 | |
212 | |
213 class HsmClientCertificateQuotaExceeded(JSONResponseError): | |
214 pass | |
215 | |
216 | |
217 class SubscriptionCategoryNotFound(JSONResponseError): | |
218 pass | |
219 | |
220 | |
221 class HsmClientCertificateNotFound(JSONResponseError): | |
222 pass | |
223 | |
224 | |
225 class SubscriptionEventIdNotFound(JSONResponseError): | |
226 pass | |
227 | |
228 | |
229 class ClusterSecurityGroupAlreadyExists(JSONResponseError): | |
230 pass | |
231 | |
232 | |
233 class HsmConfigurationAlreadyExists(JSONResponseError): | |
234 pass | |
235 | |
236 | |
237 class NumberOfNodesQuotaExceeded(JSONResponseError): | |
238 pass | |
239 | |
240 | |
241 class ReservedNodeOfferingNotFound(JSONResponseError): | |
242 pass | |
243 | |
244 | |
245 class BucketNotFound(JSONResponseError): | |
246 pass | |
247 | |
248 | |
249 class InsufficientClusterCapacity(JSONResponseError): | |
250 pass | |
251 | |
252 | |
253 class InvalidRestore(JSONResponseError): | |
254 pass | |
255 | |
256 | |
257 class UnauthorizedOperation(JSONResponseError): | |
258 pass | |
259 | |
260 | |
261 class ClusterQuotaExceeded(JSONResponseError): | |
262 pass | |
263 | |
264 | |
265 class InvalidVPCNetworkState(JSONResponseError): | |
266 pass | |
267 | |
268 | |
269 class ClusterSnapshotNotFound(JSONResponseError): | |
270 pass | |
271 | |
272 | |
273 class AuthorizationQuotaExceeded(JSONResponseError): | |
274 pass | |
275 | |
276 | |
277 class InvalidHsmClientCertificateState(JSONResponseError): | |
278 pass | |
279 | |
280 | |
281 class SNSTopicArnNotFound(JSONResponseError): | |
282 pass | |
283 | |
284 | |
285 class ResizeNotFound(JSONResponseError): | |
286 pass | |
287 | |
288 | |
289 class ClusterSubnetGroupNotFound(JSONResponseError): | |
290 pass | |
291 | |
292 | |
293 class SNSNoAuthorization(JSONResponseError): | |
294 pass | |
295 | |
296 | |
297 class ClusterSnapshotQuotaExceeded(JSONResponseError): | |
298 pass | |
299 | |
300 | |
301 class AccessToSnapshotDenied(JSONResponseError): | |
302 pass | |
303 | |
304 | |
305 class InvalidClusterSecurityGroupState(JSONResponseError): | |
306 pass | |
307 | |
308 | |
309 class NumberOfNodesPerClusterLimitExceeded(JSONResponseError): | |
310 pass | |
311 | |
312 | |
313 class ClusterSubnetQuotaExceeded(JSONResponseError): | |
314 pass | |
315 | |
316 | |
317 class SNSInvalidTopic(JSONResponseError): | |
318 pass | |
319 | |
320 | |
321 class ClusterSecurityGroupNotFound(JSONResponseError): | |
322 pass | |
323 | |
324 | |
325 class InvalidElasticIp(JSONResponseError): | |
326 pass | |
327 | |
328 | |
329 class InvalidClusterParameterGroupState(JSONResponseError): | |
330 pass | |
331 | |
332 | |
333 class InvalidHsmConfigurationState(JSONResponseError): | |
334 pass | |
335 | |
336 | |
337 | |
338 class ClusterAlreadyExists(JSONResponseError): | |
339 pass | |
340 | |
341 | |
342 class HsmConfigurationQuotaExceeded(JSONResponseError): | |
343 pass | |
344 | |
345 | |
346 class ClusterSnapshotAlreadyExists(JSONResponseError): | |
347 pass | |
348 | |
349 | |
350 class SubscriptionSeverityNotFound(JSONResponseError): | |
351 pass | |
352 | |
353 | |
354 class SourceNotFound(JSONResponseError): | |
355 pass | |
356 | |
357 | |
358 class ReservedNodeAlreadyExists(JSONResponseError): | |
359 pass | |
360 | |
361 | |
362 class ClusterSubnetGroupQuotaExceeded(JSONResponseError): | |
363 pass | |
364 | |
365 | |
366 class ClusterParameterGroupNotFound(JSONResponseError): | |
367 pass | |
368 | |
369 | |
370 class InvalidS3BucketName(JSONResponseError): | |
371 pass | |
372 | |
373 | |
374 class InvalidS3KeyPrefix(JSONResponseError): | |
375 pass | |
376 | |
377 | |
378 class SubscriptionAlreadyExist(JSONResponseError): | |
379 pass | |
380 | |
381 | |
382 class HsmConfigurationNotFound(JSONResponseError): | |
383 pass | |
384 | |
385 | |
386 class AuthorizationNotFound(JSONResponseError): | |
387 pass | |
388 | |
389 | |
390 class ClusterSecurityGroupQuotaExceeded(JSONResponseError): | |
391 pass | |
392 | |
393 | |
394 class EventSubscriptionQuotaExceeded(JSONResponseError): | |
395 pass | |
396 | |
397 | |
398 class AuthorizationAlreadyExists(JSONResponseError): | |
399 pass | |
400 | |
401 | |
402 class InvalidClusterSnapshotState(JSONResponseError): | |
403 pass | |
404 | |
405 | |
406 class ClusterParameterGroupQuotaExceeded(JSONResponseError): | |
407 pass | |
408 | |
409 | |
410 class SnapshotCopyDisabled(JSONResponseError): | |
411 pass | |
412 | |
413 | |
414 class ClusterSubnetGroupAlreadyExists(JSONResponseError): | |
415 pass | |
416 | |
417 | |
418 class ReservedNodeNotFound(JSONResponseError): | |
419 pass | |
420 | |
421 | |
422 class HsmClientCertificateAlreadyExists(JSONResponseError): | |
423 pass | |
424 | |
425 | |
426 class InvalidClusterSubnetGroupState(JSONResponseError): | |
427 pass | |
428 | |
429 | |
430 class SubscriptionNotFound(JSONResponseError): | |
431 pass | |
432 | |
433 | |
434 class InsufficientS3BucketPolicy(JSONResponseError): | |
435 pass | |
436 | |
437 | |
438 class ClusterParameterGroupAlreadyExists(JSONResponseError): | |
439 pass | |
440 | |
441 | |
442 class UnsupportedOption(JSONResponseError): | |
443 pass | |
444 | |
445 | |
446 class CopyToRegionDisabled(JSONResponseError): | |
447 pass | |
448 | |
449 | |
450 class SnapshotCopyAlreadyEnabled(JSONResponseError): | |
451 pass | |
452 | |
453 | |
454 class IncompatibleOrderableOptions(JSONResponseError): | |
455 pass | |
456 | |
457 | |
458 class InvalidSubscriptionState(JSONResponseError): | |
459 pass |