@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
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { AssociateCertificate$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class AssociateCertificateCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "AssociateCertificate", {})
13
+ .n("RTBFabricClient", "AssociateCertificateCommand")
14
+ .sc(AssociateCertificate$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { CreateInboundExternalLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { CreateLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateLinkRoutingRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateLinkRoutingRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "CreateLinkRoutingRule", {})
13
+ .n("RTBFabricClient", "CreateLinkRoutingRuleCommand")
14
+ .sc(CreateLinkRoutingRule$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { CreateOutboundExternalLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { CreateRequesterGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { CreateResponderGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { DeleteInboundExternalLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { DeleteLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteLinkRoutingRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteLinkRoutingRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "DeleteLinkRoutingRule", {})
13
+ .n("RTBFabricClient", "DeleteLinkRoutingRuleCommand")
14
+ .sc(DeleteLinkRoutingRule$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { DeleteOutboundExternalLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { DeleteRequesterGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { DeleteResponderGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DisassociateCertificate$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DisassociateCertificateCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "DisassociateCertificate", {})
13
+ .n("RTBFabricClient", "DisassociateCertificateCommand")
14
+ .sc(DisassociateCertificate$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetCertificateAssociation$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetCertificateAssociationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "GetCertificateAssociation", {})
13
+ .n("RTBFabricClient", "GetCertificateAssociationCommand")
14
+ .sc(GetCertificateAssociation$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { GetInboundExternalLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { GetLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetLinkRoutingRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetLinkRoutingRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "GetLinkRoutingRule", {})
13
+ .n("RTBFabricClient", "GetLinkRoutingRuleCommand")
14
+ .sc(GetLinkRoutingRule$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { GetOutboundExternalLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { GetRequesterGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { GetResponderGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListCertificateAssociations$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListCertificateAssociationsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "ListCertificateAssociations", {})
13
+ .n("RTBFabricClient", "ListCertificateAssociationsCommand")
14
+ .sc(ListCertificateAssociations$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListLinkRoutingRules$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListLinkRoutingRulesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "ListLinkRoutingRules", {})
13
+ .n("RTBFabricClient", "ListLinkRoutingRulesCommand")
14
+ .sc(ListLinkRoutingRules$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { ListLinks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { ListRequesterGateways$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { ListResponderGateways$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { RejectLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { UpdateLink$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { UpdateLinkModuleFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateLinkRoutingRule$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateLinkRoutingRuleCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("RTBFabric", "UpdateLinkRoutingRule", {})
13
+ .n("RTBFabricClient", "UpdateLinkRoutingRuleCommand")
14
+ .sc(UpdateLinkRoutingRule$)
15
+ .build() {
16
+ }
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { UpdateRequesterGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { UpdateResponderGateway$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,19 +1,27 @@
1
1
  export * from "./AcceptLinkCommand";
2
+ export * from "./AssociateCertificateCommand";
2
3
  export * from "./CreateInboundExternalLinkCommand";
3
4
  export * from "./CreateLinkCommand";
5
+ export * from "./CreateLinkRoutingRuleCommand";
4
6
  export * from "./CreateOutboundExternalLinkCommand";
5
7
  export * from "./CreateRequesterGatewayCommand";
6
8
  export * from "./CreateResponderGatewayCommand";
7
9
  export * from "./DeleteInboundExternalLinkCommand";
8
10
  export * from "./DeleteLinkCommand";
11
+ export * from "./DeleteLinkRoutingRuleCommand";
9
12
  export * from "./DeleteOutboundExternalLinkCommand";
10
13
  export * from "./DeleteRequesterGatewayCommand";
11
14
  export * from "./DeleteResponderGatewayCommand";
15
+ export * from "./DisassociateCertificateCommand";
16
+ export * from "./GetCertificateAssociationCommand";
12
17
  export * from "./GetInboundExternalLinkCommand";
13
18
  export * from "./GetLinkCommand";
19
+ export * from "./GetLinkRoutingRuleCommand";
14
20
  export * from "./GetOutboundExternalLinkCommand";
15
21
  export * from "./GetRequesterGatewayCommand";
16
22
  export * from "./GetResponderGatewayCommand";
23
+ export * from "./ListCertificateAssociationsCommand";
24
+ export * from "./ListLinkRoutingRulesCommand";
17
25
  export * from "./ListLinksCommand";
18
26
  export * from "./ListRequesterGatewaysCommand";
19
27
  export * from "./ListResponderGatewaysCommand";
@@ -23,5 +31,6 @@ export * from "./TagResourceCommand";
23
31
  export * from "./UntagResourceCommand";
24
32
  export * from "./UpdateLinkCommand";
25
33
  export * from "./UpdateLinkModuleFlowCommand";
34
+ export * from "./UpdateLinkRoutingRuleCommand";
26
35
  export * from "./UpdateRequesterGatewayCommand";
27
36
  export * from "./UpdateResponderGatewayCommand";
@@ -1,4 +1,4 @@
1
- import { BinaryDecisionDiagram } from "@smithy/util-endpoints";
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
2
  const k = "ref";
3
3
  const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
4
4
  const _data = {
@@ -1,5 +1,5 @@
1
1
  import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
- import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/util-endpoints";
2
+ import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/core/endpoints";
3
3
  import { bdd } from "./bdd";
4
4
  const cache = new EndpointCache({
5
5
  size: 50,
@@ -1,4 +1,4 @@
1
- import { ServiceException as __ServiceException, } from "@smithy/smithy-client";
1
+ import { ServiceException as __ServiceException, } from "@smithy/core/client";
2
2
  export { __ServiceException };
3
3
  export class RTBFabricServiceException extends __ServiceException {
4
4
  constructor(options) {
@@ -36,10 +36,25 @@ export const LinkStatus = {
36
36
  REJECTED: "REJECTED",
37
37
  REQUESTED: "REQUESTED",
38
38
  };
39
+ export const CertificateAssociationStatus = {
40
+ ASSOCIATED: "ASSOCIATED",
41
+ DISASSOCIATED: "DISASSOCIATED",
42
+ FAILED: "FAILED",
43
+ PENDING_ASSOCIATION: "PENDING_ASSOCIATION",
44
+ PENDING_DISASSOCIATION: "PENDING_DISASSOCIATION",
45
+ };
39
46
  export const Protocol = {
40
47
  HTTP: "HTTP",
41
48
  HTTPS: "HTTPS",
42
49
  };
50
+ export const RuleStatus = {
51
+ ACTIVE: "ACTIVE",
52
+ CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS",
53
+ DELETED: "DELETED",
54
+ DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS",
55
+ FAILED: "FAILED",
56
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
57
+ };
43
58
  export const RequesterGatewayStatus = {
44
59
  ACTIVE: "ACTIVE",
45
60
  DELETED: "DELETED",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListCertificateAssociationsCommand, } from "../commands/ListCertificateAssociationsCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export const paginateListCertificateAssociations = createPaginator(RTBFabricClient, ListCertificateAssociationsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListLinkRoutingRulesCommand, } from "../commands/ListLinkRoutingRulesCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export const paginateListLinkRoutingRules = createPaginator(RTBFabricClient, ListLinkRoutingRulesCommand, "nextToken", "nextToken", "maxResults");
@@ -1,4 +1,6 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListCertificateAssociationsPaginator";
3
+ export * from "./ListLinkRoutingRulesPaginator";
2
4
  export * from "./ListLinksPaginator";
3
5
  export * from "./ListRequesterGatewaysPaginator";
4
6
  export * from "./ListResponderGatewaysPaginator";
@@ -1,13 +1,11 @@
1
1
  import packageInfo from "../package.json";
2
2
  import { Sha256 } from "@aws-crypto/sha256-browser";
3
3
  import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser";
4
- import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver";
4
+ import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
6
+ import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/core/retry";
7
+ import { calculateBodyLength } from "@smithy/core/serde";
5
8
  import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler";
6
- import { invalidProvider } from "@smithy/invalid-dependency";
7
- import { loadConfigsForDefaultMode } from "@smithy/smithy-client";
8
- import { calculateBodyLength } from "@smithy/util-body-length-browser";
9
- import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser";
10
- import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry";
11
9
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
12
10
  export const getRuntimeConfig = (config) => {
13
11
  const defaultsMode = resolveDefaultsModeConfig(config);
@@ -3,15 +3,11 @@ import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/cor
3
3
  import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
4
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
5
5
  import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
6
- import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
7
- import { Hash } from "@smithy/hash-node";
8
- import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
9
- import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider";
6
+ import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
7
+ import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
8
+ import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
9
+ import { calculateBodyLength, Hash } from "@smithy/core/serde";
10
10
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
11
- import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client";
12
- import { calculateBodyLength } from "@smithy/util-body-length-node";
13
- import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node";
14
- import { DEFAULT_RETRY_MODE } from "@smithy/util-retry";
15
11
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
16
12
  export const getRuntimeConfig = (config) => {
17
13
  emitWarningIfUnsupportedVersion(process.version);
@@ -1,9 +1,8 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
- import { NoOpLogger } from "@smithy/smithy-client";
4
- import { parseUrl } from "@smithy/url-parser";
5
- import { fromBase64, toBase64 } from "@smithy/util-base64";
6
- import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
3
+ import { NoOpLogger } from "@smithy/core/client";
4
+ import { parseUrl } from "@smithy/core/protocols";
5
+ import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
7
6
  import { defaultRTBFabricHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
8
7
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
9
8
  import { errorTypeRegistries } from "./schemas/schemas_0";
@@ -1,6 +1,6 @@
1
1
  import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
2
- import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
- import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
2
+ import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/core/client";
3
+ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/core/protocols";
4
4
  import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
5
  export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
6
6
  const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));