@aws-sdk/client-elastic-load-balancing 3.987.0 → 3.989.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.
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
6
6
  import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
7
7
  import { defaultElasticLoadBalancingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
8
8
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
9
+ import { errorTypeRegistries } from "./schemas/schemas_0";
9
10
  export const getRuntimeConfig = (config) => {
10
11
  return {
11
12
  apiVersion: "2012-06-01",
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
26
27
  protocol: config?.protocol ?? AwsQueryProtocol,
27
28
  protocolSettings: config?.protocolSettings ?? {
28
29
  defaultNamespace: "com.amazonaws.elasticloadbalancing",
30
+ errorTypeRegistries,
29
31
  xmlNamespace: "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
30
32
  version: "2012-06-01",
31
33
  serviceTarget: "ElasticLoadBalancing_v7",
@@ -214,17 +214,151 @@ const n0 = "com.amazonaws.elasticloadbalancing";
214
214
  import { TypeRegistry } from "@smithy/core/schema";
215
215
  import { ElasticLoadBalancingServiceException } from "../models/ElasticLoadBalancingServiceException";
216
216
  import { AccessPointNotFoundException, CertificateNotFoundException, DependencyThrottleException, DuplicateAccessPointNameException, DuplicateListenerException, DuplicatePolicyNameException, DuplicateTagKeysException, InvalidConfigurationRequestException, InvalidEndPointException, InvalidSchemeException, InvalidSecurityGroupException, InvalidSubnetException, ListenerNotFoundException, LoadBalancerAttributeNotFoundException, OperationNotPermittedException, PolicyNotFoundException, PolicyTypeNotFoundException, SubnetNotFoundException, TooManyAccessPointsException, TooManyPoliciesException, TooManyTagsException, UnsupportedProtocolException, } from "../models/errors";
217
- export var AccessLog$ = [3, n0, _AL,
218
- 0,
219
- [_E, _SBN, _EI, _SBP],
220
- [2, 0, 1, 0], 1
221
- ];
217
+ const _s_registry = TypeRegistry.for(_s);
218
+ export var ElasticLoadBalancingServiceException$ = [-3, _s, "ElasticLoadBalancingServiceException", 0, [], []];
219
+ _s_registry.registerError(ElasticLoadBalancingServiceException$, ElasticLoadBalancingServiceException);
220
+ const n0_registry = TypeRegistry.for(n0);
222
221
  export var AccessPointNotFoundException$ = [-3, n0, _APNFE,
223
222
  { [_aQE]: [`LoadBalancerNotFound`, 400], [_e]: _c, [_hE]: 400 },
224
223
  [_M],
225
224
  [0]
226
225
  ];
227
- TypeRegistry.for(n0).registerError(AccessPointNotFoundException$, AccessPointNotFoundException);
226
+ n0_registry.registerError(AccessPointNotFoundException$, AccessPointNotFoundException);
227
+ export var CertificateNotFoundException$ = [-3, n0, _CNFE,
228
+ { [_aQE]: [`CertificateNotFound`, 400], [_e]: _c, [_hE]: 400 },
229
+ [_M],
230
+ [0]
231
+ ];
232
+ n0_registry.registerError(CertificateNotFoundException$, CertificateNotFoundException);
233
+ export var DependencyThrottleException$ = [-3, n0, _DTE,
234
+ { [_aQE]: [`DependencyThrottle`, 400], [_e]: _c, [_hE]: 400 },
235
+ [_M],
236
+ [0]
237
+ ];
238
+ n0_registry.registerError(DependencyThrottleException$, DependencyThrottleException);
239
+ export var DuplicateAccessPointNameException$ = [-3, n0, _DAPNE,
240
+ { [_aQE]: [`DuplicateLoadBalancerName`, 400], [_e]: _c, [_hE]: 400 },
241
+ [_M],
242
+ [0]
243
+ ];
244
+ n0_registry.registerError(DuplicateAccessPointNameException$, DuplicateAccessPointNameException);
245
+ export var DuplicateListenerException$ = [-3, n0, _DLE,
246
+ { [_aQE]: [`DuplicateListener`, 400], [_e]: _c, [_hE]: 400 },
247
+ [_M],
248
+ [0]
249
+ ];
250
+ n0_registry.registerError(DuplicateListenerException$, DuplicateListenerException);
251
+ export var DuplicatePolicyNameException$ = [-3, n0, _DPNE,
252
+ { [_aQE]: [`DuplicatePolicyName`, 400], [_e]: _c, [_hE]: 400 },
253
+ [_M],
254
+ [0]
255
+ ];
256
+ n0_registry.registerError(DuplicatePolicyNameException$, DuplicatePolicyNameException);
257
+ export var DuplicateTagKeysException$ = [-3, n0, _DTKE,
258
+ { [_aQE]: [`DuplicateTagKeys`, 400], [_e]: _c, [_hE]: 400 },
259
+ [_M],
260
+ [0]
261
+ ];
262
+ n0_registry.registerError(DuplicateTagKeysException$, DuplicateTagKeysException);
263
+ export var InvalidConfigurationRequestException$ = [-3, n0, _ICRE,
264
+ { [_aQE]: [`InvalidConfigurationRequest`, 409], [_e]: _c, [_hE]: 409 },
265
+ [_M],
266
+ [0]
267
+ ];
268
+ n0_registry.registerError(InvalidConfigurationRequestException$, InvalidConfigurationRequestException);
269
+ export var InvalidEndPointException$ = [-3, n0, _IEPE,
270
+ { [_aQE]: [`InvalidInstance`, 400], [_e]: _c, [_hE]: 400 },
271
+ [_M],
272
+ [0]
273
+ ];
274
+ n0_registry.registerError(InvalidEndPointException$, InvalidEndPointException);
275
+ export var InvalidSchemeException$ = [-3, n0, _ISE,
276
+ { [_aQE]: [`InvalidScheme`, 400], [_e]: _c, [_hE]: 400 },
277
+ [_M],
278
+ [0]
279
+ ];
280
+ n0_registry.registerError(InvalidSchemeException$, InvalidSchemeException);
281
+ export var InvalidSecurityGroupException$ = [-3, n0, _ISGE,
282
+ { [_aQE]: [`InvalidSecurityGroup`, 400], [_e]: _c, [_hE]: 400 },
283
+ [_M],
284
+ [0]
285
+ ];
286
+ n0_registry.registerError(InvalidSecurityGroupException$, InvalidSecurityGroupException);
287
+ export var InvalidSubnetException$ = [-3, n0, _ISEn,
288
+ { [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
289
+ [_M],
290
+ [0]
291
+ ];
292
+ n0_registry.registerError(InvalidSubnetException$, InvalidSubnetException);
293
+ export var ListenerNotFoundException$ = [-3, n0, _LNFE,
294
+ { [_aQE]: [`ListenerNotFound`, 400], [_e]: _c, [_hE]: 400 },
295
+ [_M],
296
+ [0]
297
+ ];
298
+ n0_registry.registerError(ListenerNotFoundException$, ListenerNotFoundException);
299
+ export var LoadBalancerAttributeNotFoundException$ = [-3, n0, _LBANFE,
300
+ { [_aQE]: [`LoadBalancerAttributeNotFound`, 400], [_e]: _c, [_hE]: 400 },
301
+ [_M],
302
+ [0]
303
+ ];
304
+ n0_registry.registerError(LoadBalancerAttributeNotFoundException$, LoadBalancerAttributeNotFoundException);
305
+ export var OperationNotPermittedException$ = [-3, n0, _ONPE,
306
+ { [_aQE]: [`OperationNotPermitted`, 400], [_e]: _c, [_hE]: 400 },
307
+ [_M],
308
+ [0]
309
+ ];
310
+ n0_registry.registerError(OperationNotPermittedException$, OperationNotPermittedException);
311
+ export var PolicyNotFoundException$ = [-3, n0, _PNFE,
312
+ { [_aQE]: [`PolicyNotFound`, 400], [_e]: _c, [_hE]: 400 },
313
+ [_M],
314
+ [0]
315
+ ];
316
+ n0_registry.registerError(PolicyNotFoundException$, PolicyNotFoundException);
317
+ export var PolicyTypeNotFoundException$ = [-3, n0, _PTNFE,
318
+ { [_aQE]: [`PolicyTypeNotFound`, 400], [_e]: _c, [_hE]: 400 },
319
+ [_M],
320
+ [0]
321
+ ];
322
+ n0_registry.registerError(PolicyTypeNotFoundException$, PolicyTypeNotFoundException);
323
+ export var SubnetNotFoundException$ = [-3, n0, _SNFE,
324
+ { [_aQE]: [`SubnetNotFound`, 400], [_e]: _c, [_hE]: 400 },
325
+ [_M],
326
+ [0]
327
+ ];
328
+ n0_registry.registerError(SubnetNotFoundException$, SubnetNotFoundException);
329
+ export var TooManyAccessPointsException$ = [-3, n0, _TMAPE,
330
+ { [_aQE]: [`TooManyLoadBalancers`, 400], [_e]: _c, [_hE]: 400 },
331
+ [_M],
332
+ [0]
333
+ ];
334
+ n0_registry.registerError(TooManyAccessPointsException$, TooManyAccessPointsException);
335
+ export var TooManyPoliciesException$ = [-3, n0, _TMPE,
336
+ { [_aQE]: [`TooManyPolicies`, 400], [_e]: _c, [_hE]: 400 },
337
+ [_M],
338
+ [0]
339
+ ];
340
+ n0_registry.registerError(TooManyPoliciesException$, TooManyPoliciesException);
341
+ export var TooManyTagsException$ = [-3, n0, _TMTE,
342
+ { [_aQE]: [`TooManyTags`, 400], [_e]: _c, [_hE]: 400 },
343
+ [_M],
344
+ [0]
345
+ ];
346
+ n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
347
+ export var UnsupportedProtocolException$ = [-3, n0, _UPE,
348
+ { [_aQE]: [`UnsupportedProtocol`, 400], [_e]: _c, [_hE]: 400 },
349
+ [_M],
350
+ [0]
351
+ ];
352
+ n0_registry.registerError(UnsupportedProtocolException$, UnsupportedProtocolException);
353
+ export const errorTypeRegistries = [
354
+ _s_registry,
355
+ n0_registry,
356
+ ];
357
+ export var AccessLog$ = [3, n0, _AL,
358
+ 0,
359
+ [_E, _SBN, _EI, _SBP],
360
+ [2, 0, 1, 0], 1
361
+ ];
228
362
  export var AddAvailabilityZonesInput$ = [3, n0, _AAZI,
229
363
  0,
230
364
  [_LBN, _AZ],
@@ -280,12 +414,6 @@ export var BackendServerDescription$ = [3, n0, _BSD,
280
414
  [_IP, _PNo],
281
415
  [1, 64 | 0]
282
416
  ];
283
- export var CertificateNotFoundException$ = [-3, n0, _CNFE,
284
- { [_aQE]: [`CertificateNotFound`, 400], [_e]: _c, [_hE]: 400 },
285
- [_M],
286
- [0]
287
- ];
288
- TypeRegistry.for(n0).registerError(CertificateNotFoundException$, CertificateNotFoundException);
289
417
  export var ConfigureHealthCheckInput$ = [3, n0, _CHCI,
290
418
  0,
291
419
  [_LBN, _HC],
@@ -391,12 +519,6 @@ export var DeleteLoadBalancerPolicyOutput$ = [3, n0, _DLBPO,
391
519
  [],
392
520
  []
393
521
  ];
394
- export var DependencyThrottleException$ = [-3, n0, _DTE,
395
- { [_aQE]: [`DependencyThrottle`, 400], [_e]: _c, [_hE]: 400 },
396
- [_M],
397
- [0]
398
- ];
399
- TypeRegistry.for(n0).registerError(DependencyThrottleException$, DependencyThrottleException);
400
522
  export var DeregisterEndPointsInput$ = [3, n0, _DEPI,
401
523
  0,
402
524
  [_LBN, _I],
@@ -487,30 +609,6 @@ export var DetachLoadBalancerFromSubnetsOutput$ = [3, n0, _DLBFSO,
487
609
  [_S],
488
610
  [64 | 0]
489
611
  ];
490
- export var DuplicateAccessPointNameException$ = [-3, n0, _DAPNE,
491
- { [_aQE]: [`DuplicateLoadBalancerName`, 400], [_e]: _c, [_hE]: 400 },
492
- [_M],
493
- [0]
494
- ];
495
- TypeRegistry.for(n0).registerError(DuplicateAccessPointNameException$, DuplicateAccessPointNameException);
496
- export var DuplicateListenerException$ = [-3, n0, _DLE,
497
- { [_aQE]: [`DuplicateListener`, 400], [_e]: _c, [_hE]: 400 },
498
- [_M],
499
- [0]
500
- ];
501
- TypeRegistry.for(n0).registerError(DuplicateListenerException$, DuplicateListenerException);
502
- export var DuplicatePolicyNameException$ = [-3, n0, _DPNE,
503
- { [_aQE]: [`DuplicatePolicyName`, 400], [_e]: _c, [_hE]: 400 },
504
- [_M],
505
- [0]
506
- ];
507
- TypeRegistry.for(n0).registerError(DuplicatePolicyNameException$, DuplicatePolicyNameException);
508
- export var DuplicateTagKeysException$ = [-3, n0, _DTKE,
509
- { [_aQE]: [`DuplicateTagKeys`, 400], [_e]: _c, [_hE]: 400 },
510
- [_M],
511
- [0]
512
- ];
513
- TypeRegistry.for(n0).registerError(DuplicateTagKeysException$, DuplicateTagKeysException);
514
612
  export var HealthCheck$ = [3, n0, _HC,
515
613
  0,
516
614
  [_Ta, _In, _Ti, _UT, _HT],
@@ -526,36 +624,6 @@ export var InstanceState$ = [3, n0, _ISn,
526
624
  [_II, _St, _RC, _D],
527
625
  [0, 0, 0, 0]
528
626
  ];
529
- export var InvalidConfigurationRequestException$ = [-3, n0, _ICRE,
530
- { [_aQE]: [`InvalidConfigurationRequest`, 409], [_e]: _c, [_hE]: 409 },
531
- [_M],
532
- [0]
533
- ];
534
- TypeRegistry.for(n0).registerError(InvalidConfigurationRequestException$, InvalidConfigurationRequestException);
535
- export var InvalidEndPointException$ = [-3, n0, _IEPE,
536
- { [_aQE]: [`InvalidInstance`, 400], [_e]: _c, [_hE]: 400 },
537
- [_M],
538
- [0]
539
- ];
540
- TypeRegistry.for(n0).registerError(InvalidEndPointException$, InvalidEndPointException);
541
- export var InvalidSchemeException$ = [-3, n0, _ISE,
542
- { [_aQE]: [`InvalidScheme`, 400], [_e]: _c, [_hE]: 400 },
543
- [_M],
544
- [0]
545
- ];
546
- TypeRegistry.for(n0).registerError(InvalidSchemeException$, InvalidSchemeException);
547
- export var InvalidSecurityGroupException$ = [-3, n0, _ISGE,
548
- { [_aQE]: [`InvalidSecurityGroup`, 400], [_e]: _c, [_hE]: 400 },
549
- [_M],
550
- [0]
551
- ];
552
- TypeRegistry.for(n0).registerError(InvalidSecurityGroupException$, InvalidSecurityGroupException);
553
- export var InvalidSubnetException$ = [-3, n0, _ISEn,
554
- { [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
555
- [_M],
556
- [0]
557
- ];
558
- TypeRegistry.for(n0).registerError(InvalidSubnetException$, InvalidSubnetException);
559
627
  export var LBCookieStickinessPolicy$ = [3, n0, _LBCSP,
560
628
  0,
561
629
  [_PN, _CEP],
@@ -576,18 +644,6 @@ export var ListenerDescription$ = [3, n0, _LD,
576
644
  [_Lis, _PNo],
577
645
  [() => Listener$, 64 | 0]
578
646
  ];
579
- export var ListenerNotFoundException$ = [-3, n0, _LNFE,
580
- { [_aQE]: [`ListenerNotFound`, 400], [_e]: _c, [_hE]: 400 },
581
- [_M],
582
- [0]
583
- ];
584
- TypeRegistry.for(n0).registerError(ListenerNotFoundException$, ListenerNotFoundException);
585
- export var LoadBalancerAttributeNotFoundException$ = [-3, n0, _LBANFE,
586
- { [_aQE]: [`LoadBalancerAttributeNotFound`, 400], [_e]: _c, [_hE]: 400 },
587
- [_M],
588
- [0]
589
- ];
590
- TypeRegistry.for(n0).registerError(LoadBalancerAttributeNotFoundException$, LoadBalancerAttributeNotFoundException);
591
647
  export var LoadBalancerAttributes$ = [3, n0, _LBA,
592
648
  0,
593
649
  [_CZLB, _AL, _CD, _CS, _AAd],
@@ -608,12 +664,6 @@ export var ModifyLoadBalancerAttributesOutput$ = [3, n0, _MLBAO,
608
664
  [_LBN, _LBA],
609
665
  [0, () => LoadBalancerAttributes$]
610
666
  ];
611
- export var OperationNotPermittedException$ = [-3, n0, _ONPE,
612
- { [_aQE]: [`OperationNotPermitted`, 400], [_e]: _c, [_hE]: 400 },
613
- [_M],
614
- [0]
615
- ];
616
- TypeRegistry.for(n0).registerError(OperationNotPermittedException$, OperationNotPermittedException);
617
667
  export var Policies$ = [3, n0, _Po,
618
668
  0,
619
669
  [_ACSPp, _LBCSPo, _OP],
@@ -639,23 +689,11 @@ export var PolicyDescription$ = [3, n0, _PDo,
639
689
  [_PN, _PTN, _PADo],
640
690
  [0, 0, () => PolicyAttributeDescriptions]
641
691
  ];
642
- export var PolicyNotFoundException$ = [-3, n0, _PNFE,
643
- { [_aQE]: [`PolicyNotFound`, 400], [_e]: _c, [_hE]: 400 },
644
- [_M],
645
- [0]
646
- ];
647
- TypeRegistry.for(n0).registerError(PolicyNotFoundException$, PolicyNotFoundException);
648
692
  export var PolicyTypeDescription$ = [3, n0, _PTDo,
649
693
  0,
650
694
  [_PTN, _D, _PATDo],
651
695
  [0, 0, () => PolicyAttributeTypeDescriptions]
652
696
  ];
653
- export var PolicyTypeNotFoundException$ = [-3, n0, _PTNFE,
654
- { [_aQE]: [`PolicyTypeNotFound`, 400], [_e]: _c, [_hE]: 400 },
655
- [_M],
656
- [0]
657
- ];
658
- TypeRegistry.for(n0).registerError(PolicyTypeNotFoundException$, PolicyTypeNotFoundException);
659
697
  export var RegisterEndPointsInput$ = [3, n0, _REPI,
660
698
  0,
661
699
  [_LBN, _I],
@@ -721,12 +759,6 @@ export var SourceSecurityGroup$ = [3, n0, _SSG,
721
759
  [_OA, _GN],
722
760
  [0, 0]
723
761
  ];
724
- export var SubnetNotFoundException$ = [-3, n0, _SNFE,
725
- { [_aQE]: [`SubnetNotFound`, 400], [_e]: _c, [_hE]: 400 },
726
- [_M],
727
- [0]
728
- ];
729
- TypeRegistry.for(n0).registerError(SubnetNotFoundException$, SubnetNotFoundException);
730
762
  export var Tag$ = [3, n0, _Tag,
731
763
  0,
732
764
  [_K, _V],
@@ -742,32 +774,6 @@ export var TagKeyOnly$ = [3, n0, _TKO,
742
774
  [_K],
743
775
  [0]
744
776
  ];
745
- export var TooManyAccessPointsException$ = [-3, n0, _TMAPE,
746
- { [_aQE]: [`TooManyLoadBalancers`, 400], [_e]: _c, [_hE]: 400 },
747
- [_M],
748
- [0]
749
- ];
750
- TypeRegistry.for(n0).registerError(TooManyAccessPointsException$, TooManyAccessPointsException);
751
- export var TooManyPoliciesException$ = [-3, n0, _TMPE,
752
- { [_aQE]: [`TooManyPolicies`, 400], [_e]: _c, [_hE]: 400 },
753
- [_M],
754
- [0]
755
- ];
756
- TypeRegistry.for(n0).registerError(TooManyPoliciesException$, TooManyPoliciesException);
757
- export var TooManyTagsException$ = [-3, n0, _TMTE,
758
- { [_aQE]: [`TooManyTags`, 400], [_e]: _c, [_hE]: 400 },
759
- [_M],
760
- [0]
761
- ];
762
- TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
763
- export var UnsupportedProtocolException$ = [-3, n0, _UPE,
764
- { [_aQE]: [`UnsupportedProtocol`, 400], [_e]: _c, [_hE]: 400 },
765
- [_M],
766
- [0]
767
- ];
768
- TypeRegistry.for(n0).registerError(UnsupportedProtocolException$, UnsupportedProtocolException);
769
- export var ElasticLoadBalancingServiceException$ = [-3, _s, "ElasticLoadBalancingServiceException", 0, [], []];
770
- TypeRegistry.for(_s).registerError(ElasticLoadBalancingServiceException$, ElasticLoadBalancingServiceException);
771
777
  var AdditionalAttributes = [1, n0, _AAd,
772
778
  0, () => AdditionalAttribute$
773
779
  ];
@@ -1,6 +1,35 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
1
2
  import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
- export declare var AccessLog$: StaticStructureSchema;
3
+ export declare var ElasticLoadBalancingServiceException$: StaticErrorSchema;
3
4
  export declare var AccessPointNotFoundException$: StaticErrorSchema;
5
+ export declare var CertificateNotFoundException$: StaticErrorSchema;
6
+ export declare var DependencyThrottleException$: StaticErrorSchema;
7
+ export declare var DuplicateAccessPointNameException$: StaticErrorSchema;
8
+ export declare var DuplicateListenerException$: StaticErrorSchema;
9
+ export declare var DuplicatePolicyNameException$: StaticErrorSchema;
10
+ export declare var DuplicateTagKeysException$: StaticErrorSchema;
11
+ export declare var InvalidConfigurationRequestException$: StaticErrorSchema;
12
+ export declare var InvalidEndPointException$: StaticErrorSchema;
13
+ export declare var InvalidSchemeException$: StaticErrorSchema;
14
+ export declare var InvalidSecurityGroupException$: StaticErrorSchema;
15
+ export declare var InvalidSubnetException$: StaticErrorSchema;
16
+ export declare var ListenerNotFoundException$: StaticErrorSchema;
17
+ export declare var LoadBalancerAttributeNotFoundException$: StaticErrorSchema;
18
+ export declare var OperationNotPermittedException$: StaticErrorSchema;
19
+ export declare var PolicyNotFoundException$: StaticErrorSchema;
20
+ export declare var PolicyTypeNotFoundException$: StaticErrorSchema;
21
+ export declare var SubnetNotFoundException$: StaticErrorSchema;
22
+ export declare var TooManyAccessPointsException$: StaticErrorSchema;
23
+ export declare var TooManyPoliciesException$: StaticErrorSchema;
24
+ export declare var TooManyTagsException$: StaticErrorSchema;
25
+ export declare var UnsupportedProtocolException$: StaticErrorSchema;
26
+ /**
27
+ * TypeRegistry instances containing modeled errors.
28
+ * @internal
29
+ *
30
+ */
31
+ export declare const errorTypeRegistries: TypeRegistry[];
32
+ export declare var AccessLog$: StaticStructureSchema;
4
33
  export declare var AddAvailabilityZonesInput$: StaticStructureSchema;
5
34
  export declare var AddAvailabilityZonesOutput$: StaticStructureSchema;
6
35
  export declare var AdditionalAttribute$: StaticStructureSchema;
@@ -12,7 +41,6 @@ export declare var ApplySecurityGroupsToLoadBalancerOutput$: StaticStructureSche
12
41
  export declare var AttachLoadBalancerToSubnetsInput$: StaticStructureSchema;
13
42
  export declare var AttachLoadBalancerToSubnetsOutput$: StaticStructureSchema;
14
43
  export declare var BackendServerDescription$: StaticStructureSchema;
15
- export declare var CertificateNotFoundException$: StaticErrorSchema;
16
44
  export declare var ConfigureHealthCheckInput$: StaticStructureSchema;
17
45
  export declare var ConfigureHealthCheckOutput$: StaticStructureSchema;
18
46
  export declare var ConnectionDraining$: StaticStructureSchema;
@@ -34,7 +62,6 @@ export declare var DeleteLoadBalancerListenerInput$: StaticStructureSchema;
34
62
  export declare var DeleteLoadBalancerListenerOutput$: StaticStructureSchema;
35
63
  export declare var DeleteLoadBalancerPolicyInput$: StaticStructureSchema;
36
64
  export declare var DeleteLoadBalancerPolicyOutput$: StaticStructureSchema;
37
- export declare var DependencyThrottleException$: StaticErrorSchema;
38
65
  export declare var DeregisterEndPointsInput$: StaticStructureSchema;
39
66
  export declare var DeregisterEndPointsOutput$: StaticStructureSchema;
40
67
  export declare var DescribeAccessPointsInput$: StaticStructureSchema;
@@ -53,37 +80,23 @@ export declare var DescribeTagsInput$: StaticStructureSchema;
53
80
  export declare var DescribeTagsOutput$: StaticStructureSchema;
54
81
  export declare var DetachLoadBalancerFromSubnetsInput$: StaticStructureSchema;
55
82
  export declare var DetachLoadBalancerFromSubnetsOutput$: StaticStructureSchema;
56
- export declare var DuplicateAccessPointNameException$: StaticErrorSchema;
57
- export declare var DuplicateListenerException$: StaticErrorSchema;
58
- export declare var DuplicatePolicyNameException$: StaticErrorSchema;
59
- export declare var DuplicateTagKeysException$: StaticErrorSchema;
60
83
  export declare var HealthCheck$: StaticStructureSchema;
61
84
  export declare var Instance$: StaticStructureSchema;
62
85
  export declare var InstanceState$: StaticStructureSchema;
63
- export declare var InvalidConfigurationRequestException$: StaticErrorSchema;
64
- export declare var InvalidEndPointException$: StaticErrorSchema;
65
- export declare var InvalidSchemeException$: StaticErrorSchema;
66
- export declare var InvalidSecurityGroupException$: StaticErrorSchema;
67
- export declare var InvalidSubnetException$: StaticErrorSchema;
68
86
  export declare var LBCookieStickinessPolicy$: StaticStructureSchema;
69
87
  export declare var Limit$: StaticStructureSchema;
70
88
  export declare var Listener$: StaticStructureSchema;
71
89
  export declare var ListenerDescription$: StaticStructureSchema;
72
- export declare var ListenerNotFoundException$: StaticErrorSchema;
73
- export declare var LoadBalancerAttributeNotFoundException$: StaticErrorSchema;
74
90
  export declare var LoadBalancerAttributes$: StaticStructureSchema;
75
91
  export declare var LoadBalancerDescription$: StaticStructureSchema;
76
92
  export declare var ModifyLoadBalancerAttributesInput$: StaticStructureSchema;
77
93
  export declare var ModifyLoadBalancerAttributesOutput$: StaticStructureSchema;
78
- export declare var OperationNotPermittedException$: StaticErrorSchema;
79
94
  export declare var Policies$: StaticStructureSchema;
80
95
  export declare var PolicyAttribute$: StaticStructureSchema;
81
96
  export declare var PolicyAttributeDescription$: StaticStructureSchema;
82
97
  export declare var PolicyAttributeTypeDescription$: StaticStructureSchema;
83
98
  export declare var PolicyDescription$: StaticStructureSchema;
84
- export declare var PolicyNotFoundException$: StaticErrorSchema;
85
99
  export declare var PolicyTypeDescription$: StaticStructureSchema;
86
- export declare var PolicyTypeNotFoundException$: StaticErrorSchema;
87
100
  export declare var RegisterEndPointsInput$: StaticStructureSchema;
88
101
  export declare var RegisterEndPointsOutput$: StaticStructureSchema;
89
102
  export declare var RemoveAvailabilityZonesInput$: StaticStructureSchema;
@@ -97,15 +110,9 @@ export declare var SetLoadBalancerPoliciesForBackendServerOutput$: StaticStructu
97
110
  export declare var SetLoadBalancerPoliciesOfListenerInput$: StaticStructureSchema;
98
111
  export declare var SetLoadBalancerPoliciesOfListenerOutput$: StaticStructureSchema;
99
112
  export declare var SourceSecurityGroup$: StaticStructureSchema;
100
- export declare var SubnetNotFoundException$: StaticErrorSchema;
101
113
  export declare var Tag$: StaticStructureSchema;
102
114
  export declare var TagDescription$: StaticStructureSchema;
103
115
  export declare var TagKeyOnly$: StaticStructureSchema;
104
- export declare var TooManyAccessPointsException$: StaticErrorSchema;
105
- export declare var TooManyPoliciesException$: StaticErrorSchema;
106
- export declare var TooManyTagsException$: StaticErrorSchema;
107
- export declare var UnsupportedProtocolException$: StaticErrorSchema;
108
- export declare var ElasticLoadBalancingServiceException$: StaticErrorSchema;
109
116
  export declare var AddTags$: StaticOperationSchema;
110
117
  export declare var ApplySecurityGroupsToLoadBalancer$: StaticOperationSchema;
111
118
  export declare var AttachLoadBalancerToSubnets$: StaticOperationSchema;
@@ -1,10 +1,34 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
1
2
  import {
2
3
  StaticErrorSchema,
3
4
  StaticOperationSchema,
4
5
  StaticStructureSchema,
5
6
  } from "@smithy/types";
6
- export declare var AccessLog$: StaticStructureSchema;
7
+ export declare var ElasticLoadBalancingServiceException$: StaticErrorSchema;
7
8
  export declare var AccessPointNotFoundException$: StaticErrorSchema;
9
+ export declare var CertificateNotFoundException$: StaticErrorSchema;
10
+ export declare var DependencyThrottleException$: StaticErrorSchema;
11
+ export declare var DuplicateAccessPointNameException$: StaticErrorSchema;
12
+ export declare var DuplicateListenerException$: StaticErrorSchema;
13
+ export declare var DuplicatePolicyNameException$: StaticErrorSchema;
14
+ export declare var DuplicateTagKeysException$: StaticErrorSchema;
15
+ export declare var InvalidConfigurationRequestException$: StaticErrorSchema;
16
+ export declare var InvalidEndPointException$: StaticErrorSchema;
17
+ export declare var InvalidSchemeException$: StaticErrorSchema;
18
+ export declare var InvalidSecurityGroupException$: StaticErrorSchema;
19
+ export declare var InvalidSubnetException$: StaticErrorSchema;
20
+ export declare var ListenerNotFoundException$: StaticErrorSchema;
21
+ export declare var LoadBalancerAttributeNotFoundException$: StaticErrorSchema;
22
+ export declare var OperationNotPermittedException$: StaticErrorSchema;
23
+ export declare var PolicyNotFoundException$: StaticErrorSchema;
24
+ export declare var PolicyTypeNotFoundException$: StaticErrorSchema;
25
+ export declare var SubnetNotFoundException$: StaticErrorSchema;
26
+ export declare var TooManyAccessPointsException$: StaticErrorSchema;
27
+ export declare var TooManyPoliciesException$: StaticErrorSchema;
28
+ export declare var TooManyTagsException$: StaticErrorSchema;
29
+ export declare var UnsupportedProtocolException$: StaticErrorSchema;
30
+ export declare const errorTypeRegistries: TypeRegistry[];
31
+ export declare var AccessLog$: StaticStructureSchema;
8
32
  export declare var AddAvailabilityZonesInput$: StaticStructureSchema;
9
33
  export declare var AddAvailabilityZonesOutput$: StaticStructureSchema;
10
34
  export declare var AdditionalAttribute$: StaticStructureSchema;
@@ -16,7 +40,6 @@ export declare var ApplySecurityGroupsToLoadBalancerOutput$: StaticStructureSche
16
40
  export declare var AttachLoadBalancerToSubnetsInput$: StaticStructureSchema;
17
41
  export declare var AttachLoadBalancerToSubnetsOutput$: StaticStructureSchema;
18
42
  export declare var BackendServerDescription$: StaticStructureSchema;
19
- export declare var CertificateNotFoundException$: StaticErrorSchema;
20
43
  export declare var ConfigureHealthCheckInput$: StaticStructureSchema;
21
44
  export declare var ConfigureHealthCheckOutput$: StaticStructureSchema;
22
45
  export declare var ConnectionDraining$: StaticStructureSchema;
@@ -38,7 +61,6 @@ export declare var DeleteLoadBalancerListenerInput$: StaticStructureSchema;
38
61
  export declare var DeleteLoadBalancerListenerOutput$: StaticStructureSchema;
39
62
  export declare var DeleteLoadBalancerPolicyInput$: StaticStructureSchema;
40
63
  export declare var DeleteLoadBalancerPolicyOutput$: StaticStructureSchema;
41
- export declare var DependencyThrottleException$: StaticErrorSchema;
42
64
  export declare var DeregisterEndPointsInput$: StaticStructureSchema;
43
65
  export declare var DeregisterEndPointsOutput$: StaticStructureSchema;
44
66
  export declare var DescribeAccessPointsInput$: StaticStructureSchema;
@@ -57,37 +79,23 @@ export declare var DescribeTagsInput$: StaticStructureSchema;
57
79
  export declare var DescribeTagsOutput$: StaticStructureSchema;
58
80
  export declare var DetachLoadBalancerFromSubnetsInput$: StaticStructureSchema;
59
81
  export declare var DetachLoadBalancerFromSubnetsOutput$: StaticStructureSchema;
60
- export declare var DuplicateAccessPointNameException$: StaticErrorSchema;
61
- export declare var DuplicateListenerException$: StaticErrorSchema;
62
- export declare var DuplicatePolicyNameException$: StaticErrorSchema;
63
- export declare var DuplicateTagKeysException$: StaticErrorSchema;
64
82
  export declare var HealthCheck$: StaticStructureSchema;
65
83
  export declare var Instance$: StaticStructureSchema;
66
84
  export declare var InstanceState$: StaticStructureSchema;
67
- export declare var InvalidConfigurationRequestException$: StaticErrorSchema;
68
- export declare var InvalidEndPointException$: StaticErrorSchema;
69
- export declare var InvalidSchemeException$: StaticErrorSchema;
70
- export declare var InvalidSecurityGroupException$: StaticErrorSchema;
71
- export declare var InvalidSubnetException$: StaticErrorSchema;
72
85
  export declare var LBCookieStickinessPolicy$: StaticStructureSchema;
73
86
  export declare var Limit$: StaticStructureSchema;
74
87
  export declare var Listener$: StaticStructureSchema;
75
88
  export declare var ListenerDescription$: StaticStructureSchema;
76
- export declare var ListenerNotFoundException$: StaticErrorSchema;
77
- export declare var LoadBalancerAttributeNotFoundException$: StaticErrorSchema;
78
89
  export declare var LoadBalancerAttributes$: StaticStructureSchema;
79
90
  export declare var LoadBalancerDescription$: StaticStructureSchema;
80
91
  export declare var ModifyLoadBalancerAttributesInput$: StaticStructureSchema;
81
92
  export declare var ModifyLoadBalancerAttributesOutput$: StaticStructureSchema;
82
- export declare var OperationNotPermittedException$: StaticErrorSchema;
83
93
  export declare var Policies$: StaticStructureSchema;
84
94
  export declare var PolicyAttribute$: StaticStructureSchema;
85
95
  export declare var PolicyAttributeDescription$: StaticStructureSchema;
86
96
  export declare var PolicyAttributeTypeDescription$: StaticStructureSchema;
87
97
  export declare var PolicyDescription$: StaticStructureSchema;
88
- export declare var PolicyNotFoundException$: StaticErrorSchema;
89
98
  export declare var PolicyTypeDescription$: StaticStructureSchema;
90
- export declare var PolicyTypeNotFoundException$: StaticErrorSchema;
91
99
  export declare var RegisterEndPointsInput$: StaticStructureSchema;
92
100
  export declare var RegisterEndPointsOutput$: StaticStructureSchema;
93
101
  export declare var RemoveAvailabilityZonesInput$: StaticStructureSchema;
@@ -101,15 +109,9 @@ export declare var SetLoadBalancerPoliciesForBackendServerOutput$: StaticStructu
101
109
  export declare var SetLoadBalancerPoliciesOfListenerInput$: StaticStructureSchema;
102
110
  export declare var SetLoadBalancerPoliciesOfListenerOutput$: StaticStructureSchema;
103
111
  export declare var SourceSecurityGroup$: StaticStructureSchema;
104
- export declare var SubnetNotFoundException$: StaticErrorSchema;
105
112
  export declare var Tag$: StaticStructureSchema;
106
113
  export declare var TagDescription$: StaticStructureSchema;
107
114
  export declare var TagKeyOnly$: StaticStructureSchema;
108
- export declare var TooManyAccessPointsException$: StaticErrorSchema;
109
- export declare var TooManyPoliciesException$: StaticErrorSchema;
110
- export declare var TooManyTagsException$: StaticErrorSchema;
111
- export declare var UnsupportedProtocolException$: StaticErrorSchema;
112
- export declare var ElasticLoadBalancingServiceException$: StaticErrorSchema;
113
115
  export declare var AddTags$: StaticOperationSchema;
114
116
  export declare var ApplySecurityGroupsToLoadBalancer$: StaticOperationSchema;
115
117
  export declare var AttachLoadBalancerToSubnets$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
4
- "version": "3.987.0",
4
+ "version": "3.989.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing",
@@ -23,38 +23,38 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.7",
27
- "@aws-sdk/credential-provider-node": "^3.972.6",
26
+ "@aws-sdk/core": "^3.973.9",
27
+ "@aws-sdk/credential-provider-node": "^3.972.8",
28
28
  "@aws-sdk/middleware-host-header": "^3.972.3",
29
29
  "@aws-sdk/middleware-logger": "^3.972.3",
30
30
  "@aws-sdk/middleware-recursion-detection": "^3.972.3",
31
- "@aws-sdk/middleware-user-agent": "^3.972.7",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.9",
32
32
  "@aws-sdk/region-config-resolver": "^3.972.3",
33
33
  "@aws-sdk/types": "^3.973.1",
34
- "@aws-sdk/util-endpoints": "3.987.0",
34
+ "@aws-sdk/util-endpoints": "3.989.0",
35
35
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
36
- "@aws-sdk/util-user-agent-node": "^3.972.5",
36
+ "@aws-sdk/util-user-agent-node": "^3.972.7",
37
37
  "@smithy/config-resolver": "^4.4.6",
38
- "@smithy/core": "^3.22.1",
38
+ "@smithy/core": "^3.23.0",
39
39
  "@smithy/fetch-http-handler": "^5.3.9",
40
40
  "@smithy/hash-node": "^4.2.8",
41
41
  "@smithy/invalid-dependency": "^4.2.8",
42
42
  "@smithy/middleware-content-length": "^4.2.8",
43
- "@smithy/middleware-endpoint": "^4.4.13",
44
- "@smithy/middleware-retry": "^4.4.30",
43
+ "@smithy/middleware-endpoint": "^4.4.14",
44
+ "@smithy/middleware-retry": "^4.4.31",
45
45
  "@smithy/middleware-serde": "^4.2.9",
46
46
  "@smithy/middleware-stack": "^4.2.8",
47
47
  "@smithy/node-config-provider": "^4.3.8",
48
- "@smithy/node-http-handler": "^4.4.9",
48
+ "@smithy/node-http-handler": "^4.4.10",
49
49
  "@smithy/protocol-http": "^5.3.8",
50
- "@smithy/smithy-client": "^4.11.2",
50
+ "@smithy/smithy-client": "^4.11.3",
51
51
  "@smithy/types": "^4.12.0",
52
52
  "@smithy/url-parser": "^4.2.8",
53
53
  "@smithy/util-base64": "^4.3.0",
54
54
  "@smithy/util-body-length-browser": "^4.2.0",
55
55
  "@smithy/util-body-length-node": "^4.2.1",
56
- "@smithy/util-defaults-mode-browser": "^4.3.29",
57
- "@smithy/util-defaults-mode-node": "^4.2.32",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.30",
57
+ "@smithy/util-defaults-mode-node": "^4.2.33",
58
58
  "@smithy/util-endpoints": "^3.2.8",
59
59
  "@smithy/util-middleware": "^4.2.8",
60
60
  "@smithy/util-retry": "^4.2.8",