@aws-sdk/client-elastic-load-balancing-v2 3.721.0 → 3.723.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-cjs/index.js +666 -536
- package/dist-es/ElasticLoadBalancingV2Client.js +1 -0
- package/dist-es/models/models_0.js +168 -112
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
|
@@ -21,118 +21,127 @@ export const ActionTypeEnum = {
|
|
|
21
21
|
REDIRECT: "redirect",
|
|
22
22
|
};
|
|
23
23
|
export class CertificateNotFoundException extends __BaseException {
|
|
24
|
+
name = "CertificateNotFoundException";
|
|
25
|
+
$fault = "client";
|
|
26
|
+
Message;
|
|
24
27
|
constructor(opts) {
|
|
25
28
|
super({
|
|
26
29
|
name: "CertificateNotFoundException",
|
|
27
30
|
$fault: "client",
|
|
28
31
|
...opts,
|
|
29
32
|
});
|
|
30
|
-
this.name = "CertificateNotFoundException";
|
|
31
|
-
this.$fault = "client";
|
|
32
33
|
Object.setPrototypeOf(this, CertificateNotFoundException.prototype);
|
|
33
34
|
this.Message = opts.Message;
|
|
34
35
|
}
|
|
35
36
|
}
|
|
36
37
|
export class ListenerNotFoundException extends __BaseException {
|
|
38
|
+
name = "ListenerNotFoundException";
|
|
39
|
+
$fault = "client";
|
|
40
|
+
Message;
|
|
37
41
|
constructor(opts) {
|
|
38
42
|
super({
|
|
39
43
|
name: "ListenerNotFoundException",
|
|
40
44
|
$fault: "client",
|
|
41
45
|
...opts,
|
|
42
46
|
});
|
|
43
|
-
this.name = "ListenerNotFoundException";
|
|
44
|
-
this.$fault = "client";
|
|
45
47
|
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
46
48
|
this.Message = opts.Message;
|
|
47
49
|
}
|
|
48
50
|
}
|
|
49
51
|
export class TooManyCertificatesException extends __BaseException {
|
|
52
|
+
name = "TooManyCertificatesException";
|
|
53
|
+
$fault = "client";
|
|
54
|
+
Message;
|
|
50
55
|
constructor(opts) {
|
|
51
56
|
super({
|
|
52
57
|
name: "TooManyCertificatesException",
|
|
53
58
|
$fault: "client",
|
|
54
59
|
...opts,
|
|
55
60
|
});
|
|
56
|
-
this.name = "TooManyCertificatesException";
|
|
57
|
-
this.$fault = "client";
|
|
58
61
|
Object.setPrototypeOf(this, TooManyCertificatesException.prototype);
|
|
59
62
|
this.Message = opts.Message;
|
|
60
63
|
}
|
|
61
64
|
}
|
|
62
65
|
export class DuplicateTagKeysException extends __BaseException {
|
|
66
|
+
name = "DuplicateTagKeysException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
Message;
|
|
63
69
|
constructor(opts) {
|
|
64
70
|
super({
|
|
65
71
|
name: "DuplicateTagKeysException",
|
|
66
72
|
$fault: "client",
|
|
67
73
|
...opts,
|
|
68
74
|
});
|
|
69
|
-
this.name = "DuplicateTagKeysException";
|
|
70
|
-
this.$fault = "client";
|
|
71
75
|
Object.setPrototypeOf(this, DuplicateTagKeysException.prototype);
|
|
72
76
|
this.Message = opts.Message;
|
|
73
77
|
}
|
|
74
78
|
}
|
|
75
79
|
export class LoadBalancerNotFoundException extends __BaseException {
|
|
80
|
+
name = "LoadBalancerNotFoundException";
|
|
81
|
+
$fault = "client";
|
|
82
|
+
Message;
|
|
76
83
|
constructor(opts) {
|
|
77
84
|
super({
|
|
78
85
|
name: "LoadBalancerNotFoundException",
|
|
79
86
|
$fault: "client",
|
|
80
87
|
...opts,
|
|
81
88
|
});
|
|
82
|
-
this.name = "LoadBalancerNotFoundException";
|
|
83
|
-
this.$fault = "client";
|
|
84
89
|
Object.setPrototypeOf(this, LoadBalancerNotFoundException.prototype);
|
|
85
90
|
this.Message = opts.Message;
|
|
86
91
|
}
|
|
87
92
|
}
|
|
88
93
|
export class RuleNotFoundException extends __BaseException {
|
|
94
|
+
name = "RuleNotFoundException";
|
|
95
|
+
$fault = "client";
|
|
96
|
+
Message;
|
|
89
97
|
constructor(opts) {
|
|
90
98
|
super({
|
|
91
99
|
name: "RuleNotFoundException",
|
|
92
100
|
$fault: "client",
|
|
93
101
|
...opts,
|
|
94
102
|
});
|
|
95
|
-
this.name = "RuleNotFoundException";
|
|
96
|
-
this.$fault = "client";
|
|
97
103
|
Object.setPrototypeOf(this, RuleNotFoundException.prototype);
|
|
98
104
|
this.Message = opts.Message;
|
|
99
105
|
}
|
|
100
106
|
}
|
|
101
107
|
export class TargetGroupNotFoundException extends __BaseException {
|
|
108
|
+
name = "TargetGroupNotFoundException";
|
|
109
|
+
$fault = "client";
|
|
110
|
+
Message;
|
|
102
111
|
constructor(opts) {
|
|
103
112
|
super({
|
|
104
113
|
name: "TargetGroupNotFoundException",
|
|
105
114
|
$fault: "client",
|
|
106
115
|
...opts,
|
|
107
116
|
});
|
|
108
|
-
this.name = "TargetGroupNotFoundException";
|
|
109
|
-
this.$fault = "client";
|
|
110
117
|
Object.setPrototypeOf(this, TargetGroupNotFoundException.prototype);
|
|
111
118
|
this.Message = opts.Message;
|
|
112
119
|
}
|
|
113
120
|
}
|
|
114
121
|
export class TooManyTagsException extends __BaseException {
|
|
122
|
+
name = "TooManyTagsException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
Message;
|
|
115
125
|
constructor(opts) {
|
|
116
126
|
super({
|
|
117
127
|
name: "TooManyTagsException",
|
|
118
128
|
$fault: "client",
|
|
119
129
|
...opts,
|
|
120
130
|
});
|
|
121
|
-
this.name = "TooManyTagsException";
|
|
122
|
-
this.$fault = "client";
|
|
123
131
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
124
132
|
this.Message = opts.Message;
|
|
125
133
|
}
|
|
126
134
|
}
|
|
127
135
|
export class TrustStoreNotFoundException extends __BaseException {
|
|
136
|
+
name = "TrustStoreNotFoundException";
|
|
137
|
+
$fault = "client";
|
|
138
|
+
Message;
|
|
128
139
|
constructor(opts) {
|
|
129
140
|
super({
|
|
130
141
|
name: "TrustStoreNotFoundException",
|
|
131
142
|
$fault: "client",
|
|
132
143
|
...opts,
|
|
133
144
|
});
|
|
134
|
-
this.name = "TrustStoreNotFoundException";
|
|
135
|
-
this.$fault = "client";
|
|
136
145
|
Object.setPrototypeOf(this, TrustStoreNotFoundException.prototype);
|
|
137
146
|
this.Message = opts.Message;
|
|
138
147
|
}
|
|
@@ -141,40 +150,43 @@ export const RevocationType = {
|
|
|
141
150
|
CRL: "CRL",
|
|
142
151
|
};
|
|
143
152
|
export class InvalidRevocationContentException extends __BaseException {
|
|
153
|
+
name = "InvalidRevocationContentException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
Message;
|
|
144
156
|
constructor(opts) {
|
|
145
157
|
super({
|
|
146
158
|
name: "InvalidRevocationContentException",
|
|
147
159
|
$fault: "client",
|
|
148
160
|
...opts,
|
|
149
161
|
});
|
|
150
|
-
this.name = "InvalidRevocationContentException";
|
|
151
|
-
this.$fault = "client";
|
|
152
162
|
Object.setPrototypeOf(this, InvalidRevocationContentException.prototype);
|
|
153
163
|
this.Message = opts.Message;
|
|
154
164
|
}
|
|
155
165
|
}
|
|
156
166
|
export class RevocationContentNotFoundException extends __BaseException {
|
|
167
|
+
name = "RevocationContentNotFoundException";
|
|
168
|
+
$fault = "client";
|
|
169
|
+
Message;
|
|
157
170
|
constructor(opts) {
|
|
158
171
|
super({
|
|
159
172
|
name: "RevocationContentNotFoundException",
|
|
160
173
|
$fault: "client",
|
|
161
174
|
...opts,
|
|
162
175
|
});
|
|
163
|
-
this.name = "RevocationContentNotFoundException";
|
|
164
|
-
this.$fault = "client";
|
|
165
176
|
Object.setPrototypeOf(this, RevocationContentNotFoundException.prototype);
|
|
166
177
|
this.Message = opts.Message;
|
|
167
178
|
}
|
|
168
179
|
}
|
|
169
180
|
export class TooManyTrustStoreRevocationEntriesException extends __BaseException {
|
|
181
|
+
name = "TooManyTrustStoreRevocationEntriesException";
|
|
182
|
+
$fault = "client";
|
|
183
|
+
Message;
|
|
170
184
|
constructor(opts) {
|
|
171
185
|
super({
|
|
172
186
|
name: "TooManyTrustStoreRevocationEntriesException",
|
|
173
187
|
$fault: "client",
|
|
174
188
|
...opts,
|
|
175
189
|
});
|
|
176
|
-
this.name = "TooManyTrustStoreRevocationEntriesException";
|
|
177
|
-
this.$fault = "client";
|
|
178
190
|
Object.setPrototypeOf(this, TooManyTrustStoreRevocationEntriesException.prototype);
|
|
179
191
|
this.Message = opts.Message;
|
|
180
192
|
}
|
|
@@ -196,27 +208,29 @@ export const AdvertiseTrustStoreCaNamesEnum = {
|
|
|
196
208
|
on: "on",
|
|
197
209
|
};
|
|
198
210
|
export class AllocationIdNotFoundException extends __BaseException {
|
|
211
|
+
name = "AllocationIdNotFoundException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
Message;
|
|
199
214
|
constructor(opts) {
|
|
200
215
|
super({
|
|
201
216
|
name: "AllocationIdNotFoundException",
|
|
202
217
|
$fault: "client",
|
|
203
218
|
...opts,
|
|
204
219
|
});
|
|
205
|
-
this.name = "AllocationIdNotFoundException";
|
|
206
|
-
this.$fault = "client";
|
|
207
220
|
Object.setPrototypeOf(this, AllocationIdNotFoundException.prototype);
|
|
208
221
|
this.Message = opts.Message;
|
|
209
222
|
}
|
|
210
223
|
}
|
|
211
224
|
export class ALPNPolicyNotSupportedException extends __BaseException {
|
|
225
|
+
name = "ALPNPolicyNotSupportedException";
|
|
226
|
+
$fault = "client";
|
|
227
|
+
Message;
|
|
212
228
|
constructor(opts) {
|
|
213
229
|
super({
|
|
214
230
|
name: "ALPNPolicyNotSupportedException",
|
|
215
231
|
$fault: "client",
|
|
216
232
|
...opts,
|
|
217
233
|
});
|
|
218
|
-
this.name = "ALPNPolicyNotSupportedException";
|
|
219
|
-
this.$fault = "client";
|
|
220
234
|
Object.setPrototypeOf(this, ALPNPolicyNotSupportedException.prototype);
|
|
221
235
|
this.Message = opts.Message;
|
|
222
236
|
}
|
|
@@ -230,53 +244,57 @@ export const AnomalyResultEnum = {
|
|
|
230
244
|
NORMAL: "normal",
|
|
231
245
|
};
|
|
232
246
|
export class AvailabilityZoneNotSupportedException extends __BaseException {
|
|
247
|
+
name = "AvailabilityZoneNotSupportedException";
|
|
248
|
+
$fault = "client";
|
|
249
|
+
Message;
|
|
233
250
|
constructor(opts) {
|
|
234
251
|
super({
|
|
235
252
|
name: "AvailabilityZoneNotSupportedException",
|
|
236
253
|
$fault: "client",
|
|
237
254
|
...opts,
|
|
238
255
|
});
|
|
239
|
-
this.name = "AvailabilityZoneNotSupportedException";
|
|
240
|
-
this.$fault = "client";
|
|
241
256
|
Object.setPrototypeOf(this, AvailabilityZoneNotSupportedException.prototype);
|
|
242
257
|
this.Message = opts.Message;
|
|
243
258
|
}
|
|
244
259
|
}
|
|
245
260
|
export class CaCertificatesBundleNotFoundException extends __BaseException {
|
|
261
|
+
name = "CaCertificatesBundleNotFoundException";
|
|
262
|
+
$fault = "client";
|
|
263
|
+
Message;
|
|
246
264
|
constructor(opts) {
|
|
247
265
|
super({
|
|
248
266
|
name: "CaCertificatesBundleNotFoundException",
|
|
249
267
|
$fault: "client",
|
|
250
268
|
...opts,
|
|
251
269
|
});
|
|
252
|
-
this.name = "CaCertificatesBundleNotFoundException";
|
|
253
|
-
this.$fault = "client";
|
|
254
270
|
Object.setPrototypeOf(this, CaCertificatesBundleNotFoundException.prototype);
|
|
255
271
|
this.Message = opts.Message;
|
|
256
272
|
}
|
|
257
273
|
}
|
|
258
274
|
export class CapacityDecreaseRequestsLimitExceededException extends __BaseException {
|
|
275
|
+
name = "CapacityDecreaseRequestsLimitExceededException";
|
|
276
|
+
$fault = "client";
|
|
277
|
+
Message;
|
|
259
278
|
constructor(opts) {
|
|
260
279
|
super({
|
|
261
280
|
name: "CapacityDecreaseRequestsLimitExceededException",
|
|
262
281
|
$fault: "client",
|
|
263
282
|
...opts,
|
|
264
283
|
});
|
|
265
|
-
this.name = "CapacityDecreaseRequestsLimitExceededException";
|
|
266
|
-
this.$fault = "client";
|
|
267
284
|
Object.setPrototypeOf(this, CapacityDecreaseRequestsLimitExceededException.prototype);
|
|
268
285
|
this.Message = opts.Message;
|
|
269
286
|
}
|
|
270
287
|
}
|
|
271
288
|
export class CapacityReservationPendingException extends __BaseException {
|
|
289
|
+
name = "CapacityReservationPendingException";
|
|
290
|
+
$fault = "client";
|
|
291
|
+
Message;
|
|
272
292
|
constructor(opts) {
|
|
273
293
|
super({
|
|
274
294
|
name: "CapacityReservationPendingException",
|
|
275
295
|
$fault: "client",
|
|
276
296
|
...opts,
|
|
277
297
|
});
|
|
278
|
-
this.name = "CapacityReservationPendingException";
|
|
279
|
-
this.$fault = "client";
|
|
280
298
|
Object.setPrototypeOf(this, CapacityReservationPendingException.prototype);
|
|
281
299
|
this.Message = opts.Message;
|
|
282
300
|
}
|
|
@@ -288,14 +306,15 @@ export const CapacityReservationStateEnum = {
|
|
|
288
306
|
REBALANCING: "rebalancing",
|
|
289
307
|
};
|
|
290
308
|
export class CapacityUnitsLimitExceededException extends __BaseException {
|
|
309
|
+
name = "CapacityUnitsLimitExceededException";
|
|
310
|
+
$fault = "client";
|
|
311
|
+
Message;
|
|
291
312
|
constructor(opts) {
|
|
292
313
|
super({
|
|
293
314
|
name: "CapacityUnitsLimitExceededException",
|
|
294
315
|
$fault: "client",
|
|
295
316
|
...opts,
|
|
296
317
|
});
|
|
297
|
-
this.name = "CapacityUnitsLimitExceededException";
|
|
298
|
-
this.$fault = "client";
|
|
299
318
|
Object.setPrototypeOf(this, CapacityUnitsLimitExceededException.prototype);
|
|
300
319
|
this.Message = opts.Message;
|
|
301
320
|
}
|
|
@@ -314,170 +333,183 @@ export const ProtocolEnum = {
|
|
|
314
333
|
UDP: "UDP",
|
|
315
334
|
};
|
|
316
335
|
export class DuplicateListenerException extends __BaseException {
|
|
336
|
+
name = "DuplicateListenerException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
Message;
|
|
317
339
|
constructor(opts) {
|
|
318
340
|
super({
|
|
319
341
|
name: "DuplicateListenerException",
|
|
320
342
|
$fault: "client",
|
|
321
343
|
...opts,
|
|
322
344
|
});
|
|
323
|
-
this.name = "DuplicateListenerException";
|
|
324
|
-
this.$fault = "client";
|
|
325
345
|
Object.setPrototypeOf(this, DuplicateListenerException.prototype);
|
|
326
346
|
this.Message = opts.Message;
|
|
327
347
|
}
|
|
328
348
|
}
|
|
329
349
|
export class IncompatibleProtocolsException extends __BaseException {
|
|
350
|
+
name = "IncompatibleProtocolsException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
Message;
|
|
330
353
|
constructor(opts) {
|
|
331
354
|
super({
|
|
332
355
|
name: "IncompatibleProtocolsException",
|
|
333
356
|
$fault: "client",
|
|
334
357
|
...opts,
|
|
335
358
|
});
|
|
336
|
-
this.name = "IncompatibleProtocolsException";
|
|
337
|
-
this.$fault = "client";
|
|
338
359
|
Object.setPrototypeOf(this, IncompatibleProtocolsException.prototype);
|
|
339
360
|
this.Message = opts.Message;
|
|
340
361
|
}
|
|
341
362
|
}
|
|
342
363
|
export class InvalidConfigurationRequestException extends __BaseException {
|
|
364
|
+
name = "InvalidConfigurationRequestException";
|
|
365
|
+
$fault = "client";
|
|
366
|
+
Message;
|
|
343
367
|
constructor(opts) {
|
|
344
368
|
super({
|
|
345
369
|
name: "InvalidConfigurationRequestException",
|
|
346
370
|
$fault: "client",
|
|
347
371
|
...opts,
|
|
348
372
|
});
|
|
349
|
-
this.name = "InvalidConfigurationRequestException";
|
|
350
|
-
this.$fault = "client";
|
|
351
373
|
Object.setPrototypeOf(this, InvalidConfigurationRequestException.prototype);
|
|
352
374
|
this.Message = opts.Message;
|
|
353
375
|
}
|
|
354
376
|
}
|
|
355
377
|
export class InvalidLoadBalancerActionException extends __BaseException {
|
|
378
|
+
name = "InvalidLoadBalancerActionException";
|
|
379
|
+
$fault = "client";
|
|
380
|
+
Message;
|
|
356
381
|
constructor(opts) {
|
|
357
382
|
super({
|
|
358
383
|
name: "InvalidLoadBalancerActionException",
|
|
359
384
|
$fault: "client",
|
|
360
385
|
...opts,
|
|
361
386
|
});
|
|
362
|
-
this.name = "InvalidLoadBalancerActionException";
|
|
363
|
-
this.$fault = "client";
|
|
364
387
|
Object.setPrototypeOf(this, InvalidLoadBalancerActionException.prototype);
|
|
365
388
|
this.Message = opts.Message;
|
|
366
389
|
}
|
|
367
390
|
}
|
|
368
391
|
export class SSLPolicyNotFoundException extends __BaseException {
|
|
392
|
+
name = "SSLPolicyNotFoundException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
Message;
|
|
369
395
|
constructor(opts) {
|
|
370
396
|
super({
|
|
371
397
|
name: "SSLPolicyNotFoundException",
|
|
372
398
|
$fault: "client",
|
|
373
399
|
...opts,
|
|
374
400
|
});
|
|
375
|
-
this.name = "SSLPolicyNotFoundException";
|
|
376
|
-
this.$fault = "client";
|
|
377
401
|
Object.setPrototypeOf(this, SSLPolicyNotFoundException.prototype);
|
|
378
402
|
this.Message = opts.Message;
|
|
379
403
|
}
|
|
380
404
|
}
|
|
381
405
|
export class TargetGroupAssociationLimitException extends __BaseException {
|
|
406
|
+
name = "TargetGroupAssociationLimitException";
|
|
407
|
+
$fault = "client";
|
|
408
|
+
Message;
|
|
382
409
|
constructor(opts) {
|
|
383
410
|
super({
|
|
384
411
|
name: "TargetGroupAssociationLimitException",
|
|
385
412
|
$fault: "client",
|
|
386
413
|
...opts,
|
|
387
414
|
});
|
|
388
|
-
this.name = "TargetGroupAssociationLimitException";
|
|
389
|
-
this.$fault = "client";
|
|
390
415
|
Object.setPrototypeOf(this, TargetGroupAssociationLimitException.prototype);
|
|
391
416
|
this.Message = opts.Message;
|
|
392
417
|
}
|
|
393
418
|
}
|
|
394
419
|
export class TooManyActionsException extends __BaseException {
|
|
420
|
+
name = "TooManyActionsException";
|
|
421
|
+
$fault = "client";
|
|
422
|
+
Message;
|
|
395
423
|
constructor(opts) {
|
|
396
424
|
super({
|
|
397
425
|
name: "TooManyActionsException",
|
|
398
426
|
$fault: "client",
|
|
399
427
|
...opts,
|
|
400
428
|
});
|
|
401
|
-
this.name = "TooManyActionsException";
|
|
402
|
-
this.$fault = "client";
|
|
403
429
|
Object.setPrototypeOf(this, TooManyActionsException.prototype);
|
|
404
430
|
this.Message = opts.Message;
|
|
405
431
|
}
|
|
406
432
|
}
|
|
407
433
|
export class TooManyListenersException extends __BaseException {
|
|
434
|
+
name = "TooManyListenersException";
|
|
435
|
+
$fault = "client";
|
|
436
|
+
Message;
|
|
408
437
|
constructor(opts) {
|
|
409
438
|
super({
|
|
410
439
|
name: "TooManyListenersException",
|
|
411
440
|
$fault: "client",
|
|
412
441
|
...opts,
|
|
413
442
|
});
|
|
414
|
-
this.name = "TooManyListenersException";
|
|
415
|
-
this.$fault = "client";
|
|
416
443
|
Object.setPrototypeOf(this, TooManyListenersException.prototype);
|
|
417
444
|
this.Message = opts.Message;
|
|
418
445
|
}
|
|
419
446
|
}
|
|
420
447
|
export class TooManyRegistrationsForTargetIdException extends __BaseException {
|
|
448
|
+
name = "TooManyRegistrationsForTargetIdException";
|
|
449
|
+
$fault = "client";
|
|
450
|
+
Message;
|
|
421
451
|
constructor(opts) {
|
|
422
452
|
super({
|
|
423
453
|
name: "TooManyRegistrationsForTargetIdException",
|
|
424
454
|
$fault: "client",
|
|
425
455
|
...opts,
|
|
426
456
|
});
|
|
427
|
-
this.name = "TooManyRegistrationsForTargetIdException";
|
|
428
|
-
this.$fault = "client";
|
|
429
457
|
Object.setPrototypeOf(this, TooManyRegistrationsForTargetIdException.prototype);
|
|
430
458
|
this.Message = opts.Message;
|
|
431
459
|
}
|
|
432
460
|
}
|
|
433
461
|
export class TooManyTargetsException extends __BaseException {
|
|
462
|
+
name = "TooManyTargetsException";
|
|
463
|
+
$fault = "client";
|
|
464
|
+
Message;
|
|
434
465
|
constructor(opts) {
|
|
435
466
|
super({
|
|
436
467
|
name: "TooManyTargetsException",
|
|
437
468
|
$fault: "client",
|
|
438
469
|
...opts,
|
|
439
470
|
});
|
|
440
|
-
this.name = "TooManyTargetsException";
|
|
441
|
-
this.$fault = "client";
|
|
442
471
|
Object.setPrototypeOf(this, TooManyTargetsException.prototype);
|
|
443
472
|
this.Message = opts.Message;
|
|
444
473
|
}
|
|
445
474
|
}
|
|
446
475
|
export class TooManyUniqueTargetGroupsPerLoadBalancerException extends __BaseException {
|
|
476
|
+
name = "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
477
|
+
$fault = "client";
|
|
478
|
+
Message;
|
|
447
479
|
constructor(opts) {
|
|
448
480
|
super({
|
|
449
481
|
name: "TooManyUniqueTargetGroupsPerLoadBalancerException",
|
|
450
482
|
$fault: "client",
|
|
451
483
|
...opts,
|
|
452
484
|
});
|
|
453
|
-
this.name = "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
454
|
-
this.$fault = "client";
|
|
455
485
|
Object.setPrototypeOf(this, TooManyUniqueTargetGroupsPerLoadBalancerException.prototype);
|
|
456
486
|
this.Message = opts.Message;
|
|
457
487
|
}
|
|
458
488
|
}
|
|
459
489
|
export class TrustStoreNotReadyException extends __BaseException {
|
|
490
|
+
name = "TrustStoreNotReadyException";
|
|
491
|
+
$fault = "client";
|
|
492
|
+
Message;
|
|
460
493
|
constructor(opts) {
|
|
461
494
|
super({
|
|
462
495
|
name: "TrustStoreNotReadyException",
|
|
463
496
|
$fault: "client",
|
|
464
497
|
...opts,
|
|
465
498
|
});
|
|
466
|
-
this.name = "TrustStoreNotReadyException";
|
|
467
|
-
this.$fault = "client";
|
|
468
499
|
Object.setPrototypeOf(this, TrustStoreNotReadyException.prototype);
|
|
469
500
|
this.Message = opts.Message;
|
|
470
501
|
}
|
|
471
502
|
}
|
|
472
503
|
export class UnsupportedProtocolException extends __BaseException {
|
|
504
|
+
name = "UnsupportedProtocolException";
|
|
505
|
+
$fault = "client";
|
|
506
|
+
Message;
|
|
473
507
|
constructor(opts) {
|
|
474
508
|
super({
|
|
475
509
|
name: "UnsupportedProtocolException",
|
|
476
510
|
$fault: "client",
|
|
477
511
|
...opts,
|
|
478
512
|
});
|
|
479
|
-
this.name = "UnsupportedProtocolException";
|
|
480
|
-
this.$fault = "client";
|
|
481
513
|
Object.setPrototypeOf(this, UnsupportedProtocolException.prototype);
|
|
482
514
|
this.Message = opts.Message;
|
|
483
515
|
}
|
|
@@ -507,144 +539,155 @@ export const LoadBalancerStateEnum = {
|
|
|
507
539
|
PROVISIONING: "provisioning",
|
|
508
540
|
};
|
|
509
541
|
export class DuplicateLoadBalancerNameException extends __BaseException {
|
|
542
|
+
name = "DuplicateLoadBalancerNameException";
|
|
543
|
+
$fault = "client";
|
|
544
|
+
Message;
|
|
510
545
|
constructor(opts) {
|
|
511
546
|
super({
|
|
512
547
|
name: "DuplicateLoadBalancerNameException",
|
|
513
548
|
$fault: "client",
|
|
514
549
|
...opts,
|
|
515
550
|
});
|
|
516
|
-
this.name = "DuplicateLoadBalancerNameException";
|
|
517
|
-
this.$fault = "client";
|
|
518
551
|
Object.setPrototypeOf(this, DuplicateLoadBalancerNameException.prototype);
|
|
519
552
|
this.Message = opts.Message;
|
|
520
553
|
}
|
|
521
554
|
}
|
|
522
555
|
export class InvalidSchemeException extends __BaseException {
|
|
556
|
+
name = "InvalidSchemeException";
|
|
557
|
+
$fault = "client";
|
|
558
|
+
Message;
|
|
523
559
|
constructor(opts) {
|
|
524
560
|
super({
|
|
525
561
|
name: "InvalidSchemeException",
|
|
526
562
|
$fault: "client",
|
|
527
563
|
...opts,
|
|
528
564
|
});
|
|
529
|
-
this.name = "InvalidSchemeException";
|
|
530
|
-
this.$fault = "client";
|
|
531
565
|
Object.setPrototypeOf(this, InvalidSchemeException.prototype);
|
|
532
566
|
this.Message = opts.Message;
|
|
533
567
|
}
|
|
534
568
|
}
|
|
535
569
|
export class InvalidSecurityGroupException extends __BaseException {
|
|
570
|
+
name = "InvalidSecurityGroupException";
|
|
571
|
+
$fault = "client";
|
|
572
|
+
Message;
|
|
536
573
|
constructor(opts) {
|
|
537
574
|
super({
|
|
538
575
|
name: "InvalidSecurityGroupException",
|
|
539
576
|
$fault: "client",
|
|
540
577
|
...opts,
|
|
541
578
|
});
|
|
542
|
-
this.name = "InvalidSecurityGroupException";
|
|
543
|
-
this.$fault = "client";
|
|
544
579
|
Object.setPrototypeOf(this, InvalidSecurityGroupException.prototype);
|
|
545
580
|
this.Message = opts.Message;
|
|
546
581
|
}
|
|
547
582
|
}
|
|
548
583
|
export class InvalidSubnetException extends __BaseException {
|
|
584
|
+
name = "InvalidSubnetException";
|
|
585
|
+
$fault = "client";
|
|
586
|
+
Message;
|
|
549
587
|
constructor(opts) {
|
|
550
588
|
super({
|
|
551
589
|
name: "InvalidSubnetException",
|
|
552
590
|
$fault: "client",
|
|
553
591
|
...opts,
|
|
554
592
|
});
|
|
555
|
-
this.name = "InvalidSubnetException";
|
|
556
|
-
this.$fault = "client";
|
|
557
593
|
Object.setPrototypeOf(this, InvalidSubnetException.prototype);
|
|
558
594
|
this.Message = opts.Message;
|
|
559
595
|
}
|
|
560
596
|
}
|
|
561
597
|
export class OperationNotPermittedException extends __BaseException {
|
|
598
|
+
name = "OperationNotPermittedException";
|
|
599
|
+
$fault = "client";
|
|
600
|
+
Message;
|
|
562
601
|
constructor(opts) {
|
|
563
602
|
super({
|
|
564
603
|
name: "OperationNotPermittedException",
|
|
565
604
|
$fault: "client",
|
|
566
605
|
...opts,
|
|
567
606
|
});
|
|
568
|
-
this.name = "OperationNotPermittedException";
|
|
569
|
-
this.$fault = "client";
|
|
570
607
|
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
571
608
|
this.Message = opts.Message;
|
|
572
609
|
}
|
|
573
610
|
}
|
|
574
611
|
export class ResourceInUseException extends __BaseException {
|
|
612
|
+
name = "ResourceInUseException";
|
|
613
|
+
$fault = "client";
|
|
614
|
+
Message;
|
|
575
615
|
constructor(opts) {
|
|
576
616
|
super({
|
|
577
617
|
name: "ResourceInUseException",
|
|
578
618
|
$fault: "client",
|
|
579
619
|
...opts,
|
|
580
620
|
});
|
|
581
|
-
this.name = "ResourceInUseException";
|
|
582
|
-
this.$fault = "client";
|
|
583
621
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
584
622
|
this.Message = opts.Message;
|
|
585
623
|
}
|
|
586
624
|
}
|
|
587
625
|
export class SubnetNotFoundException extends __BaseException {
|
|
626
|
+
name = "SubnetNotFoundException";
|
|
627
|
+
$fault = "client";
|
|
628
|
+
Message;
|
|
588
629
|
constructor(opts) {
|
|
589
630
|
super({
|
|
590
631
|
name: "SubnetNotFoundException",
|
|
591
632
|
$fault: "client",
|
|
592
633
|
...opts,
|
|
593
634
|
});
|
|
594
|
-
this.name = "SubnetNotFoundException";
|
|
595
|
-
this.$fault = "client";
|
|
596
635
|
Object.setPrototypeOf(this, SubnetNotFoundException.prototype);
|
|
597
636
|
this.Message = opts.Message;
|
|
598
637
|
}
|
|
599
638
|
}
|
|
600
639
|
export class TooManyLoadBalancersException extends __BaseException {
|
|
640
|
+
name = "TooManyLoadBalancersException";
|
|
641
|
+
$fault = "client";
|
|
642
|
+
Message;
|
|
601
643
|
constructor(opts) {
|
|
602
644
|
super({
|
|
603
645
|
name: "TooManyLoadBalancersException",
|
|
604
646
|
$fault: "client",
|
|
605
647
|
...opts,
|
|
606
648
|
});
|
|
607
|
-
this.name = "TooManyLoadBalancersException";
|
|
608
|
-
this.$fault = "client";
|
|
609
649
|
Object.setPrototypeOf(this, TooManyLoadBalancersException.prototype);
|
|
610
650
|
this.Message = opts.Message;
|
|
611
651
|
}
|
|
612
652
|
}
|
|
613
653
|
export class PriorityInUseException extends __BaseException {
|
|
654
|
+
name = "PriorityInUseException";
|
|
655
|
+
$fault = "client";
|
|
656
|
+
Message;
|
|
614
657
|
constructor(opts) {
|
|
615
658
|
super({
|
|
616
659
|
name: "PriorityInUseException",
|
|
617
660
|
$fault: "client",
|
|
618
661
|
...opts,
|
|
619
662
|
});
|
|
620
|
-
this.name = "PriorityInUseException";
|
|
621
|
-
this.$fault = "client";
|
|
622
663
|
Object.setPrototypeOf(this, PriorityInUseException.prototype);
|
|
623
664
|
this.Message = opts.Message;
|
|
624
665
|
}
|
|
625
666
|
}
|
|
626
667
|
export class TooManyRulesException extends __BaseException {
|
|
668
|
+
name = "TooManyRulesException";
|
|
669
|
+
$fault = "client";
|
|
670
|
+
Message;
|
|
627
671
|
constructor(opts) {
|
|
628
672
|
super({
|
|
629
673
|
name: "TooManyRulesException",
|
|
630
674
|
$fault: "client",
|
|
631
675
|
...opts,
|
|
632
676
|
});
|
|
633
|
-
this.name = "TooManyRulesException";
|
|
634
|
-
this.$fault = "client";
|
|
635
677
|
Object.setPrototypeOf(this, TooManyRulesException.prototype);
|
|
636
678
|
this.Message = opts.Message;
|
|
637
679
|
}
|
|
638
680
|
}
|
|
639
681
|
export class TooManyTargetGroupsException extends __BaseException {
|
|
682
|
+
name = "TooManyTargetGroupsException";
|
|
683
|
+
$fault = "client";
|
|
684
|
+
Message;
|
|
640
685
|
constructor(opts) {
|
|
641
686
|
super({
|
|
642
687
|
name: "TooManyTargetGroupsException",
|
|
643
688
|
$fault: "client",
|
|
644
689
|
...opts,
|
|
645
690
|
});
|
|
646
|
-
this.name = "TooManyTargetGroupsException";
|
|
647
|
-
this.$fault = "client";
|
|
648
691
|
Object.setPrototypeOf(this, TooManyTargetGroupsException.prototype);
|
|
649
692
|
this.Message = opts.Message;
|
|
650
693
|
}
|
|
@@ -660,14 +703,15 @@ export const TargetTypeEnum = {
|
|
|
660
703
|
LAMBDA: "lambda",
|
|
661
704
|
};
|
|
662
705
|
export class DuplicateTargetGroupNameException extends __BaseException {
|
|
706
|
+
name = "DuplicateTargetGroupNameException";
|
|
707
|
+
$fault = "client";
|
|
708
|
+
Message;
|
|
663
709
|
constructor(opts) {
|
|
664
710
|
super({
|
|
665
711
|
name: "DuplicateTargetGroupNameException",
|
|
666
712
|
$fault: "client",
|
|
667
713
|
...opts,
|
|
668
714
|
});
|
|
669
|
-
this.name = "DuplicateTargetGroupNameException";
|
|
670
|
-
this.$fault = "client";
|
|
671
715
|
Object.setPrototypeOf(this, DuplicateTargetGroupNameException.prototype);
|
|
672
716
|
this.Message = opts.Message;
|
|
673
717
|
}
|
|
@@ -677,92 +721,99 @@ export const TrustStoreStatus = {
|
|
|
677
721
|
CREATING: "CREATING",
|
|
678
722
|
};
|
|
679
723
|
export class DuplicateTrustStoreNameException extends __BaseException {
|
|
724
|
+
name = "DuplicateTrustStoreNameException";
|
|
725
|
+
$fault = "client";
|
|
726
|
+
Message;
|
|
680
727
|
constructor(opts) {
|
|
681
728
|
super({
|
|
682
729
|
name: "DuplicateTrustStoreNameException",
|
|
683
730
|
$fault: "client",
|
|
684
731
|
...opts,
|
|
685
732
|
});
|
|
686
|
-
this.name = "DuplicateTrustStoreNameException";
|
|
687
|
-
this.$fault = "client";
|
|
688
733
|
Object.setPrototypeOf(this, DuplicateTrustStoreNameException.prototype);
|
|
689
734
|
this.Message = opts.Message;
|
|
690
735
|
}
|
|
691
736
|
}
|
|
692
737
|
export class InvalidCaCertificatesBundleException extends __BaseException {
|
|
738
|
+
name = "InvalidCaCertificatesBundleException";
|
|
739
|
+
$fault = "client";
|
|
740
|
+
Message;
|
|
693
741
|
constructor(opts) {
|
|
694
742
|
super({
|
|
695
743
|
name: "InvalidCaCertificatesBundleException",
|
|
696
744
|
$fault: "client",
|
|
697
745
|
...opts,
|
|
698
746
|
});
|
|
699
|
-
this.name = "InvalidCaCertificatesBundleException";
|
|
700
|
-
this.$fault = "client";
|
|
701
747
|
Object.setPrototypeOf(this, InvalidCaCertificatesBundleException.prototype);
|
|
702
748
|
this.Message = opts.Message;
|
|
703
749
|
}
|
|
704
750
|
}
|
|
705
751
|
export class TooManyTrustStoresException extends __BaseException {
|
|
752
|
+
name = "TooManyTrustStoresException";
|
|
753
|
+
$fault = "client";
|
|
754
|
+
Message;
|
|
706
755
|
constructor(opts) {
|
|
707
756
|
super({
|
|
708
757
|
name: "TooManyTrustStoresException",
|
|
709
758
|
$fault: "client",
|
|
710
759
|
...opts,
|
|
711
760
|
});
|
|
712
|
-
this.name = "TooManyTrustStoresException";
|
|
713
|
-
this.$fault = "client";
|
|
714
761
|
Object.setPrototypeOf(this, TooManyTrustStoresException.prototype);
|
|
715
762
|
this.Message = opts.Message;
|
|
716
763
|
}
|
|
717
764
|
}
|
|
718
765
|
export class DeleteAssociationSameAccountException extends __BaseException {
|
|
766
|
+
name = "DeleteAssociationSameAccountException";
|
|
767
|
+
$fault = "client";
|
|
768
|
+
Message;
|
|
719
769
|
constructor(opts) {
|
|
720
770
|
super({
|
|
721
771
|
name: "DeleteAssociationSameAccountException",
|
|
722
772
|
$fault: "client",
|
|
723
773
|
...opts,
|
|
724
774
|
});
|
|
725
|
-
this.name = "DeleteAssociationSameAccountException";
|
|
726
|
-
this.$fault = "client";
|
|
727
775
|
Object.setPrototypeOf(this, DeleteAssociationSameAccountException.prototype);
|
|
728
776
|
this.Message = opts.Message;
|
|
729
777
|
}
|
|
730
778
|
}
|
|
731
779
|
export class TrustStoreAssociationNotFoundException extends __BaseException {
|
|
780
|
+
name = "TrustStoreAssociationNotFoundException";
|
|
781
|
+
$fault = "client";
|
|
782
|
+
Message;
|
|
732
783
|
constructor(opts) {
|
|
733
784
|
super({
|
|
734
785
|
name: "TrustStoreAssociationNotFoundException",
|
|
735
786
|
$fault: "client",
|
|
736
787
|
...opts,
|
|
737
788
|
});
|
|
738
|
-
this.name = "TrustStoreAssociationNotFoundException";
|
|
739
|
-
this.$fault = "client";
|
|
740
789
|
Object.setPrototypeOf(this, TrustStoreAssociationNotFoundException.prototype);
|
|
741
790
|
this.Message = opts.Message;
|
|
742
791
|
}
|
|
743
792
|
}
|
|
744
793
|
export class TrustStoreInUseException extends __BaseException {
|
|
794
|
+
name = "TrustStoreInUseException";
|
|
795
|
+
$fault = "client";
|
|
796
|
+
Message;
|
|
745
797
|
constructor(opts) {
|
|
746
798
|
super({
|
|
747
799
|
name: "TrustStoreInUseException",
|
|
748
800
|
$fault: "client",
|
|
749
801
|
...opts,
|
|
750
802
|
});
|
|
751
|
-
this.name = "TrustStoreInUseException";
|
|
752
|
-
this.$fault = "client";
|
|
753
803
|
Object.setPrototypeOf(this, TrustStoreInUseException.prototype);
|
|
754
804
|
this.Message = opts.Message;
|
|
755
805
|
}
|
|
756
806
|
}
|
|
757
807
|
export class InvalidTargetException extends __BaseException {
|
|
808
|
+
name = "InvalidTargetException";
|
|
809
|
+
$fault = "client";
|
|
810
|
+
Message;
|
|
758
811
|
constructor(opts) {
|
|
759
812
|
super({
|
|
760
813
|
name: "InvalidTargetException",
|
|
761
814
|
$fault: "client",
|
|
762
815
|
...opts,
|
|
763
816
|
});
|
|
764
|
-
this.name = "InvalidTargetException";
|
|
765
|
-
this.$fault = "client";
|
|
766
817
|
Object.setPrototypeOf(this, InvalidTargetException.prototype);
|
|
767
818
|
this.Message = opts.Message;
|
|
768
819
|
}
|
|
@@ -795,66 +846,71 @@ export const TargetHealthStateEnum = {
|
|
|
795
846
|
UNUSED: "unused",
|
|
796
847
|
};
|
|
797
848
|
export class HealthUnavailableException extends __BaseException {
|
|
849
|
+
name = "HealthUnavailableException";
|
|
850
|
+
$fault = "server";
|
|
851
|
+
Message;
|
|
798
852
|
constructor(opts) {
|
|
799
853
|
super({
|
|
800
854
|
name: "HealthUnavailableException",
|
|
801
855
|
$fault: "server",
|
|
802
856
|
...opts,
|
|
803
857
|
});
|
|
804
|
-
this.name = "HealthUnavailableException";
|
|
805
|
-
this.$fault = "server";
|
|
806
858
|
Object.setPrototypeOf(this, HealthUnavailableException.prototype);
|
|
807
859
|
this.Message = opts.Message;
|
|
808
860
|
}
|
|
809
861
|
}
|
|
810
862
|
export class RevocationIdNotFoundException extends __BaseException {
|
|
863
|
+
name = "RevocationIdNotFoundException";
|
|
864
|
+
$fault = "client";
|
|
865
|
+
Message;
|
|
811
866
|
constructor(opts) {
|
|
812
867
|
super({
|
|
813
868
|
name: "RevocationIdNotFoundException",
|
|
814
869
|
$fault: "client",
|
|
815
870
|
...opts,
|
|
816
871
|
});
|
|
817
|
-
this.name = "RevocationIdNotFoundException";
|
|
818
|
-
this.$fault = "client";
|
|
819
872
|
Object.setPrototypeOf(this, RevocationIdNotFoundException.prototype);
|
|
820
873
|
this.Message = opts.Message;
|
|
821
874
|
}
|
|
822
875
|
}
|
|
823
876
|
export class ResourceNotFoundException extends __BaseException {
|
|
877
|
+
name = "ResourceNotFoundException";
|
|
878
|
+
$fault = "client";
|
|
879
|
+
Message;
|
|
824
880
|
constructor(opts) {
|
|
825
881
|
super({
|
|
826
882
|
name: "ResourceNotFoundException",
|
|
827
883
|
$fault: "client",
|
|
828
884
|
...opts,
|
|
829
885
|
});
|
|
830
|
-
this.name = "ResourceNotFoundException";
|
|
831
|
-
this.$fault = "client";
|
|
832
886
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
833
887
|
this.Message = opts.Message;
|
|
834
888
|
}
|
|
835
889
|
}
|
|
836
890
|
export class InsufficientCapacityException extends __BaseException {
|
|
891
|
+
name = "InsufficientCapacityException";
|
|
892
|
+
$fault = "server";
|
|
893
|
+
Message;
|
|
837
894
|
constructor(opts) {
|
|
838
895
|
super({
|
|
839
896
|
name: "InsufficientCapacityException",
|
|
840
897
|
$fault: "server",
|
|
841
898
|
...opts,
|
|
842
899
|
});
|
|
843
|
-
this.name = "InsufficientCapacityException";
|
|
844
|
-
this.$fault = "server";
|
|
845
900
|
Object.setPrototypeOf(this, InsufficientCapacityException.prototype);
|
|
846
901
|
this.Message = opts.Message;
|
|
847
902
|
}
|
|
848
903
|
}
|
|
849
904
|
export class PriorRequestNotCompleteException extends __BaseException {
|
|
905
|
+
name = "PriorRequestNotCompleteException";
|
|
906
|
+
$fault = "client";
|
|
907
|
+
Message;
|
|
850
908
|
constructor(opts) {
|
|
851
909
|
super({
|
|
852
910
|
name: "PriorRequestNotCompleteException",
|
|
853
911
|
$fault: "client",
|
|
854
912
|
...opts,
|
|
855
913
|
});
|
|
856
|
-
this.name = "PriorRequestNotCompleteException";
|
|
857
|
-
this.$fault = "client";
|
|
858
914
|
Object.setPrototypeOf(this, PriorRequestNotCompleteException.prototype);
|
|
859
915
|
this.Message = opts.Message;
|
|
860
916
|
}
|