@aws-sdk/client-elastic-load-balancing 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ElasticLoadBalancingServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +312 -2
- package/dist-cjs/protocols/Aws_query.js +263 -874
- package/dist-es/index.js +1 -0
- package/dist-es/models/ElasticLoadBalancingServiceException.js +12 -0
- package/dist-es/models/models_0.js +288 -1
- package/dist-es/protocols/Aws_query.js +567 -933
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ElasticLoadBalancingServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +156 -67
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ElasticLoadBalancingServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +112 -67
- package/package.json +26 -26
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var ElasticLoadBalancingServiceException = (function (_super) {
|
|
4
|
+
__extends(ElasticLoadBalancingServiceException, _super);
|
|
5
|
+
function ElasticLoadBalancingServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ElasticLoadBalancingServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ElasticLoadBalancingServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ElasticLoadBalancingServiceException };
|
|
@@ -1,8 +1,22 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
|
|
2
3
|
export var AccessLog;
|
|
3
4
|
(function (AccessLog) {
|
|
4
5
|
AccessLog.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
6
|
})(AccessLog || (AccessLog = {}));
|
|
7
|
+
var AccessPointNotFoundException = (function (_super) {
|
|
8
|
+
__extends(AccessPointNotFoundException, _super);
|
|
9
|
+
function AccessPointNotFoundException(opts) {
|
|
10
|
+
var _this = _super.call(this, __assign({ name: "AccessPointNotFoundException", $fault: "client" }, opts)) || this;
|
|
11
|
+
_this.name = "AccessPointNotFoundException";
|
|
12
|
+
_this.$fault = "client";
|
|
13
|
+
Object.setPrototypeOf(_this, AccessPointNotFoundException.prototype);
|
|
14
|
+
_this.Message = opts.Message;
|
|
15
|
+
return _this;
|
|
16
|
+
}
|
|
17
|
+
return AccessPointNotFoundException;
|
|
18
|
+
}(__BaseException));
|
|
19
|
+
export { AccessPointNotFoundException };
|
|
6
20
|
export var AddAvailabilityZonesInput;
|
|
7
21
|
(function (AddAvailabilityZonesInput) {
|
|
8
22
|
AddAvailabilityZonesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -27,6 +41,32 @@ export var AddTagsOutput;
|
|
|
27
41
|
(function (AddTagsOutput) {
|
|
28
42
|
AddTagsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
29
43
|
})(AddTagsOutput || (AddTagsOutput = {}));
|
|
44
|
+
var DuplicateTagKeysException = (function (_super) {
|
|
45
|
+
__extends(DuplicateTagKeysException, _super);
|
|
46
|
+
function DuplicateTagKeysException(opts) {
|
|
47
|
+
var _this = _super.call(this, __assign({ name: "DuplicateTagKeysException", $fault: "client" }, opts)) || this;
|
|
48
|
+
_this.name = "DuplicateTagKeysException";
|
|
49
|
+
_this.$fault = "client";
|
|
50
|
+
Object.setPrototypeOf(_this, DuplicateTagKeysException.prototype);
|
|
51
|
+
_this.Message = opts.Message;
|
|
52
|
+
return _this;
|
|
53
|
+
}
|
|
54
|
+
return DuplicateTagKeysException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { DuplicateTagKeysException };
|
|
57
|
+
var TooManyTagsException = (function (_super) {
|
|
58
|
+
__extends(TooManyTagsException, _super);
|
|
59
|
+
function TooManyTagsException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
61
|
+
_this.name = "TooManyTagsException";
|
|
62
|
+
_this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
64
|
+
_this.Message = opts.Message;
|
|
65
|
+
return _this;
|
|
66
|
+
}
|
|
67
|
+
return TooManyTagsException;
|
|
68
|
+
}(__BaseException));
|
|
69
|
+
export { TooManyTagsException };
|
|
30
70
|
export var AppCookieStickinessPolicy;
|
|
31
71
|
(function (AppCookieStickinessPolicy) {
|
|
32
72
|
AppCookieStickinessPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -39,6 +79,32 @@ export var ApplySecurityGroupsToLoadBalancerOutput;
|
|
|
39
79
|
(function (ApplySecurityGroupsToLoadBalancerOutput) {
|
|
40
80
|
ApplySecurityGroupsToLoadBalancerOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
81
|
})(ApplySecurityGroupsToLoadBalancerOutput || (ApplySecurityGroupsToLoadBalancerOutput = {}));
|
|
82
|
+
var InvalidConfigurationRequestException = (function (_super) {
|
|
83
|
+
__extends(InvalidConfigurationRequestException, _super);
|
|
84
|
+
function InvalidConfigurationRequestException(opts) {
|
|
85
|
+
var _this = _super.call(this, __assign({ name: "InvalidConfigurationRequestException", $fault: "client" }, opts)) || this;
|
|
86
|
+
_this.name = "InvalidConfigurationRequestException";
|
|
87
|
+
_this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(_this, InvalidConfigurationRequestException.prototype);
|
|
89
|
+
_this.Message = opts.Message;
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return InvalidConfigurationRequestException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { InvalidConfigurationRequestException };
|
|
95
|
+
var InvalidSecurityGroupException = (function (_super) {
|
|
96
|
+
__extends(InvalidSecurityGroupException, _super);
|
|
97
|
+
function InvalidSecurityGroupException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "InvalidSecurityGroupException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "InvalidSecurityGroupException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, InvalidSecurityGroupException.prototype);
|
|
102
|
+
_this.Message = opts.Message;
|
|
103
|
+
return _this;
|
|
104
|
+
}
|
|
105
|
+
return InvalidSecurityGroupException;
|
|
106
|
+
}(__BaseException));
|
|
107
|
+
export { InvalidSecurityGroupException };
|
|
42
108
|
export var AttachLoadBalancerToSubnetsInput;
|
|
43
109
|
(function (AttachLoadBalancerToSubnetsInput) {
|
|
44
110
|
AttachLoadBalancerToSubnetsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -47,10 +113,49 @@ export var AttachLoadBalancerToSubnetsOutput;
|
|
|
47
113
|
(function (AttachLoadBalancerToSubnetsOutput) {
|
|
48
114
|
AttachLoadBalancerToSubnetsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
49
115
|
})(AttachLoadBalancerToSubnetsOutput || (AttachLoadBalancerToSubnetsOutput = {}));
|
|
116
|
+
var InvalidSubnetException = (function (_super) {
|
|
117
|
+
__extends(InvalidSubnetException, _super);
|
|
118
|
+
function InvalidSubnetException(opts) {
|
|
119
|
+
var _this = _super.call(this, __assign({ name: "InvalidSubnetException", $fault: "client" }, opts)) || this;
|
|
120
|
+
_this.name = "InvalidSubnetException";
|
|
121
|
+
_this.$fault = "client";
|
|
122
|
+
Object.setPrototypeOf(_this, InvalidSubnetException.prototype);
|
|
123
|
+
_this.Message = opts.Message;
|
|
124
|
+
return _this;
|
|
125
|
+
}
|
|
126
|
+
return InvalidSubnetException;
|
|
127
|
+
}(__BaseException));
|
|
128
|
+
export { InvalidSubnetException };
|
|
129
|
+
var SubnetNotFoundException = (function (_super) {
|
|
130
|
+
__extends(SubnetNotFoundException, _super);
|
|
131
|
+
function SubnetNotFoundException(opts) {
|
|
132
|
+
var _this = _super.call(this, __assign({ name: "SubnetNotFoundException", $fault: "client" }, opts)) || this;
|
|
133
|
+
_this.name = "SubnetNotFoundException";
|
|
134
|
+
_this.$fault = "client";
|
|
135
|
+
Object.setPrototypeOf(_this, SubnetNotFoundException.prototype);
|
|
136
|
+
_this.Message = opts.Message;
|
|
137
|
+
return _this;
|
|
138
|
+
}
|
|
139
|
+
return SubnetNotFoundException;
|
|
140
|
+
}(__BaseException));
|
|
141
|
+
export { SubnetNotFoundException };
|
|
50
142
|
export var BackendServerDescription;
|
|
51
143
|
(function (BackendServerDescription) {
|
|
52
144
|
BackendServerDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
145
|
})(BackendServerDescription || (BackendServerDescription = {}));
|
|
146
|
+
var CertificateNotFoundException = (function (_super) {
|
|
147
|
+
__extends(CertificateNotFoundException, _super);
|
|
148
|
+
function CertificateNotFoundException(opts) {
|
|
149
|
+
var _this = _super.call(this, __assign({ name: "CertificateNotFoundException", $fault: "client" }, opts)) || this;
|
|
150
|
+
_this.name = "CertificateNotFoundException";
|
|
151
|
+
_this.$fault = "client";
|
|
152
|
+
Object.setPrototypeOf(_this, CertificateNotFoundException.prototype);
|
|
153
|
+
_this.Message = opts.Message;
|
|
154
|
+
return _this;
|
|
155
|
+
}
|
|
156
|
+
return CertificateNotFoundException;
|
|
157
|
+
}(__BaseException));
|
|
158
|
+
export { CertificateNotFoundException };
|
|
54
159
|
export var HealthCheck;
|
|
55
160
|
(function (HealthCheck) {
|
|
56
161
|
HealthCheck.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -91,6 +196,32 @@ export var CreateAppCookieStickinessPolicyOutput;
|
|
|
91
196
|
(function (CreateAppCookieStickinessPolicyOutput) {
|
|
92
197
|
CreateAppCookieStickinessPolicyOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
198
|
})(CreateAppCookieStickinessPolicyOutput || (CreateAppCookieStickinessPolicyOutput = {}));
|
|
199
|
+
var DuplicatePolicyNameException = (function (_super) {
|
|
200
|
+
__extends(DuplicatePolicyNameException, _super);
|
|
201
|
+
function DuplicatePolicyNameException(opts) {
|
|
202
|
+
var _this = _super.call(this, __assign({ name: "DuplicatePolicyNameException", $fault: "client" }, opts)) || this;
|
|
203
|
+
_this.name = "DuplicatePolicyNameException";
|
|
204
|
+
_this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(_this, DuplicatePolicyNameException.prototype);
|
|
206
|
+
_this.Message = opts.Message;
|
|
207
|
+
return _this;
|
|
208
|
+
}
|
|
209
|
+
return DuplicatePolicyNameException;
|
|
210
|
+
}(__BaseException));
|
|
211
|
+
export { DuplicatePolicyNameException };
|
|
212
|
+
var TooManyPoliciesException = (function (_super) {
|
|
213
|
+
__extends(TooManyPoliciesException, _super);
|
|
214
|
+
function TooManyPoliciesException(opts) {
|
|
215
|
+
var _this = _super.call(this, __assign({ name: "TooManyPoliciesException", $fault: "client" }, opts)) || this;
|
|
216
|
+
_this.name = "TooManyPoliciesException";
|
|
217
|
+
_this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(_this, TooManyPoliciesException.prototype);
|
|
219
|
+
_this.Message = opts.Message;
|
|
220
|
+
return _this;
|
|
221
|
+
}
|
|
222
|
+
return TooManyPoliciesException;
|
|
223
|
+
}(__BaseException));
|
|
224
|
+
export { TooManyPoliciesException };
|
|
94
225
|
export var CreateLBCookieStickinessPolicyInput;
|
|
95
226
|
(function (CreateLBCookieStickinessPolicyInput) {
|
|
96
227
|
CreateLBCookieStickinessPolicyInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -99,6 +230,71 @@ export var CreateLBCookieStickinessPolicyOutput;
|
|
|
99
230
|
(function (CreateLBCookieStickinessPolicyOutput) {
|
|
100
231
|
CreateLBCookieStickinessPolicyOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
232
|
})(CreateLBCookieStickinessPolicyOutput || (CreateLBCookieStickinessPolicyOutput = {}));
|
|
233
|
+
var DuplicateAccessPointNameException = (function (_super) {
|
|
234
|
+
__extends(DuplicateAccessPointNameException, _super);
|
|
235
|
+
function DuplicateAccessPointNameException(opts) {
|
|
236
|
+
var _this = _super.call(this, __assign({ name: "DuplicateAccessPointNameException", $fault: "client" }, opts)) || this;
|
|
237
|
+
_this.name = "DuplicateAccessPointNameException";
|
|
238
|
+
_this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(_this, DuplicateAccessPointNameException.prototype);
|
|
240
|
+
_this.Message = opts.Message;
|
|
241
|
+
return _this;
|
|
242
|
+
}
|
|
243
|
+
return DuplicateAccessPointNameException;
|
|
244
|
+
}(__BaseException));
|
|
245
|
+
export { DuplicateAccessPointNameException };
|
|
246
|
+
var InvalidSchemeException = (function (_super) {
|
|
247
|
+
__extends(InvalidSchemeException, _super);
|
|
248
|
+
function InvalidSchemeException(opts) {
|
|
249
|
+
var _this = _super.call(this, __assign({ name: "InvalidSchemeException", $fault: "client" }, opts)) || this;
|
|
250
|
+
_this.name = "InvalidSchemeException";
|
|
251
|
+
_this.$fault = "client";
|
|
252
|
+
Object.setPrototypeOf(_this, InvalidSchemeException.prototype);
|
|
253
|
+
_this.Message = opts.Message;
|
|
254
|
+
return _this;
|
|
255
|
+
}
|
|
256
|
+
return InvalidSchemeException;
|
|
257
|
+
}(__BaseException));
|
|
258
|
+
export { InvalidSchemeException };
|
|
259
|
+
var OperationNotPermittedException = (function (_super) {
|
|
260
|
+
__extends(OperationNotPermittedException, _super);
|
|
261
|
+
function OperationNotPermittedException(opts) {
|
|
262
|
+
var _this = _super.call(this, __assign({ name: "OperationNotPermittedException", $fault: "client" }, opts)) || this;
|
|
263
|
+
_this.name = "OperationNotPermittedException";
|
|
264
|
+
_this.$fault = "client";
|
|
265
|
+
Object.setPrototypeOf(_this, OperationNotPermittedException.prototype);
|
|
266
|
+
_this.Message = opts.Message;
|
|
267
|
+
return _this;
|
|
268
|
+
}
|
|
269
|
+
return OperationNotPermittedException;
|
|
270
|
+
}(__BaseException));
|
|
271
|
+
export { OperationNotPermittedException };
|
|
272
|
+
var TooManyAccessPointsException = (function (_super) {
|
|
273
|
+
__extends(TooManyAccessPointsException, _super);
|
|
274
|
+
function TooManyAccessPointsException(opts) {
|
|
275
|
+
var _this = _super.call(this, __assign({ name: "TooManyAccessPointsException", $fault: "client" }, opts)) || this;
|
|
276
|
+
_this.name = "TooManyAccessPointsException";
|
|
277
|
+
_this.$fault = "client";
|
|
278
|
+
Object.setPrototypeOf(_this, TooManyAccessPointsException.prototype);
|
|
279
|
+
_this.Message = opts.Message;
|
|
280
|
+
return _this;
|
|
281
|
+
}
|
|
282
|
+
return TooManyAccessPointsException;
|
|
283
|
+
}(__BaseException));
|
|
284
|
+
export { TooManyAccessPointsException };
|
|
285
|
+
var UnsupportedProtocolException = (function (_super) {
|
|
286
|
+
__extends(UnsupportedProtocolException, _super);
|
|
287
|
+
function UnsupportedProtocolException(opts) {
|
|
288
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedProtocolException", $fault: "client" }, opts)) || this;
|
|
289
|
+
_this.name = "UnsupportedProtocolException";
|
|
290
|
+
_this.$fault = "client";
|
|
291
|
+
Object.setPrototypeOf(_this, UnsupportedProtocolException.prototype);
|
|
292
|
+
_this.Message = opts.Message;
|
|
293
|
+
return _this;
|
|
294
|
+
}
|
|
295
|
+
return UnsupportedProtocolException;
|
|
296
|
+
}(__BaseException));
|
|
297
|
+
export { UnsupportedProtocolException };
|
|
102
298
|
export var CreateLoadBalancerListenerInput;
|
|
103
299
|
(function (CreateLoadBalancerListenerInput) {
|
|
104
300
|
CreateLoadBalancerListenerInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -107,6 +303,19 @@ export var CreateLoadBalancerListenerOutput;
|
|
|
107
303
|
(function (CreateLoadBalancerListenerOutput) {
|
|
108
304
|
CreateLoadBalancerListenerOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
305
|
})(CreateLoadBalancerListenerOutput || (CreateLoadBalancerListenerOutput = {}));
|
|
306
|
+
var DuplicateListenerException = (function (_super) {
|
|
307
|
+
__extends(DuplicateListenerException, _super);
|
|
308
|
+
function DuplicateListenerException(opts) {
|
|
309
|
+
var _this = _super.call(this, __assign({ name: "DuplicateListenerException", $fault: "client" }, opts)) || this;
|
|
310
|
+
_this.name = "DuplicateListenerException";
|
|
311
|
+
_this.$fault = "client";
|
|
312
|
+
Object.setPrototypeOf(_this, DuplicateListenerException.prototype);
|
|
313
|
+
_this.Message = opts.Message;
|
|
314
|
+
return _this;
|
|
315
|
+
}
|
|
316
|
+
return DuplicateListenerException;
|
|
317
|
+
}(__BaseException));
|
|
318
|
+
export { DuplicateListenerException };
|
|
110
319
|
export var PolicyAttribute;
|
|
111
320
|
(function (PolicyAttribute) {
|
|
112
321
|
PolicyAttribute.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -119,6 +328,19 @@ export var CreateLoadBalancerPolicyOutput;
|
|
|
119
328
|
(function (CreateLoadBalancerPolicyOutput) {
|
|
120
329
|
CreateLoadBalancerPolicyOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
330
|
})(CreateLoadBalancerPolicyOutput || (CreateLoadBalancerPolicyOutput = {}));
|
|
331
|
+
var PolicyTypeNotFoundException = (function (_super) {
|
|
332
|
+
__extends(PolicyTypeNotFoundException, _super);
|
|
333
|
+
function PolicyTypeNotFoundException(opts) {
|
|
334
|
+
var _this = _super.call(this, __assign({ name: "PolicyTypeNotFoundException", $fault: "client" }, opts)) || this;
|
|
335
|
+
_this.name = "PolicyTypeNotFoundException";
|
|
336
|
+
_this.$fault = "client";
|
|
337
|
+
Object.setPrototypeOf(_this, PolicyTypeNotFoundException.prototype);
|
|
338
|
+
_this.Message = opts.Message;
|
|
339
|
+
return _this;
|
|
340
|
+
}
|
|
341
|
+
return PolicyTypeNotFoundException;
|
|
342
|
+
}(__BaseException));
|
|
343
|
+
export { PolicyTypeNotFoundException };
|
|
122
344
|
export var CrossZoneLoadBalancing;
|
|
123
345
|
(function (CrossZoneLoadBalancing) {
|
|
124
346
|
CrossZoneLoadBalancing.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -147,6 +369,19 @@ export var DeleteLoadBalancerPolicyOutput;
|
|
|
147
369
|
(function (DeleteLoadBalancerPolicyOutput) {
|
|
148
370
|
DeleteLoadBalancerPolicyOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
371
|
})(DeleteLoadBalancerPolicyOutput || (DeleteLoadBalancerPolicyOutput = {}));
|
|
372
|
+
var DependencyThrottleException = (function (_super) {
|
|
373
|
+
__extends(DependencyThrottleException, _super);
|
|
374
|
+
function DependencyThrottleException(opts) {
|
|
375
|
+
var _this = _super.call(this, __assign({ name: "DependencyThrottleException", $fault: "client" }, opts)) || this;
|
|
376
|
+
_this.name = "DependencyThrottleException";
|
|
377
|
+
_this.$fault = "client";
|
|
378
|
+
Object.setPrototypeOf(_this, DependencyThrottleException.prototype);
|
|
379
|
+
_this.Message = opts.Message;
|
|
380
|
+
return _this;
|
|
381
|
+
}
|
|
382
|
+
return DependencyThrottleException;
|
|
383
|
+
}(__BaseException));
|
|
384
|
+
export { DependencyThrottleException };
|
|
150
385
|
export var Instance;
|
|
151
386
|
(function (Instance) {
|
|
152
387
|
Instance.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -159,6 +394,19 @@ export var DeregisterEndPointsOutput;
|
|
|
159
394
|
(function (DeregisterEndPointsOutput) {
|
|
160
395
|
DeregisterEndPointsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
396
|
})(DeregisterEndPointsOutput || (DeregisterEndPointsOutput = {}));
|
|
397
|
+
var InvalidEndPointException = (function (_super) {
|
|
398
|
+
__extends(InvalidEndPointException, _super);
|
|
399
|
+
function InvalidEndPointException(opts) {
|
|
400
|
+
var _this = _super.call(this, __assign({ name: "InvalidEndPointException", $fault: "client" }, opts)) || this;
|
|
401
|
+
_this.name = "InvalidEndPointException";
|
|
402
|
+
_this.$fault = "client";
|
|
403
|
+
Object.setPrototypeOf(_this, InvalidEndPointException.prototype);
|
|
404
|
+
_this.Message = opts.Message;
|
|
405
|
+
return _this;
|
|
406
|
+
}
|
|
407
|
+
return InvalidEndPointException;
|
|
408
|
+
}(__BaseException));
|
|
409
|
+
export { InvalidEndPointException };
|
|
162
410
|
export var DescribeAccessPointsInput;
|
|
163
411
|
(function (DescribeAccessPointsInput) {
|
|
164
412
|
DescribeAccessPointsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -223,6 +471,19 @@ export var DescribeLoadBalancerAttributesOutput;
|
|
|
223
471
|
(function (DescribeLoadBalancerAttributesOutput) {
|
|
224
472
|
DescribeLoadBalancerAttributesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
473
|
})(DescribeLoadBalancerAttributesOutput || (DescribeLoadBalancerAttributesOutput = {}));
|
|
474
|
+
var LoadBalancerAttributeNotFoundException = (function (_super) {
|
|
475
|
+
__extends(LoadBalancerAttributeNotFoundException, _super);
|
|
476
|
+
function LoadBalancerAttributeNotFoundException(opts) {
|
|
477
|
+
var _this = _super.call(this, __assign({ name: "LoadBalancerAttributeNotFoundException", $fault: "client" }, opts)) || this;
|
|
478
|
+
_this.name = "LoadBalancerAttributeNotFoundException";
|
|
479
|
+
_this.$fault = "client";
|
|
480
|
+
Object.setPrototypeOf(_this, LoadBalancerAttributeNotFoundException.prototype);
|
|
481
|
+
_this.Message = opts.Message;
|
|
482
|
+
return _this;
|
|
483
|
+
}
|
|
484
|
+
return LoadBalancerAttributeNotFoundException;
|
|
485
|
+
}(__BaseException));
|
|
486
|
+
export { LoadBalancerAttributeNotFoundException };
|
|
226
487
|
export var DescribeLoadBalancerPoliciesInput;
|
|
227
488
|
(function (DescribeLoadBalancerPoliciesInput) {
|
|
228
489
|
DescribeLoadBalancerPoliciesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -239,6 +500,19 @@ export var DescribeLoadBalancerPoliciesOutput;
|
|
|
239
500
|
(function (DescribeLoadBalancerPoliciesOutput) {
|
|
240
501
|
DescribeLoadBalancerPoliciesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
502
|
})(DescribeLoadBalancerPoliciesOutput || (DescribeLoadBalancerPoliciesOutput = {}));
|
|
503
|
+
var PolicyNotFoundException = (function (_super) {
|
|
504
|
+
__extends(PolicyNotFoundException, _super);
|
|
505
|
+
function PolicyNotFoundException(opts) {
|
|
506
|
+
var _this = _super.call(this, __assign({ name: "PolicyNotFoundException", $fault: "client" }, opts)) || this;
|
|
507
|
+
_this.name = "PolicyNotFoundException";
|
|
508
|
+
_this.$fault = "client";
|
|
509
|
+
Object.setPrototypeOf(_this, PolicyNotFoundException.prototype);
|
|
510
|
+
_this.Message = opts.Message;
|
|
511
|
+
return _this;
|
|
512
|
+
}
|
|
513
|
+
return PolicyNotFoundException;
|
|
514
|
+
}(__BaseException));
|
|
515
|
+
export { PolicyNotFoundException };
|
|
242
516
|
export var DescribeLoadBalancerPolicyTypesInput;
|
|
243
517
|
(function (DescribeLoadBalancerPolicyTypesInput) {
|
|
244
518
|
DescribeLoadBalancerPolicyTypesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -311,6 +585,19 @@ export var RemoveTagsOutput;
|
|
|
311
585
|
(function (RemoveTagsOutput) {
|
|
312
586
|
RemoveTagsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
587
|
})(RemoveTagsOutput || (RemoveTagsOutput = {}));
|
|
588
|
+
var ListenerNotFoundException = (function (_super) {
|
|
589
|
+
__extends(ListenerNotFoundException, _super);
|
|
590
|
+
function ListenerNotFoundException(opts) {
|
|
591
|
+
var _this = _super.call(this, __assign({ name: "ListenerNotFoundException", $fault: "client" }, opts)) || this;
|
|
592
|
+
_this.name = "ListenerNotFoundException";
|
|
593
|
+
_this.$fault = "client";
|
|
594
|
+
Object.setPrototypeOf(_this, ListenerNotFoundException.prototype);
|
|
595
|
+
_this.Message = opts.Message;
|
|
596
|
+
return _this;
|
|
597
|
+
}
|
|
598
|
+
return ListenerNotFoundException;
|
|
599
|
+
}(__BaseException));
|
|
600
|
+
export { ListenerNotFoundException };
|
|
314
601
|
export var SetLoadBalancerListenerSSLCertificateInput;
|
|
315
602
|
(function (SetLoadBalancerListenerSSLCertificateInput) {
|
|
316
603
|
SetLoadBalancerListenerSSLCertificateInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|