@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,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AssociateCertificateRequest,
|
|
5
|
+
AssociateCertificateResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
RTBFabricClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RTBFabricClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateCertificateCommandInput
|
|
15
|
+
extends AssociateCertificateRequest {}
|
|
16
|
+
export interface AssociateCertificateCommandOutput
|
|
17
|
+
extends AssociateCertificateResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateCertificateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateCertificateCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
AssociateCertificateCommandInput,
|
|
24
|
+
AssociateCertificateCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateCertificateCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
AssociateCertificateCommandInput,
|
|
33
|
+
AssociateCertificateCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class AssociateCertificateCommand extends AssociateCertificateCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: AssociateCertificateRequest;
|
|
46
|
+
output: AssociateCertificateResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: AssociateCertificateCommandInput;
|
|
50
|
+
output: AssociateCertificateCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
CreateInboundExternalLinkRequest,
|
|
@@ -19,7 +19,7 @@ export interface CreateInboundExternalLinkCommandOutput
|
|
|
19
19
|
declare const CreateInboundExternalLinkCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: CreateInboundExternalLinkCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
CreateInboundExternalLinkCommandInput,
|
|
24
24
|
CreateInboundExternalLinkCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const CreateInboundExternalLinkCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: CreateInboundExternalLinkCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
CreateInboundExternalLinkCommandInput,
|
|
33
33
|
CreateInboundExternalLinkCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class CreateInboundExternalLinkCommand extends CreateInboundExternalLinkCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { CreateLinkRequest, CreateLinkResponse } from "../models/models_0";
|
|
4
4
|
import {
|
|
@@ -15,7 +15,7 @@ export interface CreateLinkCommandOutput
|
|
|
15
15
|
declare const CreateLinkCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: CreateLinkCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
CreateLinkCommandInput,
|
|
20
20
|
CreateLinkCommandOutput,
|
|
21
21
|
RTBFabricClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const CreateLinkCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
input: CreateLinkCommandInput
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
CreateLinkCommandInput,
|
|
29
29
|
CreateLinkCommandOutput,
|
|
30
30
|
RTBFabricClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class CreateLinkCommand extends CreateLinkCommand_base {
|
|
37
39
|
protected static __types: {
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateLinkRoutingRuleRequest,
|
|
5
|
+
CreateLinkRoutingRuleResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
RTBFabricClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RTBFabricClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateLinkRoutingRuleCommandInput
|
|
15
|
+
extends CreateLinkRoutingRuleRequest {}
|
|
16
|
+
export interface CreateLinkRoutingRuleCommandOutput
|
|
17
|
+
extends CreateLinkRoutingRuleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateLinkRoutingRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateLinkRoutingRuleCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateLinkRoutingRuleCommandInput,
|
|
24
|
+
CreateLinkRoutingRuleCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateLinkRoutingRuleCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
CreateLinkRoutingRuleCommandInput,
|
|
33
|
+
CreateLinkRoutingRuleCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class CreateLinkRoutingRuleCommand extends CreateLinkRoutingRuleCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: CreateLinkRoutingRuleRequest;
|
|
46
|
+
output: CreateLinkRoutingRuleResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: CreateLinkRoutingRuleCommandInput;
|
|
50
|
+
output: CreateLinkRoutingRuleCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
CreateOutboundExternalLinkRequest,
|
|
@@ -19,7 +19,7 @@ export interface CreateOutboundExternalLinkCommandOutput
|
|
|
19
19
|
declare const CreateOutboundExternalLinkCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: CreateOutboundExternalLinkCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
CreateOutboundExternalLinkCommandInput,
|
|
24
24
|
CreateOutboundExternalLinkCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const CreateOutboundExternalLinkCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: CreateOutboundExternalLinkCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
CreateOutboundExternalLinkCommandInput,
|
|
33
33
|
CreateOutboundExternalLinkCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class CreateOutboundExternalLinkCommand extends CreateOutboundExternalLinkCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
CreateRequesterGatewayRequest,
|
|
@@ -19,7 +19,7 @@ export interface CreateRequesterGatewayCommandOutput
|
|
|
19
19
|
declare const CreateRequesterGatewayCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: CreateRequesterGatewayCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
CreateRequesterGatewayCommandInput,
|
|
24
24
|
CreateRequesterGatewayCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const CreateRequesterGatewayCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: CreateRequesterGatewayCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
CreateRequesterGatewayCommandInput,
|
|
33
33
|
CreateRequesterGatewayCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class CreateRequesterGatewayCommand extends CreateRequesterGatewayCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
CreateResponderGatewayRequest,
|
|
@@ -19,7 +19,7 @@ export interface CreateResponderGatewayCommandOutput
|
|
|
19
19
|
declare const CreateResponderGatewayCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: CreateResponderGatewayCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
CreateResponderGatewayCommandInput,
|
|
24
24
|
CreateResponderGatewayCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const CreateResponderGatewayCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: CreateResponderGatewayCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
CreateResponderGatewayCommandInput,
|
|
33
33
|
CreateResponderGatewayCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class CreateResponderGatewayCommand extends CreateResponderGatewayCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DeleteInboundExternalLinkRequest,
|
|
@@ -19,7 +19,7 @@ export interface DeleteInboundExternalLinkCommandOutput
|
|
|
19
19
|
declare const DeleteInboundExternalLinkCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: DeleteInboundExternalLinkCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
DeleteInboundExternalLinkCommandInput,
|
|
24
24
|
DeleteInboundExternalLinkCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const DeleteInboundExternalLinkCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: DeleteInboundExternalLinkCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
DeleteInboundExternalLinkCommandInput,
|
|
33
33
|
DeleteInboundExternalLinkCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class DeleteInboundExternalLinkCommand extends DeleteInboundExternalLinkCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0";
|
|
4
4
|
import {
|
|
@@ -15,7 +15,7 @@ export interface DeleteLinkCommandOutput
|
|
|
15
15
|
declare const DeleteLinkCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: DeleteLinkCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteLinkCommandInput,
|
|
20
20
|
DeleteLinkCommandOutput,
|
|
21
21
|
RTBFabricClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const DeleteLinkCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
input: DeleteLinkCommandInput
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
DeleteLinkCommandInput,
|
|
29
29
|
DeleteLinkCommandOutput,
|
|
30
30
|
RTBFabricClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class DeleteLinkCommand extends DeleteLinkCommand_base {
|
|
37
39
|
protected static __types: {
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteLinkRoutingRuleRequest,
|
|
5
|
+
DeleteLinkRoutingRuleResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
RTBFabricClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RTBFabricClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteLinkRoutingRuleCommandInput
|
|
15
|
+
extends DeleteLinkRoutingRuleRequest {}
|
|
16
|
+
export interface DeleteLinkRoutingRuleCommandOutput
|
|
17
|
+
extends DeleteLinkRoutingRuleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteLinkRoutingRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteLinkRoutingRuleCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteLinkRoutingRuleCommandInput,
|
|
24
|
+
DeleteLinkRoutingRuleCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteLinkRoutingRuleCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteLinkRoutingRuleCommandInput,
|
|
33
|
+
DeleteLinkRoutingRuleCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteLinkRoutingRuleCommand extends DeleteLinkRoutingRuleCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteLinkRoutingRuleRequest;
|
|
46
|
+
output: DeleteLinkRoutingRuleResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteLinkRoutingRuleCommandInput;
|
|
50
|
+
output: DeleteLinkRoutingRuleCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DeleteOutboundExternalLinkRequest,
|
|
@@ -19,7 +19,7 @@ export interface DeleteOutboundExternalLinkCommandOutput
|
|
|
19
19
|
declare const DeleteOutboundExternalLinkCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: DeleteOutboundExternalLinkCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
DeleteOutboundExternalLinkCommandInput,
|
|
24
24
|
DeleteOutboundExternalLinkCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const DeleteOutboundExternalLinkCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: DeleteOutboundExternalLinkCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
DeleteOutboundExternalLinkCommandInput,
|
|
33
33
|
DeleteOutboundExternalLinkCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class DeleteOutboundExternalLinkCommand extends DeleteOutboundExternalLinkCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DeleteRequesterGatewayRequest,
|
|
@@ -19,7 +19,7 @@ export interface DeleteRequesterGatewayCommandOutput
|
|
|
19
19
|
declare const DeleteRequesterGatewayCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: DeleteRequesterGatewayCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
DeleteRequesterGatewayCommandInput,
|
|
24
24
|
DeleteRequesterGatewayCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const DeleteRequesterGatewayCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: DeleteRequesterGatewayCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
DeleteRequesterGatewayCommandInput,
|
|
33
33
|
DeleteRequesterGatewayCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class DeleteRequesterGatewayCommand extends DeleteRequesterGatewayCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DeleteResponderGatewayRequest,
|
|
@@ -19,7 +19,7 @@ export interface DeleteResponderGatewayCommandOutput
|
|
|
19
19
|
declare const DeleteResponderGatewayCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: DeleteResponderGatewayCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
DeleteResponderGatewayCommandInput,
|
|
24
24
|
DeleteResponderGatewayCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const DeleteResponderGatewayCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: DeleteResponderGatewayCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
DeleteResponderGatewayCommandInput,
|
|
33
33
|
DeleteResponderGatewayCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class DeleteResponderGatewayCommand extends DeleteResponderGatewayCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DisassociateCertificateRequest,
|
|
5
|
+
DisassociateCertificateResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
RTBFabricClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RTBFabricClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateCertificateCommandInput
|
|
15
|
+
extends DisassociateCertificateRequest {}
|
|
16
|
+
export interface DisassociateCertificateCommandOutput
|
|
17
|
+
extends DisassociateCertificateResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateCertificateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateCertificateCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DisassociateCertificateCommandInput,
|
|
24
|
+
DisassociateCertificateCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisassociateCertificateCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DisassociateCertificateCommandInput,
|
|
33
|
+
DisassociateCertificateCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DisassociateCertificateCommand extends DisassociateCertificateCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DisassociateCertificateRequest;
|
|
46
|
+
output: DisassociateCertificateResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DisassociateCertificateCommandInput;
|
|
50
|
+
output: DisassociateCertificateCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetCertificateAssociationRequest,
|
|
5
|
+
GetCertificateAssociationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
RTBFabricClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RTBFabricClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetCertificateAssociationCommandInput
|
|
15
|
+
extends GetCertificateAssociationRequest {}
|
|
16
|
+
export interface GetCertificateAssociationCommandOutput
|
|
17
|
+
extends GetCertificateAssociationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetCertificateAssociationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetCertificateAssociationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetCertificateAssociationCommandInput,
|
|
24
|
+
GetCertificateAssociationCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetCertificateAssociationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetCertificateAssociationCommandInput,
|
|
33
|
+
GetCertificateAssociationCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetCertificateAssociationCommand extends GetCertificateAssociationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetCertificateAssociationRequest;
|
|
46
|
+
output: GetCertificateAssociationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetCertificateAssociationCommandInput;
|
|
50
|
+
output: GetCertificateAssociationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
GetInboundExternalLinkRequest,
|
|
@@ -19,7 +19,7 @@ export interface GetInboundExternalLinkCommandOutput
|
|
|
19
19
|
declare const GetInboundExternalLinkCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: GetInboundExternalLinkCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
GetInboundExternalLinkCommandInput,
|
|
24
24
|
GetInboundExternalLinkCommandOutput,
|
|
25
25
|
RTBFabricClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const GetInboundExternalLinkCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: GetInboundExternalLinkCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
GetInboundExternalLinkCommandInput,
|
|
33
33
|
GetInboundExternalLinkCommandOutput,
|
|
34
34
|
RTBFabricClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class GetInboundExternalLinkCommand extends GetInboundExternalLinkCommand_base {
|
|
41
43
|
protected static __types: {
|