@aws-sdk/client-rtbfabric 3.1024.0 → 3.1026.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 (39) hide show
  1. package/dist-cjs/index.js +182 -11
  2. package/dist-cjs/schemas/schemas_0.js +49 -36
  3. package/dist-es/RTBFabric.js +6 -0
  4. package/dist-es/models/enums.js +10 -0
  5. package/dist-es/schemas/schemas_0.js +47 -34
  6. package/dist-es/waiters/index.js +3 -0
  7. package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +49 -0
  8. package/dist-es/waiters/waitForLinkDeleted.js +49 -0
  9. package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +49 -0
  10. package/dist-es/waiters/waitForRequesterGatewayDeleted.js +3 -0
  11. package/dist-es/waiters/waitForResponderGatewayDeleted.js +3 -0
  12. package/dist-types/RTBFabric.d.ts +18 -0
  13. package/dist-types/commands/AcceptLinkCommand.d.ts +10 -0
  14. package/dist-types/commands/CreateLinkCommand.d.ts +12 -2
  15. package/dist-types/commands/CreateResponderGatewayCommand.d.ts +12 -0
  16. package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +2 -1
  17. package/dist-types/commands/GetLinkCommand.d.ts +7 -4
  18. package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +102 -0
  19. package/dist-types/commands/GetResponderGatewayCommand.d.ts +7 -0
  20. package/dist-types/commands/ListLinksCommand.d.ts +10 -0
  21. package/dist-types/commands/RejectLinkCommand.d.ts +9 -0
  22. package/dist-types/commands/UpdateLinkCommand.d.ts +1 -0
  23. package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +5 -0
  24. package/dist-types/models/enums.d.ts +26 -0
  25. package/dist-types/models/models_0.d.ts +159 -8
  26. package/dist-types/schemas/schemas_0.d.ts +1 -0
  27. package/dist-types/ts3.4/RTBFabric.d.ts +27 -0
  28. package/dist-types/ts3.4/models/enums.d.ts +13 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +34 -1
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  31. package/dist-types/ts3.4/waiters/index.d.ts +3 -0
  32. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +11 -0
  33. package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +11 -0
  34. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +11 -0
  35. package/dist-types/waiters/index.d.ts +3 -0
  36. package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +14 -0
  37. package/dist-types/waiters/waitForLinkDeleted.d.ts +14 -0
  38. package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +14 -0
  39. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -444,7 +444,7 @@ const paginateListRequesterGateways = core.createPaginator(RTBFabricClient, List
444
444
 
445
445
  const paginateListResponderGateways = core.createPaginator(RTBFabricClient, ListResponderGatewaysCommand, "nextToken", "nextToken", "maxResults");
446
446
 
447
- const checkState$7 = async (client, input) => {
447
+ const checkState$a = async (client, input) => {
448
448
  let reason;
449
449
  try {
450
450
  let result = await client.send(new GetInboundExternalLinkCommand(input));
@@ -502,15 +502,63 @@ const checkState$7 = async (client, input) => {
502
502
  };
503
503
  const waitForInboundExternalLinkActive = async (params, input) => {
504
504
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
505
- return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
505
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$a);
506
506
  };
507
507
  const waitUntilInboundExternalLinkActive = async (params, input) => {
508
508
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
509
- const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
509
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$a);
510
510
  return utilWaiter.checkExceptions(result);
511
511
  };
512
512
 
513
- const checkState$6 = async (client, input) => {
513
+ const checkState$9 = async (client, input) => {
514
+ let reason;
515
+ try {
516
+ let result = await client.send(new GetInboundExternalLinkCommand(input));
517
+ reason = result;
518
+ try {
519
+ const returnComparator = () => {
520
+ return result.status;
521
+ };
522
+ if (returnComparator() === "DELETED") {
523
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
524
+ }
525
+ }
526
+ catch (e) { }
527
+ try {
528
+ const returnComparator = () => {
529
+ return result.status;
530
+ };
531
+ if (returnComparator() === "FAILED") {
532
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
533
+ }
534
+ }
535
+ catch (e) { }
536
+ try {
537
+ const returnComparator = () => {
538
+ return result.status;
539
+ };
540
+ if (returnComparator() === "REJECTED") {
541
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
542
+ }
543
+ }
544
+ catch (e) { }
545
+ }
546
+ catch (exception) {
547
+ reason = exception;
548
+ }
549
+ return { state: utilWaiter.WaiterState.RETRY, reason };
550
+ };
551
+ const waitForInboundExternalLinkDeleted = async (params, input) => {
552
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
553
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);
554
+ };
555
+ const waitUntilInboundExternalLinkDeleted = async (params, input) => {
556
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
557
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);
558
+ return utilWaiter.checkExceptions(result);
559
+ };
560
+
561
+ const checkState$8 = async (client, input) => {
514
562
  let reason;
515
563
  try {
516
564
  let result = await client.send(new GetLinkCommand(input));
@@ -559,15 +607,15 @@ const checkState$6 = async (client, input) => {
559
607
  };
560
608
  const waitForLinkAccepted = async (params, input) => {
561
609
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
562
- return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
610
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
563
611
  };
564
612
  const waitUntilLinkAccepted = async (params, input) => {
565
613
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
566
- const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
614
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
567
615
  return utilWaiter.checkExceptions(result);
568
616
  };
569
617
 
570
- const checkState$5 = async (client, input) => {
618
+ const checkState$7 = async (client, input) => {
571
619
  let reason;
572
620
  try {
573
621
  let result = await client.send(new GetLinkCommand(input));
@@ -616,15 +664,63 @@ const checkState$5 = async (client, input) => {
616
664
  };
617
665
  const waitForLinkActive = async (params, input) => {
618
666
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
619
- return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
667
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
620
668
  };
621
669
  const waitUntilLinkActive = async (params, input) => {
622
670
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
623
- const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
671
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
624
672
  return utilWaiter.checkExceptions(result);
625
673
  };
626
674
 
627
- const checkState$4 = async (client, input) => {
675
+ const checkState$6 = async (client, input) => {
676
+ let reason;
677
+ try {
678
+ let result = await client.send(new GetLinkCommand(input));
679
+ reason = result;
680
+ try {
681
+ const returnComparator = () => {
682
+ return result.status;
683
+ };
684
+ if (returnComparator() === "DELETED") {
685
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
686
+ }
687
+ }
688
+ catch (e) { }
689
+ try {
690
+ const returnComparator = () => {
691
+ return result.status;
692
+ };
693
+ if (returnComparator() === "FAILED") {
694
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
695
+ }
696
+ }
697
+ catch (e) { }
698
+ try {
699
+ const returnComparator = () => {
700
+ return result.status;
701
+ };
702
+ if (returnComparator() === "REJECTED") {
703
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
704
+ }
705
+ }
706
+ catch (e) { }
707
+ }
708
+ catch (exception) {
709
+ reason = exception;
710
+ }
711
+ return { state: utilWaiter.WaiterState.RETRY, reason };
712
+ };
713
+ const waitForLinkDeleted = async (params, input) => {
714
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
715
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
716
+ };
717
+ const waitUntilLinkDeleted = async (params, input) => {
718
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
719
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
720
+ return utilWaiter.checkExceptions(result);
721
+ };
722
+
723
+ const checkState$5 = async (client, input) => {
628
724
  let reason;
629
725
  try {
630
726
  let result = await client.send(new GetOutboundExternalLinkCommand(input));
@@ -682,9 +778,57 @@ const checkState$4 = async (client, input) => {
682
778
  };
683
779
  const waitForOutboundExternalLinkActive = async (params, input) => {
684
780
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
685
- return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
781
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
686
782
  };
687
783
  const waitUntilOutboundExternalLinkActive = async (params, input) => {
784
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
785
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
786
+ return utilWaiter.checkExceptions(result);
787
+ };
788
+
789
+ const checkState$4 = async (client, input) => {
790
+ let reason;
791
+ try {
792
+ let result = await client.send(new GetOutboundExternalLinkCommand(input));
793
+ reason = result;
794
+ try {
795
+ const returnComparator = () => {
796
+ return result.status;
797
+ };
798
+ if (returnComparator() === "DELETED") {
799
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
800
+ }
801
+ }
802
+ catch (e) { }
803
+ try {
804
+ const returnComparator = () => {
805
+ return result.status;
806
+ };
807
+ if (returnComparator() === "FAILED") {
808
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
809
+ }
810
+ }
811
+ catch (e) { }
812
+ try {
813
+ const returnComparator = () => {
814
+ return result.status;
815
+ };
816
+ if (returnComparator() === "REJECTED") {
817
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
818
+ }
819
+ }
820
+ catch (e) { }
821
+ }
822
+ catch (exception) {
823
+ reason = exception;
824
+ }
825
+ return { state: utilWaiter.WaiterState.RETRY, reason };
826
+ };
827
+ const waitForOutboundExternalLinkDeleted = async (params, input) => {
828
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
829
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
830
+ };
831
+ const waitUntilOutboundExternalLinkDeleted = async (params, input) => {
688
832
  const serviceDefaults = { minDelay: 30, maxDelay: 120 };
689
833
  const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
690
834
  return utilWaiter.checkExceptions(result);
@@ -764,6 +908,9 @@ const checkState$2 = async (client, input) => {
764
908
  }
765
909
  catch (exception) {
766
910
  reason = exception;
911
+ if (exception.name && exception.name == "ResourceNotFoundException") {
912
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
913
+ }
767
914
  }
768
915
  return { state: utilWaiter.WaiterState.RETRY, reason };
769
916
  };
@@ -851,6 +998,9 @@ const checkState = async (client, input) => {
851
998
  }
852
999
  catch (exception) {
853
1000
  reason = exception;
1001
+ if (exception.name && exception.name == "ResourceNotFoundException") {
1002
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1003
+ }
854
1004
  }
855
1005
  return { state: utilWaiter.WaiterState.RETRY, reason };
856
1006
  };
@@ -900,9 +1050,12 @@ const paginators = {
900
1050
  };
901
1051
  const waiters = {
902
1052
  waitUntilInboundExternalLinkActive,
1053
+ waitUntilInboundExternalLinkDeleted,
903
1054
  waitUntilLinkAccepted,
904
1055
  waitUntilLinkActive,
1056
+ waitUntilLinkDeleted,
905
1057
  waitUntilOutboundExternalLinkActive,
1058
+ waitUntilOutboundExternalLinkDeleted,
906
1059
  waitUntilRequesterGatewayActive,
907
1060
  waitUntilRequesterGatewayDeleted,
908
1061
  waitUntilResponderGatewayActive,
@@ -921,6 +1074,12 @@ const ResponderErrorMaskingLoggingType = {
921
1074
  NONE: "NONE",
922
1075
  RESPONSE: "RESPONSE",
923
1076
  };
1077
+ const ConnectivityType = {
1078
+ DEFAULT: "DEFAULT",
1079
+ EXTERNAL_INBOUND: "EXTERNAL_INBOUND",
1080
+ PUBLIC_EGRESS: "PUBLIC_EGRESS",
1081
+ PUBLIC_INGRESS: "PUBLIC_INGRESS",
1082
+ };
924
1083
  const LinkDirection = {
925
1084
  REQUEST: "REQUEST",
926
1085
  RESPONSE: "RESPONSE",
@@ -955,6 +1114,10 @@ const RequesterGatewayStatus = {
955
1114
  PENDING_RESTORATION: "PENDING_RESTORATION",
956
1115
  PENDING_UPDATE: "PENDING_UPDATE",
957
1116
  };
1117
+ const GatewayType = {
1118
+ EXTERNAL: "EXTERNAL",
1119
+ INTERNAL: "INTERNAL",
1120
+ };
958
1121
  const Protocol = {
959
1122
  HTTP: "HTTP",
960
1123
  HTTPS: "HTTPS",
@@ -975,6 +1138,7 @@ exports.$Command = smithyClient.Command;
975
1138
  exports.__Client = smithyClient.Client;
976
1139
  exports.RTBFabricServiceException = RTBFabricServiceException.RTBFabricServiceException;
977
1140
  exports.AcceptLinkCommand = AcceptLinkCommand;
1141
+ exports.ConnectivityType = ConnectivityType;
978
1142
  exports.CreateInboundExternalLinkCommand = CreateInboundExternalLinkCommand;
979
1143
  exports.CreateLinkCommand = CreateLinkCommand;
980
1144
  exports.CreateOutboundExternalLinkCommand = CreateOutboundExternalLinkCommand;
@@ -986,6 +1150,7 @@ exports.DeleteOutboundExternalLinkCommand = DeleteOutboundExternalLinkCommand;
986
1150
  exports.DeleteRequesterGatewayCommand = DeleteRequesterGatewayCommand;
987
1151
  exports.DeleteResponderGatewayCommand = DeleteResponderGatewayCommand;
988
1152
  exports.FilterType = FilterType;
1153
+ exports.GatewayType = GatewayType;
989
1154
  exports.GetInboundExternalLinkCommand = GetInboundExternalLinkCommand;
990
1155
  exports.GetLinkCommand = GetLinkCommand;
991
1156
  exports.GetOutboundExternalLinkCommand = GetOutboundExternalLinkCommand;
@@ -1015,17 +1180,23 @@ exports.paginateListLinks = paginateListLinks;
1015
1180
  exports.paginateListRequesterGateways = paginateListRequesterGateways;
1016
1181
  exports.paginateListResponderGateways = paginateListResponderGateways;
1017
1182
  exports.waitForInboundExternalLinkActive = waitForInboundExternalLinkActive;
1183
+ exports.waitForInboundExternalLinkDeleted = waitForInboundExternalLinkDeleted;
1018
1184
  exports.waitForLinkAccepted = waitForLinkAccepted;
1019
1185
  exports.waitForLinkActive = waitForLinkActive;
1186
+ exports.waitForLinkDeleted = waitForLinkDeleted;
1020
1187
  exports.waitForOutboundExternalLinkActive = waitForOutboundExternalLinkActive;
1188
+ exports.waitForOutboundExternalLinkDeleted = waitForOutboundExternalLinkDeleted;
1021
1189
  exports.waitForRequesterGatewayActive = waitForRequesterGatewayActive;
1022
1190
  exports.waitForRequesterGatewayDeleted = waitForRequesterGatewayDeleted;
1023
1191
  exports.waitForResponderGatewayActive = waitForResponderGatewayActive;
1024
1192
  exports.waitForResponderGatewayDeleted = waitForResponderGatewayDeleted;
1025
1193
  exports.waitUntilInboundExternalLinkActive = waitUntilInboundExternalLinkActive;
1194
+ exports.waitUntilInboundExternalLinkDeleted = waitUntilInboundExternalLinkDeleted;
1026
1195
  exports.waitUntilLinkAccepted = waitUntilLinkAccepted;
1027
1196
  exports.waitUntilLinkActive = waitUntilLinkActive;
1197
+ exports.waitUntilLinkDeleted = waitUntilLinkDeleted;
1028
1198
  exports.waitUntilOutboundExternalLinkActive = waitUntilOutboundExternalLinkActive;
1199
+ exports.waitUntilOutboundExternalLinkDeleted = waitUntilOutboundExternalLinkDeleted;
1029
1200
  exports.waitUntilRequesterGatewayActive = waitUntilRequesterGatewayActive;
1030
1201
  exports.waitUntilRequesterGatewayDeleted = waitUntilRequesterGatewayDeleted;
1031
1202
  exports.waitUntilResponderGatewayActive = waitUntilResponderGatewayActive;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LinkLogSettings$ = exports.LinkAttributes$ = exports.LinkApplicationLogSampling$ = exports.LinkApplicationLogConfiguration$ = exports.HeaderTagAction$ = exports.GetResponderGatewayResponse$ = exports.GetResponderGatewayRequest$ = exports.GetRequesterGatewayResponse$ = exports.GetRequesterGatewayRequest$ = exports.GetOutboundExternalLinkResponse$ = exports.GetOutboundExternalLinkRequest$ = exports.GetLinkResponse$ = exports.GetLinkRequest$ = exports.GetInboundExternalLinkResponse$ = exports.GetInboundExternalLinkRequest$ = exports.FilterCriterion$ = exports.Filter$ = exports.EksEndpointsConfiguration$ = exports.DeleteResponderGatewayResponse$ = exports.DeleteResponderGatewayRequest$ = exports.DeleteRequesterGatewayResponse$ = exports.DeleteRequesterGatewayRequest$ = exports.DeleteOutboundExternalLinkResponse$ = exports.DeleteOutboundExternalLinkRequest$ = exports.DeleteLinkResponse$ = exports.DeleteLinkRequest$ = exports.DeleteInboundExternalLinkResponse$ = exports.DeleteInboundExternalLinkRequest$ = exports.CreateResponderGatewayResponse$ = exports.CreateResponderGatewayRequest$ = exports.CreateRequesterGatewayResponse$ = exports.CreateRequesterGatewayRequest$ = exports.CreateOutboundExternalLinkResponse$ = exports.CreateOutboundExternalLinkRequest$ = exports.CreateLinkResponse$ = exports.CreateLinkRequest$ = exports.CreateInboundExternalLinkResponse$ = exports.CreateInboundExternalLinkRequest$ = exports.AutoScalingGroupsConfiguration$ = exports.AcceptLinkResponse$ = exports.AcceptLinkRequest$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.RTBFabricServiceException$ = void 0;
4
- exports.ListLinks$ = exports.GetResponderGateway$ = exports.GetRequesterGateway$ = exports.GetOutboundExternalLink$ = exports.GetLink$ = exports.GetInboundExternalLink$ = exports.DeleteResponderGateway$ = exports.DeleteRequesterGateway$ = exports.DeleteOutboundExternalLink$ = exports.DeleteLink$ = exports.DeleteInboundExternalLink$ = exports.CreateResponderGateway$ = exports.CreateRequesterGateway$ = exports.CreateOutboundExternalLink$ = exports.CreateLink$ = exports.CreateInboundExternalLink$ = exports.AcceptLink$ = exports.ModuleParameters$ = exports.ManagedEndpointConfiguration$ = exports.Action$ = exports.UpdateResponderGatewayResponse$ = exports.UpdateResponderGatewayRequest$ = exports.UpdateRequesterGatewayResponse$ = exports.UpdateRequesterGatewayRequest$ = exports.UpdateLinkResponse$ = exports.UpdateLinkRequest$ = exports.UpdateLinkModuleFlowResponse$ = exports.UpdateLinkModuleFlowRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TrustStoreConfiguration$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.ResponderErrorMaskingForHttpCode$ = exports.RejectLinkResponse$ = exports.RejectLinkRequest$ = exports.RateLimiterModuleParameters$ = exports.OpenRtbAttributeModuleParameters$ = exports.NoBidModuleParameters$ = exports.NoBidAction$ = exports.ModuleConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListResponderGatewaysResponse$ = exports.ListResponderGatewaysRequest$ = exports.ListRequesterGatewaysResponse$ = exports.ListRequesterGatewaysRequest$ = exports.ListLinksResponseStructure$ = exports.ListLinksResponse$ = exports.ListLinksRequest$ = void 0;
5
- exports.UpdateResponderGateway$ = exports.UpdateRequesterGateway$ = exports.UpdateLinkModuleFlow$ = exports.UpdateLink$ = exports.UntagResource$ = exports.TagResource$ = exports.RejectLink$ = exports.ListTagsForResource$ = exports.ListResponderGateways$ = exports.ListRequesterGateways$ = void 0;
4
+ exports.GetResponderGateway$ = exports.GetRequesterGateway$ = exports.GetOutboundExternalLink$ = exports.GetLink$ = exports.GetInboundExternalLink$ = exports.DeleteResponderGateway$ = exports.DeleteRequesterGateway$ = exports.DeleteOutboundExternalLink$ = exports.DeleteLink$ = exports.DeleteInboundExternalLink$ = exports.CreateResponderGateway$ = exports.CreateRequesterGateway$ = exports.CreateOutboundExternalLink$ = exports.CreateLink$ = exports.CreateInboundExternalLink$ = exports.AcceptLink$ = exports.ModuleParameters$ = exports.ManagedEndpointConfiguration$ = exports.Action$ = exports.UpdateResponderGatewayResponse$ = exports.UpdateResponderGatewayRequest$ = exports.UpdateRequesterGatewayResponse$ = exports.UpdateRequesterGatewayRequest$ = exports.UpdateLinkResponse$ = exports.UpdateLinkRequest$ = exports.UpdateLinkModuleFlowResponse$ = exports.UpdateLinkModuleFlowRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TrustStoreConfiguration$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.ResponderErrorMaskingForHttpCode$ = exports.RejectLinkResponse$ = exports.RejectLinkRequest$ = exports.RateLimiterModuleParameters$ = exports.OpenRtbAttributeModuleParameters$ = exports.NoBidModuleParameters$ = exports.NoBidAction$ = exports.ModuleConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListResponderGatewaysResponse$ = exports.ListResponderGatewaysRequest$ = exports.ListRequesterGatewaysResponse$ = exports.ListRequesterGatewaysRequest$ = exports.ListLinksResponseStructure$ = exports.ListLinksResponse$ = exports.ListLinksRequest$ = exports.ListenerConfig$ = void 0;
5
+ exports.UpdateResponderGateway$ = exports.UpdateRequesterGateway$ = exports.UpdateLinkModuleFlow$ = exports.UpdateLink$ = exports.UntagResource$ = exports.TagResource$ = exports.RejectLink$ = exports.ListTagsForResource$ = exports.ListResponderGateways$ = exports.ListRequesterGateways$ = exports.ListLinks$ = void 0;
6
6
  const _A = "Action";
7
7
  const _ADE = "AccessDeniedException";
8
8
  const _AL = "AcceptLink";
@@ -67,6 +67,7 @@ const _ISE = "InternalServerException";
67
67
  const _LA = "LinkAttributes";
68
68
  const _LALC = "LinkApplicationLogConfiguration";
69
69
  const _LALS = "LinkApplicationLogSampling";
70
+ const _LC = "ListenerConfig";
70
71
  const _LL = "LinkList";
71
72
  const _LLR = "ListLinksRequest";
72
73
  const _LLRS = "ListLinksResponseStructure";
@@ -131,7 +132,8 @@ const _cASCCC = "clusterApiServerCaCertificateChain";
131
132
  const _cASEU = "clusterApiServerEndpointUri";
132
133
  const _cN = "clusterName";
133
134
  const _cPI = "customerProvidedId";
134
- const _cT = "clientToken";
135
+ const _cT = "connectivityType";
136
+ const _cTl = "clientToken";
135
137
  const _cr = "criteria";
136
138
  const _d = "direction";
137
139
  const _dN = "domainName";
@@ -139,6 +141,7 @@ const _dO = "dependsOn";
139
141
  const _de = "description";
140
142
  const _e = "error";
141
143
  const _eE = "eksEndpoints";
144
+ const _eIE = "externalInboundEndpoint";
142
145
  const _eL = "errorLog";
143
146
  const _eRN = "endpointsResourceName";
144
147
  const _eRNn = "endpointsResourceNamespace";
@@ -148,6 +151,7 @@ const _fM = "flowModules";
148
151
  const _fT = "filterType";
149
152
  const _gI = "gatewayId";
150
153
  const _gIa = "gatewayIds";
154
+ const _gT = "gatewayType";
151
155
  const _h = "http";
152
156
  const _hC = "httpCode";
153
157
  const _hE = "httpError";
@@ -157,6 +161,7 @@ const _hRA = "httpResponderAllowed";
157
161
  const _hT = "headerTag";
158
162
  const _iLC = "inboundLinksCount";
159
163
  const _l = "links";
164
+ const _lC = "listenerConfig";
160
165
  const _lI = "linkId";
161
166
  const _lS = "logSettings";
162
167
  const _lT = "loggingTypes";
@@ -177,6 +182,7 @@ const _pGI = "peerGatewayId";
177
182
  const _pTP = "passThroughPercentage";
178
183
  const _pa = "path";
179
184
  const _pr = "protocol";
185
+ const _pro = "protocols";
180
186
  const _r = "reason";
181
187
  const _rA = "roleArn";
182
188
  const _rAe = "resourceArn";
@@ -191,6 +197,7 @@ const _sa = "sampling";
191
197
  const _se = "server";
192
198
  const _st = "status";
193
199
  const _t = "tags";
200
+ const _tIM = "timeoutInMillis";
194
201
  const _tK = "tagKeys";
195
202
  const _tLC = "totalLinksCount";
196
203
  const _tSC = "trustStoreConfiguration";
@@ -257,13 +264,13 @@ exports.errorTypeRegistries = [
257
264
  var Base64EncodedCertificateChain = [0, n0, _BECC, 8, 0];
258
265
  exports.AcceptLinkRequest$ = [3, n0, _ALR,
259
266
  0,
260
- [_gI, _lI, _lS, _a],
261
- [[0, 1], [0, 1], () => exports.LinkLogSettings$, () => exports.LinkAttributes$], 3
267
+ [_gI, _lI, _lS, _a, _tIM],
268
+ [[0, 1], [0, 1], () => exports.LinkLogSettings$, () => exports.LinkAttributes$, 1], 3
262
269
  ];
263
270
  exports.AcceptLinkResponse$ = [3, n0, _ALRc,
264
271
  0,
265
- [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a],
266
- [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$], 6
272
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
273
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0], 6
267
274
  ];
268
275
  exports.AutoScalingGroupsConfiguration$ = [3, n0, _ASGC,
269
276
  0,
@@ -272,7 +279,7 @@ exports.AutoScalingGroupsConfiguration$ = [3, n0, _ASGC,
272
279
  ];
273
280
  exports.CreateInboundExternalLinkRequest$ = [3, n0, _CIELR,
274
281
  0,
275
- [_gI, _lS, _cT, _a, _t],
282
+ [_gI, _lS, _cTl, _a, _t],
276
283
  [[0, 1], () => exports.LinkLogSettings$, [0, 4], () => exports.LinkAttributes$, 128 | 0], 2
277
284
  ];
278
285
  exports.CreateInboundExternalLinkResponse$ = [3, n0, _CIELRr,
@@ -282,17 +289,17 @@ exports.CreateInboundExternalLinkResponse$ = [3, n0, _CIELRr,
282
289
  ];
283
290
  exports.CreateLinkRequest$ = [3, n0, _CLR,
284
291
  0,
285
- [_gI, _pGI, _lS, _a, _hRA, _t],
286
- [[0, 1], 0, () => exports.LinkLogSettings$, () => exports.LinkAttributes$, 2, 128 | 0], 3
292
+ [_gI, _pGI, _lS, _a, _hRA, _t, _tIM],
293
+ [[0, 1], 0, () => exports.LinkLogSettings$, () => exports.LinkAttributes$, 2, 128 | 0, 1], 3
287
294
  ];
288
295
  exports.CreateLinkResponse$ = [3, n0, _CLRr,
289
296
  0,
290
- [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _cPI],
291
- [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, 0], 6
297
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _cPI],
298
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0, 0], 6
292
299
  ];
293
300
  exports.CreateOutboundExternalLinkRequest$ = [3, n0, _COELR,
294
301
  0,
295
- [_gI, _pE, _lS, _cT, _a, _t],
302
+ [_gI, _pE, _lS, _cTl, _a, _t],
296
303
  [[0, 1], 0, () => exports.LinkLogSettings$, [0, 4], () => exports.LinkAttributes$, 128 | 0], 3
297
304
  ];
298
305
  exports.CreateOutboundExternalLinkResponse$ = [3, n0, _COELRr,
@@ -302,7 +309,7 @@ exports.CreateOutboundExternalLinkResponse$ = [3, n0, _COELRr,
302
309
  ];
303
310
  exports.CreateRequesterGatewayRequest$ = [3, n0, _CRGR,
304
311
  0,
305
- [_vI, _sI, _sGI, _cT, _de, _t],
312
+ [_vI, _sI, _sGI, _cTl, _de, _t],
306
313
  [0, 64 | 0, 64 | 0, [0, 4], 0, 128 | 0], 3
307
314
  ];
308
315
  exports.CreateRequesterGatewayResponse$ = [3, n0, _CRGRr,
@@ -312,13 +319,13 @@ exports.CreateRequesterGatewayResponse$ = [3, n0, _CRGRr,
312
319
  ];
313
320
  exports.CreateResponderGatewayRequest$ = [3, n0, _CRGRre,
314
321
  0,
315
- [_vI, _sI, _sGI, _p, _pr, _dN, _tSC, _mEC, _cT, _de, _t],
316
- [0, 64 | 0, 64 | 0, 1, 0, 0, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], [0, 4], 0, 128 | 0], 5
322
+ [_vI, _sI, _sGI, _p, _pr, _dN, _lC, _tSC, _mEC, _cTl, _de, _t, _gT],
323
+ [0, 64 | 0, 64 | 0, 1, 0, 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], [0, 4], 0, 128 | 0, 0], 5
317
324
  ];
318
325
  exports.CreateResponderGatewayResponse$ = [3, n0, _CRGRrea,
319
326
  0,
320
- [_gI, _st],
321
- [0, 0], 2
327
+ [_gI, _st, _lC, _eIE],
328
+ [0, 0, () => exports.ListenerConfig$, 0], 2
322
329
  ];
323
330
  exports.DeleteInboundExternalLinkRequest$ = [3, n0, _DIELR,
324
331
  0,
@@ -392,8 +399,8 @@ exports.GetInboundExternalLinkRequest$ = [3, n0, _GIELR,
392
399
  ];
393
400
  exports.GetInboundExternalLinkResponse$ = [3, n0, _GIELRe,
394
401
  0,
395
- [_gI, _lI, _st, _dN, _fM, _pFM, _a, _cA, _uA, _t, _lS],
396
- [0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, 4, 4, 128 | 0, () => exports.LinkLogSettings$], 4
402
+ [_gI, _lI, _st, _dN, _fM, _pFM, _a, _cA, _uA, _t, _lS, _cT],
403
+ [0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, 4, 4, 128 | 0, () => exports.LinkLogSettings$, 0], 4
397
404
  ];
398
405
  exports.GetLinkRequest$ = [3, n0, _GLR,
399
406
  0,
@@ -402,8 +409,8 @@ exports.GetLinkRequest$ = [3, n0, _GLR,
402
409
  ];
403
410
  exports.GetLinkResponse$ = [3, n0, _GLRe,
404
411
  0,
405
- [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _t, _lS],
406
- [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, 128 | 0, () => exports.LinkLogSettings$], 6
412
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _hRA, _tIM],
413
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0, 128 | 0, 2, 1], 6
407
414
  ];
408
415
  exports.GetOutboundExternalLinkRequest$ = [3, n0, _GOELR,
409
416
  0,
@@ -412,8 +419,8 @@ exports.GetOutboundExternalLinkRequest$ = [3, n0, _GOELR,
412
419
  ];
413
420
  exports.GetOutboundExternalLinkResponse$ = [3, n0, _GOELRe,
414
421
  0,
415
- [_gI, _lI, _st, _pE, _cA, _uA, _t, _lS],
416
- [0, 0, 0, 0, 4, 4, 128 | 0, () => exports.LinkLogSettings$], 4
422
+ [_gI, _lI, _st, _pE, _fM, _pFM, _a, _cA, _uA, _t, _lS, _cT],
423
+ [0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, 4, 4, 128 | 0, () => exports.LinkLogSettings$, 0], 4
417
424
  ];
418
425
  exports.GetRequesterGatewayRequest$ = [3, n0, _GRGR,
419
426
  0,
@@ -432,8 +439,8 @@ exports.GetResponderGatewayRequest$ = [3, n0, _GRGRet,
432
439
  ];
433
440
  exports.GetResponderGatewayResponse$ = [3, n0, _GRGRete,
434
441
  0,
435
- [_vI, _sI, _sGI, _st, _p, _pr, _gI, _de, _cA, _uA, _dN, _tSC, _mEC, _t, _aLC, _tLC, _iLC],
436
- [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1], 7
442
+ [_vI, _sI, _sGI, _st, _p, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _gT, _eIE],
443
+ [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 0, 0], 7
437
444
  ];
438
445
  exports.HeaderTagAction$ = [3, n0, _HTA,
439
446
  0,
@@ -460,6 +467,11 @@ exports.LinkLogSettings$ = [3, n0, _LLS,
460
467
  [_aL],
461
468
  [() => exports.LinkApplicationLogConfiguration$], 1
462
469
  ];
470
+ exports.ListenerConfig$ = [3, n0, _LC,
471
+ 0,
472
+ [_pro],
473
+ [64 | 0], 1
474
+ ];
463
475
  exports.ListLinksRequest$ = [3, n0, _LLR,
464
476
  0,
465
477
  [_gI, _nT, _mR],
@@ -472,8 +484,8 @@ exports.ListLinksResponse$ = [3, n0, _LLRi,
472
484
  ];
473
485
  exports.ListLinksResponseStructure$ = [3, n0, _LLRS,
474
486
  0,
475
- [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _t],
476
- [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, 128 | 0], 6
487
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _pE],
488
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0, 128 | 0, 0], 6
477
489
  ];
478
490
  exports.ListRequesterGatewaysRequest$ = [3, n0, _LRGR,
479
491
  0,
@@ -537,8 +549,8 @@ exports.RejectLinkRequest$ = [3, n0, _RLR,
537
549
  ];
538
550
  exports.RejectLinkResponse$ = [3, n0, _RLRe,
539
551
  0,
540
- [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a],
541
- [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$], 6
552
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
553
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => exports.LinkAttributes$, () => exports.LinkLogSettings$, 0], 6
542
554
  ];
543
555
  exports.ResponderErrorMaskingForHttpCode$ = [3, n0, _REMFHC,
544
556
  0,
@@ -572,7 +584,7 @@ exports.UntagResourceResponse$ = [3, n0, _URRn,
572
584
  ];
573
585
  exports.UpdateLinkModuleFlowRequest$ = [3, n0, _ULMFR,
574
586
  0,
575
- [_gI, _lI, _mo, _cT],
587
+ [_gI, _lI, _mo, _cTl],
576
588
  [[0, 1], [0, 1], () => ModuleConfigurationList, [0, 4]], 3
577
589
  ];
578
590
  exports.UpdateLinkModuleFlowResponse$ = [3, n0, _ULMFRp,
@@ -582,8 +594,8 @@ exports.UpdateLinkModuleFlowResponse$ = [3, n0, _ULMFRp,
582
594
  ];
583
595
  exports.UpdateLinkRequest$ = [3, n0, _ULR,
584
596
  0,
585
- [_gI, _lI, _lS],
586
- [[0, 1], [0, 1], () => exports.LinkLogSettings$], 2
597
+ [_gI, _lI, _lS, _tIM],
598
+ [[0, 1], [0, 1], () => exports.LinkLogSettings$, 1], 2
587
599
  ];
588
600
  exports.UpdateLinkResponse$ = [3, n0, _ULRp,
589
601
  0,
@@ -592,7 +604,7 @@ exports.UpdateLinkResponse$ = [3, n0, _ULRp,
592
604
  ];
593
605
  exports.UpdateRequesterGatewayRequest$ = [3, n0, _URGR,
594
606
  0,
595
- [_gI, _cT, _de],
607
+ [_gI, _cTl, _de],
596
608
  [[0, 1], [0, 4], 0], 1
597
609
  ];
598
610
  exports.UpdateRequesterGatewayResponse$ = [3, n0, _URGRp,
@@ -602,8 +614,8 @@ exports.UpdateRequesterGatewayResponse$ = [3, n0, _URGRp,
602
614
  ];
603
615
  exports.UpdateResponderGatewayRequest$ = [3, n0, _URGRpd,
604
616
  0,
605
- [_p, _pr, _gI, _dN, _tSC, _mEC, _cT, _de],
606
- [1, 0, [0, 1], 0, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], [0, 4], 0], 3
617
+ [_p, _pr, _gI, _dN, _lC, _tSC, _mEC, _cTl, _de],
618
+ [1, 0, [0, 1], 0, () => exports.ListenerConfig$, [() => exports.TrustStoreConfiguration$, 0], [() => exports.ManagedEndpointConfiguration$, 0], [0, 4], 0], 3
607
619
  ];
608
620
  exports.UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
609
621
  0,
@@ -629,6 +641,7 @@ var LinkList = [1, n0, _LL,
629
641
  var ModuleConfigurationList = [1, n0, _MCL,
630
642
  0, () => exports.ModuleConfiguration$
631
643
  ];
644
+ var ProtocolList = 64 | 0;
632
645
  var ResponderErrorMasking = [1, n0, _REM,
633
646
  0, () => exports.ResponderErrorMaskingForHttpCode$
634
647
  ];
@@ -31,9 +31,12 @@ import { paginateListRequesterGateways } from "./pagination/ListRequesterGateway
31
31
  import { paginateListResponderGateways } from "./pagination/ListResponderGatewaysPaginator";
32
32
  import { RTBFabricClient } from "./RTBFabricClient";
33
33
  import { waitUntilInboundExternalLinkActive } from "./waiters/waitForInboundExternalLinkActive";
34
+ import { waitUntilInboundExternalLinkDeleted } from "./waiters/waitForInboundExternalLinkDeleted";
34
35
  import { waitUntilLinkAccepted } from "./waiters/waitForLinkAccepted";
35
36
  import { waitUntilLinkActive } from "./waiters/waitForLinkActive";
37
+ import { waitUntilLinkDeleted } from "./waiters/waitForLinkDeleted";
36
38
  import { waitUntilOutboundExternalLinkActive } from "./waiters/waitForOutboundExternalLinkActive";
39
+ import { waitUntilOutboundExternalLinkDeleted } from "./waiters/waitForOutboundExternalLinkDeleted";
37
40
  import { waitUntilRequesterGatewayActive } from "./waiters/waitForRequesterGatewayActive";
38
41
  import { waitUntilRequesterGatewayDeleted } from "./waiters/waitForRequesterGatewayDeleted";
39
42
  import { waitUntilResponderGatewayActive } from "./waiters/waitForResponderGatewayActive";
@@ -74,9 +77,12 @@ const paginators = {
74
77
  };
75
78
  const waiters = {
76
79
  waitUntilInboundExternalLinkActive,
80
+ waitUntilInboundExternalLinkDeleted,
77
81
  waitUntilLinkAccepted,
78
82
  waitUntilLinkActive,
83
+ waitUntilLinkDeleted,
79
84
  waitUntilOutboundExternalLinkActive,
85
+ waitUntilOutboundExternalLinkDeleted,
80
86
  waitUntilRequesterGatewayActive,
81
87
  waitUntilRequesterGatewayDeleted,
82
88
  waitUntilResponderGatewayActive,
@@ -7,6 +7,12 @@ export const ResponderErrorMaskingLoggingType = {
7
7
  NONE: "NONE",
8
8
  RESPONSE: "RESPONSE",
9
9
  };
10
+ export const ConnectivityType = {
11
+ DEFAULT: "DEFAULT",
12
+ EXTERNAL_INBOUND: "EXTERNAL_INBOUND",
13
+ PUBLIC_EGRESS: "PUBLIC_EGRESS",
14
+ PUBLIC_INGRESS: "PUBLIC_INGRESS",
15
+ };
10
16
  export const LinkDirection = {
11
17
  REQUEST: "REQUEST",
12
18
  RESPONSE: "RESPONSE",
@@ -41,6 +47,10 @@ export const RequesterGatewayStatus = {
41
47
  PENDING_RESTORATION: "PENDING_RESTORATION",
42
48
  PENDING_UPDATE: "PENDING_UPDATE",
43
49
  };
50
+ export const GatewayType = {
51
+ EXTERNAL: "EXTERNAL",
52
+ INTERNAL: "INTERNAL",
53
+ };
44
54
  export const Protocol = {
45
55
  HTTP: "HTTP",
46
56
  HTTPS: "HTTPS",