@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,281 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AcceptLinkCommandInput,
|
|
50
|
+
AcceptLinkCommandOutput,
|
|
51
|
+
} from "./commands/AcceptLinkCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateInboundExternalLinkCommandInput,
|
|
54
|
+
CreateInboundExternalLinkCommandOutput,
|
|
55
|
+
} from "./commands/CreateInboundExternalLinkCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateLinkCommandInput,
|
|
58
|
+
CreateLinkCommandOutput,
|
|
59
|
+
} from "./commands/CreateLinkCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateOutboundExternalLinkCommandInput,
|
|
62
|
+
CreateOutboundExternalLinkCommandOutput,
|
|
63
|
+
} from "./commands/CreateOutboundExternalLinkCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateRequesterGatewayCommandInput,
|
|
66
|
+
CreateRequesterGatewayCommandOutput,
|
|
67
|
+
} from "./commands/CreateRequesterGatewayCommand";
|
|
68
|
+
import {
|
|
69
|
+
CreateResponderGatewayCommandInput,
|
|
70
|
+
CreateResponderGatewayCommandOutput,
|
|
71
|
+
} from "./commands/CreateResponderGatewayCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteInboundExternalLinkCommandInput,
|
|
74
|
+
DeleteInboundExternalLinkCommandOutput,
|
|
75
|
+
} from "./commands/DeleteInboundExternalLinkCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeleteLinkCommandInput,
|
|
78
|
+
DeleteLinkCommandOutput,
|
|
79
|
+
} from "./commands/DeleteLinkCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeleteOutboundExternalLinkCommandInput,
|
|
82
|
+
DeleteOutboundExternalLinkCommandOutput,
|
|
83
|
+
} from "./commands/DeleteOutboundExternalLinkCommand";
|
|
84
|
+
import {
|
|
85
|
+
DeleteRequesterGatewayCommandInput,
|
|
86
|
+
DeleteRequesterGatewayCommandOutput,
|
|
87
|
+
} from "./commands/DeleteRequesterGatewayCommand";
|
|
88
|
+
import {
|
|
89
|
+
DeleteResponderGatewayCommandInput,
|
|
90
|
+
DeleteResponderGatewayCommandOutput,
|
|
91
|
+
} from "./commands/DeleteResponderGatewayCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetInboundExternalLinkCommandInput,
|
|
94
|
+
GetInboundExternalLinkCommandOutput,
|
|
95
|
+
} from "./commands/GetInboundExternalLinkCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetLinkCommandInput,
|
|
98
|
+
GetLinkCommandOutput,
|
|
99
|
+
} from "./commands/GetLinkCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetOutboundExternalLinkCommandInput,
|
|
102
|
+
GetOutboundExternalLinkCommandOutput,
|
|
103
|
+
} from "./commands/GetOutboundExternalLinkCommand";
|
|
104
|
+
import {
|
|
105
|
+
GetRequesterGatewayCommandInput,
|
|
106
|
+
GetRequesterGatewayCommandOutput,
|
|
107
|
+
} from "./commands/GetRequesterGatewayCommand";
|
|
108
|
+
import {
|
|
109
|
+
GetResponderGatewayCommandInput,
|
|
110
|
+
GetResponderGatewayCommandOutput,
|
|
111
|
+
} from "./commands/GetResponderGatewayCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListLinksCommandInput,
|
|
114
|
+
ListLinksCommandOutput,
|
|
115
|
+
} from "./commands/ListLinksCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListRequesterGatewaysCommandInput,
|
|
118
|
+
ListRequesterGatewaysCommandOutput,
|
|
119
|
+
} from "./commands/ListRequesterGatewaysCommand";
|
|
120
|
+
import {
|
|
121
|
+
ListResponderGatewaysCommandInput,
|
|
122
|
+
ListResponderGatewaysCommandOutput,
|
|
123
|
+
} from "./commands/ListResponderGatewaysCommand";
|
|
124
|
+
import {
|
|
125
|
+
ListTagsForResourceCommandInput,
|
|
126
|
+
ListTagsForResourceCommandOutput,
|
|
127
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
128
|
+
import {
|
|
129
|
+
RejectLinkCommandInput,
|
|
130
|
+
RejectLinkCommandOutput,
|
|
131
|
+
} from "./commands/RejectLinkCommand";
|
|
132
|
+
import {
|
|
133
|
+
TagResourceCommandInput,
|
|
134
|
+
TagResourceCommandOutput,
|
|
135
|
+
} from "./commands/TagResourceCommand";
|
|
136
|
+
import {
|
|
137
|
+
UntagResourceCommandInput,
|
|
138
|
+
UntagResourceCommandOutput,
|
|
139
|
+
} from "./commands/UntagResourceCommand";
|
|
140
|
+
import {
|
|
141
|
+
UpdateLinkCommandInput,
|
|
142
|
+
UpdateLinkCommandOutput,
|
|
143
|
+
} from "./commands/UpdateLinkCommand";
|
|
144
|
+
import {
|
|
145
|
+
UpdateLinkModuleFlowCommandInput,
|
|
146
|
+
UpdateLinkModuleFlowCommandOutput,
|
|
147
|
+
} from "./commands/UpdateLinkModuleFlowCommand";
|
|
148
|
+
import {
|
|
149
|
+
UpdateRequesterGatewayCommandInput,
|
|
150
|
+
UpdateRequesterGatewayCommandOutput,
|
|
151
|
+
} from "./commands/UpdateRequesterGatewayCommand";
|
|
152
|
+
import {
|
|
153
|
+
UpdateResponderGatewayCommandInput,
|
|
154
|
+
UpdateResponderGatewayCommandOutput,
|
|
155
|
+
} from "./commands/UpdateResponderGatewayCommand";
|
|
156
|
+
import {
|
|
157
|
+
ClientInputEndpointParameters,
|
|
158
|
+
ClientResolvedEndpointParameters,
|
|
159
|
+
EndpointParameters,
|
|
160
|
+
} from "./endpoint/EndpointParameters";
|
|
161
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
162
|
+
export { __Client };
|
|
163
|
+
export type ServiceInputTypes =
|
|
164
|
+
| AcceptLinkCommandInput
|
|
165
|
+
| CreateInboundExternalLinkCommandInput
|
|
166
|
+
| CreateLinkCommandInput
|
|
167
|
+
| CreateOutboundExternalLinkCommandInput
|
|
168
|
+
| CreateRequesterGatewayCommandInput
|
|
169
|
+
| CreateResponderGatewayCommandInput
|
|
170
|
+
| DeleteInboundExternalLinkCommandInput
|
|
171
|
+
| DeleteLinkCommandInput
|
|
172
|
+
| DeleteOutboundExternalLinkCommandInput
|
|
173
|
+
| DeleteRequesterGatewayCommandInput
|
|
174
|
+
| DeleteResponderGatewayCommandInput
|
|
175
|
+
| GetInboundExternalLinkCommandInput
|
|
176
|
+
| GetLinkCommandInput
|
|
177
|
+
| GetOutboundExternalLinkCommandInput
|
|
178
|
+
| GetRequesterGatewayCommandInput
|
|
179
|
+
| GetResponderGatewayCommandInput
|
|
180
|
+
| ListLinksCommandInput
|
|
181
|
+
| ListRequesterGatewaysCommandInput
|
|
182
|
+
| ListResponderGatewaysCommandInput
|
|
183
|
+
| ListTagsForResourceCommandInput
|
|
184
|
+
| RejectLinkCommandInput
|
|
185
|
+
| TagResourceCommandInput
|
|
186
|
+
| UntagResourceCommandInput
|
|
187
|
+
| UpdateLinkCommandInput
|
|
188
|
+
| UpdateLinkModuleFlowCommandInput
|
|
189
|
+
| UpdateRequesterGatewayCommandInput
|
|
190
|
+
| UpdateResponderGatewayCommandInput;
|
|
191
|
+
export type ServiceOutputTypes =
|
|
192
|
+
| AcceptLinkCommandOutput
|
|
193
|
+
| CreateInboundExternalLinkCommandOutput
|
|
194
|
+
| CreateLinkCommandOutput
|
|
195
|
+
| CreateOutboundExternalLinkCommandOutput
|
|
196
|
+
| CreateRequesterGatewayCommandOutput
|
|
197
|
+
| CreateResponderGatewayCommandOutput
|
|
198
|
+
| DeleteInboundExternalLinkCommandOutput
|
|
199
|
+
| DeleteLinkCommandOutput
|
|
200
|
+
| DeleteOutboundExternalLinkCommandOutput
|
|
201
|
+
| DeleteRequesterGatewayCommandOutput
|
|
202
|
+
| DeleteResponderGatewayCommandOutput
|
|
203
|
+
| GetInboundExternalLinkCommandOutput
|
|
204
|
+
| GetLinkCommandOutput
|
|
205
|
+
| GetOutboundExternalLinkCommandOutput
|
|
206
|
+
| GetRequesterGatewayCommandOutput
|
|
207
|
+
| GetResponderGatewayCommandOutput
|
|
208
|
+
| ListLinksCommandOutput
|
|
209
|
+
| ListRequesterGatewaysCommandOutput
|
|
210
|
+
| ListResponderGatewaysCommandOutput
|
|
211
|
+
| ListTagsForResourceCommandOutput
|
|
212
|
+
| RejectLinkCommandOutput
|
|
213
|
+
| TagResourceCommandOutput
|
|
214
|
+
| UntagResourceCommandOutput
|
|
215
|
+
| UpdateLinkCommandOutput
|
|
216
|
+
| UpdateLinkModuleFlowCommandOutput
|
|
217
|
+
| UpdateRequesterGatewayCommandOutput
|
|
218
|
+
| UpdateResponderGatewayCommandOutput;
|
|
219
|
+
export interface ClientDefaults
|
|
220
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
221
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
222
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
223
|
+
urlParser?: __UrlParser;
|
|
224
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
225
|
+
streamCollector?: __StreamCollector;
|
|
226
|
+
base64Decoder?: __Decoder;
|
|
227
|
+
base64Encoder?: __Encoder;
|
|
228
|
+
utf8Decoder?: __Decoder;
|
|
229
|
+
utf8Encoder?: __Encoder;
|
|
230
|
+
runtime?: string;
|
|
231
|
+
disableHostPrefix?: boolean;
|
|
232
|
+
serviceId?: string;
|
|
233
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
234
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
235
|
+
region?: string | __Provider<string>;
|
|
236
|
+
profile?: string;
|
|
237
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
238
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
239
|
+
maxAttempts?: number | __Provider<number>;
|
|
240
|
+
retryMode?: string | __Provider<string>;
|
|
241
|
+
logger?: __Logger;
|
|
242
|
+
extensions?: RuntimeExtension[];
|
|
243
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
244
|
+
}
|
|
245
|
+
export type RTBFabricClientConfigType = Partial<
|
|
246
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
247
|
+
> &
|
|
248
|
+
ClientDefaults &
|
|
249
|
+
UserAgentInputConfig &
|
|
250
|
+
RetryInputConfig &
|
|
251
|
+
RegionInputConfig &
|
|
252
|
+
HostHeaderInputConfig &
|
|
253
|
+
EndpointInputConfig<EndpointParameters> &
|
|
254
|
+
HttpAuthSchemeInputConfig &
|
|
255
|
+
ClientInputEndpointParameters;
|
|
256
|
+
export interface RTBFabricClientConfig extends RTBFabricClientConfigType {}
|
|
257
|
+
export type RTBFabricClientResolvedConfigType =
|
|
258
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
259
|
+
Required<ClientDefaults> &
|
|
260
|
+
RuntimeExtensionsConfig &
|
|
261
|
+
UserAgentResolvedConfig &
|
|
262
|
+
RetryResolvedConfig &
|
|
263
|
+
RegionResolvedConfig &
|
|
264
|
+
HostHeaderResolvedConfig &
|
|
265
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
266
|
+
HttpAuthSchemeResolvedConfig &
|
|
267
|
+
ClientResolvedEndpointParameters;
|
|
268
|
+
export interface RTBFabricClientResolvedConfig
|
|
269
|
+
extends RTBFabricClientResolvedConfigType {}
|
|
270
|
+
export declare class RTBFabricClient extends __Client<
|
|
271
|
+
__HttpHandlerOptions,
|
|
272
|
+
ServiceInputTypes,
|
|
273
|
+
ServiceOutputTypes,
|
|
274
|
+
RTBFabricClientResolvedConfig
|
|
275
|
+
> {
|
|
276
|
+
readonly config: RTBFabricClientResolvedConfig;
|
|
277
|
+
constructor(
|
|
278
|
+
...[configuration]: __CheckOptionalClientConfig<RTBFabricClientConfig>
|
|
279
|
+
);
|
|
280
|
+
destroy(): void;
|
|
281
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { RTBFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): RTBFabricHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { RTBFabricClientResolvedConfig } from "../RTBFabricClient";
|
|
15
|
+
export interface RTBFabricHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface RTBFabricHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
RTBFabricClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
RTBFabricHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultRTBFabricHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: RTBFabricClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<RTBFabricHttpAuthSchemeParameters>;
|
|
31
|
+
export interface RTBFabricHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<RTBFabricHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultRTBFabricHttpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: RTBFabricHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { AcceptLinkRequest, AcceptLinkResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RTBFabricClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RTBFabricClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface AcceptLinkCommandInput extends AcceptLinkRequest {}
|
|
12
|
+
export interface AcceptLinkCommandOutput
|
|
13
|
+
extends AcceptLinkResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const AcceptLinkCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: AcceptLinkCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
AcceptLinkCommandInput,
|
|
20
|
+
AcceptLinkCommandOutput,
|
|
21
|
+
RTBFabricClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: AcceptLinkCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
AcceptLinkCommandInput,
|
|
29
|
+
AcceptLinkCommandOutput,
|
|
30
|
+
RTBFabricClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class AcceptLinkCommand extends AcceptLinkCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: AcceptLinkRequest;
|
|
40
|
+
output: AcceptLinkResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: AcceptLinkCommandInput;
|
|
44
|
+
output: AcceptLinkCommandOutput;
|
|
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
|
+
CreateInboundExternalLinkRequest,
|
|
5
|
+
CreateInboundExternalLinkResponse,
|
|
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 CreateInboundExternalLinkCommandInput
|
|
15
|
+
extends CreateInboundExternalLinkRequest {}
|
|
16
|
+
export interface CreateInboundExternalLinkCommandOutput
|
|
17
|
+
extends CreateInboundExternalLinkResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateInboundExternalLinkCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateInboundExternalLinkCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateInboundExternalLinkCommandInput,
|
|
24
|
+
CreateInboundExternalLinkCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateInboundExternalLinkCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateInboundExternalLinkCommandInput,
|
|
33
|
+
CreateInboundExternalLinkCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateInboundExternalLinkCommand extends CreateInboundExternalLinkCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateInboundExternalLinkRequest;
|
|
44
|
+
output: CreateInboundExternalLinkResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateInboundExternalLinkCommandInput;
|
|
48
|
+
output: CreateInboundExternalLinkCommandOutput;
|
|
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 { CreateLinkRequest, CreateLinkResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RTBFabricClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RTBFabricClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateLinkCommandInput extends CreateLinkRequest {}
|
|
12
|
+
export interface CreateLinkCommandOutput
|
|
13
|
+
extends CreateLinkResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateLinkCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateLinkCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateLinkCommandInput,
|
|
20
|
+
CreateLinkCommandOutput,
|
|
21
|
+
RTBFabricClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateLinkCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateLinkCommandInput,
|
|
29
|
+
CreateLinkCommandOutput,
|
|
30
|
+
RTBFabricClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateLinkCommand extends CreateLinkCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateLinkRequest;
|
|
40
|
+
output: CreateLinkResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateLinkCommandInput;
|
|
44
|
+
output: CreateLinkCommandOutput;
|
|
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
|
+
CreateOutboundExternalLinkRequest,
|
|
5
|
+
CreateOutboundExternalLinkResponse,
|
|
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 CreateOutboundExternalLinkCommandInput
|
|
15
|
+
extends CreateOutboundExternalLinkRequest {}
|
|
16
|
+
export interface CreateOutboundExternalLinkCommandOutput
|
|
17
|
+
extends CreateOutboundExternalLinkResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateOutboundExternalLinkCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateOutboundExternalLinkCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateOutboundExternalLinkCommandInput,
|
|
24
|
+
CreateOutboundExternalLinkCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateOutboundExternalLinkCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateOutboundExternalLinkCommandInput,
|
|
33
|
+
CreateOutboundExternalLinkCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateOutboundExternalLinkCommand extends CreateOutboundExternalLinkCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateOutboundExternalLinkRequest;
|
|
44
|
+
output: CreateOutboundExternalLinkResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateOutboundExternalLinkCommandInput;
|
|
48
|
+
output: CreateOutboundExternalLinkCommandOutput;
|
|
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
|
+
CreateRequesterGatewayRequest,
|
|
5
|
+
CreateRequesterGatewayResponse,
|
|
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 CreateRequesterGatewayCommandInput
|
|
15
|
+
extends CreateRequesterGatewayRequest {}
|
|
16
|
+
export interface CreateRequesterGatewayCommandOutput
|
|
17
|
+
extends CreateRequesterGatewayResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateRequesterGatewayCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateRequesterGatewayCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateRequesterGatewayCommandInput,
|
|
24
|
+
CreateRequesterGatewayCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateRequesterGatewayCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateRequesterGatewayCommandInput,
|
|
33
|
+
CreateRequesterGatewayCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateRequesterGatewayCommand extends CreateRequesterGatewayCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateRequesterGatewayRequest;
|
|
44
|
+
output: CreateRequesterGatewayResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateRequesterGatewayCommandInput;
|
|
48
|
+
output: CreateRequesterGatewayCommandOutput;
|
|
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
|
+
CreateResponderGatewayRequest,
|
|
5
|
+
CreateResponderGatewayResponse,
|
|
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 CreateResponderGatewayCommandInput
|
|
15
|
+
extends CreateResponderGatewayRequest {}
|
|
16
|
+
export interface CreateResponderGatewayCommandOutput
|
|
17
|
+
extends CreateResponderGatewayResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateResponderGatewayCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateResponderGatewayCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateResponderGatewayCommandInput,
|
|
24
|
+
CreateResponderGatewayCommandOutput,
|
|
25
|
+
RTBFabricClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateResponderGatewayCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateResponderGatewayCommandInput,
|
|
33
|
+
CreateResponderGatewayCommandOutput,
|
|
34
|
+
RTBFabricClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateResponderGatewayCommand extends CreateResponderGatewayCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateResponderGatewayRequest;
|
|
44
|
+
output: CreateResponderGatewayResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateResponderGatewayCommandInput;
|
|
48
|
+
output: CreateResponderGatewayCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|