@aws-sdk/client-elastic-load-balancing 3.933.0 → 3.935.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.
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +309 -0
- package/dist-es/models/models_0.js +1 -309
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +290 -0
- package/dist-types/models/models_0.d.ts +0 -290
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +187 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -187
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-es/index.js
CHANGED
|
@@ -3,5 +3,5 @@ export * from "./ElasticLoadBalancing";
|
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
5
|
export * from "./waiters";
|
|
6
|
-
export * from "./models";
|
|
6
|
+
export * from "./models/errors";
|
|
7
7
|
export { ElasticLoadBalancingServiceException } from "./models/ElasticLoadBalancingServiceException";
|
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
|
|
2
|
+
export class AccessPointNotFoundException extends __BaseException {
|
|
3
|
+
name = "AccessPointNotFoundException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessPointNotFoundException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, AccessPointNotFoundException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class DuplicateTagKeysException extends __BaseException {
|
|
17
|
+
name = "DuplicateTagKeysException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "DuplicateTagKeysException",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, DuplicateTagKeysException.prototype);
|
|
27
|
+
this.Message = opts.Message;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class TooManyTagsException extends __BaseException {
|
|
31
|
+
name = "TooManyTagsException";
|
|
32
|
+
$fault = "client";
|
|
33
|
+
Message;
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "TooManyTagsException",
|
|
37
|
+
$fault: "client",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export class InvalidConfigurationRequestException extends __BaseException {
|
|
45
|
+
name = "InvalidConfigurationRequestException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "InvalidConfigurationRequestException",
|
|
51
|
+
$fault: "client",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
Object.setPrototypeOf(this, InvalidConfigurationRequestException.prototype);
|
|
55
|
+
this.Message = opts.Message;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
export class InvalidSecurityGroupException extends __BaseException {
|
|
59
|
+
name = "InvalidSecurityGroupException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
Message;
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "InvalidSecurityGroupException",
|
|
65
|
+
$fault: "client",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
Object.setPrototypeOf(this, InvalidSecurityGroupException.prototype);
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
export class InvalidSubnetException extends __BaseException {
|
|
73
|
+
name = "InvalidSubnetException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
Message;
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "InvalidSubnetException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
Object.setPrototypeOf(this, InvalidSubnetException.prototype);
|
|
83
|
+
this.Message = opts.Message;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class SubnetNotFoundException extends __BaseException {
|
|
87
|
+
name = "SubnetNotFoundException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
Message;
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "SubnetNotFoundException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
Object.setPrototypeOf(this, SubnetNotFoundException.prototype);
|
|
97
|
+
this.Message = opts.Message;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
export class CertificateNotFoundException extends __BaseException {
|
|
101
|
+
name = "CertificateNotFoundException";
|
|
102
|
+
$fault = "client";
|
|
103
|
+
Message;
|
|
104
|
+
constructor(opts) {
|
|
105
|
+
super({
|
|
106
|
+
name: "CertificateNotFoundException",
|
|
107
|
+
$fault: "client",
|
|
108
|
+
...opts,
|
|
109
|
+
});
|
|
110
|
+
Object.setPrototypeOf(this, CertificateNotFoundException.prototype);
|
|
111
|
+
this.Message = opts.Message;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
export class DuplicatePolicyNameException extends __BaseException {
|
|
115
|
+
name = "DuplicatePolicyNameException";
|
|
116
|
+
$fault = "client";
|
|
117
|
+
Message;
|
|
118
|
+
constructor(opts) {
|
|
119
|
+
super({
|
|
120
|
+
name: "DuplicatePolicyNameException",
|
|
121
|
+
$fault: "client",
|
|
122
|
+
...opts,
|
|
123
|
+
});
|
|
124
|
+
Object.setPrototypeOf(this, DuplicatePolicyNameException.prototype);
|
|
125
|
+
this.Message = opts.Message;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
export class TooManyPoliciesException extends __BaseException {
|
|
129
|
+
name = "TooManyPoliciesException";
|
|
130
|
+
$fault = "client";
|
|
131
|
+
Message;
|
|
132
|
+
constructor(opts) {
|
|
133
|
+
super({
|
|
134
|
+
name: "TooManyPoliciesException",
|
|
135
|
+
$fault: "client",
|
|
136
|
+
...opts,
|
|
137
|
+
});
|
|
138
|
+
Object.setPrototypeOf(this, TooManyPoliciesException.prototype);
|
|
139
|
+
this.Message = opts.Message;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
export class DuplicateAccessPointNameException extends __BaseException {
|
|
143
|
+
name = "DuplicateAccessPointNameException";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
Message;
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "DuplicateAccessPointNameException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, DuplicateAccessPointNameException.prototype);
|
|
153
|
+
this.Message = opts.Message;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
export class InvalidSchemeException extends __BaseException {
|
|
157
|
+
name = "InvalidSchemeException";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
Message;
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "InvalidSchemeException",
|
|
163
|
+
$fault: "client",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, InvalidSchemeException.prototype);
|
|
167
|
+
this.Message = opts.Message;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
export class OperationNotPermittedException extends __BaseException {
|
|
171
|
+
name = "OperationNotPermittedException";
|
|
172
|
+
$fault = "client";
|
|
173
|
+
Message;
|
|
174
|
+
constructor(opts) {
|
|
175
|
+
super({
|
|
176
|
+
name: "OperationNotPermittedException",
|
|
177
|
+
$fault: "client",
|
|
178
|
+
...opts,
|
|
179
|
+
});
|
|
180
|
+
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
181
|
+
this.Message = opts.Message;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
export class TooManyAccessPointsException extends __BaseException {
|
|
185
|
+
name = "TooManyAccessPointsException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
Message;
|
|
188
|
+
constructor(opts) {
|
|
189
|
+
super({
|
|
190
|
+
name: "TooManyAccessPointsException",
|
|
191
|
+
$fault: "client",
|
|
192
|
+
...opts,
|
|
193
|
+
});
|
|
194
|
+
Object.setPrototypeOf(this, TooManyAccessPointsException.prototype);
|
|
195
|
+
this.Message = opts.Message;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
export class UnsupportedProtocolException extends __BaseException {
|
|
199
|
+
name = "UnsupportedProtocolException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
Message;
|
|
202
|
+
constructor(opts) {
|
|
203
|
+
super({
|
|
204
|
+
name: "UnsupportedProtocolException",
|
|
205
|
+
$fault: "client",
|
|
206
|
+
...opts,
|
|
207
|
+
});
|
|
208
|
+
Object.setPrototypeOf(this, UnsupportedProtocolException.prototype);
|
|
209
|
+
this.Message = opts.Message;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
export class DuplicateListenerException extends __BaseException {
|
|
213
|
+
name = "DuplicateListenerException";
|
|
214
|
+
$fault = "client";
|
|
215
|
+
Message;
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "DuplicateListenerException",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, DuplicateListenerException.prototype);
|
|
223
|
+
this.Message = opts.Message;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
export class PolicyTypeNotFoundException extends __BaseException {
|
|
227
|
+
name = "PolicyTypeNotFoundException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
Message;
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "PolicyTypeNotFoundException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, PolicyTypeNotFoundException.prototype);
|
|
237
|
+
this.Message = opts.Message;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
export class DependencyThrottleException extends __BaseException {
|
|
241
|
+
name = "DependencyThrottleException";
|
|
242
|
+
$fault = "client";
|
|
243
|
+
Message;
|
|
244
|
+
constructor(opts) {
|
|
245
|
+
super({
|
|
246
|
+
name: "DependencyThrottleException",
|
|
247
|
+
$fault: "client",
|
|
248
|
+
...opts,
|
|
249
|
+
});
|
|
250
|
+
Object.setPrototypeOf(this, DependencyThrottleException.prototype);
|
|
251
|
+
this.Message = opts.Message;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
export class InvalidEndPointException extends __BaseException {
|
|
255
|
+
name = "InvalidEndPointException";
|
|
256
|
+
$fault = "client";
|
|
257
|
+
Message;
|
|
258
|
+
constructor(opts) {
|
|
259
|
+
super({
|
|
260
|
+
name: "InvalidEndPointException",
|
|
261
|
+
$fault: "client",
|
|
262
|
+
...opts,
|
|
263
|
+
});
|
|
264
|
+
Object.setPrototypeOf(this, InvalidEndPointException.prototype);
|
|
265
|
+
this.Message = opts.Message;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
export class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
269
|
+
name = "LoadBalancerAttributeNotFoundException";
|
|
270
|
+
$fault = "client";
|
|
271
|
+
Message;
|
|
272
|
+
constructor(opts) {
|
|
273
|
+
super({
|
|
274
|
+
name: "LoadBalancerAttributeNotFoundException",
|
|
275
|
+
$fault: "client",
|
|
276
|
+
...opts,
|
|
277
|
+
});
|
|
278
|
+
Object.setPrototypeOf(this, LoadBalancerAttributeNotFoundException.prototype);
|
|
279
|
+
this.Message = opts.Message;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
export class PolicyNotFoundException extends __BaseException {
|
|
283
|
+
name = "PolicyNotFoundException";
|
|
284
|
+
$fault = "client";
|
|
285
|
+
Message;
|
|
286
|
+
constructor(opts) {
|
|
287
|
+
super({
|
|
288
|
+
name: "PolicyNotFoundException",
|
|
289
|
+
$fault: "client",
|
|
290
|
+
...opts,
|
|
291
|
+
});
|
|
292
|
+
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
293
|
+
this.Message = opts.Message;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
export class ListenerNotFoundException extends __BaseException {
|
|
297
|
+
name = "ListenerNotFoundException";
|
|
298
|
+
$fault = "client";
|
|
299
|
+
Message;
|
|
300
|
+
constructor(opts) {
|
|
301
|
+
super({
|
|
302
|
+
name: "ListenerNotFoundException",
|
|
303
|
+
$fault: "client",
|
|
304
|
+
...opts,
|
|
305
|
+
});
|
|
306
|
+
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
307
|
+
this.Message = opts.Message;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
@@ -1,309 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessPointNotFoundException extends __BaseException {
|
|
3
|
-
name = "AccessPointNotFoundException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessPointNotFoundException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessPointNotFoundException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export class DuplicateTagKeysException extends __BaseException {
|
|
17
|
-
name = "DuplicateTagKeysException";
|
|
18
|
-
$fault = "client";
|
|
19
|
-
Message;
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "DuplicateTagKeysException",
|
|
23
|
-
$fault: "client",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
Object.setPrototypeOf(this, DuplicateTagKeysException.prototype);
|
|
27
|
-
this.Message = opts.Message;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
export class TooManyTagsException extends __BaseException {
|
|
31
|
-
name = "TooManyTagsException";
|
|
32
|
-
$fault = "client";
|
|
33
|
-
Message;
|
|
34
|
-
constructor(opts) {
|
|
35
|
-
super({
|
|
36
|
-
name: "TooManyTagsException",
|
|
37
|
-
$fault: "client",
|
|
38
|
-
...opts,
|
|
39
|
-
});
|
|
40
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
41
|
-
this.Message = opts.Message;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
export class InvalidConfigurationRequestException extends __BaseException {
|
|
45
|
-
name = "InvalidConfigurationRequestException";
|
|
46
|
-
$fault = "client";
|
|
47
|
-
Message;
|
|
48
|
-
constructor(opts) {
|
|
49
|
-
super({
|
|
50
|
-
name: "InvalidConfigurationRequestException",
|
|
51
|
-
$fault: "client",
|
|
52
|
-
...opts,
|
|
53
|
-
});
|
|
54
|
-
Object.setPrototypeOf(this, InvalidConfigurationRequestException.prototype);
|
|
55
|
-
this.Message = opts.Message;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
export class InvalidSecurityGroupException extends __BaseException {
|
|
59
|
-
name = "InvalidSecurityGroupException";
|
|
60
|
-
$fault = "client";
|
|
61
|
-
Message;
|
|
62
|
-
constructor(opts) {
|
|
63
|
-
super({
|
|
64
|
-
name: "InvalidSecurityGroupException",
|
|
65
|
-
$fault: "client",
|
|
66
|
-
...opts,
|
|
67
|
-
});
|
|
68
|
-
Object.setPrototypeOf(this, InvalidSecurityGroupException.prototype);
|
|
69
|
-
this.Message = opts.Message;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
export class InvalidSubnetException extends __BaseException {
|
|
73
|
-
name = "InvalidSubnetException";
|
|
74
|
-
$fault = "client";
|
|
75
|
-
Message;
|
|
76
|
-
constructor(opts) {
|
|
77
|
-
super({
|
|
78
|
-
name: "InvalidSubnetException",
|
|
79
|
-
$fault: "client",
|
|
80
|
-
...opts,
|
|
81
|
-
});
|
|
82
|
-
Object.setPrototypeOf(this, InvalidSubnetException.prototype);
|
|
83
|
-
this.Message = opts.Message;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
export class SubnetNotFoundException extends __BaseException {
|
|
87
|
-
name = "SubnetNotFoundException";
|
|
88
|
-
$fault = "client";
|
|
89
|
-
Message;
|
|
90
|
-
constructor(opts) {
|
|
91
|
-
super({
|
|
92
|
-
name: "SubnetNotFoundException",
|
|
93
|
-
$fault: "client",
|
|
94
|
-
...opts,
|
|
95
|
-
});
|
|
96
|
-
Object.setPrototypeOf(this, SubnetNotFoundException.prototype);
|
|
97
|
-
this.Message = opts.Message;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
export class CertificateNotFoundException extends __BaseException {
|
|
101
|
-
name = "CertificateNotFoundException";
|
|
102
|
-
$fault = "client";
|
|
103
|
-
Message;
|
|
104
|
-
constructor(opts) {
|
|
105
|
-
super({
|
|
106
|
-
name: "CertificateNotFoundException",
|
|
107
|
-
$fault: "client",
|
|
108
|
-
...opts,
|
|
109
|
-
});
|
|
110
|
-
Object.setPrototypeOf(this, CertificateNotFoundException.prototype);
|
|
111
|
-
this.Message = opts.Message;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
export class DuplicatePolicyNameException extends __BaseException {
|
|
115
|
-
name = "DuplicatePolicyNameException";
|
|
116
|
-
$fault = "client";
|
|
117
|
-
Message;
|
|
118
|
-
constructor(opts) {
|
|
119
|
-
super({
|
|
120
|
-
name: "DuplicatePolicyNameException",
|
|
121
|
-
$fault: "client",
|
|
122
|
-
...opts,
|
|
123
|
-
});
|
|
124
|
-
Object.setPrototypeOf(this, DuplicatePolicyNameException.prototype);
|
|
125
|
-
this.Message = opts.Message;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
export class TooManyPoliciesException extends __BaseException {
|
|
129
|
-
name = "TooManyPoliciesException";
|
|
130
|
-
$fault = "client";
|
|
131
|
-
Message;
|
|
132
|
-
constructor(opts) {
|
|
133
|
-
super({
|
|
134
|
-
name: "TooManyPoliciesException",
|
|
135
|
-
$fault: "client",
|
|
136
|
-
...opts,
|
|
137
|
-
});
|
|
138
|
-
Object.setPrototypeOf(this, TooManyPoliciesException.prototype);
|
|
139
|
-
this.Message = opts.Message;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
export class DuplicateAccessPointNameException extends __BaseException {
|
|
143
|
-
name = "DuplicateAccessPointNameException";
|
|
144
|
-
$fault = "client";
|
|
145
|
-
Message;
|
|
146
|
-
constructor(opts) {
|
|
147
|
-
super({
|
|
148
|
-
name: "DuplicateAccessPointNameException",
|
|
149
|
-
$fault: "client",
|
|
150
|
-
...opts,
|
|
151
|
-
});
|
|
152
|
-
Object.setPrototypeOf(this, DuplicateAccessPointNameException.prototype);
|
|
153
|
-
this.Message = opts.Message;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
export class InvalidSchemeException extends __BaseException {
|
|
157
|
-
name = "InvalidSchemeException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
Message;
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "InvalidSchemeException",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, InvalidSchemeException.prototype);
|
|
167
|
-
this.Message = opts.Message;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
export class OperationNotPermittedException extends __BaseException {
|
|
171
|
-
name = "OperationNotPermittedException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
Message;
|
|
174
|
-
constructor(opts) {
|
|
175
|
-
super({
|
|
176
|
-
name: "OperationNotPermittedException",
|
|
177
|
-
$fault: "client",
|
|
178
|
-
...opts,
|
|
179
|
-
});
|
|
180
|
-
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
181
|
-
this.Message = opts.Message;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
export class TooManyAccessPointsException extends __BaseException {
|
|
185
|
-
name = "TooManyAccessPointsException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
Message;
|
|
188
|
-
constructor(opts) {
|
|
189
|
-
super({
|
|
190
|
-
name: "TooManyAccessPointsException",
|
|
191
|
-
$fault: "client",
|
|
192
|
-
...opts,
|
|
193
|
-
});
|
|
194
|
-
Object.setPrototypeOf(this, TooManyAccessPointsException.prototype);
|
|
195
|
-
this.Message = opts.Message;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
export class UnsupportedProtocolException extends __BaseException {
|
|
199
|
-
name = "UnsupportedProtocolException";
|
|
200
|
-
$fault = "client";
|
|
201
|
-
Message;
|
|
202
|
-
constructor(opts) {
|
|
203
|
-
super({
|
|
204
|
-
name: "UnsupportedProtocolException",
|
|
205
|
-
$fault: "client",
|
|
206
|
-
...opts,
|
|
207
|
-
});
|
|
208
|
-
Object.setPrototypeOf(this, UnsupportedProtocolException.prototype);
|
|
209
|
-
this.Message = opts.Message;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
export class DuplicateListenerException extends __BaseException {
|
|
213
|
-
name = "DuplicateListenerException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
Message;
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "DuplicateListenerException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, DuplicateListenerException.prototype);
|
|
223
|
-
this.Message = opts.Message;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
export class PolicyTypeNotFoundException extends __BaseException {
|
|
227
|
-
name = "PolicyTypeNotFoundException";
|
|
228
|
-
$fault = "client";
|
|
229
|
-
Message;
|
|
230
|
-
constructor(opts) {
|
|
231
|
-
super({
|
|
232
|
-
name: "PolicyTypeNotFoundException",
|
|
233
|
-
$fault: "client",
|
|
234
|
-
...opts,
|
|
235
|
-
});
|
|
236
|
-
Object.setPrototypeOf(this, PolicyTypeNotFoundException.prototype);
|
|
237
|
-
this.Message = opts.Message;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
export class DependencyThrottleException extends __BaseException {
|
|
241
|
-
name = "DependencyThrottleException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
Message;
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "DependencyThrottleException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, DependencyThrottleException.prototype);
|
|
251
|
-
this.Message = opts.Message;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
export class InvalidEndPointException extends __BaseException {
|
|
255
|
-
name = "InvalidEndPointException";
|
|
256
|
-
$fault = "client";
|
|
257
|
-
Message;
|
|
258
|
-
constructor(opts) {
|
|
259
|
-
super({
|
|
260
|
-
name: "InvalidEndPointException",
|
|
261
|
-
$fault: "client",
|
|
262
|
-
...opts,
|
|
263
|
-
});
|
|
264
|
-
Object.setPrototypeOf(this, InvalidEndPointException.prototype);
|
|
265
|
-
this.Message = opts.Message;
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
export class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
269
|
-
name = "LoadBalancerAttributeNotFoundException";
|
|
270
|
-
$fault = "client";
|
|
271
|
-
Message;
|
|
272
|
-
constructor(opts) {
|
|
273
|
-
super({
|
|
274
|
-
name: "LoadBalancerAttributeNotFoundException",
|
|
275
|
-
$fault: "client",
|
|
276
|
-
...opts,
|
|
277
|
-
});
|
|
278
|
-
Object.setPrototypeOf(this, LoadBalancerAttributeNotFoundException.prototype);
|
|
279
|
-
this.Message = opts.Message;
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
export class PolicyNotFoundException extends __BaseException {
|
|
283
|
-
name = "PolicyNotFoundException";
|
|
284
|
-
$fault = "client";
|
|
285
|
-
Message;
|
|
286
|
-
constructor(opts) {
|
|
287
|
-
super({
|
|
288
|
-
name: "PolicyNotFoundException",
|
|
289
|
-
$fault: "client",
|
|
290
|
-
...opts,
|
|
291
|
-
});
|
|
292
|
-
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
293
|
-
this.Message = opts.Message;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
export class ListenerNotFoundException extends __BaseException {
|
|
297
|
-
name = "ListenerNotFoundException";
|
|
298
|
-
$fault = "client";
|
|
299
|
-
Message;
|
|
300
|
-
constructor(opts) {
|
|
301
|
-
super({
|
|
302
|
-
name: "ListenerNotFoundException",
|
|
303
|
-
$fault: "client",
|
|
304
|
-
...opts,
|
|
305
|
-
});
|
|
306
|
-
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
307
|
-
this.Message = opts.Message;
|
|
308
|
-
}
|
|
309
|
-
}
|
|
1
|
+
export {};
|
|
@@ -213,7 +213,7 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elasticloadbalancing";
|
|
|
213
213
|
const n0 = "com.amazonaws.elasticloadbalancing";
|
|
214
214
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
215
215
|
import { ElasticLoadBalancingServiceException as __ElasticLoadBalancingServiceException } from "../models/ElasticLoadBalancingServiceException";
|
|
216
|
-
import { AccessPointNotFoundException as __AccessPointNotFoundException, CertificateNotFoundException as __CertificateNotFoundException, DependencyThrottleException as __DependencyThrottleException, DuplicateAccessPointNameException as __DuplicateAccessPointNameException, DuplicateListenerException as __DuplicateListenerException, DuplicatePolicyNameException as __DuplicatePolicyNameException, DuplicateTagKeysException as __DuplicateTagKeysException, InvalidConfigurationRequestException as __InvalidConfigurationRequestException, InvalidEndPointException as __InvalidEndPointException, InvalidSchemeException as __InvalidSchemeException, InvalidSecurityGroupException as __InvalidSecurityGroupException, InvalidSubnetException as __InvalidSubnetException, ListenerNotFoundException as __ListenerNotFoundException, LoadBalancerAttributeNotFoundException as __LoadBalancerAttributeNotFoundException, OperationNotPermittedException as __OperationNotPermittedException, PolicyNotFoundException as __PolicyNotFoundException, PolicyTypeNotFoundException as __PolicyTypeNotFoundException, SubnetNotFoundException as __SubnetNotFoundException, TooManyAccessPointsException as __TooManyAccessPointsException, TooManyPoliciesException as __TooManyPoliciesException, TooManyTagsException as __TooManyTagsException, UnsupportedProtocolException as __UnsupportedProtocolException, } from "../models/
|
|
216
|
+
import { AccessPointNotFoundException as __AccessPointNotFoundException, CertificateNotFoundException as __CertificateNotFoundException, DependencyThrottleException as __DependencyThrottleException, DuplicateAccessPointNameException as __DuplicateAccessPointNameException, DuplicateListenerException as __DuplicateListenerException, DuplicatePolicyNameException as __DuplicatePolicyNameException, DuplicateTagKeysException as __DuplicateTagKeysException, InvalidConfigurationRequestException as __InvalidConfigurationRequestException, InvalidEndPointException as __InvalidEndPointException, InvalidSchemeException as __InvalidSchemeException, InvalidSecurityGroupException as __InvalidSecurityGroupException, InvalidSubnetException as __InvalidSubnetException, ListenerNotFoundException as __ListenerNotFoundException, LoadBalancerAttributeNotFoundException as __LoadBalancerAttributeNotFoundException, OperationNotPermittedException as __OperationNotPermittedException, PolicyNotFoundException as __PolicyNotFoundException, PolicyTypeNotFoundException as __PolicyTypeNotFoundException, SubnetNotFoundException as __SubnetNotFoundException, TooManyAccessPointsException as __TooManyAccessPointsException, TooManyPoliciesException as __TooManyPoliciesException, TooManyTagsException as __TooManyTagsException, UnsupportedProtocolException as __UnsupportedProtocolException, } from "../models/errors";
|
|
217
217
|
export var AccessLog = [3, n0, _AL, 0, [_E, _SBN, _EI, _SBP], [2, 0, 1, 0]];
|
|
218
218
|
export var AccessPointNotFoundException = [
|
|
219
219
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -31,5 +31,6 @@ export type { ElasticLoadBalancingExtensionConfiguration } from "./extensionConf
|
|
|
31
31
|
export * from "./commands";
|
|
32
32
|
export * from "./pagination";
|
|
33
33
|
export * from "./waiters";
|
|
34
|
-
export * from "./models";
|
|
34
|
+
export * from "./models/errors";
|
|
35
|
+
export type * from "./models/models_0";
|
|
35
36
|
export { ElasticLoadBalancingServiceException } from "./models/ElasticLoadBalancingServiceException";
|