@aws-sdk/client-rtbfabric 3.1045.0 → 3.1047.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 (215) hide show
  1. package/README.md +63 -0
  2. package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  3. package/dist-cjs/endpoint/bdd.js +2 -2
  4. package/dist-cjs/endpoint/endpointResolver.js +4 -4
  5. package/dist-cjs/index.js +539 -177
  6. package/dist-cjs/models/RTBFabricServiceException.js +3 -3
  7. package/dist-cjs/runtimeConfig.browser.js +12 -14
  8. package/dist-cjs/runtimeConfig.js +18 -22
  9. package/dist-cjs/runtimeConfig.shared.js +9 -10
  10. package/dist-cjs/schemas/schemas_0.js +200 -10
  11. package/dist-es/RTBFabric.js +31 -1
  12. package/dist-es/RTBFabricClient.js +5 -5
  13. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  14. package/dist-es/commands/AcceptLinkCommand.js +2 -2
  15. package/dist-es/commands/AssociateCertificateCommand.js +16 -0
  16. package/dist-es/commands/CreateInboundExternalLinkCommand.js +2 -2
  17. package/dist-es/commands/CreateLinkCommand.js +2 -2
  18. package/dist-es/commands/CreateLinkRoutingRuleCommand.js +16 -0
  19. package/dist-es/commands/CreateOutboundExternalLinkCommand.js +2 -2
  20. package/dist-es/commands/CreateRequesterGatewayCommand.js +2 -2
  21. package/dist-es/commands/CreateResponderGatewayCommand.js +2 -2
  22. package/dist-es/commands/DeleteInboundExternalLinkCommand.js +2 -2
  23. package/dist-es/commands/DeleteLinkCommand.js +2 -2
  24. package/dist-es/commands/DeleteLinkRoutingRuleCommand.js +16 -0
  25. package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +2 -2
  26. package/dist-es/commands/DeleteRequesterGatewayCommand.js +2 -2
  27. package/dist-es/commands/DeleteResponderGatewayCommand.js +2 -2
  28. package/dist-es/commands/DisassociateCertificateCommand.js +16 -0
  29. package/dist-es/commands/GetCertificateAssociationCommand.js +16 -0
  30. package/dist-es/commands/GetInboundExternalLinkCommand.js +2 -2
  31. package/dist-es/commands/GetLinkCommand.js +2 -2
  32. package/dist-es/commands/GetLinkRoutingRuleCommand.js +16 -0
  33. package/dist-es/commands/GetOutboundExternalLinkCommand.js +2 -2
  34. package/dist-es/commands/GetRequesterGatewayCommand.js +2 -2
  35. package/dist-es/commands/GetResponderGatewayCommand.js +2 -2
  36. package/dist-es/commands/ListCertificateAssociationsCommand.js +16 -0
  37. package/dist-es/commands/ListLinkRoutingRulesCommand.js +16 -0
  38. package/dist-es/commands/ListLinksCommand.js +2 -2
  39. package/dist-es/commands/ListRequesterGatewaysCommand.js +2 -2
  40. package/dist-es/commands/ListResponderGatewaysCommand.js +2 -2
  41. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  42. package/dist-es/commands/RejectLinkCommand.js +2 -2
  43. package/dist-es/commands/TagResourceCommand.js +2 -2
  44. package/dist-es/commands/UntagResourceCommand.js +2 -2
  45. package/dist-es/commands/UpdateLinkCommand.js +2 -2
  46. package/dist-es/commands/UpdateLinkModuleFlowCommand.js +2 -2
  47. package/dist-es/commands/UpdateLinkRoutingRuleCommand.js +16 -0
  48. package/dist-es/commands/UpdateRequesterGatewayCommand.js +2 -2
  49. package/dist-es/commands/UpdateResponderGatewayCommand.js +2 -2
  50. package/dist-es/commands/index.js +9 -0
  51. package/dist-es/endpoint/bdd.js +1 -1
  52. package/dist-es/endpoint/endpointResolver.js +1 -1
  53. package/dist-es/models/RTBFabricServiceException.js +1 -1
  54. package/dist-es/models/enums.js +15 -0
  55. package/dist-es/pagination/ListCertificateAssociationsPaginator.js +4 -0
  56. package/dist-es/pagination/ListLinkRoutingRulesPaginator.js +4 -0
  57. package/dist-es/pagination/index.js +2 -0
  58. package/dist-es/runtimeConfig.browser.js +4 -6
  59. package/dist-es/runtimeConfig.js +4 -8
  60. package/dist-es/runtimeConfig.shared.js +3 -4
  61. package/dist-es/runtimeExtensions.js +2 -2
  62. package/dist-es/schemas/schemas_0.js +197 -7
  63. package/dist-es/waiters/index.js +4 -0
  64. package/dist-es/waiters/waitForCertificateAssociated.js +61 -0
  65. package/dist-es/waiters/waitForCertificateDisassociated.js +52 -0
  66. package/dist-es/waiters/waitForInboundExternalLinkActive.js +1 -1
  67. package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +1 -1
  68. package/dist-es/waiters/waitForLinkAccepted.js +1 -1
  69. package/dist-es/waiters/waitForLinkActive.js +1 -1
  70. package/dist-es/waiters/waitForLinkDeleted.js +1 -1
  71. package/dist-es/waiters/waitForLinkRoutingRuleActive.js +49 -0
  72. package/dist-es/waiters/waitForLinkRoutingRuleDeleted.js +43 -0
  73. package/dist-es/waiters/waitForOutboundExternalLinkActive.js +1 -1
  74. package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +1 -1
  75. package/dist-es/waiters/waitForRequesterGatewayActive.js +1 -1
  76. package/dist-es/waiters/waitForRequesterGatewayDeleted.js +1 -1
  77. package/dist-es/waiters/waitForResponderGatewayActive.js +1 -1
  78. package/dist-es/waiters/waitForResponderGatewayDeleted.js +1 -1
  79. package/dist-types/RTBFabric.d.ts +102 -1
  80. package/dist-types/RTBFabricClient.d.ts +16 -7
  81. package/dist-types/commands/AcceptLinkCommand.d.ts +6 -4
  82. package/dist-types/commands/AssociateCertificateCommand.d.ts +120 -0
  83. package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
  84. package/dist-types/commands/CreateLinkCommand.d.ts +6 -4
  85. package/dist-types/commands/CreateLinkRoutingRuleCommand.d.ts +140 -0
  86. package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +9 -4
  87. package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +6 -4
  88. package/dist-types/commands/CreateResponderGatewayCommand.d.ts +6 -4
  89. package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
  90. package/dist-types/commands/DeleteLinkCommand.d.ts +6 -4
  91. package/dist-types/commands/DeleteLinkRoutingRuleCommand.d.ts +115 -0
  92. package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
  93. package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +9 -4
  94. package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +9 -4
  95. package/dist-types/commands/DisassociateCertificateCommand.d.ts +118 -0
  96. package/dist-types/commands/GetCertificateAssociationCommand.d.ts +116 -0
  97. package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +6 -4
  98. package/dist-types/commands/GetLinkCommand.d.ts +6 -4
  99. package/dist-types/commands/GetLinkRoutingRuleCommand.d.ts +140 -0
  100. package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
  101. package/dist-types/commands/GetRequesterGatewayCommand.d.ts +6 -4
  102. package/dist-types/commands/GetResponderGatewayCommand.d.ts +6 -4
  103. package/dist-types/commands/ListCertificateAssociationsCommand.d.ts +125 -0
  104. package/dist-types/commands/ListLinkRoutingRulesCommand.d.ts +143 -0
  105. package/dist-types/commands/ListLinksCommand.d.ts +6 -4
  106. package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +6 -4
  107. package/dist-types/commands/ListResponderGatewaysCommand.d.ts +6 -4
  108. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
  109. package/dist-types/commands/RejectLinkCommand.d.ts +6 -4
  110. package/dist-types/commands/TagResourceCommand.d.ts +6 -4
  111. package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
  112. package/dist-types/commands/UpdateLinkCommand.d.ts +6 -4
  113. package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
  114. package/dist-types/commands/UpdateLinkRoutingRuleCommand.d.ts +134 -0
  115. package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
  116. package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +6 -4
  117. package/dist-types/commands/index.d.ts +9 -0
  118. package/dist-types/endpoint/bdd.d.ts +1 -1
  119. package/dist-types/extensionConfiguration.d.ts +1 -1
  120. package/dist-types/models/RTBFabricServiceException.d.ts +1 -1
  121. package/dist-types/models/enums.d.ts +31 -0
  122. package/dist-types/models/errors.d.ts +1 -1
  123. package/dist-types/models/models_0.d.ts +522 -1
  124. package/dist-types/pagination/ListCertificateAssociationsPaginator.d.ts +7 -0
  125. package/dist-types/pagination/ListLinkRoutingRulesPaginator.d.ts +7 -0
  126. package/dist-types/pagination/index.d.ts +2 -0
  127. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  128. package/dist-types/runtimeConfig.d.ts +2 -2
  129. package/dist-types/runtimeConfig.native.d.ts +2 -2
  130. package/dist-types/schemas/schemas_0.d.ts +31 -0
  131. package/dist-types/ts3.4/RTBFabric.d.ts +210 -1
  132. package/dist-types/ts3.4/RTBFabricClient.d.ts +62 -14
  133. package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +6 -4
  134. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +53 -0
  135. package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
  136. package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +6 -4
  137. package/dist-types/ts3.4/commands/CreateLinkRoutingRuleCommand.d.ts +53 -0
  138. package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +6 -4
  139. package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +6 -4
  140. package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +6 -4
  141. package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
  142. package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +6 -4
  143. package/dist-types/ts3.4/commands/DeleteLinkRoutingRuleCommand.d.ts +53 -0
  144. package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
  145. package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +6 -4
  146. package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +6 -4
  147. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +53 -0
  148. package/dist-types/ts3.4/commands/GetCertificateAssociationCommand.d.ts +53 -0
  149. package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +6 -4
  150. package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +6 -4
  151. package/dist-types/ts3.4/commands/GetLinkRoutingRuleCommand.d.ts +53 -0
  152. package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
  153. package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +6 -4
  154. package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +6 -4
  155. package/dist-types/ts3.4/commands/ListCertificateAssociationsCommand.d.ts +53 -0
  156. package/dist-types/ts3.4/commands/ListLinkRoutingRulesCommand.d.ts +53 -0
  157. package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +6 -8
  158. package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +6 -4
  159. package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +6 -4
  160. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
  161. package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +6 -4
  162. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
  163. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
  164. package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +6 -4
  165. package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
  166. package/dist-types/ts3.4/commands/UpdateLinkRoutingRuleCommand.d.ts +53 -0
  167. package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
  168. package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +6 -4
  169. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  170. package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  171. package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  172. package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +1 -1
  173. package/dist-types/ts3.4/models/enums.d.ts +18 -0
  174. package/dist-types/ts3.4/models/errors.d.ts +1 -1
  175. package/dist-types/ts3.4/models/models_0.d.ts +127 -0
  176. package/dist-types/ts3.4/pagination/ListCertificateAssociationsPaginator.d.ts +11 -0
  177. package/dist-types/ts3.4/pagination/ListLinkRoutingRulesPaginator.d.ts +11 -0
  178. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  179. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  180. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  181. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  182. package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
  183. package/dist-types/ts3.4/waiters/index.d.ts +4 -0
  184. package/dist-types/ts3.4/waiters/waitForCertificateAssociated.d.ts +19 -0
  185. package/dist-types/ts3.4/waiters/waitForCertificateDisassociated.d.ts +24 -0
  186. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
  187. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
  188. package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +1 -1
  189. package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +1 -1
  190. package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +1 -1
  191. package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleActive.d.ts +17 -0
  192. package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleDeleted.d.ts +20 -0
  193. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
  194. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
  195. package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +1 -1
  196. package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
  197. package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +1 -1
  198. package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
  199. package/dist-types/waiters/index.d.ts +4 -0
  200. package/dist-types/waiters/waitForCertificateAssociated.d.ts +15 -0
  201. package/dist-types/waiters/waitForCertificateDisassociated.d.ts +16 -0
  202. package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
  203. package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
  204. package/dist-types/waiters/waitForLinkAccepted.d.ts +1 -1
  205. package/dist-types/waiters/waitForLinkActive.d.ts +1 -1
  206. package/dist-types/waiters/waitForLinkDeleted.d.ts +1 -1
  207. package/dist-types/waiters/waitForLinkRoutingRuleActive.d.ts +15 -0
  208. package/dist-types/waiters/waitForLinkRoutingRuleDeleted.d.ts +16 -0
  209. package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
  210. package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
  211. package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +1 -1
  212. package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
  213. package/dist-types/waiters/waitForResponderGatewayActive.d.ts +1 -1
  214. package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
  215. package/package.json +13 -35
@@ -1,4 +1,7 @@
1
1
  const _A = "Action";
2
+ const _AC = "AssociateCertificate";
3
+ const _ACR = "AssociateCertificateRequest";
4
+ const _ACRs = "AssociateCertificateResponse";
2
5
  const _ADE = "AccessDeniedException";
3
6
  const _AL = "AcceptLink";
4
7
  const _ALR = "AcceptLinkRequest";
@@ -6,12 +9,17 @@ const _ALRc = "AcceptLinkResponse";
6
9
  const _ASGC = "AutoScalingGroupsConfiguration";
7
10
  const _BECC = "Base64EncodedCertificateChain";
8
11
  const _CAC = "CertificateAuthorityCertificates";
12
+ const _CAS = "CertificateAssociationSummary";
13
+ const _CASL = "CertificateAssociationSummaryList";
9
14
  const _CE = "ConflictException";
10
15
  const _CIEL = "CreateInboundExternalLink";
11
16
  const _CIELR = "CreateInboundExternalLinkRequest";
12
17
  const _CIELRr = "CreateInboundExternalLinkResponse";
13
18
  const _CL = "CreateLink";
14
19
  const _CLR = "CreateLinkRequest";
20
+ const _CLRR = "CreateLinkRoutingRule";
21
+ const _CLRRR = "CreateLinkRoutingRuleRequest";
22
+ const _CLRRRr = "CreateLinkRoutingRuleResponse";
15
23
  const _CLRr = "CreateLinkResponse";
16
24
  const _COEL = "CreateOutboundExternalLink";
17
25
  const _COELR = "CreateOutboundExternalLinkRequest";
@@ -22,11 +30,17 @@ const _CRGRr = "CreateRequesterGatewayResponse";
22
30
  const _CRGRre = "CreateResponderGatewayRequest";
23
31
  const _CRGRrea = "CreateResponderGatewayResponse";
24
32
  const _CRGr = "CreateResponderGateway";
33
+ const _DC = "DisassociateCertificate";
34
+ const _DCR = "DisassociateCertificateRequest";
35
+ const _DCRi = "DisassociateCertificateResponse";
25
36
  const _DIEL = "DeleteInboundExternalLink";
26
37
  const _DIELR = "DeleteInboundExternalLinkRequest";
27
38
  const _DIELRe = "DeleteInboundExternalLinkResponse";
28
39
  const _DL = "DeleteLink";
29
40
  const _DLR = "DeleteLinkRequest";
41
+ const _DLRR = "DeleteLinkRoutingRule";
42
+ const _DLRRR = "DeleteLinkRoutingRuleRequest";
43
+ const _DLRRRe = "DeleteLinkRoutingRuleResponse";
30
44
  const _DLRe = "DeleteLinkResponse";
31
45
  const _DOEL = "DeleteOutboundExternalLink";
32
46
  const _DOELR = "DeleteOutboundExternalLinkRequest";
@@ -42,11 +56,17 @@ const _F = "Filter";
42
56
  const _FC = "FilterCriterion";
43
57
  const _FCi = "FilterConfiguration";
44
58
  const _FCil = "FilterCriteria";
59
+ const _GCA = "GetCertificateAssociation";
60
+ const _GCAR = "GetCertificateAssociationRequest";
61
+ const _GCARe = "GetCertificateAssociationResponse";
45
62
  const _GIEL = "GetInboundExternalLink";
46
63
  const _GIELR = "GetInboundExternalLinkRequest";
47
64
  const _GIELRe = "GetInboundExternalLinkResponse";
48
65
  const _GL = "GetLink";
49
66
  const _GLR = "GetLinkRequest";
67
+ const _GLRR = "GetLinkRoutingRule";
68
+ const _GLRRR = "GetLinkRoutingRuleRequest";
69
+ const _GLRRRe = "GetLinkRoutingRuleResponse";
50
70
  const _GLRe = "GetLinkResponse";
51
71
  const _GOEL = "GetOutboundExternalLink";
52
72
  const _GOELR = "GetOutboundExternalLinkRequest";
@@ -64,8 +84,14 @@ const _LA = "LinkAttributes";
64
84
  const _LALC = "LinkApplicationLogConfiguration";
65
85
  const _LALS = "LinkApplicationLogSampling";
66
86
  const _LC = "ListenerConfig";
87
+ const _LCA = "ListCertificateAssociations";
88
+ const _LCAR = "ListCertificateAssociationsRequest";
89
+ const _LCARi = "ListCertificateAssociationsResponse";
67
90
  const _LL = "LinkList";
68
91
  const _LLR = "ListLinksRequest";
92
+ const _LLRR = "ListLinkRoutingRules";
93
+ const _LLRRR = "ListLinkRoutingRulesRequest";
94
+ const _LLRRRi = "ListLinkRoutingRulesResponse";
69
95
  const _LLRS = "ListLinksResponseStructure";
70
96
  const _LLRi = "ListLinksResponse";
71
97
  const _LLS = "LinkLogSettings";
@@ -76,6 +102,8 @@ const _LRGRi = "ListRequesterGatewaysResponse";
76
102
  const _LRGRis = "ListResponderGatewaysRequest";
77
103
  const _LRGRist = "ListResponderGatewaysResponse";
78
104
  const _LRGi = "ListResponderGateways";
105
+ const _LRRL = "LinkRoutingRuleList";
106
+ const _LRRS = "LinkRoutingRuleSummary";
79
107
  const _LTFR = "ListTagsForResource";
80
108
  const _LTFRR = "ListTagsForResourceRequest";
81
109
  const _LTFRRi = "ListTagsForResourceResponse";
@@ -86,6 +114,8 @@ const _MP = "ModuleParameters";
86
114
  const _NBA = "NoBidAction";
87
115
  const _NBMP = "NoBidModuleParameters";
88
116
  const _ORAMP = "OpenRtbAttributeModuleParameters";
117
+ const _QSKVP = "QueryStringKeyValuePair";
118
+ const _RC = "RuleCondition";
89
119
  const _REM = "ResponderErrorMasking";
90
120
  const _REMFHC = "ResponderErrorMaskingForHttpCode";
91
121
  const _RL = "RejectLink";
@@ -104,6 +134,9 @@ const _ULMF = "UpdateLinkModuleFlow";
104
134
  const _ULMFR = "UpdateLinkModuleFlowRequest";
105
135
  const _ULMFRp = "UpdateLinkModuleFlowResponse";
106
136
  const _ULR = "UpdateLinkRequest";
137
+ const _ULRR = "UpdateLinkRoutingRule";
138
+ const _ULRRR = "UpdateLinkRoutingRuleRequest";
139
+ const _ULRRRp = "UpdateLinkRoutingRuleResponse";
107
140
  const _ULRp = "UpdateLinkResponse";
108
141
  const _UR = "UntagResource";
109
142
  const _URG = "UpdateRequesterGateway";
@@ -116,6 +149,8 @@ const _URR = "UntagResourceRequest";
116
149
  const _URRn = "UntagResourceResponse";
117
150
  const _VE = "ValidationException";
118
151
  const _a = "attributes";
152
+ const _aA = "associatedAt";
153
+ const _aCA = "acmCertificateArn";
119
154
  const _aL = "applicationLogs";
120
155
  const _aLC = "activeLinksCount";
121
156
  const _aSG = "autoScalingGroups";
@@ -126,10 +161,12 @@ const _cA = "createdAt";
126
161
  const _cAC = "certificateAuthorityCertificates";
127
162
  const _cASCCC = "clusterApiServerCaCertificateChain";
128
163
  const _cASEU = "clusterApiServerEndpointUri";
164
+ const _cAe = "certificateAssociations";
129
165
  const _cN = "clusterName";
130
166
  const _cPI = "customerProvidedId";
131
167
  const _cT = "connectivityType";
132
168
  const _cTl = "clientToken";
169
+ const _co = "conditions";
133
170
  const _cr = "criteria";
134
171
  const _d = "direction";
135
172
  const _dN = "domainName";
@@ -152,6 +189,8 @@ const _h = "http";
152
189
  const _hC = "httpCode";
153
190
  const _hCC = "healthCheckConfig";
154
191
  const _hE = "httpError";
192
+ const _hH = "hostHeader";
193
+ const _hHW = "hostHeaderWildcard";
155
194
  const _hP = "holdbackPercentage";
156
195
  const _hQ = "httpQuery";
157
196
  const _hRA = "httpResponderAllowed";
@@ -159,6 +198,7 @@ const _hT = "headerTag";
159
198
  const _hTC = "healthyThresholdCount";
160
199
  const _iLC = "inboundLinksCount";
161
200
  const _iS = "intervalSeconds";
201
+ const _k = "key";
162
202
  const _l = "links";
163
203
  const _lC = "listenerConfig";
164
204
  const _lI = "linkId";
@@ -174,21 +214,28 @@ const _nB = "noBid";
174
214
  const _nBRC = "noBidReasonCode";
175
215
  const _nT = "nextToken";
176
216
  const _oRA = "openRtbAttribute";
177
- const _p = "port";
217
+ const _p = "priority";
178
218
  const _pE = "publicEndpoint";
219
+ const _pEa = "pathExact";
179
220
  const _pFM = "pendingFlowModules";
180
221
  const _pGI = "peerGatewayId";
222
+ const _pP = "pathPrefix";
181
223
  const _pTP = "passThroughPercentage";
182
224
  const _pa = "path";
225
+ const _po = "port";
183
226
  const _pr = "protocol";
184
227
  const _pro = "protocols";
185
- const _r = "reason";
228
+ const _qSE = "queryStringEquals";
229
+ const _qSEu = "queryStringExists";
230
+ const _r = "rules";
186
231
  const _rA = "roleArn";
187
232
  const _rAe = "resourceArn";
188
233
  const _rC = "reasonCode";
189
234
  const _rEM = "responderErrorMasking";
235
+ const _rI = "ruleId";
190
236
  const _rL = "rateLimiter";
191
237
  const _rLP = "responseLoggingPercentage";
238
+ const _re = "reason";
192
239
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rtbfabric";
193
240
  const _sCM = "statusCodeMatcher";
194
241
  const _sGI = "securityGroupIds";
@@ -274,11 +321,26 @@ export var AcceptLinkResponse$ = [3, n0, _ALRc,
274
321
  [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
275
322
  [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0], 6
276
323
  ];
324
+ export var AssociateCertificateRequest$ = [3, n0, _ACR,
325
+ 0,
326
+ [_gI, _aCA, _cTl],
327
+ [[0, 1], 0, [0, 4]], 2
328
+ ];
329
+ export var AssociateCertificateResponse$ = [3, n0, _ACRs,
330
+ 0,
331
+ [_gI, _aCA, _st],
332
+ [0, 0, 0], 3
333
+ ];
277
334
  export var AutoScalingGroupsConfiguration$ = [3, n0, _ASGC,
278
335
  0,
279
336
  [_aSGN, _rA, _hCC],
280
337
  [64 | 0, 0, () => HealthCheckConfig$], 2
281
338
  ];
339
+ export var CertificateAssociationSummary$ = [3, n0, _CAS,
340
+ 0,
341
+ [_aCA, _st, _aA, _uA],
342
+ [0, 0, 4, 4], 2
343
+ ];
282
344
  export var CreateInboundExternalLinkRequest$ = [3, n0, _CIELR,
283
345
  0,
284
346
  [_gI, _lS, _cTl, _a, _t],
@@ -299,6 +361,16 @@ export var CreateLinkResponse$ = [3, n0, _CLRr,
299
361
  [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _cPI],
300
362
  [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 0], 6
301
363
  ];
364
+ export var CreateLinkRoutingRuleRequest$ = [3, n0, _CLRRR,
365
+ 0,
366
+ [_gI, _lI, _p, _co, _cTl, _t],
367
+ [[0, 1], [0, 1], 1, () => RuleCondition$, [0, 4], 128 | 0], 4
368
+ ];
369
+ export var CreateLinkRoutingRuleResponse$ = [3, n0, _CLRRRr,
370
+ 0,
371
+ [_rI, _st, _cA],
372
+ [0, 0, 4], 3
373
+ ];
302
374
  export var CreateOutboundExternalLinkRequest$ = [3, n0, _COELR,
303
375
  0,
304
376
  [_gI, _pE, _lS, _cTl, _a, _t],
@@ -321,7 +393,7 @@ export var CreateRequesterGatewayResponse$ = [3, n0, _CRGRr,
321
393
  ];
322
394
  export var CreateResponderGatewayRequest$ = [3, n0, _CRGRre,
323
395
  0,
324
- [_vI, _sI, _sGI, _p, _pr, _dN, _lC, _tSC, _mEC, _cTl, _de, _t, _gT],
396
+ [_vI, _sI, _sGI, _po, _pr, _dN, _lC, _tSC, _mEC, _cTl, _de, _t, _gT],
325
397
  [0, 64 | 0, 64 | 0, 1, 0, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], [0, 4], 0, 128 | 0, 0], 5
326
398
  ];
327
399
  export var CreateResponderGatewayResponse$ = [3, n0, _CRGRrea,
@@ -349,6 +421,16 @@ export var DeleteLinkResponse$ = [3, n0, _DLRe,
349
421
  [_lI, _st],
350
422
  [0, 0], 2
351
423
  ];
424
+ export var DeleteLinkRoutingRuleRequest$ = [3, n0, _DLRRR,
425
+ 0,
426
+ [_gI, _lI, _rI],
427
+ [[0, 1], [0, 1], [0, 1]], 3
428
+ ];
429
+ export var DeleteLinkRoutingRuleResponse$ = [3, n0, _DLRRRe,
430
+ 0,
431
+ [_rI, _st],
432
+ [0, 0], 2
433
+ ];
352
434
  export var DeleteOutboundExternalLinkRequest$ = [3, n0, _DOELR,
353
435
  0,
354
436
  [_gI, _lI],
@@ -379,6 +461,16 @@ export var DeleteResponderGatewayResponse$ = [3, n0, _DRGRele,
379
461
  [_gI, _st],
380
462
  [0, 0], 2
381
463
  ];
464
+ export var DisassociateCertificateRequest$ = [3, n0, _DCR,
465
+ 0,
466
+ [_gI, _aCA],
467
+ [[0, 1], [0, { [_hQ]: _aCA }]], 2
468
+ ];
469
+ export var DisassociateCertificateResponse$ = [3, n0, _DCRi,
470
+ 0,
471
+ [_gI, _aCA, _st],
472
+ [0, 0, 0], 3
473
+ ];
382
474
  export var EksEndpointsConfiguration$ = [3, n0, _EEC,
383
475
  0,
384
476
  [_eRN, _eRNn, _cASEU, _cASCCC, _cN, _rA],
@@ -394,6 +486,16 @@ export var FilterCriterion$ = [3, n0, _FC,
394
486
  [_pa, _v],
395
487
  [0, 64 | 0], 2
396
488
  ];
489
+ export var GetCertificateAssociationRequest$ = [3, n0, _GCAR,
490
+ 0,
491
+ [_gI, _aCA],
492
+ [[0, 1], [0, { [_hQ]: _aCA }]], 2
493
+ ];
494
+ export var GetCertificateAssociationResponse$ = [3, n0, _GCARe,
495
+ 0,
496
+ [_gI, _aCA, _st, _aA, _uA],
497
+ [0, 0, 0, 4, 4], 3
498
+ ];
397
499
  export var GetInboundExternalLinkRequest$ = [3, n0, _GIELR,
398
500
  0,
399
501
  [_gI, _lI],
@@ -414,6 +516,16 @@ export var GetLinkResponse$ = [3, n0, _GLRe,
414
516
  [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _hRA, _tIM],
415
517
  [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 128 | 0, 2, 1], 6
416
518
  ];
519
+ export var GetLinkRoutingRuleRequest$ = [3, n0, _GLRRR,
520
+ 0,
521
+ [_gI, _lI, _rI],
522
+ [[0, 1], [0, 1], [0, 1]], 3
523
+ ];
524
+ export var GetLinkRoutingRuleResponse$ = [3, n0, _GLRRRe,
525
+ 0,
526
+ [_gI, _lI, _rI, _p, _co, _st, _cA, _uA, _t],
527
+ [0, 0, 0, 1, () => RuleCondition$, 0, 4, 4, 128 | 0], 8
528
+ ];
417
529
  export var GetOutboundExternalLinkRequest$ = [3, n0, _GOELR,
418
530
  0,
419
531
  [_gI, _lI],
@@ -441,7 +553,7 @@ export var GetResponderGatewayRequest$ = [3, n0, _GRGRet,
441
553
  ];
442
554
  export var GetResponderGatewayResponse$ = [3, n0, _GRGRete,
443
555
  0,
444
- [_vI, _sI, _sGI, _st, _p, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _gT, _eIE],
556
+ [_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _gT, _eIE],
445
557
  [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 0, 0], 7
446
558
  ];
447
559
  export var HeaderTagAction$ = [3, n0, _HTA,
@@ -451,7 +563,7 @@ export var HeaderTagAction$ = [3, n0, _HTA,
451
563
  ];
452
564
  export var HealthCheckConfig$ = [3, n0, _HCC,
453
565
  0,
454
- [_p, _pa, _pr, _tM, _iS, _sCM, _hTC, _uTC],
566
+ [_po, _pa, _pr, _tM, _iS, _sCM, _hTC, _uTC],
455
567
  [1, 0, 0, 1, 1, 0, 1, 1], 2
456
568
  ];
457
569
  export var LinkApplicationLogConfiguration$ = [3, n0, _LALC,
@@ -474,11 +586,36 @@ export var LinkLogSettings$ = [3, n0, _LLS,
474
586
  [_aL],
475
587
  [() => LinkApplicationLogConfiguration$], 1
476
588
  ];
589
+ export var LinkRoutingRuleSummary$ = [3, n0, _LRRS,
590
+ 0,
591
+ [_rI, _p, _co, _st, _cA, _uA],
592
+ [0, 1, () => RuleCondition$, 0, 4, 4], 6
593
+ ];
594
+ export var ListCertificateAssociationsRequest$ = [3, n0, _LCAR,
595
+ 0,
596
+ [_gI, _nT, _mR],
597
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
598
+ ];
599
+ export var ListCertificateAssociationsResponse$ = [3, n0, _LCARi,
600
+ 0,
601
+ [_cAe, _nT],
602
+ [() => CertificateAssociationSummaryList, 0], 1
603
+ ];
477
604
  export var ListenerConfig$ = [3, n0, _LC,
478
605
  0,
479
606
  [_pro],
480
607
  [64 | 0], 1
481
608
  ];
609
+ export var ListLinkRoutingRulesRequest$ = [3, n0, _LLRRR,
610
+ 0,
611
+ [_gI, _lI, _nT, _mR],
612
+ [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
613
+ ];
614
+ export var ListLinkRoutingRulesResponse$ = [3, n0, _LLRRRi,
615
+ 0,
616
+ [_r, _nT],
617
+ [() => LinkRoutingRuleList, 0]
618
+ ];
482
619
  export var ListLinksRequest$ = [3, n0, _LLR,
483
620
  0,
484
621
  [_gI, _nT, _mR],
@@ -536,7 +673,7 @@ export var NoBidAction$ = [3, n0, _NBA,
536
673
  ];
537
674
  export var NoBidModuleParameters$ = [3, n0, _NBMP,
538
675
  0,
539
- [_r, _rC, _pTP],
676
+ [_re, _rC, _pTP],
540
677
  [0, 1, 1]
541
678
  ];
542
679
  export var OpenRtbAttributeModuleParameters$ = [3, n0, _ORAMP,
@@ -544,6 +681,11 @@ export var OpenRtbAttributeModuleParameters$ = [3, n0, _ORAMP,
544
681
  [_fT, _fC, _ac, _hP],
545
682
  [0, () => FilterConfiguration, () => Action$, 1], 4
546
683
  ];
684
+ export var QueryStringKeyValuePair$ = [3, n0, _QSKVP,
685
+ 0,
686
+ [_k, _va],
687
+ [0, 0], 2
688
+ ];
547
689
  export var RateLimiterModuleParameters$ = [3, n0, _RLMP,
548
690
  0,
549
691
  [_tp],
@@ -564,6 +706,11 @@ export var ResponderErrorMaskingForHttpCode$ = [3, n0, _REMFHC,
564
706
  [_hC, _ac, _lT, _rLP],
565
707
  [0, 0, 64 | 0, 1], 3
566
708
  ];
709
+ export var RuleCondition$ = [3, n0, _RC,
710
+ 0,
711
+ [_hH, _hHW, _pP, _pEa, _qSE, _qSEu],
712
+ [0, 0, 0, 0, () => QueryStringKeyValuePair$, 0]
713
+ ];
567
714
  export var TagResourceRequest$ = [3, n0, _TRR,
568
715
  0,
569
716
  [_rAe, _t],
@@ -609,6 +756,16 @@ export var UpdateLinkResponse$ = [3, n0, _ULRp,
609
756
  [_lI, _st],
610
757
  [0, 0], 2
611
758
  ];
759
+ export var UpdateLinkRoutingRuleRequest$ = [3, n0, _ULRRR,
760
+ 0,
761
+ [_gI, _lI, _rI, _p, _co],
762
+ [[0, 1], [0, 1], [0, 1], 1, () => RuleCondition$], 5
763
+ ];
764
+ export var UpdateLinkRoutingRuleResponse$ = [3, n0, _ULRRRp,
765
+ 0,
766
+ [_rI, _st, _uA],
767
+ [0, 0, 4], 3
768
+ ];
612
769
  export var UpdateRequesterGatewayRequest$ = [3, n0, _URGR,
613
770
  0,
614
771
  [_gI, _cTl, _de],
@@ -621,7 +778,7 @@ export var UpdateRequesterGatewayResponse$ = [3, n0, _URGRp,
621
778
  ];
622
779
  export var UpdateResponderGatewayRequest$ = [3, n0, _URGRpd,
623
780
  0,
624
- [_p, _pr, _gI, _dN, _lC, _tSC, _mEC, _cTl, _de],
781
+ [_po, _pr, _gI, _dN, _lC, _tSC, _mEC, _cTl, _de],
625
782
  [1, 0, [0, 1], 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], [0, 4], 0], 3
626
783
  ];
627
784
  export var UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
@@ -630,6 +787,9 @@ export var UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
630
787
  [0, 0], 2
631
788
  ];
632
789
  var AutoScalingGroupNameList = 64 | 0;
790
+ var CertificateAssociationSummaryList = [1, n0, _CASL,
791
+ 0, () => CertificateAssociationSummary$
792
+ ];
633
793
  var CertificateAuthorityCertificates = [1, n0, _CAC,
634
794
  0, [() => Base64EncodedCertificateChain,
635
795
  0]
@@ -645,6 +805,9 @@ var GatewayIdList = 64 | 0;
645
805
  var LinkList = [1, n0, _LL,
646
806
  0, () => ListLinksResponseStructure$
647
807
  ];
808
+ var LinkRoutingRuleList = [1, n0, _LRRL,
809
+ 0, () => LinkRoutingRuleSummary$
810
+ ];
648
811
  var ModuleConfigurationList = [1, n0, _MCL,
649
812
  0, () => ModuleConfiguration$
650
813
  ];
@@ -676,12 +839,18 @@ export var ModuleParameters$ = [4, n0, _MP,
676
839
  export var AcceptLink$ = [9, n0, _AL,
677
840
  { [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/accept", 200] }, () => AcceptLinkRequest$, () => AcceptLinkResponse$
678
841
  ];
842
+ export var AssociateCertificate$ = [9, n0, _AC,
843
+ { [_h]: ["POST", "/responder-gateway/{gatewayId}/certificate", 200] }, () => AssociateCertificateRequest$, () => AssociateCertificateResponse$
844
+ ];
679
845
  export var CreateInboundExternalLink$ = [9, n0, _CIEL,
680
846
  { [_h]: ["POST", "/responder-gateway/{gatewayId}/inbound-external-link", 200] }, () => CreateInboundExternalLinkRequest$, () => CreateInboundExternalLinkResponse$
681
847
  ];
682
848
  export var CreateLink$ = [9, n0, _CL,
683
849
  { [_h]: ["POST", "/gateway/{gatewayId}/create-link", 200] }, () => CreateLinkRequest$, () => CreateLinkResponse$
684
850
  ];
851
+ export var CreateLinkRoutingRule$ = [9, n0, _CLRR,
852
+ { [_h]: ["POST", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule", 200] }, () => CreateLinkRoutingRuleRequest$, () => CreateLinkRoutingRuleResponse$
853
+ ];
685
854
  export var CreateOutboundExternalLink$ = [9, n0, _COEL,
686
855
  { [_h]: ["POST", "/requester-gateway/{gatewayId}/outbound-external-link", 200] }, () => CreateOutboundExternalLinkRequest$, () => CreateOutboundExternalLinkResponse$
687
856
  ];
@@ -697,6 +866,9 @@ export var DeleteInboundExternalLink$ = [9, n0, _DIEL,
697
866
  export var DeleteLink$ = [9, n0, _DL,
698
867
  { [_h]: ["DELETE", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => DeleteLinkRequest$, () => DeleteLinkResponse$
699
868
  ];
869
+ export var DeleteLinkRoutingRule$ = [9, n0, _DLRR,
870
+ { [_h]: ["DELETE", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => DeleteLinkRoutingRuleRequest$, () => DeleteLinkRoutingRuleResponse$
871
+ ];
700
872
  export var DeleteOutboundExternalLink$ = [9, n0, _DOEL,
701
873
  { [_h]: ["DELETE", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => DeleteOutboundExternalLinkRequest$, () => DeleteOutboundExternalLinkResponse$
702
874
  ];
@@ -706,12 +878,21 @@ export var DeleteRequesterGateway$ = [9, n0, _DRG,
706
878
  export var DeleteResponderGateway$ = [9, n0, _DRGe,
707
879
  { [_h]: ["DELETE", "/responder-gateway/{gatewayId}", 200] }, () => DeleteResponderGatewayRequest$, () => DeleteResponderGatewayResponse$
708
880
  ];
881
+ export var DisassociateCertificate$ = [9, n0, _DC,
882
+ { [_h]: ["DELETE", "/responder-gateway/{gatewayId}/certificate", 200] }, () => DisassociateCertificateRequest$, () => DisassociateCertificateResponse$
883
+ ];
884
+ export var GetCertificateAssociation$ = [9, n0, _GCA,
885
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/certificate", 200] }, () => GetCertificateAssociationRequest$, () => GetCertificateAssociationResponse$
886
+ ];
709
887
  export var GetInboundExternalLink$ = [9, n0, _GIEL,
710
888
  { [_h]: ["GET", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200] }, () => GetInboundExternalLinkRequest$, () => GetInboundExternalLinkResponse$
711
889
  ];
712
890
  export var GetLink$ = [9, n0, _GL,
713
891
  { [_h]: ["GET", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => GetLinkRequest$, () => GetLinkResponse$
714
892
  ];
893
+ export var GetLinkRoutingRule$ = [9, n0, _GLRR,
894
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => GetLinkRoutingRuleRequest$, () => GetLinkRoutingRuleResponse$
895
+ ];
715
896
  export var GetOutboundExternalLink$ = [9, n0, _GOEL,
716
897
  { [_h]: ["GET", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => GetOutboundExternalLinkRequest$, () => GetOutboundExternalLinkResponse$
717
898
  ];
@@ -721,6 +902,12 @@ export var GetRequesterGateway$ = [9, n0, _GRG,
721
902
  export var GetResponderGateway$ = [9, n0, _GRGe,
722
903
  { [_h]: ["GET", "/responder-gateway/{gatewayId}", 200] }, () => GetResponderGatewayRequest$, () => GetResponderGatewayResponse$
723
904
  ];
905
+ export var ListCertificateAssociations$ = [9, n0, _LCA,
906
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/certificates", 200] }, () => ListCertificateAssociationsRequest$, () => ListCertificateAssociationsResponse$
907
+ ];
908
+ export var ListLinkRoutingRules$ = [9, n0, _LLRR,
909
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rules", 200] }, () => ListLinkRoutingRulesRequest$, () => ListLinkRoutingRulesResponse$
910
+ ];
724
911
  export var ListLinks$ = [9, n0, _LLi,
725
912
  { [_h]: ["GET", "/gateway/{gatewayId}/links/", 200] }, () => ListLinksRequest$, () => ListLinksResponse$
726
913
  ];
@@ -748,6 +935,9 @@ export var UpdateLink$ = [9, n0, _UL,
748
935
  export var UpdateLinkModuleFlow$ = [9, n0, _ULMF,
749
936
  { [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/module-flow", 200] }, () => UpdateLinkModuleFlowRequest$, () => UpdateLinkModuleFlowResponse$
750
937
  ];
938
+ export var UpdateLinkRoutingRule$ = [9, n0, _ULRR,
939
+ { [_h]: ["PUT", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => UpdateLinkRoutingRuleRequest$, () => UpdateLinkRoutingRuleResponse$
940
+ ];
751
941
  export var UpdateRequesterGateway$ = [9, n0, _URG,
752
942
  { [_h]: ["POST", "/requester-gateway/{gatewayId}/update", 200] }, () => UpdateRequesterGatewayRequest$, () => UpdateRequesterGatewayResponse$
753
943
  ];
@@ -1,8 +1,12 @@
1
+ export * from "./waitForCertificateAssociated";
2
+ export * from "./waitForCertificateDisassociated";
1
3
  export * from "./waitForInboundExternalLinkActive";
2
4
  export * from "./waitForInboundExternalLinkDeleted";
3
5
  export * from "./waitForLinkAccepted";
4
6
  export * from "./waitForLinkActive";
5
7
  export * from "./waitForLinkDeleted";
8
+ export * from "./waitForLinkRoutingRuleActive";
9
+ export * from "./waitForLinkRoutingRuleDeleted";
6
10
  export * from "./waitForOutboundExternalLinkActive";
7
11
  export * from "./waitForOutboundExternalLinkDeleted";
8
12
  export * from "./waitForRequesterGatewayActive";
@@ -0,0 +1,61 @@
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
+ import { GetCertificateAssociationCommand, } from "../commands/GetCertificateAssociationCommand";
3
+ const checkState = async (client, input) => {
4
+ let reason;
5
+ try {
6
+ let result = await client.send(new GetCertificateAssociationCommand(input));
7
+ reason = result;
8
+ try {
9
+ const returnComparator = () => {
10
+ return result.status;
11
+ };
12
+ if (returnComparator() === "ASSOCIATED") {
13
+ return { state: WaiterState.SUCCESS, reason };
14
+ }
15
+ }
16
+ catch (e) { }
17
+ try {
18
+ const returnComparator = () => {
19
+ return result.status;
20
+ };
21
+ if (returnComparator() === "FAILED") {
22
+ return { state: WaiterState.FAILURE, reason };
23
+ }
24
+ }
25
+ catch (e) { }
26
+ try {
27
+ const returnComparator = () => {
28
+ return result.status;
29
+ };
30
+ if (returnComparator() === "DISASSOCIATED") {
31
+ return { state: WaiterState.FAILURE, reason };
32
+ }
33
+ }
34
+ catch (e) { }
35
+ try {
36
+ const returnComparator = () => {
37
+ return result.status;
38
+ };
39
+ if (returnComparator() === "PENDING_DISASSOCIATION") {
40
+ return { state: WaiterState.FAILURE, reason };
41
+ }
42
+ }
43
+ catch (e) { }
44
+ }
45
+ catch (exception) {
46
+ reason = exception;
47
+ if (exception.name === "ResourceNotFoundException") {
48
+ return { state: WaiterState.FAILURE, reason };
49
+ }
50
+ }
51
+ return { state: WaiterState.RETRY, reason };
52
+ };
53
+ export const waitForCertificateAssociated = async (params, input) => {
54
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
55
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
56
+ };
57
+ export const waitUntilCertificateAssociated = async (params, input) => {
58
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
59
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
60
+ return checkExceptions(result);
61
+ };
@@ -0,0 +1,52 @@
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
+ import { GetCertificateAssociationCommand, } from "../commands/GetCertificateAssociationCommand";
3
+ const checkState = async (client, input) => {
4
+ let reason;
5
+ try {
6
+ let result = await client.send(new GetCertificateAssociationCommand(input));
7
+ reason = result;
8
+ try {
9
+ const returnComparator = () => {
10
+ return result.status;
11
+ };
12
+ if (returnComparator() === "DISASSOCIATED") {
13
+ return { state: WaiterState.SUCCESS, reason };
14
+ }
15
+ }
16
+ catch (e) { }
17
+ try {
18
+ const returnComparator = () => {
19
+ return result.status;
20
+ };
21
+ if (returnComparator() === "FAILED") {
22
+ return { state: WaiterState.FAILURE, reason };
23
+ }
24
+ }
25
+ catch (e) { }
26
+ try {
27
+ const returnComparator = () => {
28
+ return result.status;
29
+ };
30
+ if (returnComparator() === "PENDING_ASSOCIATION") {
31
+ return { state: WaiterState.FAILURE, reason };
32
+ }
33
+ }
34
+ catch (e) { }
35
+ }
36
+ catch (exception) {
37
+ reason = exception;
38
+ if (exception.name === "ResourceNotFoundException") {
39
+ return { state: WaiterState.SUCCESS, reason };
40
+ }
41
+ }
42
+ return { state: WaiterState.RETRY, reason };
43
+ };
44
+ export const waitForCertificateDisassociated = async (params, input) => {
45
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
46
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
47
+ };
48
+ export const waitUntilCertificateDisassociated = async (params, input) => {
49
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
50
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
51
+ return checkExceptions(result);
52
+ };
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
2
  import { GetInboundExternalLinkCommand, } from "../commands/GetInboundExternalLinkCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
2
  import { GetInboundExternalLinkCommand, } from "../commands/GetInboundExternalLinkCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
2
  import { GetLinkCommand } from "../commands/GetLinkCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
2
  import { GetLinkCommand } from "../commands/GetLinkCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
@@ -1,4 +1,4 @@
1
- import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/core/client";
2
2
  import { GetLinkCommand } from "../commands/GetLinkCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;