@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,329 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AcceptLinkCommandInput,
|
|
8
|
+
AcceptLinkCommandOutput,
|
|
9
|
+
} from "../commands/AcceptLinkCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateInboundExternalLinkCommandInput,
|
|
12
|
+
CreateInboundExternalLinkCommandOutput,
|
|
13
|
+
} from "../commands/CreateInboundExternalLinkCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateLinkCommandInput,
|
|
16
|
+
CreateLinkCommandOutput,
|
|
17
|
+
} from "../commands/CreateLinkCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateOutboundExternalLinkCommandInput,
|
|
20
|
+
CreateOutboundExternalLinkCommandOutput,
|
|
21
|
+
} from "../commands/CreateOutboundExternalLinkCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateRequesterGatewayCommandInput,
|
|
24
|
+
CreateRequesterGatewayCommandOutput,
|
|
25
|
+
} from "../commands/CreateRequesterGatewayCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateResponderGatewayCommandInput,
|
|
28
|
+
CreateResponderGatewayCommandOutput,
|
|
29
|
+
} from "../commands/CreateResponderGatewayCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteInboundExternalLinkCommandInput,
|
|
32
|
+
DeleteInboundExternalLinkCommandOutput,
|
|
33
|
+
} from "../commands/DeleteInboundExternalLinkCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteLinkCommandInput,
|
|
36
|
+
DeleteLinkCommandOutput,
|
|
37
|
+
} from "../commands/DeleteLinkCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteOutboundExternalLinkCommandInput,
|
|
40
|
+
DeleteOutboundExternalLinkCommandOutput,
|
|
41
|
+
} from "../commands/DeleteOutboundExternalLinkCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteRequesterGatewayCommandInput,
|
|
44
|
+
DeleteRequesterGatewayCommandOutput,
|
|
45
|
+
} from "../commands/DeleteRequesterGatewayCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteResponderGatewayCommandInput,
|
|
48
|
+
DeleteResponderGatewayCommandOutput,
|
|
49
|
+
} from "../commands/DeleteResponderGatewayCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetInboundExternalLinkCommandInput,
|
|
52
|
+
GetInboundExternalLinkCommandOutput,
|
|
53
|
+
} from "../commands/GetInboundExternalLinkCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetLinkCommandInput,
|
|
56
|
+
GetLinkCommandOutput,
|
|
57
|
+
} from "../commands/GetLinkCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetOutboundExternalLinkCommandInput,
|
|
60
|
+
GetOutboundExternalLinkCommandOutput,
|
|
61
|
+
} from "../commands/GetOutboundExternalLinkCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetRequesterGatewayCommandInput,
|
|
64
|
+
GetRequesterGatewayCommandOutput,
|
|
65
|
+
} from "../commands/GetRequesterGatewayCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetResponderGatewayCommandInput,
|
|
68
|
+
GetResponderGatewayCommandOutput,
|
|
69
|
+
} from "../commands/GetResponderGatewayCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListLinksCommandInput,
|
|
72
|
+
ListLinksCommandOutput,
|
|
73
|
+
} from "../commands/ListLinksCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListRequesterGatewaysCommandInput,
|
|
76
|
+
ListRequesterGatewaysCommandOutput,
|
|
77
|
+
} from "../commands/ListRequesterGatewaysCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListResponderGatewaysCommandInput,
|
|
80
|
+
ListResponderGatewaysCommandOutput,
|
|
81
|
+
} from "../commands/ListResponderGatewaysCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListTagsForResourceCommandInput,
|
|
84
|
+
ListTagsForResourceCommandOutput,
|
|
85
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
RejectLinkCommandInput,
|
|
88
|
+
RejectLinkCommandOutput,
|
|
89
|
+
} from "../commands/RejectLinkCommand";
|
|
90
|
+
import {
|
|
91
|
+
TagResourceCommandInput,
|
|
92
|
+
TagResourceCommandOutput,
|
|
93
|
+
} from "../commands/TagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UntagResourceCommandInput,
|
|
96
|
+
UntagResourceCommandOutput,
|
|
97
|
+
} from "../commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateLinkCommandInput,
|
|
100
|
+
UpdateLinkCommandOutput,
|
|
101
|
+
} from "../commands/UpdateLinkCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateLinkModuleFlowCommandInput,
|
|
104
|
+
UpdateLinkModuleFlowCommandOutput,
|
|
105
|
+
} from "../commands/UpdateLinkModuleFlowCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateRequesterGatewayCommandInput,
|
|
108
|
+
UpdateRequesterGatewayCommandOutput,
|
|
109
|
+
} from "../commands/UpdateRequesterGatewayCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateResponderGatewayCommandInput,
|
|
112
|
+
UpdateResponderGatewayCommandOutput,
|
|
113
|
+
} from "../commands/UpdateResponderGatewayCommand";
|
|
114
|
+
export declare const se_AcceptLinkCommand: (
|
|
115
|
+
input: AcceptLinkCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_CreateInboundExternalLinkCommand: (
|
|
119
|
+
input: CreateInboundExternalLinkCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_CreateLinkCommand: (
|
|
123
|
+
input: CreateLinkCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_CreateOutboundExternalLinkCommand: (
|
|
127
|
+
input: CreateOutboundExternalLinkCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_CreateRequesterGatewayCommand: (
|
|
131
|
+
input: CreateRequesterGatewayCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_CreateResponderGatewayCommand: (
|
|
135
|
+
input: CreateResponderGatewayCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_DeleteInboundExternalLinkCommand: (
|
|
139
|
+
input: DeleteInboundExternalLinkCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_DeleteLinkCommand: (
|
|
143
|
+
input: DeleteLinkCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_DeleteOutboundExternalLinkCommand: (
|
|
147
|
+
input: DeleteOutboundExternalLinkCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_DeleteRequesterGatewayCommand: (
|
|
151
|
+
input: DeleteRequesterGatewayCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_DeleteResponderGatewayCommand: (
|
|
155
|
+
input: DeleteResponderGatewayCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_GetInboundExternalLinkCommand: (
|
|
159
|
+
input: GetInboundExternalLinkCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_GetLinkCommand: (
|
|
163
|
+
input: GetLinkCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_GetOutboundExternalLinkCommand: (
|
|
167
|
+
input: GetOutboundExternalLinkCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_GetRequesterGatewayCommand: (
|
|
171
|
+
input: GetRequesterGatewayCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_GetResponderGatewayCommand: (
|
|
175
|
+
input: GetResponderGatewayCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_ListLinksCommand: (
|
|
179
|
+
input: ListLinksCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_ListRequesterGatewaysCommand: (
|
|
183
|
+
input: ListRequesterGatewaysCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_ListResponderGatewaysCommand: (
|
|
187
|
+
input: ListResponderGatewaysCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
191
|
+
input: ListTagsForResourceCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_RejectLinkCommand: (
|
|
195
|
+
input: RejectLinkCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_TagResourceCommand: (
|
|
199
|
+
input: TagResourceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_UntagResourceCommand: (
|
|
203
|
+
input: UntagResourceCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_UpdateLinkCommand: (
|
|
207
|
+
input: UpdateLinkCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_UpdateLinkModuleFlowCommand: (
|
|
211
|
+
input: UpdateLinkModuleFlowCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_UpdateRequesterGatewayCommand: (
|
|
215
|
+
input: UpdateRequesterGatewayCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const se_UpdateResponderGatewayCommand: (
|
|
219
|
+
input: UpdateResponderGatewayCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const de_AcceptLinkCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<AcceptLinkCommandOutput>;
|
|
226
|
+
export declare const de_CreateInboundExternalLinkCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<CreateInboundExternalLinkCommandOutput>;
|
|
230
|
+
export declare const de_CreateLinkCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<CreateLinkCommandOutput>;
|
|
234
|
+
export declare const de_CreateOutboundExternalLinkCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<CreateOutboundExternalLinkCommandOutput>;
|
|
238
|
+
export declare const de_CreateRequesterGatewayCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<CreateRequesterGatewayCommandOutput>;
|
|
242
|
+
export declare const de_CreateResponderGatewayCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<CreateResponderGatewayCommandOutput>;
|
|
246
|
+
export declare const de_DeleteInboundExternalLinkCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DeleteInboundExternalLinkCommandOutput>;
|
|
250
|
+
export declare const de_DeleteLinkCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<DeleteLinkCommandOutput>;
|
|
254
|
+
export declare const de_DeleteOutboundExternalLinkCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<DeleteOutboundExternalLinkCommandOutput>;
|
|
258
|
+
export declare const de_DeleteRequesterGatewayCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<DeleteRequesterGatewayCommandOutput>;
|
|
262
|
+
export declare const de_DeleteResponderGatewayCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<DeleteResponderGatewayCommandOutput>;
|
|
266
|
+
export declare const de_GetInboundExternalLinkCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetInboundExternalLinkCommandOutput>;
|
|
270
|
+
export declare const de_GetLinkCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<GetLinkCommandOutput>;
|
|
274
|
+
export declare const de_GetOutboundExternalLinkCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<GetOutboundExternalLinkCommandOutput>;
|
|
278
|
+
export declare const de_GetRequesterGatewayCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<GetRequesterGatewayCommandOutput>;
|
|
282
|
+
export declare const de_GetResponderGatewayCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<GetResponderGatewayCommandOutput>;
|
|
286
|
+
export declare const de_ListLinksCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListLinksCommandOutput>;
|
|
290
|
+
export declare const de_ListRequesterGatewaysCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<ListRequesterGatewaysCommandOutput>;
|
|
294
|
+
export declare const de_ListResponderGatewaysCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<ListResponderGatewaysCommandOutput>;
|
|
298
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
302
|
+
export declare const de_RejectLinkCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<RejectLinkCommandOutput>;
|
|
306
|
+
export declare const de_TagResourceCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<TagResourceCommandOutput>;
|
|
310
|
+
export declare const de_UntagResourceCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
314
|
+
export declare const de_UpdateLinkCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<UpdateLinkCommandOutput>;
|
|
318
|
+
export declare const de_UpdateLinkModuleFlowCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<UpdateLinkModuleFlowCommandOutput>;
|
|
322
|
+
export declare const de_UpdateRequesterGatewayCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<UpdateRequesterGatewayCommandOutput>;
|
|
326
|
+
export declare const de_UpdateResponderGatewayCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<UpdateResponderGatewayCommandOutput>;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
|
+
defaultUserAgentProvider: (
|
|
15
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
16
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
|
+
| RequestHandler;
|
|
22
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
+
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
31
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
32
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
33
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
34
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
35
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
serviceId: string;
|
|
38
|
+
profile?: string;
|
|
39
|
+
logger: import("@smithy/types").Logger;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
|
+
userAgentAppId?:
|
|
43
|
+
| string
|
|
44
|
+
| undefined
|
|
45
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
46
|
+
retryStrategy?:
|
|
47
|
+
| import("@smithy/types").RetryStrategy
|
|
48
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
49
|
+
endpoint?:
|
|
50
|
+
| ((
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
) &
|
|
57
|
+
(
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Provider<string>
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
))
|
|
65
|
+
| undefined;
|
|
66
|
+
endpointProvider: (
|
|
67
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
|
+
context?: {
|
|
69
|
+
logger?: import("@smithy/types").Logger;
|
|
70
|
+
}
|
|
71
|
+
) => import("@smithy/types").EndpointV2;
|
|
72
|
+
tls?: boolean;
|
|
73
|
+
serviceConfiguredEndpoint?: never;
|
|
74
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
75
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
76
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
77
|
+
credentials?:
|
|
78
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
79
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
80
|
+
signer?:
|
|
81
|
+
| import("@smithy/types").RequestSigner
|
|
82
|
+
| ((
|
|
83
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
85
|
+
signingEscapePath?: boolean;
|
|
86
|
+
systemClockOffset?: number;
|
|
87
|
+
signingRegion?: string;
|
|
88
|
+
signerConstructor?: new (
|
|
89
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
90
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
) => import("@smithy/types").RequestSigner;
|
|
92
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider:
|
|
11
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
+
| ((
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
15
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
16
|
+
>);
|
|
17
|
+
defaultUserAgentProvider: (
|
|
18
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| RequestHandler
|
|
24
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
+
apiVersion: string;
|
|
32
|
+
cacheMiddleware?: boolean | undefined;
|
|
33
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
35
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
36
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
37
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
profile?: string;
|
|
41
|
+
logger: import("@smithy/types").Logger;
|
|
42
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
|
+
retryStrategy?:
|
|
45
|
+
| import("@smithy/types").RetryStrategy
|
|
46
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
47
|
+
endpoint?:
|
|
48
|
+
| ((
|
|
49
|
+
| string
|
|
50
|
+
| import("@smithy/types").Endpoint
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
52
|
+
| import("@smithy/types").EndpointV2
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
54
|
+
) &
|
|
55
|
+
(
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Provider<string>
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
))
|
|
63
|
+
| undefined;
|
|
64
|
+
endpointProvider: (
|
|
65
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
66
|
+
context?: {
|
|
67
|
+
logger?: import("@smithy/types").Logger;
|
|
68
|
+
}
|
|
69
|
+
) => import("@smithy/types").EndpointV2;
|
|
70
|
+
tls?: boolean;
|
|
71
|
+
serviceConfiguredEndpoint?: never;
|
|
72
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
73
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
74
|
+
credentials?:
|
|
75
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
76
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
77
|
+
signer?:
|
|
78
|
+
| import("@smithy/types").RequestSigner
|
|
79
|
+
| ((
|
|
80
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
81
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
82
|
+
signingEscapePath?: boolean;
|
|
83
|
+
systemClockOffset?: number;
|
|
84
|
+
signingRegion?: string;
|
|
85
|
+
signerConstructor?: new (
|
|
86
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
87
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
88
|
+
) => import("@smithy/types").RequestSigner;
|
|
89
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
+
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
27
|
+
profile?: string;
|
|
28
|
+
defaultUserAgentProvider: (
|
|
29
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
30
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
|
+
logger: import("@smithy/types").Logger;
|
|
39
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
defaultsMode:
|
|
41
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
42
|
+
| import("@smithy/types").Provider<
|
|
43
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
44
|
+
>;
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
|
+
userAgentAppId?:
|
|
47
|
+
| string
|
|
48
|
+
| undefined
|
|
49
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
50
|
+
retryStrategy?:
|
|
51
|
+
| import("@smithy/types").RetryStrategy
|
|
52
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
53
|
+
endpoint?:
|
|
54
|
+
| ((
|
|
55
|
+
| string
|
|
56
|
+
| import("@smithy/types").Endpoint
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
58
|
+
| import("@smithy/types").EndpointV2
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
60
|
+
) &
|
|
61
|
+
(
|
|
62
|
+
| string
|
|
63
|
+
| import("@smithy/types").Provider<string>
|
|
64
|
+
| import("@smithy/types").Endpoint
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
66
|
+
| import("@smithy/types").EndpointV2
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
68
|
+
))
|
|
69
|
+
| undefined;
|
|
70
|
+
endpointProvider: (
|
|
71
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
72
|
+
context?: {
|
|
73
|
+
logger?: import("@smithy/types").Logger;
|
|
74
|
+
}
|
|
75
|
+
) => import("@smithy/types").EndpointV2;
|
|
76
|
+
tls?: boolean;
|
|
77
|
+
serviceConfiguredEndpoint?: never;
|
|
78
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
79
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
80
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
81
|
+
credentials?:
|
|
82
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
83
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
84
|
+
signer?:
|
|
85
|
+
| import("@smithy/types").RequestSigner
|
|
86
|
+
| ((
|
|
87
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
89
|
+
signingEscapePath?: boolean;
|
|
90
|
+
systemClockOffset?: number;
|
|
91
|
+
signingRegion?: string;
|
|
92
|
+
signerConstructor?: new (
|
|
93
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
94
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
) => import("@smithy/types").RequestSigner;
|
|
96
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { RTBFabricClientConfig } from "./RTBFabricClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
|
|
3
|
+
apiVersion: string;
|
|
4
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
endpointProvider: (
|
|
8
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
9
|
+
context?: {
|
|
10
|
+
logger?: import("@smithy/types").Logger;
|
|
11
|
+
}
|
|
12
|
+
) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RTBFabricExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: RTBFabricExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./waitForInboundExternalLinkActive";
|
|
2
|
+
export * from "./waitForLinkAccepted";
|
|
3
|
+
export * from "./waitForLinkActive";
|
|
4
|
+
export * from "./waitForOutboundExternalLinkActive";
|
|
5
|
+
export * from "./waitForRequesterGatewayActive";
|
|
6
|
+
export * from "./waitForRequesterGatewayDeleted";
|
|
7
|
+
export * from "./waitForResponderGatewayActive";
|
|
8
|
+
export * from "./waitForResponderGatewayDeleted";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
|
|
3
|
+
import { RTBFabricClient } from "../RTBFabricClient";
|
|
4
|
+
export declare const waitForInboundExternalLinkActive: (
|
|
5
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
6
|
+
input: GetInboundExternalLinkCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilInboundExternalLinkActive: (
|
|
9
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
10
|
+
input: GetInboundExternalLinkCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetLinkCommandInput } from "../commands/GetLinkCommand";
|
|
3
|
+
import { RTBFabricClient } from "../RTBFabricClient";
|
|
4
|
+
export declare const waitForLinkAccepted: (
|
|
5
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
6
|
+
input: GetLinkCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilLinkAccepted: (
|
|
9
|
+
params: WaiterConfiguration<RTBFabricClient>,
|
|
10
|
+
input: GetLinkCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|