@aws-sdk/client-compute-optimizer 3.934.0 → 3.936.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.
@@ -0,0 +1,109 @@
1
+ import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AccessDeniedException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ }
13
+ }
14
+ export class InternalServerException extends __BaseException {
15
+ name = "InternalServerException";
16
+ $fault = "server";
17
+ constructor(opts) {
18
+ super({
19
+ name: "InternalServerException",
20
+ $fault: "server",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, InternalServerException.prototype);
24
+ }
25
+ }
26
+ export class InvalidParameterValueException extends __BaseException {
27
+ name = "InvalidParameterValueException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "InvalidParameterValueException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
36
+ }
37
+ }
38
+ export class MissingAuthenticationToken extends __BaseException {
39
+ name = "MissingAuthenticationToken";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "MissingAuthenticationToken",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, MissingAuthenticationToken.prototype);
48
+ }
49
+ }
50
+ export class OptInRequiredException extends __BaseException {
51
+ name = "OptInRequiredException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "OptInRequiredException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, OptInRequiredException.prototype);
60
+ }
61
+ }
62
+ export class ResourceNotFoundException extends __BaseException {
63
+ name = "ResourceNotFoundException";
64
+ $fault = "client";
65
+ constructor(opts) {
66
+ super({
67
+ name: "ResourceNotFoundException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
72
+ }
73
+ }
74
+ export class ServiceUnavailableException extends __BaseException {
75
+ name = "ServiceUnavailableException";
76
+ $fault = "server";
77
+ constructor(opts) {
78
+ super({
79
+ name: "ServiceUnavailableException",
80
+ $fault: "server",
81
+ ...opts,
82
+ });
83
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
84
+ }
85
+ }
86
+ export class ThrottlingException extends __BaseException {
87
+ name = "ThrottlingException";
88
+ $fault = "client";
89
+ constructor(opts) {
90
+ super({
91
+ name: "ThrottlingException",
92
+ $fault: "client",
93
+ ...opts,
94
+ });
95
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
96
+ }
97
+ }
98
+ export class LimitExceededException extends __BaseException {
99
+ name = "LimitExceededException";
100
+ $fault = "client";
101
+ constructor(opts) {
102
+ super({
103
+ name: "LimitExceededException",
104
+ $fault: "client",
105
+ ...opts,
106
+ });
107
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
108
+ }
109
+ }