@aws-sdk/client-rtbfabric 3.915.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +421 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +2476 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-es/RTBFabric.js +61 -0
- package/dist-es/RTBFabricClient.js +48 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AcceptLinkCommand.js +22 -0
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/CreateLinkCommand.js +22 -0
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/CreateRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/CreateResponderGatewayCommand.js +23 -0
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/DeleteLinkCommand.js +22 -0
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/DeleteResponderGatewayCommand.js +22 -0
- package/dist-es/commands/GetInboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/GetLinkCommand.js +22 -0
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +22 -0
- package/dist-es/commands/GetRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/GetResponderGatewayCommand.js +23 -0
- package/dist-es/commands/ListLinksCommand.js +22 -0
- package/dist-es/commands/ListRequesterGatewaysCommand.js +22 -0
- package/dist-es/commands/ListResponderGatewaysCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/RejectLinkCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/UpdateLinkCommand.js +22 -0
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +22 -0
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +22 -0
- package/dist-es/commands/UpdateResponderGatewayCommand.js +23 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/RTBFabricServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +219 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListLinksPaginator.js +4 -0
- package/dist-es/pagination/ListRequesterGatewaysPaginator.js +4 -0
- package/dist-es/pagination/ListResponderGatewaysPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1147 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/waiters/index.js +8 -0
- package/dist-es/waiters/waitForInboundExternalLinkActive.js +67 -0
- package/dist-es/waiters/waitForLinkAccepted.js +58 -0
- package/dist-es/waiters/waitForLinkActive.js +58 -0
- package/dist-es/waiters/waitForOutboundExternalLinkActive.js +67 -0
- package/dist-es/waiters/waitForRequesterGatewayActive.js +49 -0
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +40 -0
- package/dist-es/waiters/waitForResponderGatewayActive.js +49 -0
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +40 -0
- package/dist-types/RTBFabric.d.ts +201 -0
- package/dist-types/RTBFabricClient.d.ts +214 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AcceptLinkCommand.d.ts +244 -0
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +134 -0
- package/dist-types/commands/CreateLinkCommand.d.ts +252 -0
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +118 -0
- package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +131 -0
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +155 -0
- package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +111 -0
- package/dist-types/commands/DeleteLinkCommand.d.ts +111 -0
- package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +111 -0
- package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +106 -0
- package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +106 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +214 -0
- package/dist-types/commands/GetLinkCommand.d.ts +226 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +119 -0
- package/dist-types/commands/GetRequesterGatewayCommand.d.ts +136 -0
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +162 -0
- package/dist-types/commands/ListLinksCommand.d.ts +225 -0
- package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +122 -0
- package/dist-types/commands/ListResponderGatewaysCommand.d.ts +122 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +109 -0
- package/dist-types/commands/RejectLinkCommand.d.ts +215 -0
- package/dist-types/commands/TagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UpdateLinkCommand.d.ts +127 -0
- package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +173 -0
- package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +113 -0
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +139 -0
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +15 -0
- package/dist-types/models/RTBFabricServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2011 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListLinksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRequesterGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResponderGatewaysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +245 -0
- package/dist-types/runtimeConfig.browser.d.ts +50 -0
- package/dist-types/runtimeConfig.d.ts +50 -0
- package/dist-types/runtimeConfig.native.d.ts +49 -0
- package/dist-types/runtimeConfig.shared.d.ts +25 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +466 -0
- package/dist-types/ts3.4/RTBFabricClient.d.ts +281 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +618 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListLinksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRequesterGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResponderGatewaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +92 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +8 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +8 -0
- package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +14 -0
- package/dist-types/waiters/waitForLinkAccepted.d.ts +14 -0
- package/dist-types/waiters/waitForLinkActive.d.ts +14 -0
- package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +14 -0
- package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +14 -0
- package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForResponderGatewayActive.d.ts +14 -0
- package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +14 -0
- package/package.json +101 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteInboundExternalLinkRequest,
|
|
5
|
+
DeleteInboundExternalLinkResponse,
|
|
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 DeleteInboundExternalLinkCommandInput
|
|
15
|
+
extends DeleteInboundExternalLinkRequest {}
|
|
16
|
+
export interface DeleteInboundExternalLinkCommandOutput
|
|
17
|
+
extends DeleteInboundExternalLinkResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteInboundExternalLinkCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteInboundExternalLinkCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteInboundExternalLinkCommandInput,
|
|
24
|
+
DeleteInboundExternalLinkCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteInboundExternalLinkCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteInboundExternalLinkCommandInput,
|
|
33
|
+
DeleteInboundExternalLinkCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteInboundExternalLinkCommand extends DeleteInboundExternalLinkCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteInboundExternalLinkRequest;
|
|
44
|
+
output: DeleteInboundExternalLinkResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteInboundExternalLinkCommandInput;
|
|
48
|
+
output: DeleteInboundExternalLinkCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RTBFabricClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RTBFabricClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteLinkCommandInput extends DeleteLinkRequest {}
|
|
12
|
+
export interface DeleteLinkCommandOutput
|
|
13
|
+
extends DeleteLinkResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteLinkCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteLinkCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteLinkCommandInput,
|
|
20
|
+
DeleteLinkCommandOutput,
|
|
21
|
+
RTBFabricClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteLinkCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteLinkCommandInput,
|
|
29
|
+
DeleteLinkCommandOutput,
|
|
30
|
+
RTBFabricClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteLinkCommand extends DeleteLinkCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteLinkRequest;
|
|
40
|
+
output: DeleteLinkResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteLinkCommandInput;
|
|
44
|
+
output: DeleteLinkCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteOutboundExternalLinkRequest,
|
|
5
|
+
DeleteOutboundExternalLinkResponse,
|
|
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 DeleteOutboundExternalLinkCommandInput
|
|
15
|
+
extends DeleteOutboundExternalLinkRequest {}
|
|
16
|
+
export interface DeleteOutboundExternalLinkCommandOutput
|
|
17
|
+
extends DeleteOutboundExternalLinkResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteOutboundExternalLinkCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteOutboundExternalLinkCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteOutboundExternalLinkCommandInput,
|
|
24
|
+
DeleteOutboundExternalLinkCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteOutboundExternalLinkCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteOutboundExternalLinkCommandInput,
|
|
33
|
+
DeleteOutboundExternalLinkCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteOutboundExternalLinkCommand extends DeleteOutboundExternalLinkCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteOutboundExternalLinkRequest;
|
|
44
|
+
output: DeleteOutboundExternalLinkResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteOutboundExternalLinkCommandInput;
|
|
48
|
+
output: DeleteOutboundExternalLinkCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteRequesterGatewayRequest,
|
|
5
|
+
DeleteRequesterGatewayResponse,
|
|
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 DeleteRequesterGatewayCommandInput
|
|
15
|
+
extends DeleteRequesterGatewayRequest {}
|
|
16
|
+
export interface DeleteRequesterGatewayCommandOutput
|
|
17
|
+
extends DeleteRequesterGatewayResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteRequesterGatewayCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteRequesterGatewayCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteRequesterGatewayCommandInput,
|
|
24
|
+
DeleteRequesterGatewayCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteRequesterGatewayCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteRequesterGatewayCommandInput,
|
|
33
|
+
DeleteRequesterGatewayCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteRequesterGatewayCommand extends DeleteRequesterGatewayCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteRequesterGatewayRequest;
|
|
44
|
+
output: DeleteRequesterGatewayResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteRequesterGatewayCommandInput;
|
|
48
|
+
output: DeleteRequesterGatewayCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteResponderGatewayRequest,
|
|
5
|
+
DeleteResponderGatewayResponse,
|
|
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 DeleteResponderGatewayCommandInput
|
|
15
|
+
extends DeleteResponderGatewayRequest {}
|
|
16
|
+
export interface DeleteResponderGatewayCommandOutput
|
|
17
|
+
extends DeleteResponderGatewayResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteResponderGatewayCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteResponderGatewayCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteResponderGatewayCommandInput,
|
|
24
|
+
DeleteResponderGatewayCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteResponderGatewayCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteResponderGatewayCommandInput,
|
|
33
|
+
DeleteResponderGatewayCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteResponderGatewayCommand extends DeleteResponderGatewayCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteResponderGatewayRequest;
|
|
44
|
+
output: DeleteResponderGatewayResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteResponderGatewayCommandInput;
|
|
48
|
+
output: DeleteResponderGatewayCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetInboundExternalLinkRequest,
|
|
5
|
+
GetInboundExternalLinkResponse,
|
|
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 GetInboundExternalLinkCommandInput
|
|
15
|
+
extends GetInboundExternalLinkRequest {}
|
|
16
|
+
export interface GetInboundExternalLinkCommandOutput
|
|
17
|
+
extends GetInboundExternalLinkResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetInboundExternalLinkCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetInboundExternalLinkCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetInboundExternalLinkCommandInput,
|
|
24
|
+
GetInboundExternalLinkCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetInboundExternalLinkCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetInboundExternalLinkCommandInput,
|
|
33
|
+
GetInboundExternalLinkCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetInboundExternalLinkCommand extends GetInboundExternalLinkCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetInboundExternalLinkRequest;
|
|
44
|
+
output: GetInboundExternalLinkResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetInboundExternalLinkCommandInput;
|
|
48
|
+
output: GetInboundExternalLinkCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetLinkRequest, GetLinkResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RTBFabricClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RTBFabricClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetLinkCommandInput extends GetLinkRequest {}
|
|
12
|
+
export interface GetLinkCommandOutput
|
|
13
|
+
extends GetLinkResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetLinkCommand_base: {
|
|
16
|
+
new (input: GetLinkCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
GetLinkCommandInput,
|
|
18
|
+
GetLinkCommandOutput,
|
|
19
|
+
RTBFabricClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (input: GetLinkCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
24
|
+
GetLinkCommandInput,
|
|
25
|
+
GetLinkCommandOutput,
|
|
26
|
+
RTBFabricClientResolvedConfig,
|
|
27
|
+
ServiceInputTypes,
|
|
28
|
+
ServiceOutputTypes
|
|
29
|
+
>;
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
31
|
+
};
|
|
32
|
+
export declare class GetLinkCommand extends GetLinkCommand_base {
|
|
33
|
+
protected static __types: {
|
|
34
|
+
api: {
|
|
35
|
+
input: GetLinkRequest;
|
|
36
|
+
output: GetLinkResponse;
|
|
37
|
+
};
|
|
38
|
+
sdk: {
|
|
39
|
+
input: GetLinkCommandInput;
|
|
40
|
+
output: GetLinkCommandOutput;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetOutboundExternalLinkRequest,
|
|
5
|
+
GetOutboundExternalLinkResponse,
|
|
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 GetOutboundExternalLinkCommandInput
|
|
15
|
+
extends GetOutboundExternalLinkRequest {}
|
|
16
|
+
export interface GetOutboundExternalLinkCommandOutput
|
|
17
|
+
extends GetOutboundExternalLinkResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetOutboundExternalLinkCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetOutboundExternalLinkCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetOutboundExternalLinkCommandInput,
|
|
24
|
+
GetOutboundExternalLinkCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetOutboundExternalLinkCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetOutboundExternalLinkCommandInput,
|
|
33
|
+
GetOutboundExternalLinkCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetOutboundExternalLinkCommand extends GetOutboundExternalLinkCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetOutboundExternalLinkRequest;
|
|
44
|
+
output: GetOutboundExternalLinkResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetOutboundExternalLinkCommandInput;
|
|
48
|
+
output: GetOutboundExternalLinkCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetRequesterGatewayRequest,
|
|
5
|
+
GetRequesterGatewayResponse,
|
|
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 GetRequesterGatewayCommandInput
|
|
15
|
+
extends GetRequesterGatewayRequest {}
|
|
16
|
+
export interface GetRequesterGatewayCommandOutput
|
|
17
|
+
extends GetRequesterGatewayResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetRequesterGatewayCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetRequesterGatewayCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetRequesterGatewayCommandInput,
|
|
24
|
+
GetRequesterGatewayCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetRequesterGatewayCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetRequesterGatewayCommandInput,
|
|
33
|
+
GetRequesterGatewayCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetRequesterGatewayCommand extends GetRequesterGatewayCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetRequesterGatewayRequest;
|
|
44
|
+
output: GetRequesterGatewayResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetRequesterGatewayCommandInput;
|
|
48
|
+
output: GetRequesterGatewayCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetResponderGatewayRequest,
|
|
5
|
+
GetResponderGatewayResponse,
|
|
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 GetResponderGatewayCommandInput
|
|
15
|
+
extends GetResponderGatewayRequest {}
|
|
16
|
+
export interface GetResponderGatewayCommandOutput
|
|
17
|
+
extends GetResponderGatewayResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetResponderGatewayCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetResponderGatewayCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetResponderGatewayCommandInput,
|
|
24
|
+
GetResponderGatewayCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetResponderGatewayCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetResponderGatewayCommandInput,
|
|
33
|
+
GetResponderGatewayCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetResponderGatewayCommand extends GetResponderGatewayCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetResponderGatewayRequest;
|
|
44
|
+
output: GetResponderGatewayResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetResponderGatewayCommandInput;
|
|
48
|
+
output: GetResponderGatewayCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListLinksRequest, ListLinksResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RTBFabricClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RTBFabricClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListLinksCommandInput extends ListLinksRequest {}
|
|
12
|
+
export interface ListLinksCommandOutput
|
|
13
|
+
extends ListLinksResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListLinksCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListLinksCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListLinksCommandInput,
|
|
20
|
+
ListLinksCommandOutput,
|
|
21
|
+
RTBFabricClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListLinksCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListLinksCommandInput,
|
|
29
|
+
ListLinksCommandOutput,
|
|
30
|
+
RTBFabricClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListLinksCommand extends ListLinksCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListLinksRequest;
|
|
40
|
+
output: ListLinksResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListLinksCommandInput;
|
|
44
|
+
output: ListLinksCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListRequesterGatewaysRequest,
|
|
5
|
+
ListRequesterGatewaysResponse,
|
|
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 ListRequesterGatewaysCommandInput
|
|
15
|
+
extends ListRequesterGatewaysRequest {}
|
|
16
|
+
export interface ListRequesterGatewaysCommandOutput
|
|
17
|
+
extends ListRequesterGatewaysResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListRequesterGatewaysCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListRequesterGatewaysCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListRequesterGatewaysCommandInput,
|
|
24
|
+
ListRequesterGatewaysCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListRequesterGatewaysCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListRequesterGatewaysCommandInput,
|
|
33
|
+
ListRequesterGatewaysCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListRequesterGatewaysCommand extends ListRequesterGatewaysCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListRequesterGatewaysRequest;
|
|
44
|
+
output: ListRequesterGatewaysResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListRequesterGatewaysCommandInput;
|
|
48
|
+
output: ListRequesterGatewaysCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListResponderGatewaysRequest,
|
|
5
|
+
ListResponderGatewaysResponse,
|
|
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 ListResponderGatewaysCommandInput
|
|
15
|
+
extends ListResponderGatewaysRequest {}
|
|
16
|
+
export interface ListResponderGatewaysCommandOutput
|
|
17
|
+
extends ListResponderGatewaysResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListResponderGatewaysCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListResponderGatewaysCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListResponderGatewaysCommandInput,
|
|
24
|
+
ListResponderGatewaysCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListResponderGatewaysCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListResponderGatewaysCommandInput,
|
|
33
|
+
ListResponderGatewaysCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListResponderGatewaysCommand extends ListResponderGatewaysCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListResponderGatewaysRequest;
|
|
44
|
+
output: ListResponderGatewaysResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListResponderGatewaysCommandInput;
|
|
48
|
+
output: ListResponderGatewaysCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|