@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,140 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CreateLinkRoutingRuleRequest, CreateLinkRoutingRuleResponse } from "../models/models_0";
4
+ import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateLinkRoutingRuleCommand}.
14
+ */
15
+ export interface CreateLinkRoutingRuleCommandInput extends CreateLinkRoutingRuleRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateLinkRoutingRuleCommand}.
21
+ */
22
+ export interface CreateLinkRoutingRuleCommandOutput extends CreateLinkRoutingRuleResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateLinkRoutingRuleCommand_base: {
25
+ new (input: CreateLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<CreateLinkRoutingRuleCommandInput, CreateLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<CreateLinkRoutingRuleCommandInput, CreateLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Creates a routing rule for a link.</p> <p>Routing rules use priority-based evaluation where lower priority numbers are evaluated first. Each rule specifies conditions that must all match for the rule to apply.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { RTBFabricClient, CreateLinkRoutingRuleCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
37
+ * // const { RTBFabricClient, CreateLinkRoutingRuleCommand } = require("@aws-sdk/client-rtbfabric"); // CommonJS import
38
+ * // import type { RTBFabricClientConfig } from "@aws-sdk/client-rtbfabric";
39
+ * const config = {}; // type is RTBFabricClientConfig
40
+ * const client = new RTBFabricClient(config);
41
+ * const input = { // CreateLinkRoutingRuleRequest
42
+ * clientToken: "STRING_VALUE", // required
43
+ * gatewayId: "STRING_VALUE", // required
44
+ * linkId: "STRING_VALUE", // required
45
+ * priority: Number("int"), // required
46
+ * conditions: { // RuleCondition
47
+ * hostHeader: "STRING_VALUE",
48
+ * hostHeaderWildcard: "STRING_VALUE",
49
+ * pathPrefix: "STRING_VALUE",
50
+ * pathExact: "STRING_VALUE",
51
+ * queryStringEquals: { // QueryStringKeyValuePair
52
+ * key: "STRING_VALUE", // required
53
+ * value: "STRING_VALUE", // required
54
+ * },
55
+ * queryStringExists: "STRING_VALUE",
56
+ * },
57
+ * tags: { // TagsMap
58
+ * "<keys>": "STRING_VALUE",
59
+ * },
60
+ * };
61
+ * const command = new CreateLinkRoutingRuleCommand(input);
62
+ * const response = await client.send(command);
63
+ * // { // CreateLinkRoutingRuleResponse
64
+ * // ruleId: "STRING_VALUE", // required
65
+ * // status: "CREATION_IN_PROGRESS" || "ACTIVE" || "UPDATE_IN_PROGRESS" || "DELETION_IN_PROGRESS" || "DELETED" || "FAILED", // required
66
+ * // createdAt: new Date("TIMESTAMP"), // required
67
+ * // };
68
+ *
69
+ * ```
70
+ *
71
+ * @param CreateLinkRoutingRuleCommandInput - {@link CreateLinkRoutingRuleCommandInput}
72
+ * @returns {@link CreateLinkRoutingRuleCommandOutput}
73
+ * @see {@link CreateLinkRoutingRuleCommandInput} for command's `input` shape.
74
+ * @see {@link CreateLinkRoutingRuleCommandOutput} for command's `response` shape.
75
+ * @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
76
+ *
77
+ * @throws {@link AccessDeniedException} (client fault)
78
+ * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
79
+ *
80
+ * @throws {@link ConflictException} (client fault)
81
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
82
+ *
83
+ * @throws {@link InternalServerException} (server fault)
84
+ * <p>The request could not be completed because of an internal server error. Try your call again.</p>
85
+ *
86
+ * @throws {@link ResourceNotFoundException} (client fault)
87
+ * <p>The request could not be completed because the resource does not exist.</p>
88
+ *
89
+ * @throws {@link ServiceQuotaExceededException} (client fault)
90
+ * <p>The request could not be completed because you exceeded a service quota.</p>
91
+ *
92
+ * @throws {@link ThrottlingException} (client fault)
93
+ * <p>The request was denied due to request throttling.</p>
94
+ *
95
+ * @throws {@link ValidationException} (client fault)
96
+ * <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
97
+ *
98
+ * @throws {@link RTBFabricServiceException}
99
+ * <p>Base exception class for all service exceptions from RTBFabric service.</p>
100
+ *
101
+ *
102
+ * @example Create a link routing rule
103
+ * ```javascript
104
+ * // Create a routing rule with host header and path prefix conditions
105
+ * const input = {
106
+ * clientToken: "550e8400-e29b-41d4-a716-446655440000",
107
+ * conditions: {
108
+ * hostHeader: "api.customer.com",
109
+ * pathPrefix: "/openrtb/"
110
+ * },
111
+ * gatewayId: "rtb-gw-12345678",
112
+ * linkId: "link-87654321",
113
+ * priority: 10
114
+ * };
115
+ * const command = new CreateLinkRoutingRuleCommand(input);
116
+ * const response = await client.send(command);
117
+ * /* response is
118
+ * {
119
+ * createdAt: "2024-01-01T12:00:00Z",
120
+ * ruleId: "rule-abc123def456",
121
+ * status: "CREATION_IN_PROGRESS"
122
+ * }
123
+ * *\/
124
+ * ```
125
+ *
126
+ * @public
127
+ */
128
+ export declare class CreateLinkRoutingRuleCommand extends CreateLinkRoutingRuleCommand_base {
129
+ /** @internal type navigation helper, not in runtime. */
130
+ protected static __types: {
131
+ api: {
132
+ input: CreateLinkRoutingRuleRequest;
133
+ output: CreateLinkRoutingRuleResponse;
134
+ };
135
+ sdk: {
136
+ input: CreateLinkRoutingRuleCommandInput;
137
+ output: CreateLinkRoutingRuleCommandOutput;
138
+ };
139
+ };
140
+ }
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CreateOutboundExternalLinkRequest, CreateOutboundExternalLinkResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface CreateOutboundExternalLinkCommandInput extends CreateOutboundEx
22
22
  export interface CreateOutboundExternalLinkCommandOutput extends CreateOutboundExternalLinkResponse, __MetadataBearer {
23
23
  }
24
24
  declare const CreateOutboundExternalLinkCommand_base: {
25
- new (input: CreateOutboundExternalLinkCommandInput): import("@smithy/smithy-client").CommandImpl<CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateOutboundExternalLinkCommandInput): import("@smithy/smithy-client").CommandImpl<CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: CreateOutboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateOutboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Creates an outbound external link.</p>
@@ -84,6 +86,9 @@ declare const CreateOutboundExternalLinkCommand_base: {
84
86
  * @throws {@link AccessDeniedException} (client fault)
85
87
  * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
86
88
  *
89
+ * @throws {@link ConflictException} (client fault)
90
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
91
+ *
87
92
  * @throws {@link InternalServerException} (server fault)
88
93
  * <p>The request could not be completed because of an internal server error. Try your call again.</p>
89
94
  *
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CreateRequesterGatewayRequest, CreateRequesterGatewayResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface CreateRequesterGatewayCommandInput extends CreateRequesterGatew
22
22
  export interface CreateRequesterGatewayCommandOutput extends CreateRequesterGatewayResponse, __MetadataBearer {
23
23
  }
24
24
  declare const CreateRequesterGatewayCommand_base: {
25
- new (input: CreateRequesterGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateRequesterGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: CreateRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Creates a requester gateway.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CreateResponderGatewayRequest, CreateResponderGatewayResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface CreateResponderGatewayCommandInput extends CreateResponderGatew
22
22
  export interface CreateResponderGatewayCommandOutput extends CreateResponderGatewayResponse, __MetadataBearer {
23
23
  }
24
24
  declare const CreateResponderGatewayCommand_base: {
25
- new (input: CreateResponderGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateResponderGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: CreateResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Creates a responder gateway.</p> <important> <p>A domain name or managed endpoint is required.</p> </important>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DeleteInboundExternalLinkRequest, DeleteInboundExternalLinkResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface DeleteInboundExternalLinkCommandInput extends DeleteInboundExte
22
22
  export interface DeleteInboundExternalLinkCommandOutput extends DeleteInboundExternalLinkResponse, __MetadataBearer {
23
23
  }
24
24
  declare const DeleteInboundExternalLinkCommand_base: {
25
- new (input: DeleteInboundExternalLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteInboundExternalLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DeleteInboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteInboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Deletes an inbound external link.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface DeleteLinkCommandInput extends DeleteLinkRequest {
22
22
  export interface DeleteLinkCommandOutput extends DeleteLinkResponse, __MetadataBearer {
23
23
  }
24
24
  declare const DeleteLinkCommand_base: {
25
- new (input: DeleteLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLinkCommandInput, DeleteLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLinkCommandInput, DeleteLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DeleteLinkCommandInput): import("@smithy/core/client").CommandImpl<DeleteLinkCommandInput, DeleteLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteLinkCommandInput): import("@smithy/core/client").CommandImpl<DeleteLinkCommandInput, DeleteLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Deletes a link between gateways.</p> <p>Permanently removes the connection between gateways. This action cannot be undone.</p>
@@ -0,0 +1,115 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { DeleteLinkRoutingRuleRequest, DeleteLinkRoutingRuleResponse } from "../models/models_0";
4
+ import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteLinkRoutingRuleCommand}.
14
+ */
15
+ export interface DeleteLinkRoutingRuleCommandInput extends DeleteLinkRoutingRuleRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteLinkRoutingRuleCommand}.
21
+ */
22
+ export interface DeleteLinkRoutingRuleCommandOutput extends DeleteLinkRoutingRuleResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteLinkRoutingRuleCommand_base: {
25
+ new (input: DeleteLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<DeleteLinkRoutingRuleCommandInput, DeleteLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<DeleteLinkRoutingRuleCommandInput, DeleteLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Deletes a routing rule from a link.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { RTBFabricClient, DeleteLinkRoutingRuleCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
37
+ * // const { RTBFabricClient, DeleteLinkRoutingRuleCommand } = require("@aws-sdk/client-rtbfabric"); // CommonJS import
38
+ * // import type { RTBFabricClientConfig } from "@aws-sdk/client-rtbfabric";
39
+ * const config = {}; // type is RTBFabricClientConfig
40
+ * const client = new RTBFabricClient(config);
41
+ * const input = { // DeleteLinkRoutingRuleRequest
42
+ * gatewayId: "STRING_VALUE", // required
43
+ * linkId: "STRING_VALUE", // required
44
+ * ruleId: "STRING_VALUE", // required
45
+ * };
46
+ * const command = new DeleteLinkRoutingRuleCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // DeleteLinkRoutingRuleResponse
49
+ * // ruleId: "STRING_VALUE", // required
50
+ * // status: "CREATION_IN_PROGRESS" || "ACTIVE" || "UPDATE_IN_PROGRESS" || "DELETION_IN_PROGRESS" || "DELETED" || "FAILED", // required
51
+ * // };
52
+ *
53
+ * ```
54
+ *
55
+ * @param DeleteLinkRoutingRuleCommandInput - {@link DeleteLinkRoutingRuleCommandInput}
56
+ * @returns {@link DeleteLinkRoutingRuleCommandOutput}
57
+ * @see {@link DeleteLinkRoutingRuleCommandInput} for command's `input` shape.
58
+ * @see {@link DeleteLinkRoutingRuleCommandOutput} for command's `response` shape.
59
+ * @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
60
+ *
61
+ * @throws {@link AccessDeniedException} (client fault)
62
+ * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
63
+ *
64
+ * @throws {@link ConflictException} (client fault)
65
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>The request could not be completed because of an internal server error. Try your call again.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The request could not be completed because the resource does not exist.</p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>The request was denied due to request throttling.</p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
78
+ *
79
+ * @throws {@link RTBFabricServiceException}
80
+ * <p>Base exception class for all service exceptions from RTBFabric service.</p>
81
+ *
82
+ *
83
+ * @example Delete a link routing rule
84
+ * ```javascript
85
+ * // Delete a link routing rule
86
+ * const input = {
87
+ * gatewayId: "rtb-gw-12345678",
88
+ * linkId: "link-87654321",
89
+ * ruleId: "rule-abc123def456"
90
+ * };
91
+ * const command = new DeleteLinkRoutingRuleCommand(input);
92
+ * const response = await client.send(command);
93
+ * /* response is
94
+ * {
95
+ * ruleId: "rule-abc123def456",
96
+ * status: "DELETION_IN_PROGRESS"
97
+ * }
98
+ * *\/
99
+ * ```
100
+ *
101
+ * @public
102
+ */
103
+ export declare class DeleteLinkRoutingRuleCommand extends DeleteLinkRoutingRuleCommand_base {
104
+ /** @internal type navigation helper, not in runtime. */
105
+ protected static __types: {
106
+ api: {
107
+ input: DeleteLinkRoutingRuleRequest;
108
+ output: DeleteLinkRoutingRuleResponse;
109
+ };
110
+ sdk: {
111
+ input: DeleteLinkRoutingRuleCommandInput;
112
+ output: DeleteLinkRoutingRuleCommandOutput;
113
+ };
114
+ };
115
+ }
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DeleteOutboundExternalLinkRequest, DeleteOutboundExternalLinkResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface DeleteOutboundExternalLinkCommandInput extends DeleteOutboundEx
22
22
  export interface DeleteOutboundExternalLinkCommandOutput extends DeleteOutboundExternalLinkResponse, __MetadataBearer {
23
23
  }
24
24
  declare const DeleteOutboundExternalLinkCommand_base: {
25
- new (input: DeleteOutboundExternalLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteOutboundExternalLinkCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DeleteOutboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteOutboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Deletes an outbound external link.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DeleteRequesterGatewayRequest, DeleteRequesterGatewayResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface DeleteRequesterGatewayCommandInput extends DeleteRequesterGatew
22
22
  export interface DeleteRequesterGatewayCommandOutput extends DeleteRequesterGatewayResponse, __MetadataBearer {
23
23
  }
24
24
  declare const DeleteRequesterGatewayCommand_base: {
25
- new (input: DeleteRequesterGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteRequesterGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DeleteRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Deletes a requester gateway.</p>
@@ -57,6 +59,9 @@ declare const DeleteRequesterGatewayCommand_base: {
57
59
  * @throws {@link AccessDeniedException} (client fault)
58
60
  * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
59
61
  *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
64
+ *
60
65
  * @throws {@link InternalServerException} (server fault)
61
66
  * <p>The request could not be completed because of an internal server error. Try your call again.</p>
62
67
  *
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DeleteResponderGatewayRequest, DeleteResponderGatewayResponse } from "../models/models_0";
4
4
  import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
@@ -22,9 +22,11 @@ export interface DeleteResponderGatewayCommandInput extends DeleteResponderGatew
22
22
  export interface DeleteResponderGatewayCommandOutput extends DeleteResponderGatewayResponse, __MetadataBearer {
23
23
  }
24
24
  declare const DeleteResponderGatewayCommand_base: {
25
- new (input: DeleteResponderGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteResponderGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DeleteResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Deletes a responder gateway.</p>
@@ -57,6 +59,9 @@ declare const DeleteResponderGatewayCommand_base: {
57
59
  * @throws {@link AccessDeniedException} (client fault)
58
60
  * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
59
61
  *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
64
+ *
60
65
  * @throws {@link InternalServerException} (server fault)
61
66
  * <p>The request could not be completed because of an internal server error. Try your call again.</p>
62
67
  *
@@ -0,0 +1,118 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { DisassociateCertificateRequest, DisassociateCertificateResponse } from "../models/models_0";
4
+ import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DisassociateCertificateCommand}.
14
+ */
15
+ export interface DisassociateCertificateCommandInput extends DisassociateCertificateRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DisassociateCertificateCommand}.
21
+ */
22
+ export interface DisassociateCertificateCommandOutput extends DisassociateCertificateResponse, __MetadataBearer {
23
+ }
24
+ declare const DisassociateCertificateCommand_base: {
25
+ new (input: DisassociateCertificateCommandInput): import("@smithy/core/client").CommandImpl<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DisassociateCertificateCommandInput): import("@smithy/core/client").CommandImpl<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Removes a certificate association from a responder gateway.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { RTBFabricClient, DisassociateCertificateCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
37
+ * // const { RTBFabricClient, DisassociateCertificateCommand } = require("@aws-sdk/client-rtbfabric"); // CommonJS import
38
+ * // import type { RTBFabricClientConfig } from "@aws-sdk/client-rtbfabric";
39
+ * const config = {}; // type is RTBFabricClientConfig
40
+ * const client = new RTBFabricClient(config);
41
+ * const input = { // DisassociateCertificateRequest
42
+ * gatewayId: "STRING_VALUE", // required
43
+ * acmCertificateArn: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new DisassociateCertificateCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // DisassociateCertificateResponse
48
+ * // gatewayId: "STRING_VALUE", // required
49
+ * // acmCertificateArn: "STRING_VALUE", // required
50
+ * // status: "PENDING_ASSOCIATION" || "ASSOCIATED" || "PENDING_DISASSOCIATION" || "DISASSOCIATED" || "FAILED", // required
51
+ * // };
52
+ *
53
+ * ```
54
+ *
55
+ * @param DisassociateCertificateCommandInput - {@link DisassociateCertificateCommandInput}
56
+ * @returns {@link DisassociateCertificateCommandOutput}
57
+ * @see {@link DisassociateCertificateCommandInput} for command's `input` shape.
58
+ * @see {@link DisassociateCertificateCommandOutput} for command's `response` shape.
59
+ * @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
60
+ *
61
+ * @throws {@link AccessDeniedException} (client fault)
62
+ * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
63
+ *
64
+ * @throws {@link ConflictException} (client fault)
65
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>The request could not be completed because of an internal server error. Try your call again.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The request could not be completed because the resource does not exist.</p>
72
+ *
73
+ * @throws {@link ServiceQuotaExceededException} (client fault)
74
+ * <p>The request could not be completed because you exceeded a service quota.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was denied due to request throttling.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
81
+ *
82
+ * @throws {@link RTBFabricServiceException}
83
+ * <p>Base exception class for all service exceptions from RTBFabric service.</p>
84
+ *
85
+ *
86
+ * @example Disassociate a certificate from a responder gateway
87
+ * ```javascript
88
+ * // Remove an ACM certificate association from a responder gateway
89
+ * const input = {
90
+ * acmCertificateArn: "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012",
91
+ * gatewayId: "rtb-gw-12345678"
92
+ * };
93
+ * const command = new DisassociateCertificateCommand(input);
94
+ * const response = await client.send(command);
95
+ * /* response is
96
+ * {
97
+ * acmCertificateArn: "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012",
98
+ * gatewayId: "rtb-gw-12345678",
99
+ * status: "PENDING_DISASSOCIATION"
100
+ * }
101
+ * *\/
102
+ * ```
103
+ *
104
+ * @public
105
+ */
106
+ export declare class DisassociateCertificateCommand extends DisassociateCertificateCommand_base {
107
+ /** @internal type navigation helper, not in runtime. */
108
+ protected static __types: {
109
+ api: {
110
+ input: DisassociateCertificateRequest;
111
+ output: DisassociateCertificateResponse;
112
+ };
113
+ sdk: {
114
+ input: DisassociateCertificateCommandInput;
115
+ output: DisassociateCertificateCommandOutput;
116
+ };
117
+ };
118
+ }