@aws-sdk/client-rtbfabric 3.1045.0 → 3.1046.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.
- package/README.md +63 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +539 -177
- package/dist-cjs/models/RTBFabricServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +12 -14
- package/dist-cjs/runtimeConfig.js +18 -22
- package/dist-cjs/runtimeConfig.shared.js +9 -10
- package/dist-cjs/schemas/schemas_0.js +200 -10
- package/dist-es/RTBFabric.js +31 -1
- package/dist-es/RTBFabricClient.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/AcceptLinkCommand.js +2 -2
- package/dist-es/commands/AssociateCertificateCommand.js +16 -0
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/CreateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DisassociateCertificateCommand.js +16 -0
- package/dist-es/commands/GetCertificateAssociationCommand.js +16 -0
- package/dist-es/commands/GetInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/GetResponderGatewayCommand.js +2 -2
- package/dist-es/commands/ListCertificateAssociationsCommand.js +16 -0
- package/dist-es/commands/ListLinkRoutingRulesCommand.js +16 -0
- package/dist-es/commands/ListLinksCommand.js +2 -2
- package/dist-es/commands/ListRequesterGatewaysCommand.js +2 -2
- package/dist-es/commands/ListResponderGatewaysCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RejectLinkCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateLinkCommand.js +2 -2
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +2 -2
- package/dist-es/commands/UpdateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/UpdateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/RTBFabricServiceException.js +1 -1
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListCertificateAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListLinkRoutingRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/runtimeConfig.browser.js +4 -6
- package/dist-es/runtimeConfig.js +4 -8
- package/dist-es/runtimeConfig.shared.js +3 -4
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-es/schemas/schemas_0.js +197 -7
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForCertificateAssociated.js +61 -0
- package/dist-es/waiters/waitForCertificateDisassociated.js +52 -0
- package/dist-es/waiters/waitForInboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkAccepted.js +1 -1
- package/dist-es/waiters/waitForLinkActive.js +1 -1
- package/dist-es/waiters/waitForLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkRoutingRuleActive.js +49 -0
- package/dist-es/waiters/waitForLinkRoutingRuleDeleted.js +43 -0
- package/dist-es/waiters/waitForOutboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayActive.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayActive.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +1 -1
- package/dist-types/RTBFabric.d.ts +102 -1
- package/dist-types/RTBFabricClient.d.ts +16 -7
- package/dist-types/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/commands/AssociateCertificateCommand.d.ts +120 -0
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +9 -4
- package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkRoutingRuleCommand.d.ts +115 -0
- package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +118 -0
- package/dist-types/commands/GetCertificateAssociationCommand.d.ts +116 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/ListCertificateAssociationsCommand.d.ts +125 -0
- package/dist-types/commands/ListLinkRoutingRulesCommand.d.ts +143 -0
- package/dist-types/commands/ListLinksCommand.d.ts +6 -4
- package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkRoutingRuleCommand.d.ts +134 -0
- package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +31 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +522 -1
- package/dist-types/pagination/ListCertificateAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListLinkRoutingRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +210 -1
- package/dist-types/ts3.4/RTBFabricClient.d.ts +62 -14
- package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetCertificateAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListCertificateAssociationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinkRoutingRulesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +6 -8
- package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +127 -0
- package/dist-types/ts3.4/pagination/ListCertificateAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListLinkRoutingRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAssociated.d.ts +19 -0
- package/dist-types/ts3.4/waiters/waitForCertificateDisassociated.d.ts +24 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleDeleted.d.ts +20 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForCertificateAssociated.d.ts +15 -0
- package/dist-types/waiters/waitForCertificateDisassociated.d.ts +16 -0
- package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkRoutingRuleActive.d.ts +15 -0
- package/dist-types/waiters/waitForLinkRoutingRuleDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/package.json +13 -35
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetCertificateAssociationRequest, GetCertificateAssociationResponse } 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 GetCertificateAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetCertificateAssociationCommandInput extends GetCertificateAssociationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetCertificateAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetCertificateAssociationCommandOutput extends GetCertificateAssociationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetCertificateAssociationCommand_base: {
|
|
25
|
+
new (input: GetCertificateAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetCertificateAssociationCommandInput, GetCertificateAssociationCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetCertificateAssociationCommandInput): import("@smithy/core/client").CommandImpl<GetCertificateAssociationCommandInput, GetCertificateAssociationCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves the details of a certificate association with 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, GetCertificateAssociationCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
|
|
37
|
+
* // const { RTBFabricClient, GetCertificateAssociationCommand } = 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 = { // GetCertificateAssociationRequest
|
|
42
|
+
* gatewayId: "STRING_VALUE", // required
|
|
43
|
+
* acmCertificateArn: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new GetCertificateAssociationCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // GetCertificateAssociationResponse
|
|
48
|
+
* // gatewayId: "STRING_VALUE", // required
|
|
49
|
+
* // acmCertificateArn: "STRING_VALUE", // required
|
|
50
|
+
* // status: "PENDING_ASSOCIATION" || "ASSOCIATED" || "PENDING_DISASSOCIATION" || "DISASSOCIATED" || "FAILED", // required
|
|
51
|
+
* // associatedAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param GetCertificateAssociationCommandInput - {@link GetCertificateAssociationCommandInput}
|
|
58
|
+
* @returns {@link GetCertificateAssociationCommandOutput}
|
|
59
|
+
* @see {@link GetCertificateAssociationCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link GetCertificateAssociationCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
64
|
+
* <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalServerException} (server fault)
|
|
67
|
+
* <p>The request could not be completed because of an internal server error. Try your call again.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The request could not be completed because the resource does not exist.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link RTBFabricServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from RTBFabric service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @example Get certificate association details from a responder gateway
|
|
83
|
+
* ```javascript
|
|
84
|
+
* // Retrieve details of an ACM certificate association with a responder gateway
|
|
85
|
+
* const input = {
|
|
86
|
+
* acmCertificateArn: "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012",
|
|
87
|
+
* gatewayId: "rtb-gw-12345678"
|
|
88
|
+
* };
|
|
89
|
+
* const command = new GetCertificateAssociationCommand(input);
|
|
90
|
+
* const response = await client.send(command);
|
|
91
|
+
* /* response is
|
|
92
|
+
* {
|
|
93
|
+
* acmCertificateArn: "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012",
|
|
94
|
+
* associatedAt: 1704067200,
|
|
95
|
+
* gatewayId: "rtb-gw-12345678",
|
|
96
|
+
* status: "ASSOCIATED",
|
|
97
|
+
* updatedAt: 1704067200
|
|
98
|
+
* }
|
|
99
|
+
* *\/
|
|
100
|
+
* ```
|
|
101
|
+
*
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export declare class GetCertificateAssociationCommand extends GetCertificateAssociationCommand_base {
|
|
105
|
+
/** @internal type navigation helper, not in runtime. */
|
|
106
|
+
protected static __types: {
|
|
107
|
+
api: {
|
|
108
|
+
input: GetCertificateAssociationRequest;
|
|
109
|
+
output: GetCertificateAssociationResponse;
|
|
110
|
+
};
|
|
111
|
+
sdk: {
|
|
112
|
+
input: GetCertificateAssociationCommandInput;
|
|
113
|
+
output: GetCertificateAssociationCommandOutput;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { GetInboundExternalLinkRequest, GetInboundExternalLinkResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface GetInboundExternalLinkCommandInput extends GetInboundExternalLi
|
|
|
22
22
|
export interface GetInboundExternalLinkCommandOutput extends GetInboundExternalLinkResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetInboundExternalLinkCommand_base: {
|
|
25
|
-
new (input: GetInboundExternalLinkCommandInput): import("@smithy/
|
|
26
|
-
new (input: GetInboundExternalLinkCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetInboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<GetInboundExternalLinkCommandInput, GetInboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetInboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<GetInboundExternalLinkCommandInput, GetInboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Retrieves information about an inbound external link.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { GetLinkRequest, GetLinkResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface GetLinkCommandInput extends GetLinkRequest {
|
|
|
22
22
|
export interface GetLinkCommandOutput extends GetLinkResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetLinkCommand_base: {
|
|
25
|
-
new (input: GetLinkCommandInput): import("@smithy/
|
|
26
|
-
new (input: GetLinkCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetLinkCommandInput): import("@smithy/core/client").CommandImpl<GetLinkCommandInput, GetLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetLinkCommandInput): import("@smithy/core/client").CommandImpl<GetLinkCommandInput, GetLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Retrieves information about a link between gateways.</p> <p>Returns detailed information about the link configuration, status, and associated gateways.</p>
|
|
@@ -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 { GetLinkRoutingRuleRequest, GetLinkRoutingRuleResponse } 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 GetLinkRoutingRuleCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetLinkRoutingRuleCommandInput extends GetLinkRoutingRuleRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetLinkRoutingRuleCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetLinkRoutingRuleCommandOutput extends GetLinkRoutingRuleResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetLinkRoutingRuleCommand_base: {
|
|
25
|
+
new (input: GetLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<GetLinkRoutingRuleCommandInput, GetLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetLinkRoutingRuleCommandInput): import("@smithy/core/client").CommandImpl<GetLinkRoutingRuleCommandInput, GetLinkRoutingRuleCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves the details of a routing rule for 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, GetLinkRoutingRuleCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
|
|
37
|
+
* // const { RTBFabricClient, GetLinkRoutingRuleCommand } = 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 = { // GetLinkRoutingRuleRequest
|
|
42
|
+
* gatewayId: "STRING_VALUE", // required
|
|
43
|
+
* linkId: "STRING_VALUE", // required
|
|
44
|
+
* ruleId: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new GetLinkRoutingRuleCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // GetLinkRoutingRuleResponse
|
|
49
|
+
* // gatewayId: "STRING_VALUE", // required
|
|
50
|
+
* // linkId: "STRING_VALUE", // required
|
|
51
|
+
* // ruleId: "STRING_VALUE", // required
|
|
52
|
+
* // priority: Number("int"), // required
|
|
53
|
+
* // conditions: { // RuleCondition
|
|
54
|
+
* // hostHeader: "STRING_VALUE",
|
|
55
|
+
* // hostHeaderWildcard: "STRING_VALUE",
|
|
56
|
+
* // pathPrefix: "STRING_VALUE",
|
|
57
|
+
* // pathExact: "STRING_VALUE",
|
|
58
|
+
* // queryStringEquals: { // QueryStringKeyValuePair
|
|
59
|
+
* // key: "STRING_VALUE", // required
|
|
60
|
+
* // value: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // queryStringExists: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // status: "CREATION_IN_PROGRESS" || "ACTIVE" || "UPDATE_IN_PROGRESS" || "DELETION_IN_PROGRESS" || "DELETED" || "FAILED", // required
|
|
65
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
66
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
67
|
+
* // tags: { // TagsMap
|
|
68
|
+
* // "<keys>": "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param GetLinkRoutingRuleCommandInput - {@link GetLinkRoutingRuleCommandInput}
|
|
75
|
+
* @returns {@link GetLinkRoutingRuleCommandOutput}
|
|
76
|
+
* @see {@link GetLinkRoutingRuleCommandInput} for command's `input` shape.
|
|
77
|
+
* @see {@link GetLinkRoutingRuleCommandOutput} for command's `response` shape.
|
|
78
|
+
* @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
81
|
+
* <p>The request could not be completed because you do not have sufficient access to perform this action.</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 ThrottlingException} (client fault)
|
|
90
|
+
* <p>The request was denied due to request throttling.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ValidationException} (client fault)
|
|
93
|
+
* <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link RTBFabricServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from RTBFabric service.</p>
|
|
97
|
+
*
|
|
98
|
+
*
|
|
99
|
+
* @example Get link routing rule details
|
|
100
|
+
* ```javascript
|
|
101
|
+
* // Get details of a link routing rule
|
|
102
|
+
* const input = {
|
|
103
|
+
* gatewayId: "rtb-gw-12345678",
|
|
104
|
+
* linkId: "link-87654321",
|
|
105
|
+
* ruleId: "rule-abc123def456"
|
|
106
|
+
* };
|
|
107
|
+
* const command = new GetLinkRoutingRuleCommand(input);
|
|
108
|
+
* const response = await client.send(command);
|
|
109
|
+
* /* response is
|
|
110
|
+
* {
|
|
111
|
+
* conditions: {
|
|
112
|
+
* hostHeader: "api.customer.com",
|
|
113
|
+
* pathPrefix: "/openrtb/"
|
|
114
|
+
* },
|
|
115
|
+
* createdAt: "2024-01-01T12:00:00Z",
|
|
116
|
+
* gatewayId: "rtb-gw-12345678",
|
|
117
|
+
* linkId: "link-87654321",
|
|
118
|
+
* priority: 10,
|
|
119
|
+
* ruleId: "rule-abc123def456",
|
|
120
|
+
* status: "ACTIVE",
|
|
121
|
+
* updatedAt: "2024-01-01T12:00:00Z"
|
|
122
|
+
* }
|
|
123
|
+
* *\/
|
|
124
|
+
* ```
|
|
125
|
+
*
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export declare class GetLinkRoutingRuleCommand extends GetLinkRoutingRuleCommand_base {
|
|
129
|
+
/** @internal type navigation helper, not in runtime. */
|
|
130
|
+
protected static __types: {
|
|
131
|
+
api: {
|
|
132
|
+
input: GetLinkRoutingRuleRequest;
|
|
133
|
+
output: GetLinkRoutingRuleResponse;
|
|
134
|
+
};
|
|
135
|
+
sdk: {
|
|
136
|
+
input: GetLinkRoutingRuleCommandInput;
|
|
137
|
+
output: GetLinkRoutingRuleCommandOutput;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { GetOutboundExternalLinkRequest, GetOutboundExternalLinkResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface GetOutboundExternalLinkCommandInput extends GetOutboundExternal
|
|
|
22
22
|
export interface GetOutboundExternalLinkCommandOutput extends GetOutboundExternalLinkResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetOutboundExternalLinkCommand_base: {
|
|
25
|
-
new (input: GetOutboundExternalLinkCommandInput): import("@smithy/
|
|
26
|
-
new (input: GetOutboundExternalLinkCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetOutboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<GetOutboundExternalLinkCommandInput, GetOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetOutboundExternalLinkCommandInput): import("@smithy/core/client").CommandImpl<GetOutboundExternalLinkCommandInput, GetOutboundExternalLinkCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Retrieves information about an outbound external link.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { GetRequesterGatewayRequest, GetRequesterGatewayResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface GetRequesterGatewayCommandInput extends GetRequesterGatewayRequ
|
|
|
22
22
|
export interface GetRequesterGatewayCommandOutput extends GetRequesterGatewayResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetRequesterGatewayCommand_base: {
|
|
25
|
-
new (input: GetRequesterGatewayCommandInput): import("@smithy/
|
|
26
|
-
new (input: GetRequesterGatewayCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<GetRequesterGatewayCommandInput, GetRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetRequesterGatewayCommandInput): import("@smithy/core/client").CommandImpl<GetRequesterGatewayCommandInput, GetRequesterGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Retrieves information about a requester gateway.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { GetResponderGatewayRequest, GetResponderGatewayResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface GetResponderGatewayCommandInput extends GetResponderGatewayRequ
|
|
|
22
22
|
export interface GetResponderGatewayCommandOutput extends GetResponderGatewayResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetResponderGatewayCommand_base: {
|
|
25
|
-
new (input: GetResponderGatewayCommandInput): import("@smithy/
|
|
26
|
-
new (input: GetResponderGatewayCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<GetResponderGatewayCommandInput, GetResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetResponderGatewayCommandInput): import("@smithy/core/client").CommandImpl<GetResponderGatewayCommandInput, GetResponderGatewayCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Retrieves information about a responder gateway.</p>
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListCertificateAssociationsRequest, ListCertificateAssociationsResponse } 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 ListCertificateAssociationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCertificateAssociationsCommandInput extends ListCertificateAssociationsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCertificateAssociationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCertificateAssociationsCommandOutput extends ListCertificateAssociationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListCertificateAssociationsCommand_base: {
|
|
25
|
+
new (input: ListCertificateAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListCertificateAssociationsCommandInput, ListCertificateAssociationsCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListCertificateAssociationsCommandInput): import("@smithy/core/client").CommandImpl<ListCertificateAssociationsCommandInput, ListCertificateAssociationsCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists the certificate associations for 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, ListCertificateAssociationsCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
|
|
37
|
+
* // const { RTBFabricClient, ListCertificateAssociationsCommand } = 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 = { // ListCertificateAssociationsRequest
|
|
42
|
+
* gatewayId: "STRING_VALUE", // required
|
|
43
|
+
* nextToken: "STRING_VALUE",
|
|
44
|
+
* maxResults: Number("int"),
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListCertificateAssociationsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListCertificateAssociationsResponse
|
|
49
|
+
* // certificateAssociations: [ // CertificateAssociationSummaryList // required
|
|
50
|
+
* // { // CertificateAssociationSummary
|
|
51
|
+
* // acmCertificateArn: "STRING_VALUE", // required
|
|
52
|
+
* // status: "PENDING_ASSOCIATION" || "ASSOCIATED" || "PENDING_DISASSOCIATION" || "DISASSOCIATED" || "FAILED", // required
|
|
53
|
+
* // associatedAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // nextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param ListCertificateAssociationsCommandInput - {@link ListCertificateAssociationsCommandInput}
|
|
63
|
+
* @returns {@link ListCertificateAssociationsCommandOutput}
|
|
64
|
+
* @see {@link ListCertificateAssociationsCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link ListCertificateAssociationsCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
69
|
+
* <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InternalServerException} (server fault)
|
|
72
|
+
* <p>The request could not be completed because of an internal server error. Try your call again.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
+
* <p>The request could not be completed because the resource does not exist.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>The request was denied due to request throttling.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ValidationException} (client fault)
|
|
81
|
+
* <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link RTBFabricServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from RTBFabric service.</p>
|
|
85
|
+
*
|
|
86
|
+
*
|
|
87
|
+
* @example List certificate associations for a responder gateway
|
|
88
|
+
* ```javascript
|
|
89
|
+
* // Retrieve all certificate associations for a responder gateway
|
|
90
|
+
* const input = {
|
|
91
|
+
* gatewayId: "rtb-gw-12345678",
|
|
92
|
+
* maxResults: 5
|
|
93
|
+
* };
|
|
94
|
+
* const command = new ListCertificateAssociationsCommand(input);
|
|
95
|
+
* const response = await client.send(command);
|
|
96
|
+
* /* response is
|
|
97
|
+
* {
|
|
98
|
+
* certificateAssociations: [
|
|
99
|
+
* {
|
|
100
|
+
* acmCertificateArn: "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012",
|
|
101
|
+
* associatedAt: 1704067200,
|
|
102
|
+
* status: "ASSOCIATED",
|
|
103
|
+
* updatedAt: 1704067200
|
|
104
|
+
* }
|
|
105
|
+
* ],
|
|
106
|
+
* nextToken: "token123"
|
|
107
|
+
* }
|
|
108
|
+
* *\/
|
|
109
|
+
* ```
|
|
110
|
+
*
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export declare class ListCertificateAssociationsCommand extends ListCertificateAssociationsCommand_base {
|
|
114
|
+
/** @internal type navigation helper, not in runtime. */
|
|
115
|
+
protected static __types: {
|
|
116
|
+
api: {
|
|
117
|
+
input: ListCertificateAssociationsRequest;
|
|
118
|
+
output: ListCertificateAssociationsResponse;
|
|
119
|
+
};
|
|
120
|
+
sdk: {
|
|
121
|
+
input: ListCertificateAssociationsCommandInput;
|
|
122
|
+
output: ListCertificateAssociationsCommandOutput;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListLinkRoutingRulesRequest, ListLinkRoutingRulesResponse } 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 ListLinkRoutingRulesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListLinkRoutingRulesCommandInput extends ListLinkRoutingRulesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListLinkRoutingRulesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListLinkRoutingRulesCommandOutput extends ListLinkRoutingRulesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListLinkRoutingRulesCommand_base: {
|
|
25
|
+
new (input: ListLinkRoutingRulesCommandInput): import("@smithy/core/client").CommandImpl<ListLinkRoutingRulesCommandInput, ListLinkRoutingRulesCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListLinkRoutingRulesCommandInput): import("@smithy/core/client").CommandImpl<ListLinkRoutingRulesCommandInput, ListLinkRoutingRulesCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists the routing rules for 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, ListLinkRoutingRulesCommand } from "@aws-sdk/client-rtbfabric"; // ES Modules import
|
|
37
|
+
* // const { RTBFabricClient, ListLinkRoutingRulesCommand } = 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 = { // ListLinkRoutingRulesRequest
|
|
42
|
+
* gatewayId: "STRING_VALUE", // required
|
|
43
|
+
* linkId: "STRING_VALUE", // required
|
|
44
|
+
* nextToken: "STRING_VALUE",
|
|
45
|
+
* maxResults: Number("int"),
|
|
46
|
+
* };
|
|
47
|
+
* const command = new ListLinkRoutingRulesCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // { // ListLinkRoutingRulesResponse
|
|
50
|
+
* // rules: [ // LinkRoutingRuleList
|
|
51
|
+
* // { // LinkRoutingRuleSummary
|
|
52
|
+
* // ruleId: "STRING_VALUE", // required
|
|
53
|
+
* // priority: Number("int"), // required
|
|
54
|
+
* // conditions: { // RuleCondition
|
|
55
|
+
* // hostHeader: "STRING_VALUE",
|
|
56
|
+
* // hostHeaderWildcard: "STRING_VALUE",
|
|
57
|
+
* // pathPrefix: "STRING_VALUE",
|
|
58
|
+
* // pathExact: "STRING_VALUE",
|
|
59
|
+
* // queryStringEquals: { // QueryStringKeyValuePair
|
|
60
|
+
* // key: "STRING_VALUE", // required
|
|
61
|
+
* // value: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // queryStringExists: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // status: "CREATION_IN_PROGRESS" || "ACTIVE" || "UPDATE_IN_PROGRESS" || "DELETION_IN_PROGRESS" || "DELETED" || "FAILED", // required
|
|
66
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
67
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // nextToken: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
73
|
+
* ```
|
|
74
|
+
*
|
|
75
|
+
* @param ListLinkRoutingRulesCommandInput - {@link ListLinkRoutingRulesCommandInput}
|
|
76
|
+
* @returns {@link ListLinkRoutingRulesCommandOutput}
|
|
77
|
+
* @see {@link ListLinkRoutingRulesCommandInput} for command's `input` shape.
|
|
78
|
+
* @see {@link ListLinkRoutingRulesCommandOutput} for command's `response` shape.
|
|
79
|
+
* @see {@link RTBFabricClientResolvedConfig | config} for RTBFabricClient's `config` shape.
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
82
|
+
* <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InternalServerException} (server fault)
|
|
85
|
+
* <p>The request could not be completed because of an internal server error. Try your call again.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
88
|
+
* <p>The request could not be completed because the resource does not exist.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
91
|
+
* <p>The request was denied due to request throttling.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ValidationException} (client fault)
|
|
94
|
+
* <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link RTBFabricServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from RTBFabric service.</p>
|
|
98
|
+
*
|
|
99
|
+
*
|
|
100
|
+
* @example List link routing rules
|
|
101
|
+
* ```javascript
|
|
102
|
+
* // List all routing rules for a link
|
|
103
|
+
* const input = {
|
|
104
|
+
* gatewayId: "rtb-gw-12345678",
|
|
105
|
+
* linkId: "link-87654321",
|
|
106
|
+
* maxResults: 10
|
|
107
|
+
* };
|
|
108
|
+
* const command = new ListLinkRoutingRulesCommand(input);
|
|
109
|
+
* const response = await client.send(command);
|
|
110
|
+
* /* response is
|
|
111
|
+
* {
|
|
112
|
+
* nextToken: "token123",
|
|
113
|
+
* rules: [
|
|
114
|
+
* {
|
|
115
|
+
* conditions: {
|
|
116
|
+
* hostHeader: "api.customer.com"
|
|
117
|
+
* },
|
|
118
|
+
* createdAt: "2024-01-01T12:00:00Z",
|
|
119
|
+
* priority: 10,
|
|
120
|
+
* ruleId: "rule-abc123def456",
|
|
121
|
+
* status: "ACTIVE",
|
|
122
|
+
* updatedAt: "2024-01-01T12:00:00Z"
|
|
123
|
+
* }
|
|
124
|
+
* ]
|
|
125
|
+
* }
|
|
126
|
+
* *\/
|
|
127
|
+
* ```
|
|
128
|
+
*
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export declare class ListLinkRoutingRulesCommand extends ListLinkRoutingRulesCommand_base {
|
|
132
|
+
/** @internal type navigation helper, not in runtime. */
|
|
133
|
+
protected static __types: {
|
|
134
|
+
api: {
|
|
135
|
+
input: ListLinkRoutingRulesRequest;
|
|
136
|
+
output: ListLinkRoutingRulesResponse;
|
|
137
|
+
};
|
|
138
|
+
sdk: {
|
|
139
|
+
input: ListLinkRoutingRulesCommandInput;
|
|
140
|
+
output: ListLinkRoutingRulesCommandOutput;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ListLinksRequest, ListLinksResponse } from "../models/models_0";
|
|
4
4
|
import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient";
|
|
@@ -22,9 +22,11 @@ export interface ListLinksCommandInput extends ListLinksRequest {
|
|
|
22
22
|
export interface ListLinksCommandOutput extends ListLinksResponse, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListLinksCommand_base: {
|
|
25
|
-
new (input: ListLinksCommandInput): import("@smithy/
|
|
26
|
-
new (input: ListLinksCommandInput): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListLinksCommandInput): import("@smithy/core/client").CommandImpl<ListLinksCommandInput, ListLinksCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListLinksCommandInput): import("@smithy/core/client").CommandImpl<ListLinksCommandInput, ListLinksCommandOutput, RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* <p>Lists links associated with gateways.</p> <p>Returns a list of all links for the specified gateways, including their status and configuration details.</p>
|