@aws-sdk/client-elastic-load-balancing 3.186.0 → 3.190.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-cjs/protocols/Aws_query.js +8 -4
  3. package/dist-es/ElasticLoadBalancing.js +118 -125
  4. package/dist-es/ElasticLoadBalancingClient.js +22 -28
  5. package/dist-es/commands/AddTagsCommand.js +21 -28
  6. package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +21 -28
  7. package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +21 -28
  8. package/dist-es/commands/ConfigureHealthCheckCommand.js +21 -28
  9. package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +21 -28
  10. package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +21 -28
  11. package/dist-es/commands/CreateLoadBalancerCommand.js +21 -28
  12. package/dist-es/commands/CreateLoadBalancerListenersCommand.js +21 -28
  13. package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +21 -28
  14. package/dist-es/commands/DeleteLoadBalancerCommand.js +21 -28
  15. package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +21 -28
  16. package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +21 -28
  17. package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +21 -28
  18. package/dist-es/commands/DescribeAccountLimitsCommand.js +21 -28
  19. package/dist-es/commands/DescribeInstanceHealthCommand.js +21 -28
  20. package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +21 -28
  21. package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +21 -28
  22. package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +21 -28
  23. package/dist-es/commands/DescribeLoadBalancersCommand.js +21 -28
  24. package/dist-es/commands/DescribeTagsCommand.js +21 -28
  25. package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +21 -28
  26. package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +21 -28
  27. package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +21 -28
  28. package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +21 -28
  29. package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +21 -28
  30. package/dist-es/commands/RemoveTagsCommand.js +21 -28
  31. package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +21 -28
  32. package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +21 -28
  33. package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +21 -28
  34. package/dist-es/endpoints.js +8 -8
  35. package/dist-es/models/ElasticLoadBalancingServiceException.js +5 -10
  36. package/dist-es/models/models_0.js +516 -349
  37. package/dist-es/pagination/DescribeLoadBalancersPaginator.js +24 -67
  38. package/dist-es/protocols/Aws_query.js +2200 -2926
  39. package/dist-es/runtimeConfig.browser.js +26 -12
  40. package/dist-es/runtimeConfig.js +30 -12
  41. package/dist-es/runtimeConfig.native.js +8 -5
  42. package/dist-es/runtimeConfig.shared.js +8 -11
  43. package/dist-es/waiters/waitForAnyInstanceInService.js +33 -64
  44. package/package.json +35 -36
@@ -1,372 +1,539 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
3
- var AccessPointNotFoundException = (function (_super) {
4
- __extends(AccessPointNotFoundException, _super);
5
- function AccessPointNotFoundException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AccessPointNotFoundException", $fault: "client" }, opts)) || this;
7
- _this.name = "AccessPointNotFoundException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AccessPointNotFoundException.prototype);
10
- _this.Message = opts.Message;
11
- return _this;
2
+ export class AccessPointNotFoundException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessPointNotFoundException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessPointNotFoundException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessPointNotFoundException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
13
- return AccessPointNotFoundException;
14
- }(__BaseException));
15
- export { AccessPointNotFoundException };
16
- var DuplicateTagKeysException = (function (_super) {
17
- __extends(DuplicateTagKeysException, _super);
18
- function DuplicateTagKeysException(opts) {
19
- var _this = _super.call(this, __assign({ name: "DuplicateTagKeysException", $fault: "client" }, opts)) || this;
20
- _this.name = "DuplicateTagKeysException";
21
- _this.$fault = "client";
22
- Object.setPrototypeOf(_this, DuplicateTagKeysException.prototype);
23
- _this.Message = opts.Message;
24
- return _this;
14
+ }
15
+ export class DuplicateTagKeysException extends __BaseException {
16
+ constructor(opts) {
17
+ super({
18
+ name: "DuplicateTagKeysException",
19
+ $fault: "client",
20
+ ...opts,
21
+ });
22
+ this.name = "DuplicateTagKeysException";
23
+ this.$fault = "client";
24
+ Object.setPrototypeOf(this, DuplicateTagKeysException.prototype);
25
+ this.Message = opts.Message;
25
26
  }
26
- return DuplicateTagKeysException;
27
- }(__BaseException));
28
- export { DuplicateTagKeysException };
29
- var TooManyTagsException = (function (_super) {
30
- __extends(TooManyTagsException, _super);
31
- function TooManyTagsException(opts) {
32
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
33
- _this.name = "TooManyTagsException";
34
- _this.$fault = "client";
35
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
36
- _this.Message = opts.Message;
37
- return _this;
27
+ }
28
+ export class TooManyTagsException extends __BaseException {
29
+ constructor(opts) {
30
+ super({
31
+ name: "TooManyTagsException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ this.name = "TooManyTagsException";
36
+ this.$fault = "client";
37
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
38
+ this.Message = opts.Message;
38
39
  }
39
- return TooManyTagsException;
40
- }(__BaseException));
41
- export { TooManyTagsException };
42
- var InvalidConfigurationRequestException = (function (_super) {
43
- __extends(InvalidConfigurationRequestException, _super);
44
- function InvalidConfigurationRequestException(opts) {
45
- var _this = _super.call(this, __assign({ name: "InvalidConfigurationRequestException", $fault: "client" }, opts)) || this;
46
- _this.name = "InvalidConfigurationRequestException";
47
- _this.$fault = "client";
48
- Object.setPrototypeOf(_this, InvalidConfigurationRequestException.prototype);
49
- _this.Message = opts.Message;
50
- return _this;
40
+ }
41
+ export class InvalidConfigurationRequestException extends __BaseException {
42
+ constructor(opts) {
43
+ super({
44
+ name: "InvalidConfigurationRequestException",
45
+ $fault: "client",
46
+ ...opts,
47
+ });
48
+ this.name = "InvalidConfigurationRequestException";
49
+ this.$fault = "client";
50
+ Object.setPrototypeOf(this, InvalidConfigurationRequestException.prototype);
51
+ this.Message = opts.Message;
51
52
  }
52
- return InvalidConfigurationRequestException;
53
- }(__BaseException));
54
- export { InvalidConfigurationRequestException };
55
- var InvalidSecurityGroupException = (function (_super) {
56
- __extends(InvalidSecurityGroupException, _super);
57
- function InvalidSecurityGroupException(opts) {
58
- var _this = _super.call(this, __assign({ name: "InvalidSecurityGroupException", $fault: "client" }, opts)) || this;
59
- _this.name = "InvalidSecurityGroupException";
60
- _this.$fault = "client";
61
- Object.setPrototypeOf(_this, InvalidSecurityGroupException.prototype);
62
- _this.Message = opts.Message;
63
- return _this;
53
+ }
54
+ export class InvalidSecurityGroupException extends __BaseException {
55
+ constructor(opts) {
56
+ super({
57
+ name: "InvalidSecurityGroupException",
58
+ $fault: "client",
59
+ ...opts,
60
+ });
61
+ this.name = "InvalidSecurityGroupException";
62
+ this.$fault = "client";
63
+ Object.setPrototypeOf(this, InvalidSecurityGroupException.prototype);
64
+ this.Message = opts.Message;
64
65
  }
65
- return InvalidSecurityGroupException;
66
- }(__BaseException));
67
- export { InvalidSecurityGroupException };
68
- var InvalidSubnetException = (function (_super) {
69
- __extends(InvalidSubnetException, _super);
70
- function InvalidSubnetException(opts) {
71
- var _this = _super.call(this, __assign({ name: "InvalidSubnetException", $fault: "client" }, opts)) || this;
72
- _this.name = "InvalidSubnetException";
73
- _this.$fault = "client";
74
- Object.setPrototypeOf(_this, InvalidSubnetException.prototype);
75
- _this.Message = opts.Message;
76
- return _this;
66
+ }
67
+ export class InvalidSubnetException extends __BaseException {
68
+ constructor(opts) {
69
+ super({
70
+ name: "InvalidSubnetException",
71
+ $fault: "client",
72
+ ...opts,
73
+ });
74
+ this.name = "InvalidSubnetException";
75
+ this.$fault = "client";
76
+ Object.setPrototypeOf(this, InvalidSubnetException.prototype);
77
+ this.Message = opts.Message;
77
78
  }
78
- return InvalidSubnetException;
79
- }(__BaseException));
80
- export { InvalidSubnetException };
81
- var SubnetNotFoundException = (function (_super) {
82
- __extends(SubnetNotFoundException, _super);
83
- function SubnetNotFoundException(opts) {
84
- var _this = _super.call(this, __assign({ name: "SubnetNotFoundException", $fault: "client" }, opts)) || this;
85
- _this.name = "SubnetNotFoundException";
86
- _this.$fault = "client";
87
- Object.setPrototypeOf(_this, SubnetNotFoundException.prototype);
88
- _this.Message = opts.Message;
89
- return _this;
79
+ }
80
+ export class SubnetNotFoundException extends __BaseException {
81
+ constructor(opts) {
82
+ super({
83
+ name: "SubnetNotFoundException",
84
+ $fault: "client",
85
+ ...opts,
86
+ });
87
+ this.name = "SubnetNotFoundException";
88
+ this.$fault = "client";
89
+ Object.setPrototypeOf(this, SubnetNotFoundException.prototype);
90
+ this.Message = opts.Message;
90
91
  }
91
- return SubnetNotFoundException;
92
- }(__BaseException));
93
- export { SubnetNotFoundException };
94
- var CertificateNotFoundException = (function (_super) {
95
- __extends(CertificateNotFoundException, _super);
96
- function CertificateNotFoundException(opts) {
97
- var _this = _super.call(this, __assign({ name: "CertificateNotFoundException", $fault: "client" }, opts)) || this;
98
- _this.name = "CertificateNotFoundException";
99
- _this.$fault = "client";
100
- Object.setPrototypeOf(_this, CertificateNotFoundException.prototype);
101
- _this.Message = opts.Message;
102
- return _this;
92
+ }
93
+ export class CertificateNotFoundException extends __BaseException {
94
+ constructor(opts) {
95
+ super({
96
+ name: "CertificateNotFoundException",
97
+ $fault: "client",
98
+ ...opts,
99
+ });
100
+ this.name = "CertificateNotFoundException";
101
+ this.$fault = "client";
102
+ Object.setPrototypeOf(this, CertificateNotFoundException.prototype);
103
+ this.Message = opts.Message;
103
104
  }
104
- return CertificateNotFoundException;
105
- }(__BaseException));
106
- export { CertificateNotFoundException };
107
- var DuplicatePolicyNameException = (function (_super) {
108
- __extends(DuplicatePolicyNameException, _super);
109
- function DuplicatePolicyNameException(opts) {
110
- var _this = _super.call(this, __assign({ name: "DuplicatePolicyNameException", $fault: "client" }, opts)) || this;
111
- _this.name = "DuplicatePolicyNameException";
112
- _this.$fault = "client";
113
- Object.setPrototypeOf(_this, DuplicatePolicyNameException.prototype);
114
- _this.Message = opts.Message;
115
- return _this;
105
+ }
106
+ export class DuplicatePolicyNameException extends __BaseException {
107
+ constructor(opts) {
108
+ super({
109
+ name: "DuplicatePolicyNameException",
110
+ $fault: "client",
111
+ ...opts,
112
+ });
113
+ this.name = "DuplicatePolicyNameException";
114
+ this.$fault = "client";
115
+ Object.setPrototypeOf(this, DuplicatePolicyNameException.prototype);
116
+ this.Message = opts.Message;
116
117
  }
117
- return DuplicatePolicyNameException;
118
- }(__BaseException));
119
- export { DuplicatePolicyNameException };
120
- var TooManyPoliciesException = (function (_super) {
121
- __extends(TooManyPoliciesException, _super);
122
- function TooManyPoliciesException(opts) {
123
- var _this = _super.call(this, __assign({ name: "TooManyPoliciesException", $fault: "client" }, opts)) || this;
124
- _this.name = "TooManyPoliciesException";
125
- _this.$fault = "client";
126
- Object.setPrototypeOf(_this, TooManyPoliciesException.prototype);
127
- _this.Message = opts.Message;
128
- return _this;
118
+ }
119
+ export class TooManyPoliciesException extends __BaseException {
120
+ constructor(opts) {
121
+ super({
122
+ name: "TooManyPoliciesException",
123
+ $fault: "client",
124
+ ...opts,
125
+ });
126
+ this.name = "TooManyPoliciesException";
127
+ this.$fault = "client";
128
+ Object.setPrototypeOf(this, TooManyPoliciesException.prototype);
129
+ this.Message = opts.Message;
129
130
  }
130
- return TooManyPoliciesException;
131
- }(__BaseException));
132
- export { TooManyPoliciesException };
133
- var DuplicateAccessPointNameException = (function (_super) {
134
- __extends(DuplicateAccessPointNameException, _super);
135
- function DuplicateAccessPointNameException(opts) {
136
- var _this = _super.call(this, __assign({ name: "DuplicateAccessPointNameException", $fault: "client" }, opts)) || this;
137
- _this.name = "DuplicateAccessPointNameException";
138
- _this.$fault = "client";
139
- Object.setPrototypeOf(_this, DuplicateAccessPointNameException.prototype);
140
- _this.Message = opts.Message;
141
- return _this;
131
+ }
132
+ export class DuplicateAccessPointNameException extends __BaseException {
133
+ constructor(opts) {
134
+ super({
135
+ name: "DuplicateAccessPointNameException",
136
+ $fault: "client",
137
+ ...opts,
138
+ });
139
+ this.name = "DuplicateAccessPointNameException";
140
+ this.$fault = "client";
141
+ Object.setPrototypeOf(this, DuplicateAccessPointNameException.prototype);
142
+ this.Message = opts.Message;
142
143
  }
143
- return DuplicateAccessPointNameException;
144
- }(__BaseException));
145
- export { DuplicateAccessPointNameException };
146
- var InvalidSchemeException = (function (_super) {
147
- __extends(InvalidSchemeException, _super);
148
- function InvalidSchemeException(opts) {
149
- var _this = _super.call(this, __assign({ name: "InvalidSchemeException", $fault: "client" }, opts)) || this;
150
- _this.name = "InvalidSchemeException";
151
- _this.$fault = "client";
152
- Object.setPrototypeOf(_this, InvalidSchemeException.prototype);
153
- _this.Message = opts.Message;
154
- return _this;
144
+ }
145
+ export class InvalidSchemeException extends __BaseException {
146
+ constructor(opts) {
147
+ super({
148
+ name: "InvalidSchemeException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ this.name = "InvalidSchemeException";
153
+ this.$fault = "client";
154
+ Object.setPrototypeOf(this, InvalidSchemeException.prototype);
155
+ this.Message = opts.Message;
155
156
  }
156
- return InvalidSchemeException;
157
- }(__BaseException));
158
- export { InvalidSchemeException };
159
- var OperationNotPermittedException = (function (_super) {
160
- __extends(OperationNotPermittedException, _super);
161
- function OperationNotPermittedException(opts) {
162
- var _this = _super.call(this, __assign({ name: "OperationNotPermittedException", $fault: "client" }, opts)) || this;
163
- _this.name = "OperationNotPermittedException";
164
- _this.$fault = "client";
165
- Object.setPrototypeOf(_this, OperationNotPermittedException.prototype);
166
- _this.Message = opts.Message;
167
- return _this;
157
+ }
158
+ export class OperationNotPermittedException extends __BaseException {
159
+ constructor(opts) {
160
+ super({
161
+ name: "OperationNotPermittedException",
162
+ $fault: "client",
163
+ ...opts,
164
+ });
165
+ this.name = "OperationNotPermittedException";
166
+ this.$fault = "client";
167
+ Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
168
+ this.Message = opts.Message;
168
169
  }
169
- return OperationNotPermittedException;
170
- }(__BaseException));
171
- export { OperationNotPermittedException };
172
- var TooManyAccessPointsException = (function (_super) {
173
- __extends(TooManyAccessPointsException, _super);
174
- function TooManyAccessPointsException(opts) {
175
- var _this = _super.call(this, __assign({ name: "TooManyAccessPointsException", $fault: "client" }, opts)) || this;
176
- _this.name = "TooManyAccessPointsException";
177
- _this.$fault = "client";
178
- Object.setPrototypeOf(_this, TooManyAccessPointsException.prototype);
179
- _this.Message = opts.Message;
180
- return _this;
170
+ }
171
+ export class TooManyAccessPointsException extends __BaseException {
172
+ constructor(opts) {
173
+ super({
174
+ name: "TooManyAccessPointsException",
175
+ $fault: "client",
176
+ ...opts,
177
+ });
178
+ this.name = "TooManyAccessPointsException";
179
+ this.$fault = "client";
180
+ Object.setPrototypeOf(this, TooManyAccessPointsException.prototype);
181
+ this.Message = opts.Message;
181
182
  }
182
- return TooManyAccessPointsException;
183
- }(__BaseException));
184
- export { TooManyAccessPointsException };
185
- var UnsupportedProtocolException = (function (_super) {
186
- __extends(UnsupportedProtocolException, _super);
187
- function UnsupportedProtocolException(opts) {
188
- var _this = _super.call(this, __assign({ name: "UnsupportedProtocolException", $fault: "client" }, opts)) || this;
189
- _this.name = "UnsupportedProtocolException";
190
- _this.$fault = "client";
191
- Object.setPrototypeOf(_this, UnsupportedProtocolException.prototype);
192
- _this.Message = opts.Message;
193
- return _this;
183
+ }
184
+ export class UnsupportedProtocolException extends __BaseException {
185
+ constructor(opts) {
186
+ super({
187
+ name: "UnsupportedProtocolException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ this.name = "UnsupportedProtocolException";
192
+ this.$fault = "client";
193
+ Object.setPrototypeOf(this, UnsupportedProtocolException.prototype);
194
+ this.Message = opts.Message;
194
195
  }
195
- return UnsupportedProtocolException;
196
- }(__BaseException));
197
- export { UnsupportedProtocolException };
198
- var DuplicateListenerException = (function (_super) {
199
- __extends(DuplicateListenerException, _super);
200
- function DuplicateListenerException(opts) {
201
- var _this = _super.call(this, __assign({ name: "DuplicateListenerException", $fault: "client" }, opts)) || this;
202
- _this.name = "DuplicateListenerException";
203
- _this.$fault = "client";
204
- Object.setPrototypeOf(_this, DuplicateListenerException.prototype);
205
- _this.Message = opts.Message;
206
- return _this;
196
+ }
197
+ export class DuplicateListenerException extends __BaseException {
198
+ constructor(opts) {
199
+ super({
200
+ name: "DuplicateListenerException",
201
+ $fault: "client",
202
+ ...opts,
203
+ });
204
+ this.name = "DuplicateListenerException";
205
+ this.$fault = "client";
206
+ Object.setPrototypeOf(this, DuplicateListenerException.prototype);
207
+ this.Message = opts.Message;
207
208
  }
208
- return DuplicateListenerException;
209
- }(__BaseException));
210
- export { DuplicateListenerException };
211
- var PolicyTypeNotFoundException = (function (_super) {
212
- __extends(PolicyTypeNotFoundException, _super);
213
- function PolicyTypeNotFoundException(opts) {
214
- var _this = _super.call(this, __assign({ name: "PolicyTypeNotFoundException", $fault: "client" }, opts)) || this;
215
- _this.name = "PolicyTypeNotFoundException";
216
- _this.$fault = "client";
217
- Object.setPrototypeOf(_this, PolicyTypeNotFoundException.prototype);
218
- _this.Message = opts.Message;
219
- return _this;
209
+ }
210
+ export class PolicyTypeNotFoundException extends __BaseException {
211
+ constructor(opts) {
212
+ super({
213
+ name: "PolicyTypeNotFoundException",
214
+ $fault: "client",
215
+ ...opts,
216
+ });
217
+ this.name = "PolicyTypeNotFoundException";
218
+ this.$fault = "client";
219
+ Object.setPrototypeOf(this, PolicyTypeNotFoundException.prototype);
220
+ this.Message = opts.Message;
220
221
  }
221
- return PolicyTypeNotFoundException;
222
- }(__BaseException));
223
- export { PolicyTypeNotFoundException };
224
- var DependencyThrottleException = (function (_super) {
225
- __extends(DependencyThrottleException, _super);
226
- function DependencyThrottleException(opts) {
227
- var _this = _super.call(this, __assign({ name: "DependencyThrottleException", $fault: "client" }, opts)) || this;
228
- _this.name = "DependencyThrottleException";
229
- _this.$fault = "client";
230
- Object.setPrototypeOf(_this, DependencyThrottleException.prototype);
231
- _this.Message = opts.Message;
232
- return _this;
222
+ }
223
+ export class DependencyThrottleException extends __BaseException {
224
+ constructor(opts) {
225
+ super({
226
+ name: "DependencyThrottleException",
227
+ $fault: "client",
228
+ ...opts,
229
+ });
230
+ this.name = "DependencyThrottleException";
231
+ this.$fault = "client";
232
+ Object.setPrototypeOf(this, DependencyThrottleException.prototype);
233
+ this.Message = opts.Message;
233
234
  }
234
- return DependencyThrottleException;
235
- }(__BaseException));
236
- export { DependencyThrottleException };
237
- var InvalidEndPointException = (function (_super) {
238
- __extends(InvalidEndPointException, _super);
239
- function InvalidEndPointException(opts) {
240
- var _this = _super.call(this, __assign({ name: "InvalidEndPointException", $fault: "client" }, opts)) || this;
241
- _this.name = "InvalidEndPointException";
242
- _this.$fault = "client";
243
- Object.setPrototypeOf(_this, InvalidEndPointException.prototype);
244
- _this.Message = opts.Message;
245
- return _this;
235
+ }
236
+ export class InvalidEndPointException extends __BaseException {
237
+ constructor(opts) {
238
+ super({
239
+ name: "InvalidEndPointException",
240
+ $fault: "client",
241
+ ...opts,
242
+ });
243
+ this.name = "InvalidEndPointException";
244
+ this.$fault = "client";
245
+ Object.setPrototypeOf(this, InvalidEndPointException.prototype);
246
+ this.Message = opts.Message;
246
247
  }
247
- return InvalidEndPointException;
248
- }(__BaseException));
249
- export { InvalidEndPointException };
250
- var LoadBalancerAttributeNotFoundException = (function (_super) {
251
- __extends(LoadBalancerAttributeNotFoundException, _super);
252
- function LoadBalancerAttributeNotFoundException(opts) {
253
- var _this = _super.call(this, __assign({ name: "LoadBalancerAttributeNotFoundException", $fault: "client" }, opts)) || this;
254
- _this.name = "LoadBalancerAttributeNotFoundException";
255
- _this.$fault = "client";
256
- Object.setPrototypeOf(_this, LoadBalancerAttributeNotFoundException.prototype);
257
- _this.Message = opts.Message;
258
- return _this;
248
+ }
249
+ export class LoadBalancerAttributeNotFoundException extends __BaseException {
250
+ constructor(opts) {
251
+ super({
252
+ name: "LoadBalancerAttributeNotFoundException",
253
+ $fault: "client",
254
+ ...opts,
255
+ });
256
+ this.name = "LoadBalancerAttributeNotFoundException";
257
+ this.$fault = "client";
258
+ Object.setPrototypeOf(this, LoadBalancerAttributeNotFoundException.prototype);
259
+ this.Message = opts.Message;
259
260
  }
260
- return LoadBalancerAttributeNotFoundException;
261
- }(__BaseException));
262
- export { LoadBalancerAttributeNotFoundException };
263
- var PolicyNotFoundException = (function (_super) {
264
- __extends(PolicyNotFoundException, _super);
265
- function PolicyNotFoundException(opts) {
266
- var _this = _super.call(this, __assign({ name: "PolicyNotFoundException", $fault: "client" }, opts)) || this;
267
- _this.name = "PolicyNotFoundException";
268
- _this.$fault = "client";
269
- Object.setPrototypeOf(_this, PolicyNotFoundException.prototype);
270
- _this.Message = opts.Message;
271
- return _this;
261
+ }
262
+ export class PolicyNotFoundException extends __BaseException {
263
+ constructor(opts) {
264
+ super({
265
+ name: "PolicyNotFoundException",
266
+ $fault: "client",
267
+ ...opts,
268
+ });
269
+ this.name = "PolicyNotFoundException";
270
+ this.$fault = "client";
271
+ Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
272
+ this.Message = opts.Message;
272
273
  }
273
- return PolicyNotFoundException;
274
- }(__BaseException));
275
- export { PolicyNotFoundException };
276
- var ListenerNotFoundException = (function (_super) {
277
- __extends(ListenerNotFoundException, _super);
278
- function ListenerNotFoundException(opts) {
279
- var _this = _super.call(this, __assign({ name: "ListenerNotFoundException", $fault: "client" }, opts)) || this;
280
- _this.name = "ListenerNotFoundException";
281
- _this.$fault = "client";
282
- Object.setPrototypeOf(_this, ListenerNotFoundException.prototype);
283
- _this.Message = opts.Message;
284
- return _this;
274
+ }
275
+ export class ListenerNotFoundException extends __BaseException {
276
+ constructor(opts) {
277
+ super({
278
+ name: "ListenerNotFoundException",
279
+ $fault: "client",
280
+ ...opts,
281
+ });
282
+ this.name = "ListenerNotFoundException";
283
+ this.$fault = "client";
284
+ Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
285
+ this.Message = opts.Message;
285
286
  }
286
- return ListenerNotFoundException;
287
- }(__BaseException));
288
- export { ListenerNotFoundException };
289
- export var AccessLogFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var AddAvailabilityZonesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var AddAvailabilityZonesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var AdditionalAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var AddTagsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var AddTagsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var AppCookieStickinessPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var AttachLoadBalancerToSubnetsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var AttachLoadBalancerToSubnetsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var BackendServerDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var HealthCheckFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var ConfigureHealthCheckInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var ConfigureHealthCheckOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var ConnectionDrainingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var ConnectionSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var ListenerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var CreateAccessPointInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var CreateAccessPointOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var CreateAppCookieStickinessPolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var CreateAppCookieStickinessPolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var CreateLBCookieStickinessPolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var CreateLBCookieStickinessPolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var CreateLoadBalancerListenerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var CreateLoadBalancerListenerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var PolicyAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var CreateLoadBalancerPolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var CreateLoadBalancerPolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var CrossZoneLoadBalancingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
- export var DeleteAccessPointInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
- export var DeleteAccessPointOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
- export var DeleteLoadBalancerListenerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
- export var DeleteLoadBalancerListenerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
- export var DeleteLoadBalancerPolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
- export var DeleteLoadBalancerPolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
- export var InstanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
- export var DeregisterEndPointsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
- export var DeregisterEndPointsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
- export var DescribeAccessPointsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var ListenerDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var LBCookieStickinessPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var PoliciesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var SourceSecurityGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var LoadBalancerDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var DescribeAccessPointsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var DescribeAccountLimitsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var LimitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var DescribeAccountLimitsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var DescribeEndPointStateInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var InstanceStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var DescribeEndPointStateOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var DescribeLoadBalancerAttributesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var LoadBalancerAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var DescribeLoadBalancerAttributesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var DescribeLoadBalancerPoliciesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var PolicyAttributeDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var PolicyDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var DescribeLoadBalancerPoliciesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var DescribeLoadBalancerPolicyTypesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var PolicyAttributeTypeDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var PolicyTypeDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var DescribeLoadBalancerPolicyTypesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var DescribeTagsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var TagDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var DescribeTagsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var DetachLoadBalancerFromSubnetsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var DetachLoadBalancerFromSubnetsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var RemoveAvailabilityZonesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var RemoveAvailabilityZonesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var ModifyLoadBalancerAttributesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var ModifyLoadBalancerAttributesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var RegisterEndPointsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var RegisterEndPointsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var TagKeyOnlyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var RemoveTagsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var RemoveTagsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var SetLoadBalancerListenerSSLCertificateInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var SetLoadBalancerListenerSSLCertificateOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var SetLoadBalancerPoliciesForBackendServerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var SetLoadBalancerPoliciesForBackendServerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var SetLoadBalancerPoliciesOfListenerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var SetLoadBalancerPoliciesOfListenerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
+ }
288
+ export const AccessLogFilterSensitiveLog = (obj) => ({
289
+ ...obj,
290
+ });
291
+ export const AddAvailabilityZonesInputFilterSensitiveLog = (obj) => ({
292
+ ...obj,
293
+ });
294
+ export const AddAvailabilityZonesOutputFilterSensitiveLog = (obj) => ({
295
+ ...obj,
296
+ });
297
+ export const AdditionalAttributeFilterSensitiveLog = (obj) => ({
298
+ ...obj,
299
+ });
300
+ export const TagFilterSensitiveLog = (obj) => ({
301
+ ...obj,
302
+ });
303
+ export const AddTagsInputFilterSensitiveLog = (obj) => ({
304
+ ...obj,
305
+ });
306
+ export const AddTagsOutputFilterSensitiveLog = (obj) => ({
307
+ ...obj,
308
+ });
309
+ export const AppCookieStickinessPolicyFilterSensitiveLog = (obj) => ({
310
+ ...obj,
311
+ });
312
+ export const ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog = (obj) => ({
313
+ ...obj,
314
+ });
315
+ export const ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog = (obj) => ({
316
+ ...obj,
317
+ });
318
+ export const AttachLoadBalancerToSubnetsInputFilterSensitiveLog = (obj) => ({
319
+ ...obj,
320
+ });
321
+ export const AttachLoadBalancerToSubnetsOutputFilterSensitiveLog = (obj) => ({
322
+ ...obj,
323
+ });
324
+ export const BackendServerDescriptionFilterSensitiveLog = (obj) => ({
325
+ ...obj,
326
+ });
327
+ export const HealthCheckFilterSensitiveLog = (obj) => ({
328
+ ...obj,
329
+ });
330
+ export const ConfigureHealthCheckInputFilterSensitiveLog = (obj) => ({
331
+ ...obj,
332
+ });
333
+ export const ConfigureHealthCheckOutputFilterSensitiveLog = (obj) => ({
334
+ ...obj,
335
+ });
336
+ export const ConnectionDrainingFilterSensitiveLog = (obj) => ({
337
+ ...obj,
338
+ });
339
+ export const ConnectionSettingsFilterSensitiveLog = (obj) => ({
340
+ ...obj,
341
+ });
342
+ export const ListenerFilterSensitiveLog = (obj) => ({
343
+ ...obj,
344
+ });
345
+ export const CreateAccessPointInputFilterSensitiveLog = (obj) => ({
346
+ ...obj,
347
+ });
348
+ export const CreateAccessPointOutputFilterSensitiveLog = (obj) => ({
349
+ ...obj,
350
+ });
351
+ export const CreateAppCookieStickinessPolicyInputFilterSensitiveLog = (obj) => ({
352
+ ...obj,
353
+ });
354
+ export const CreateAppCookieStickinessPolicyOutputFilterSensitiveLog = (obj) => ({
355
+ ...obj,
356
+ });
357
+ export const CreateLBCookieStickinessPolicyInputFilterSensitiveLog = (obj) => ({
358
+ ...obj,
359
+ });
360
+ export const CreateLBCookieStickinessPolicyOutputFilterSensitiveLog = (obj) => ({
361
+ ...obj,
362
+ });
363
+ export const CreateLoadBalancerListenerInputFilterSensitiveLog = (obj) => ({
364
+ ...obj,
365
+ });
366
+ export const CreateLoadBalancerListenerOutputFilterSensitiveLog = (obj) => ({
367
+ ...obj,
368
+ });
369
+ export const PolicyAttributeFilterSensitiveLog = (obj) => ({
370
+ ...obj,
371
+ });
372
+ export const CreateLoadBalancerPolicyInputFilterSensitiveLog = (obj) => ({
373
+ ...obj,
374
+ });
375
+ export const CreateLoadBalancerPolicyOutputFilterSensitiveLog = (obj) => ({
376
+ ...obj,
377
+ });
378
+ export const CrossZoneLoadBalancingFilterSensitiveLog = (obj) => ({
379
+ ...obj,
380
+ });
381
+ export const DeleteAccessPointInputFilterSensitiveLog = (obj) => ({
382
+ ...obj,
383
+ });
384
+ export const DeleteAccessPointOutputFilterSensitiveLog = (obj) => ({
385
+ ...obj,
386
+ });
387
+ export const DeleteLoadBalancerListenerInputFilterSensitiveLog = (obj) => ({
388
+ ...obj,
389
+ });
390
+ export const DeleteLoadBalancerListenerOutputFilterSensitiveLog = (obj) => ({
391
+ ...obj,
392
+ });
393
+ export const DeleteLoadBalancerPolicyInputFilterSensitiveLog = (obj) => ({
394
+ ...obj,
395
+ });
396
+ export const DeleteLoadBalancerPolicyOutputFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ });
399
+ export const InstanceFilterSensitiveLog = (obj) => ({
400
+ ...obj,
401
+ });
402
+ export const DeregisterEndPointsInputFilterSensitiveLog = (obj) => ({
403
+ ...obj,
404
+ });
405
+ export const DeregisterEndPointsOutputFilterSensitiveLog = (obj) => ({
406
+ ...obj,
407
+ });
408
+ export const DescribeAccessPointsInputFilterSensitiveLog = (obj) => ({
409
+ ...obj,
410
+ });
411
+ export const ListenerDescriptionFilterSensitiveLog = (obj) => ({
412
+ ...obj,
413
+ });
414
+ export const LBCookieStickinessPolicyFilterSensitiveLog = (obj) => ({
415
+ ...obj,
416
+ });
417
+ export const PoliciesFilterSensitiveLog = (obj) => ({
418
+ ...obj,
419
+ });
420
+ export const SourceSecurityGroupFilterSensitiveLog = (obj) => ({
421
+ ...obj,
422
+ });
423
+ export const LoadBalancerDescriptionFilterSensitiveLog = (obj) => ({
424
+ ...obj,
425
+ });
426
+ export const DescribeAccessPointsOutputFilterSensitiveLog = (obj) => ({
427
+ ...obj,
428
+ });
429
+ export const DescribeAccountLimitsInputFilterSensitiveLog = (obj) => ({
430
+ ...obj,
431
+ });
432
+ export const LimitFilterSensitiveLog = (obj) => ({
433
+ ...obj,
434
+ });
435
+ export const DescribeAccountLimitsOutputFilterSensitiveLog = (obj) => ({
436
+ ...obj,
437
+ });
438
+ export const DescribeEndPointStateInputFilterSensitiveLog = (obj) => ({
439
+ ...obj,
440
+ });
441
+ export const InstanceStateFilterSensitiveLog = (obj) => ({
442
+ ...obj,
443
+ });
444
+ export const DescribeEndPointStateOutputFilterSensitiveLog = (obj) => ({
445
+ ...obj,
446
+ });
447
+ export const DescribeLoadBalancerAttributesInputFilterSensitiveLog = (obj) => ({
448
+ ...obj,
449
+ });
450
+ export const LoadBalancerAttributesFilterSensitiveLog = (obj) => ({
451
+ ...obj,
452
+ });
453
+ export const DescribeLoadBalancerAttributesOutputFilterSensitiveLog = (obj) => ({
454
+ ...obj,
455
+ });
456
+ export const DescribeLoadBalancerPoliciesInputFilterSensitiveLog = (obj) => ({
457
+ ...obj,
458
+ });
459
+ export const PolicyAttributeDescriptionFilterSensitiveLog = (obj) => ({
460
+ ...obj,
461
+ });
462
+ export const PolicyDescriptionFilterSensitiveLog = (obj) => ({
463
+ ...obj,
464
+ });
465
+ export const DescribeLoadBalancerPoliciesOutputFilterSensitiveLog = (obj) => ({
466
+ ...obj,
467
+ });
468
+ export const DescribeLoadBalancerPolicyTypesInputFilterSensitiveLog = (obj) => ({
469
+ ...obj,
470
+ });
471
+ export const PolicyAttributeTypeDescriptionFilterSensitiveLog = (obj) => ({
472
+ ...obj,
473
+ });
474
+ export const PolicyTypeDescriptionFilterSensitiveLog = (obj) => ({
475
+ ...obj,
476
+ });
477
+ export const DescribeLoadBalancerPolicyTypesOutputFilterSensitiveLog = (obj) => ({
478
+ ...obj,
479
+ });
480
+ export const DescribeTagsInputFilterSensitiveLog = (obj) => ({
481
+ ...obj,
482
+ });
483
+ export const TagDescriptionFilterSensitiveLog = (obj) => ({
484
+ ...obj,
485
+ });
486
+ export const DescribeTagsOutputFilterSensitiveLog = (obj) => ({
487
+ ...obj,
488
+ });
489
+ export const DetachLoadBalancerFromSubnetsInputFilterSensitiveLog = (obj) => ({
490
+ ...obj,
491
+ });
492
+ export const DetachLoadBalancerFromSubnetsOutputFilterSensitiveLog = (obj) => ({
493
+ ...obj,
494
+ });
495
+ export const RemoveAvailabilityZonesInputFilterSensitiveLog = (obj) => ({
496
+ ...obj,
497
+ });
498
+ export const RemoveAvailabilityZonesOutputFilterSensitiveLog = (obj) => ({
499
+ ...obj,
500
+ });
501
+ export const ModifyLoadBalancerAttributesInputFilterSensitiveLog = (obj) => ({
502
+ ...obj,
503
+ });
504
+ export const ModifyLoadBalancerAttributesOutputFilterSensitiveLog = (obj) => ({
505
+ ...obj,
506
+ });
507
+ export const RegisterEndPointsInputFilterSensitiveLog = (obj) => ({
508
+ ...obj,
509
+ });
510
+ export const RegisterEndPointsOutputFilterSensitiveLog = (obj) => ({
511
+ ...obj,
512
+ });
513
+ export const TagKeyOnlyFilterSensitiveLog = (obj) => ({
514
+ ...obj,
515
+ });
516
+ export const RemoveTagsInputFilterSensitiveLog = (obj) => ({
517
+ ...obj,
518
+ });
519
+ export const RemoveTagsOutputFilterSensitiveLog = (obj) => ({
520
+ ...obj,
521
+ });
522
+ export const SetLoadBalancerListenerSSLCertificateInputFilterSensitiveLog = (obj) => ({
523
+ ...obj,
524
+ });
525
+ export const SetLoadBalancerListenerSSLCertificateOutputFilterSensitiveLog = (obj) => ({
526
+ ...obj,
527
+ });
528
+ export const SetLoadBalancerPoliciesForBackendServerInputFilterSensitiveLog = (obj) => ({
529
+ ...obj,
530
+ });
531
+ export const SetLoadBalancerPoliciesForBackendServerOutputFilterSensitiveLog = (obj) => ({
532
+ ...obj,
533
+ });
534
+ export const SetLoadBalancerPoliciesOfListenerInputFilterSensitiveLog = (obj) => ({
535
+ ...obj,
536
+ });
537
+ export const SetLoadBalancerPoliciesOfListenerOutputFilterSensitiveLog = (obj) => ({
538
+ ...obj,
539
+ });