@aws-sdk/client-rtbfabric 3.915.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 (191) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +421 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +2476 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +34 -0
  11. package/dist-es/RTBFabric.js +61 -0
  12. package/dist-es/RTBFabricClient.js +48 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AcceptLinkCommand.js +22 -0
  16. package/dist-es/commands/CreateInboundExternalLinkCommand.js +22 -0
  17. package/dist-es/commands/CreateLinkCommand.js +22 -0
  18. package/dist-es/commands/CreateOutboundExternalLinkCommand.js +22 -0
  19. package/dist-es/commands/CreateRequesterGatewayCommand.js +22 -0
  20. package/dist-es/commands/CreateResponderGatewayCommand.js +23 -0
  21. package/dist-es/commands/DeleteInboundExternalLinkCommand.js +22 -0
  22. package/dist-es/commands/DeleteLinkCommand.js +22 -0
  23. package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +22 -0
  24. package/dist-es/commands/DeleteRequesterGatewayCommand.js +22 -0
  25. package/dist-es/commands/DeleteResponderGatewayCommand.js +22 -0
  26. package/dist-es/commands/GetInboundExternalLinkCommand.js +22 -0
  27. package/dist-es/commands/GetLinkCommand.js +22 -0
  28. package/dist-es/commands/GetOutboundExternalLinkCommand.js +22 -0
  29. package/dist-es/commands/GetRequesterGatewayCommand.js +22 -0
  30. package/dist-es/commands/GetResponderGatewayCommand.js +23 -0
  31. package/dist-es/commands/ListLinksCommand.js +22 -0
  32. package/dist-es/commands/ListRequesterGatewaysCommand.js +22 -0
  33. package/dist-es/commands/ListResponderGatewaysCommand.js +22 -0
  34. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  35. package/dist-es/commands/RejectLinkCommand.js +22 -0
  36. package/dist-es/commands/TagResourceCommand.js +22 -0
  37. package/dist-es/commands/UntagResourceCommand.js +22 -0
  38. package/dist-es/commands/UpdateLinkCommand.js +22 -0
  39. package/dist-es/commands/UpdateLinkModuleFlowCommand.js +22 -0
  40. package/dist-es/commands/UpdateRequesterGatewayCommand.js +22 -0
  41. package/dist-es/commands/UpdateResponderGatewayCommand.js +23 -0
  42. package/dist-es/commands/index.js +27 -0
  43. package/dist-es/endpoint/EndpointParameters.js +13 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +7 -0
  48. package/dist-es/models/RTBFabricServiceException.js +8 -0
  49. package/dist-es/models/index.js +1 -0
  50. package/dist-es/models/models_0.js +219 -0
  51. package/dist-es/pagination/Interfaces.js +1 -0
  52. package/dist-es/pagination/ListLinksPaginator.js +4 -0
  53. package/dist-es/pagination/ListRequesterGatewaysPaginator.js +4 -0
  54. package/dist-es/pagination/ListResponderGatewaysPaginator.js +4 -0
  55. package/dist-es/pagination/index.js +4 -0
  56. package/dist-es/protocols/Aws_restJson1.js +1147 -0
  57. package/dist-es/runtimeConfig.browser.js +34 -0
  58. package/dist-es/runtimeConfig.js +51 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +30 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/waiters/index.js +8 -0
  63. package/dist-es/waiters/waitForInboundExternalLinkActive.js +67 -0
  64. package/dist-es/waiters/waitForLinkAccepted.js +58 -0
  65. package/dist-es/waiters/waitForLinkActive.js +58 -0
  66. package/dist-es/waiters/waitForOutboundExternalLinkActive.js +67 -0
  67. package/dist-es/waiters/waitForRequesterGatewayActive.js +49 -0
  68. package/dist-es/waiters/waitForRequesterGatewayDeleted.js +40 -0
  69. package/dist-es/waiters/waitForResponderGatewayActive.js +49 -0
  70. package/dist-es/waiters/waitForResponderGatewayDeleted.js +40 -0
  71. package/dist-types/RTBFabric.d.ts +201 -0
  72. package/dist-types/RTBFabricClient.d.ts +214 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  75. package/dist-types/commands/AcceptLinkCommand.d.ts +244 -0
  76. package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +134 -0
  77. package/dist-types/commands/CreateLinkCommand.d.ts +252 -0
  78. package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +118 -0
  79. package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +131 -0
  80. package/dist-types/commands/CreateResponderGatewayCommand.d.ts +155 -0
  81. package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +111 -0
  82. package/dist-types/commands/DeleteLinkCommand.d.ts +111 -0
  83. package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +111 -0
  84. package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +106 -0
  85. package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +106 -0
  86. package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +214 -0
  87. package/dist-types/commands/GetLinkCommand.d.ts +226 -0
  88. package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +119 -0
  89. package/dist-types/commands/GetRequesterGatewayCommand.d.ts +136 -0
  90. package/dist-types/commands/GetResponderGatewayCommand.d.ts +162 -0
  91. package/dist-types/commands/ListLinksCommand.d.ts +225 -0
  92. package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +122 -0
  93. package/dist-types/commands/ListResponderGatewaysCommand.d.ts +122 -0
  94. package/dist-types/commands/ListTagsForResourceCommand.d.ts +109 -0
  95. package/dist-types/commands/RejectLinkCommand.d.ts +215 -0
  96. package/dist-types/commands/TagResourceCommand.d.ts +107 -0
  97. package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
  98. package/dist-types/commands/UpdateLinkCommand.d.ts +127 -0
  99. package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +173 -0
  100. package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +113 -0
  101. package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +139 -0
  102. package/dist-types/commands/index.d.ts +27 -0
  103. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  104. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  105. package/dist-types/endpoint/ruleset.d.ts +2 -0
  106. package/dist-types/extensionConfiguration.d.ts +9 -0
  107. package/dist-types/index.d.ts +15 -0
  108. package/dist-types/models/RTBFabricServiceException.d.ts +14 -0
  109. package/dist-types/models/index.d.ts +1 -0
  110. package/dist-types/models/models_0.d.ts +2011 -0
  111. package/dist-types/pagination/Interfaces.d.ts +8 -0
  112. package/dist-types/pagination/ListLinksPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListRequesterGatewaysPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListResponderGatewaysPaginator.d.ts +7 -0
  115. package/dist-types/pagination/index.d.ts +4 -0
  116. package/dist-types/protocols/Aws_restJson1.d.ts +245 -0
  117. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  118. package/dist-types/runtimeConfig.d.ts +50 -0
  119. package/dist-types/runtimeConfig.native.d.ts +49 -0
  120. package/dist-types/runtimeConfig.shared.d.ts +25 -0
  121. package/dist-types/runtimeExtensions.d.ts +17 -0
  122. package/dist-types/ts3.4/RTBFabric.d.ts +466 -0
  123. package/dist-types/ts3.4/RTBFabricClient.d.ts +281 -0
  124. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  125. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  126. package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +47 -0
  129. package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +47 -0
  134. package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +43 -0
  139. package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +47 -0
  143. package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +51 -0
  144. package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +47 -0
  147. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  148. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  149. package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +47 -0
  150. package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +51 -0
  152. package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  154. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  155. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  156. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  157. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  158. package/dist-types/ts3.4/index.d.ts +10 -0
  159. package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +9 -0
  160. package/dist-types/ts3.4/models/index.d.ts +1 -0
  161. package/dist-types/ts3.4/models/models_0.d.ts +618 -0
  162. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  163. package/dist-types/ts3.4/pagination/ListLinksPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListRequesterGatewaysPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListResponderGatewaysPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  167. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -0
  168. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +92 -0
  169. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  170. package/dist-types/ts3.4/runtimeConfig.native.d.ts +96 -0
  171. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  172. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  173. package/dist-types/ts3.4/waiters/index.d.ts +8 -0
  174. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +11 -0
  175. package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +11 -0
  176. package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +11 -0
  177. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +11 -0
  178. package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +11 -0
  179. package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +11 -0
  180. package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +11 -0
  181. package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +11 -0
  182. package/dist-types/waiters/index.d.ts +8 -0
  183. package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +14 -0
  184. package/dist-types/waiters/waitForLinkAccepted.d.ts +14 -0
  185. package/dist-types/waiters/waitForLinkActive.d.ts +14 -0
  186. package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +14 -0
  187. package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +14 -0
  188. package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +14 -0
  189. package/dist-types/waiters/waitForResponderGatewayActive.d.ts +14 -0
  190. package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +14 -0
  191. package/package.json +101 -0
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetOutboundExternalLinkCommand, se_GetOutboundExternalLinkCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class GetOutboundExternalLinkCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "GetOutboundExternalLink", {})
17
+ .n("RTBFabricClient", "GetOutboundExternalLinkCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetOutboundExternalLinkCommand)
20
+ .de(de_GetOutboundExternalLinkCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetRequesterGatewayCommand, se_GetRequesterGatewayCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class GetRequesterGatewayCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "GetRequesterGateway", {})
17
+ .n("RTBFabricClient", "GetRequesterGatewayCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetRequesterGatewayCommand)
20
+ .de(de_GetRequesterGatewayCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { GetResponderGatewayResponseFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_GetResponderGatewayCommand, se_GetResponderGatewayCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class GetResponderGatewayCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("RTBFabric", "GetResponderGateway", {})
18
+ .n("RTBFabricClient", "GetResponderGatewayCommand")
19
+ .f(void 0, GetResponderGatewayResponseFilterSensitiveLog)
20
+ .ser(se_GetResponderGatewayCommand)
21
+ .de(de_GetResponderGatewayCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListLinksCommand, se_ListLinksCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListLinksCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "ListLinks", {})
17
+ .n("RTBFabricClient", "ListLinksCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListLinksCommand)
20
+ .de(de_ListLinksCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListRequesterGatewaysCommand, se_ListRequesterGatewaysCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListRequesterGatewaysCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "ListRequesterGateways", {})
17
+ .n("RTBFabricClient", "ListRequesterGatewaysCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListRequesterGatewaysCommand)
20
+ .de(de_ListRequesterGatewaysCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListResponderGatewaysCommand, se_ListResponderGatewaysCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListResponderGatewaysCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "ListResponderGateways", {})
17
+ .n("RTBFabricClient", "ListResponderGatewaysCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListResponderGatewaysCommand)
20
+ .de(de_ListResponderGatewaysCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListTagsForResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "ListTagsForResource", {})
17
+ .n("RTBFabricClient", "ListTagsForResourceCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListTagsForResourceCommand)
20
+ .de(de_ListTagsForResourceCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_RejectLinkCommand, se_RejectLinkCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class RejectLinkCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "RejectLink", {})
17
+ .n("RTBFabricClient", "RejectLinkCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_RejectLinkCommand)
20
+ .de(de_RejectLinkCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class TagResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "TagResource", {})
17
+ .n("RTBFabricClient", "TagResourceCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_TagResourceCommand)
20
+ .de(de_TagResourceCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class UntagResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "UntagResource", {})
17
+ .n("RTBFabricClient", "UntagResourceCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_UntagResourceCommand)
20
+ .de(de_UntagResourceCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_UpdateLinkCommand, se_UpdateLinkCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class UpdateLinkCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "UpdateLink", {})
17
+ .n("RTBFabricClient", "UpdateLinkCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_UpdateLinkCommand)
20
+ .de(de_UpdateLinkCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_UpdateLinkModuleFlowCommand, se_UpdateLinkModuleFlowCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class UpdateLinkModuleFlowCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "UpdateLinkModuleFlow", {})
17
+ .n("RTBFabricClient", "UpdateLinkModuleFlowCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_UpdateLinkModuleFlowCommand)
20
+ .de(de_UpdateLinkModuleFlowCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_UpdateRequesterGatewayCommand, se_UpdateRequesterGatewayCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class UpdateRequesterGatewayCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("RTBFabric", "UpdateRequesterGateway", {})
17
+ .n("RTBFabricClient", "UpdateRequesterGatewayCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_UpdateRequesterGatewayCommand)
20
+ .de(de_UpdateRequesterGatewayCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,23 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { UpdateResponderGatewayRequestFilterSensitiveLog, } from "../models/models_0";
6
+ import { de_UpdateResponderGatewayCommand, se_UpdateResponderGatewayCommand } from "../protocols/Aws_restJson1";
7
+ export { $Command };
8
+ export class UpdateResponderGatewayCommand extends $Command
9
+ .classBuilder()
10
+ .ep(commonParams)
11
+ .m(function (Command, cs, config, o) {
12
+ return [
13
+ getSerdePlugin(config, this.serialize, this.deserialize),
14
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
+ ];
16
+ })
17
+ .s("RTBFabric", "UpdateResponderGateway", {})
18
+ .n("RTBFabricClient", "UpdateResponderGatewayCommand")
19
+ .f(UpdateResponderGatewayRequestFilterSensitiveLog, void 0)
20
+ .ser(se_UpdateResponderGatewayCommand)
21
+ .de(de_UpdateResponderGatewayCommand)
22
+ .build() {
23
+ }
@@ -0,0 +1,27 @@
1
+ export * from "./AcceptLinkCommand";
2
+ export * from "./CreateInboundExternalLinkCommand";
3
+ export * from "./CreateLinkCommand";
4
+ export * from "./CreateOutboundExternalLinkCommand";
5
+ export * from "./CreateRequesterGatewayCommand";
6
+ export * from "./CreateResponderGatewayCommand";
7
+ export * from "./DeleteInboundExternalLinkCommand";
8
+ export * from "./DeleteLinkCommand";
9
+ export * from "./DeleteOutboundExternalLinkCommand";
10
+ export * from "./DeleteRequesterGatewayCommand";
11
+ export * from "./DeleteResponderGatewayCommand";
12
+ export * from "./GetInboundExternalLinkCommand";
13
+ export * from "./GetLinkCommand";
14
+ export * from "./GetOutboundExternalLinkCommand";
15
+ export * from "./GetRequesterGatewayCommand";
16
+ export * from "./GetResponderGatewayCommand";
17
+ export * from "./ListLinksCommand";
18
+ export * from "./ListRequesterGatewaysCommand";
19
+ export * from "./ListResponderGatewaysCommand";
20
+ export * from "./ListTagsForResourceCommand";
21
+ export * from "./RejectLinkCommand";
22
+ export * from "./TagResourceCommand";
23
+ export * from "./UntagResourceCommand";
24
+ export * from "./UpdateLinkCommand";
25
+ export * from "./UpdateLinkModuleFlowCommand";
26
+ export * from "./UpdateRequesterGatewayCommand";
27
+ export * from "./UpdateResponderGatewayCommand";
@@ -0,0 +1,13 @@
1
+ export const resolveClientEndpointParameters = (options) => {
2
+ return Object.assign(options, {
3
+ useDualstackEndpoint: options.useDualstackEndpoint ?? false,
4
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
5
+ defaultSigningName: "rtbfabric",
6
+ });
7
+ };
8
+ export const commonParams = {
9
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
10
+ Endpoint: { type: "builtInParams", name: "endpoint" },
11
+ Region: { type: "builtInParams", name: "region" },
12
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
13
+ };
@@ -0,0 +1,14 @@
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
3
+ import { ruleSet } from "./ruleset";
4
+ const cache = new EndpointCache({
5
+ size: 50,
6
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
7
+ });
8
+ export const defaultEndpointResolver = (endpointParams, context = {}) => {
9
+ return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
10
+ endpointParams: endpointParams,
11
+ logger: context.logger,
12
+ }));
13
+ };
14
+ customEndpointFunctions.aws = awsEndpointFunctions;
@@ -0,0 +1,4 @@
1
+ const t = "required", u = "fn", v = "argv", w = "ref";
2
+ const a = true, b = false, c = "isSet", d = "booleanEquals", e = "error", f = "endpoint", g = "tree", h = "PartitionResult", i = { [t]: true, "default": false, "type": "boolean" }, j = { [t]: false, "type": "string" }, k = { [w]: "Endpoint" }, l = { [u]: d, [v]: [{ [w]: "UseFIPS" }, true] }, m = { [w]: "UseFIPS" }, n = { [u]: d, [v]: [{ [w]: "UseDualStack" }, true] }, o = { [w]: "UseDualStack" }, p = {}, q = { [u]: "getAttr", [v]: [{ [w]: h }, "supportsFIPS"] }, r = { [u]: d, [v]: [true, { [u]: "getAttr", [v]: [{ [w]: h }, "supportsDualStack"] }] }, s = [{ [w]: "Region" }];
3
+ const _data = { version: "1.0", parameters: { UseDualStack: i, UseFIPS: i, Endpoint: j, Region: j }, rules: [{ conditions: [{ [u]: c, [v]: [k] }], rules: [{ conditions: [l], error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: e }, { rules: [{ conditions: [n], error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: e }, { endpoint: { url: k, properties: p, headers: p }, type: f }], type: g }], type: g }, { rules: [{ conditions: [{ [u]: c, [v]: s }], rules: [{ conditions: [{ [u]: "aws.partition", [v]: s, assign: h }], rules: [{ conditions: [l, n], rules: [{ conditions: [{ [u]: d, [v]: [a, q] }, r], rules: [{ endpoint: { url: "https://rtbfabric-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: p, headers: p }, type: f }], type: g }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: e }], type: g }, { conditions: [l, { [u]: d, [v]: [o, b] }], rules: [{ conditions: [{ [u]: d, [v]: [q, a] }], rules: [{ endpoint: { url: "https://rtbfabric-fips.{Region}.{PartitionResult#dnsSuffix}", properties: p, headers: p }, type: f }], type: g }, { error: "FIPS is enabled but this partition does not support FIPS", type: e }], type: g }, { conditions: [{ [u]: d, [v]: [m, b] }, n], rules: [{ conditions: [r], rules: [{ endpoint: { url: "https://rtbfabric.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: p, headers: p }, type: f }], type: g }, { error: "DualStack is enabled but this partition does not support DualStack", type: e }], type: g }, { endpoint: { url: "https://rtbfabric.{Region}.{PartitionResult#dnsSuffix}", properties: p, headers: p }, type: f }], type: g }], type: g }, { error: "Invalid Configuration: Missing Region", type: e }], type: g }] };
4
+ export const ruleSet = _data;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ export * from "./RTBFabricClient";
2
+ export * from "./RTBFabric";
3
+ export * from "./commands";
4
+ export * from "./pagination";
5
+ export * from "./waiters";
6
+ export * from "./models";
7
+ export { RTBFabricServiceException } from "./models/RTBFabricServiceException";
@@ -0,0 +1,8 @@
1
+ import { ServiceException as __ServiceException, } from "@smithy/smithy-client";
2
+ export { __ServiceException };
3
+ export class RTBFabricServiceException extends __ServiceException {
4
+ constructor(options) {
5
+ super(options);
6
+ Object.setPrototypeOf(this, RTBFabricServiceException.prototype);
7
+ }
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,219 @@
1
+ import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ import { RTBFabricServiceException as __BaseException } from "./RTBFabricServiceException";
3
+ export const ResponderErrorMaskingAction = {
4
+ NO_BID: "NO_BID",
5
+ PASSTHROUGH: "PASSTHROUGH",
6
+ };
7
+ export const ResponderErrorMaskingLoggingType = {
8
+ METRIC: "METRIC",
9
+ NONE: "NONE",
10
+ RESPONSE: "RESPONSE",
11
+ };
12
+ export const LinkDirection = {
13
+ REQUEST: "REQUEST",
14
+ RESPONSE: "RESPONSE",
15
+ };
16
+ export var Action;
17
+ (function (Action) {
18
+ Action.visit = (value, visitor) => {
19
+ if (value.noBid !== undefined)
20
+ return visitor.noBid(value.noBid);
21
+ if (value.headerTag !== undefined)
22
+ return visitor.headerTag(value.headerTag);
23
+ return visitor._(value.$unknown[0], value.$unknown[1]);
24
+ };
25
+ })(Action || (Action = {}));
26
+ export const FilterType = {
27
+ EXCLUDE: "EXCLUDE",
28
+ INCLUDE: "INCLUDE",
29
+ };
30
+ export var ModuleParameters;
31
+ (function (ModuleParameters) {
32
+ ModuleParameters.visit = (value, visitor) => {
33
+ if (value.noBid !== undefined)
34
+ return visitor.noBid(value.noBid);
35
+ if (value.openRtbAttribute !== undefined)
36
+ return visitor.openRtbAttribute(value.openRtbAttribute);
37
+ return visitor._(value.$unknown[0], value.$unknown[1]);
38
+ };
39
+ })(ModuleParameters || (ModuleParameters = {}));
40
+ export const LinkStatus = {
41
+ ACCEPTED: "ACCEPTED",
42
+ ACTIVE: "ACTIVE",
43
+ DELETED: "DELETED",
44
+ FAILED: "FAILED",
45
+ ISOLATED: "ISOLATED",
46
+ PENDING_CREATION: "PENDING_CREATION",
47
+ PENDING_DELETION: "PENDING_DELETION",
48
+ PENDING_ISOLATION: "PENDING_ISOLATION",
49
+ PENDING_REQUEST: "PENDING_REQUEST",
50
+ PENDING_RESTORATION: "PENDING_RESTORATION",
51
+ PENDING_UPDATE: "PENDING_UPDATE",
52
+ REJECTED: "REJECTED",
53
+ REQUESTED: "REQUESTED",
54
+ };
55
+ export class AccessDeniedException extends __BaseException {
56
+ name = "AccessDeniedException";
57
+ $fault = "client";
58
+ constructor(opts) {
59
+ super({
60
+ name: "AccessDeniedException",
61
+ $fault: "client",
62
+ ...opts,
63
+ });
64
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
65
+ }
66
+ }
67
+ export class ConflictException extends __BaseException {
68
+ name = "ConflictException";
69
+ $fault = "client";
70
+ constructor(opts) {
71
+ super({
72
+ name: "ConflictException",
73
+ $fault: "client",
74
+ ...opts,
75
+ });
76
+ Object.setPrototypeOf(this, ConflictException.prototype);
77
+ }
78
+ }
79
+ export class InternalServerException extends __BaseException {
80
+ name = "InternalServerException";
81
+ $fault = "server";
82
+ $retryable = {};
83
+ constructor(opts) {
84
+ super({
85
+ name: "InternalServerException",
86
+ $fault: "server",
87
+ ...opts,
88
+ });
89
+ Object.setPrototypeOf(this, InternalServerException.prototype);
90
+ }
91
+ }
92
+ export class ResourceNotFoundException extends __BaseException {
93
+ name = "ResourceNotFoundException";
94
+ $fault = "client";
95
+ constructor(opts) {
96
+ super({
97
+ name: "ResourceNotFoundException",
98
+ $fault: "client",
99
+ ...opts,
100
+ });
101
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
102
+ }
103
+ }
104
+ export class ThrottlingException extends __BaseException {
105
+ name = "ThrottlingException";
106
+ $fault = "client";
107
+ $retryable = {};
108
+ constructor(opts) {
109
+ super({
110
+ name: "ThrottlingException",
111
+ $fault: "client",
112
+ ...opts,
113
+ });
114
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
115
+ }
116
+ }
117
+ export class ValidationException extends __BaseException {
118
+ name = "ValidationException";
119
+ $fault = "client";
120
+ constructor(opts) {
121
+ super({
122
+ name: "ValidationException",
123
+ $fault: "client",
124
+ ...opts,
125
+ });
126
+ Object.setPrototypeOf(this, ValidationException.prototype);
127
+ }
128
+ }
129
+ export class ServiceQuotaExceededException extends __BaseException {
130
+ name = "ServiceQuotaExceededException";
131
+ $fault = "client";
132
+ constructor(opts) {
133
+ super({
134
+ name: "ServiceQuotaExceededException",
135
+ $fault: "client",
136
+ ...opts,
137
+ });
138
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
139
+ }
140
+ }
141
+ export const RequesterGatewayStatus = {
142
+ ACTIVE: "ACTIVE",
143
+ DELETED: "DELETED",
144
+ ERROR: "ERROR",
145
+ ISOLATED: "ISOLATED",
146
+ PENDING_CREATION: "PENDING_CREATION",
147
+ PENDING_DELETION: "PENDING_DELETION",
148
+ PENDING_ISOLATION: "PENDING_ISOLATION",
149
+ PENDING_RESTORATION: "PENDING_RESTORATION",
150
+ PENDING_UPDATE: "PENDING_UPDATE",
151
+ };
152
+ export var ManagedEndpointConfiguration;
153
+ (function (ManagedEndpointConfiguration) {
154
+ ManagedEndpointConfiguration.visit = (value, visitor) => {
155
+ if (value.autoScalingGroups !== undefined)
156
+ return visitor.autoScalingGroups(value.autoScalingGroups);
157
+ if (value.eksEndpoints !== undefined)
158
+ return visitor.eksEndpoints(value.eksEndpoints);
159
+ return visitor._(value.$unknown[0], value.$unknown[1]);
160
+ };
161
+ })(ManagedEndpointConfiguration || (ManagedEndpointConfiguration = {}));
162
+ export const Protocol = {
163
+ HTTP: "HTTP",
164
+ HTTPS: "HTTPS",
165
+ };
166
+ export const ResponderGatewayStatus = {
167
+ ACTIVE: "ACTIVE",
168
+ DELETED: "DELETED",
169
+ ERROR: "ERROR",
170
+ ISOLATED: "ISOLATED",
171
+ PENDING_CREATION: "PENDING_CREATION",
172
+ PENDING_DELETION: "PENDING_DELETION",
173
+ PENDING_ISOLATION: "PENDING_ISOLATION",
174
+ PENDING_RESTORATION: "PENDING_RESTORATION",
175
+ PENDING_UPDATE: "PENDING_UPDATE",
176
+ };
177
+ export const EksEndpointsConfigurationFilterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ ...(obj.clusterApiServerCaCertificateChain && { clusterApiServerCaCertificateChain: SENSITIVE_STRING }),
180
+ });
181
+ export const ManagedEndpointConfigurationFilterSensitiveLog = (obj) => {
182
+ if (obj.autoScalingGroups !== undefined)
183
+ return { autoScalingGroups: obj.autoScalingGroups };
184
+ if (obj.eksEndpoints !== undefined)
185
+ return { eksEndpoints: EksEndpointsConfigurationFilterSensitiveLog(obj.eksEndpoints) };
186
+ if (obj.$unknown !== undefined)
187
+ return { [obj.$unknown[0]]: "UNKNOWN" };
188
+ };
189
+ export const TrustStoreConfigurationFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ ...(obj.certificateAuthorityCertificates && { certificateAuthorityCertificates: SENSITIVE_STRING }),
192
+ });
193
+ export const CreateResponderGatewayRequestFilterSensitiveLog = (obj) => ({
194
+ ...obj,
195
+ ...(obj.trustStoreConfiguration && {
196
+ trustStoreConfiguration: TrustStoreConfigurationFilterSensitiveLog(obj.trustStoreConfiguration),
197
+ }),
198
+ ...(obj.managedEndpointConfiguration && {
199
+ managedEndpointConfiguration: ManagedEndpointConfigurationFilterSensitiveLog(obj.managedEndpointConfiguration),
200
+ }),
201
+ });
202
+ export const GetResponderGatewayResponseFilterSensitiveLog = (obj) => ({
203
+ ...obj,
204
+ ...(obj.trustStoreConfiguration && {
205
+ trustStoreConfiguration: TrustStoreConfigurationFilterSensitiveLog(obj.trustStoreConfiguration),
206
+ }),
207
+ ...(obj.managedEndpointConfiguration && {
208
+ managedEndpointConfiguration: ManagedEndpointConfigurationFilterSensitiveLog(obj.managedEndpointConfiguration),
209
+ }),
210
+ });
211
+ export const UpdateResponderGatewayRequestFilterSensitiveLog = (obj) => ({
212
+ ...obj,
213
+ ...(obj.trustStoreConfiguration && {
214
+ trustStoreConfiguration: TrustStoreConfigurationFilterSensitiveLog(obj.trustStoreConfiguration),
215
+ }),
216
+ ...(obj.managedEndpointConfiguration && {
217
+ managedEndpointConfiguration: ManagedEndpointConfigurationFilterSensitiveLog(obj.managedEndpointConfiguration),
218
+ }),
219
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListLinksCommand } from "../commands/ListLinksCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export const paginateListLinks = createPaginator(RTBFabricClient, ListLinksCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListRequesterGatewaysCommand, } from "../commands/ListRequesterGatewaysCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export const paginateListRequesterGateways = createPaginator(RTBFabricClient, ListRequesterGatewaysCommand, "nextToken", "nextToken", "maxResults");