@aws-sdk/client-rtbfabric 3.1075.0 → 3.1076.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/dist-cjs/index.js +1359 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/RTBFabricServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -87
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1053
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultRTBFabricHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "rtbfabric",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultRTBFabricHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1163 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://rtbfabric-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://rtbfabric-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://rtbfabric.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://rtbfabric.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class RTBFabricServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, RTBFabricServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends RTBFabricServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ConflictException extends RTBFabricServiceException {
|
|
152
|
+
name = "ConflictException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "ConflictException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class InternalServerException extends RTBFabricServiceException {
|
|
164
|
+
name = "InternalServerException";
|
|
165
|
+
$fault = "server";
|
|
166
|
+
$retryable = {};
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "InternalServerException",
|
|
170
|
+
$fault: "server",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class ResourceNotFoundException extends RTBFabricServiceException {
|
|
177
|
+
name = "ResourceNotFoundException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "ResourceNotFoundException",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
class ThrottlingException extends RTBFabricServiceException {
|
|
189
|
+
name = "ThrottlingException";
|
|
190
|
+
$fault = "client";
|
|
191
|
+
$retryable = {};
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "ThrottlingException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class ValidationException extends RTBFabricServiceException {
|
|
202
|
+
name = "ValidationException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ValidationException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class ServiceQuotaExceededException extends RTBFabricServiceException {
|
|
214
|
+
name = "ServiceQuotaExceededException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "ServiceQuotaExceededException",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
const _A = "Action";
|
|
227
|
+
const _AC = "AssociateCertificate";
|
|
228
|
+
const _ACR = "AssociateCertificateRequest";
|
|
229
|
+
const _ACRs = "AssociateCertificateResponse";
|
|
230
|
+
const _ADE = "AccessDeniedException";
|
|
231
|
+
const _AL = "AcceptLink";
|
|
232
|
+
const _ALR = "AcceptLinkRequest";
|
|
233
|
+
const _ALRc = "AcceptLinkResponse";
|
|
234
|
+
const _ASGC = "AutoScalingGroupsConfiguration";
|
|
235
|
+
const _BECC = "Base64EncodedCertificateChain";
|
|
236
|
+
const _CAC = "CertificateAuthorityCertificates";
|
|
237
|
+
const _CAS = "CertificateAssociationSummary";
|
|
238
|
+
const _CASL = "CertificateAssociationSummaryList";
|
|
239
|
+
const _CE = "ConflictException";
|
|
240
|
+
const _CIEL = "CreateInboundExternalLink";
|
|
241
|
+
const _CIELR = "CreateInboundExternalLinkRequest";
|
|
242
|
+
const _CIELRr = "CreateInboundExternalLinkResponse";
|
|
243
|
+
const _CL = "CreateLink";
|
|
244
|
+
const _CLR = "CreateLinkRequest";
|
|
245
|
+
const _CLRR = "CreateLinkRoutingRule";
|
|
246
|
+
const _CLRRR = "CreateLinkRoutingRuleRequest";
|
|
247
|
+
const _CLRRRr = "CreateLinkRoutingRuleResponse";
|
|
248
|
+
const _CLRr = "CreateLinkResponse";
|
|
249
|
+
const _COEL = "CreateOutboundExternalLink";
|
|
250
|
+
const _COELR = "CreateOutboundExternalLinkRequest";
|
|
251
|
+
const _COELRr = "CreateOutboundExternalLinkResponse";
|
|
252
|
+
const _CRG = "CreateRequesterGateway";
|
|
253
|
+
const _CRGR = "CreateRequesterGatewayRequest";
|
|
254
|
+
const _CRGRr = "CreateRequesterGatewayResponse";
|
|
255
|
+
const _CRGRre = "CreateResponderGatewayRequest";
|
|
256
|
+
const _CRGRrea = "CreateResponderGatewayResponse";
|
|
257
|
+
const _CRGr = "CreateResponderGateway";
|
|
258
|
+
const _DC = "DisassociateCertificate";
|
|
259
|
+
const _DCR = "DisassociateCertificateRequest";
|
|
260
|
+
const _DCRi = "DisassociateCertificateResponse";
|
|
261
|
+
const _DIEL = "DeleteInboundExternalLink";
|
|
262
|
+
const _DIELR = "DeleteInboundExternalLinkRequest";
|
|
263
|
+
const _DIELRe = "DeleteInboundExternalLinkResponse";
|
|
264
|
+
const _DL = "DeleteLink";
|
|
265
|
+
const _DLR = "DeleteLinkRequest";
|
|
266
|
+
const _DLRR = "DeleteLinkRoutingRule";
|
|
267
|
+
const _DLRRR = "DeleteLinkRoutingRuleRequest";
|
|
268
|
+
const _DLRRRe = "DeleteLinkRoutingRuleResponse";
|
|
269
|
+
const _DLRe = "DeleteLinkResponse";
|
|
270
|
+
const _DOEL = "DeleteOutboundExternalLink";
|
|
271
|
+
const _DOELR = "DeleteOutboundExternalLinkRequest";
|
|
272
|
+
const _DOELRe = "DeleteOutboundExternalLinkResponse";
|
|
273
|
+
const _DRG = "DeleteRequesterGateway";
|
|
274
|
+
const _DRGR = "DeleteRequesterGatewayRequest";
|
|
275
|
+
const _DRGRe = "DeleteRequesterGatewayResponse";
|
|
276
|
+
const _DRGRel = "DeleteResponderGatewayRequest";
|
|
277
|
+
const _DRGRele = "DeleteResponderGatewayResponse";
|
|
278
|
+
const _DRGe = "DeleteResponderGateway";
|
|
279
|
+
const _EEC = "EksEndpointsConfiguration";
|
|
280
|
+
const _F = "Filter";
|
|
281
|
+
const _FC = "FilterCriterion";
|
|
282
|
+
const _FCi = "FilterConfiguration";
|
|
283
|
+
const _FCil = "FilterCriteria";
|
|
284
|
+
const _GCA = "GetCertificateAssociation";
|
|
285
|
+
const _GCAR = "GetCertificateAssociationRequest";
|
|
286
|
+
const _GCARe = "GetCertificateAssociationResponse";
|
|
287
|
+
const _GIEL = "GetInboundExternalLink";
|
|
288
|
+
const _GIELR = "GetInboundExternalLinkRequest";
|
|
289
|
+
const _GIELRe = "GetInboundExternalLinkResponse";
|
|
290
|
+
const _GL = "GetLink";
|
|
291
|
+
const _GLR = "GetLinkRequest";
|
|
292
|
+
const _GLRR = "GetLinkRoutingRule";
|
|
293
|
+
const _GLRRR = "GetLinkRoutingRuleRequest";
|
|
294
|
+
const _GLRRRe = "GetLinkRoutingRuleResponse";
|
|
295
|
+
const _GLRe = "GetLinkResponse";
|
|
296
|
+
const _GOEL = "GetOutboundExternalLink";
|
|
297
|
+
const _GOELR = "GetOutboundExternalLinkRequest";
|
|
298
|
+
const _GOELRe = "GetOutboundExternalLinkResponse";
|
|
299
|
+
const _GRG = "GetRequesterGateway";
|
|
300
|
+
const _GRGR = "GetRequesterGatewayRequest";
|
|
301
|
+
const _GRGRe = "GetRequesterGatewayResponse";
|
|
302
|
+
const _GRGRet = "GetResponderGatewayRequest";
|
|
303
|
+
const _GRGRete = "GetResponderGatewayResponse";
|
|
304
|
+
const _GRGe = "GetResponderGateway";
|
|
305
|
+
const _HCC = "HealthCheckConfig";
|
|
306
|
+
const _HTA = "HeaderTagAction";
|
|
307
|
+
const _ISE = "InternalServerException";
|
|
308
|
+
const _LA = "LinkAttributes";
|
|
309
|
+
const _LALC = "LinkApplicationLogConfiguration";
|
|
310
|
+
const _LALS = "LinkApplicationLogSampling";
|
|
311
|
+
const _LC = "ListenerConfig";
|
|
312
|
+
const _LCA = "ListCertificateAssociations";
|
|
313
|
+
const _LCAR = "ListCertificateAssociationsRequest";
|
|
314
|
+
const _LCARi = "ListCertificateAssociationsResponse";
|
|
315
|
+
const _LL = "LinkList";
|
|
316
|
+
const _LLR = "ListLinksRequest";
|
|
317
|
+
const _LLRR = "ListLinkRoutingRules";
|
|
318
|
+
const _LLRRR = "ListLinkRoutingRulesRequest";
|
|
319
|
+
const _LLRRRi = "ListLinkRoutingRulesResponse";
|
|
320
|
+
const _LLRS = "ListLinksResponseStructure";
|
|
321
|
+
const _LLRi = "ListLinksResponse";
|
|
322
|
+
const _LLS = "LinkLogSettings";
|
|
323
|
+
const _LLi = "ListLinks";
|
|
324
|
+
const _LRG = "ListRequesterGateways";
|
|
325
|
+
const _LRGR = "ListRequesterGatewaysRequest";
|
|
326
|
+
const _LRGRi = "ListRequesterGatewaysResponse";
|
|
327
|
+
const _LRGRis = "ListResponderGatewaysRequest";
|
|
328
|
+
const _LRGRist = "ListResponderGatewaysResponse";
|
|
329
|
+
const _LRGi = "ListResponderGateways";
|
|
330
|
+
const _LRRL = "LinkRoutingRuleList";
|
|
331
|
+
const _LRRS = "LinkRoutingRuleSummary";
|
|
332
|
+
const _LTFR = "ListTagsForResource";
|
|
333
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
334
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
335
|
+
const _MC = "ModuleConfiguration";
|
|
336
|
+
const _MCL = "ModuleConfigurationList";
|
|
337
|
+
const _MEC = "ManagedEndpointConfiguration";
|
|
338
|
+
const _MP = "ModuleParameters";
|
|
339
|
+
const _NBA = "NoBidAction";
|
|
340
|
+
const _NBMP = "NoBidModuleParameters";
|
|
341
|
+
const _ORAMP = "OpenRtbAttributeModuleParameters";
|
|
342
|
+
const _QSKVP = "QueryStringKeyValuePair";
|
|
343
|
+
const _RC = "RuleCondition";
|
|
344
|
+
const _REM = "ResponderErrorMasking";
|
|
345
|
+
const _REMFHC = "ResponderErrorMaskingForHttpCode";
|
|
346
|
+
const _RL = "RejectLink";
|
|
347
|
+
const _RLMP = "RateLimiterModuleParameters";
|
|
348
|
+
const _RLR = "RejectLinkRequest";
|
|
349
|
+
const _RLRe = "RejectLinkResponse";
|
|
350
|
+
const _RNFE = "ResourceNotFoundException";
|
|
351
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
352
|
+
const _TE = "ThrottlingException";
|
|
353
|
+
const _TR = "TagResource";
|
|
354
|
+
const _TRR = "TagResourceRequest";
|
|
355
|
+
const _TRRa = "TagResourceResponse";
|
|
356
|
+
const _TSC = "TrustStoreConfiguration";
|
|
357
|
+
const _UL = "UpdateLink";
|
|
358
|
+
const _ULMF = "UpdateLinkModuleFlow";
|
|
359
|
+
const _ULMFR = "UpdateLinkModuleFlowRequest";
|
|
360
|
+
const _ULMFRp = "UpdateLinkModuleFlowResponse";
|
|
361
|
+
const _ULR = "UpdateLinkRequest";
|
|
362
|
+
const _ULRR = "UpdateLinkRoutingRule";
|
|
363
|
+
const _ULRRR = "UpdateLinkRoutingRuleRequest";
|
|
364
|
+
const _ULRRRp = "UpdateLinkRoutingRuleResponse";
|
|
365
|
+
const _ULRp = "UpdateLinkResponse";
|
|
366
|
+
const _UR = "UntagResource";
|
|
367
|
+
const _URG = "UpdateRequesterGateway";
|
|
368
|
+
const _URGR = "UpdateRequesterGatewayRequest";
|
|
369
|
+
const _URGRp = "UpdateRequesterGatewayResponse";
|
|
370
|
+
const _URGRpd = "UpdateResponderGatewayRequest";
|
|
371
|
+
const _URGRpda = "UpdateResponderGatewayResponse";
|
|
372
|
+
const _URGp = "UpdateResponderGateway";
|
|
373
|
+
const _URR = "UntagResourceRequest";
|
|
374
|
+
const _URRn = "UntagResourceResponse";
|
|
375
|
+
const _VE = "ValidationException";
|
|
376
|
+
const _a = "attributes";
|
|
377
|
+
const _aA = "associatedAt";
|
|
378
|
+
const _aCA = "acmCertificateArn";
|
|
379
|
+
const _aL = "applicationLogs";
|
|
380
|
+
const _aLC = "activeLinksCount";
|
|
381
|
+
const _aSG = "autoScalingGroups";
|
|
382
|
+
const _aSGN = "autoScalingGroupNames";
|
|
383
|
+
const _ac = "action";
|
|
384
|
+
const _c = "client";
|
|
385
|
+
const _cA = "createdAt";
|
|
386
|
+
const _cAC = "certificateAuthorityCertificates";
|
|
387
|
+
const _cASCCC = "clusterApiServerCaCertificateChain";
|
|
388
|
+
const _cASEU = "clusterApiServerEndpointUri";
|
|
389
|
+
const _cAe = "certificateAssociations";
|
|
390
|
+
const _cN = "clusterName";
|
|
391
|
+
const _cPI = "customerProvidedId";
|
|
392
|
+
const _cT = "connectivityType";
|
|
393
|
+
const _cTl = "clientToken";
|
|
394
|
+
const _co = "conditions";
|
|
395
|
+
const _cr = "criteria";
|
|
396
|
+
const _d = "direction";
|
|
397
|
+
const _dN = "domainName";
|
|
398
|
+
const _dO = "dependsOn";
|
|
399
|
+
const _de = "description";
|
|
400
|
+
const _e = "error";
|
|
401
|
+
const _eE = "eksEndpoints";
|
|
402
|
+
const _eIE = "externalInboundEndpoint";
|
|
403
|
+
const _eL = "errorLog";
|
|
404
|
+
const _eRN = "endpointsResourceName";
|
|
405
|
+
const _eRNn = "endpointsResourceNamespace";
|
|
406
|
+
const _fC = "filterConfiguration";
|
|
407
|
+
const _fL = "filterLog";
|
|
408
|
+
const _fM = "flowModules";
|
|
409
|
+
const _fT = "filterType";
|
|
410
|
+
const _gI = "gatewayId";
|
|
411
|
+
const _gIa = "gatewayIds";
|
|
412
|
+
const _gT = "gatewayType";
|
|
413
|
+
const _h = "http";
|
|
414
|
+
const _hC = "httpCode";
|
|
415
|
+
const _hCC = "healthCheckConfig";
|
|
416
|
+
const _hE = "httpError";
|
|
417
|
+
const _hH = "hostHeader";
|
|
418
|
+
const _hHW = "hostHeaderWildcard";
|
|
419
|
+
const _hP = "holdbackPercentage";
|
|
420
|
+
const _hQ = "httpQuery";
|
|
421
|
+
const _hRA = "httpResponderAllowed";
|
|
422
|
+
const _hT = "headerTag";
|
|
423
|
+
const _hTC = "healthyThresholdCount";
|
|
424
|
+
const _iLC = "inboundLinksCount";
|
|
425
|
+
const _iS = "intervalSeconds";
|
|
426
|
+
const _k = "key";
|
|
427
|
+
const _l = "links";
|
|
428
|
+
const _lC = "listenerConfig";
|
|
429
|
+
const _lI = "linkId";
|
|
430
|
+
const _lRC = "linksRequestedCount";
|
|
431
|
+
const _lS = "logSettings";
|
|
432
|
+
const _lT = "loggingTypes";
|
|
433
|
+
const _m = "message";
|
|
434
|
+
const _mEC = "managedEndpointConfiguration";
|
|
435
|
+
const _mP = "moduleParameters";
|
|
436
|
+
const _mR = "maxResults";
|
|
437
|
+
const _mo = "modules";
|
|
438
|
+
const _n = "name";
|
|
439
|
+
const _nB = "noBid";
|
|
440
|
+
const _nBRC = "noBidReasonCode";
|
|
441
|
+
const _nT = "nextToken";
|
|
442
|
+
const _oRA = "openRtbAttribute";
|
|
443
|
+
const _p = "priority";
|
|
444
|
+
const _pE = "publicEndpoint";
|
|
445
|
+
const _pEa = "pathExact";
|
|
446
|
+
const _pFM = "pendingFlowModules";
|
|
447
|
+
const _pGI = "peerGatewayId";
|
|
448
|
+
const _pP = "pathPrefix";
|
|
449
|
+
const _pTP = "passThroughPercentage";
|
|
450
|
+
const _pa = "path";
|
|
451
|
+
const _po = "port";
|
|
452
|
+
const _pr = "protocol";
|
|
453
|
+
const _pro = "protocols";
|
|
454
|
+
const _qSE = "queryStringEquals";
|
|
455
|
+
const _qSEu = "queryStringExists";
|
|
456
|
+
const _r = "rules";
|
|
457
|
+
const _rA = "roleArn";
|
|
458
|
+
const _rAe = "resourceArn";
|
|
459
|
+
const _rC = "reasonCode";
|
|
460
|
+
const _rEM = "responderErrorMasking";
|
|
461
|
+
const _rI = "ruleId";
|
|
462
|
+
const _rL = "rateLimiter";
|
|
463
|
+
const _rLP = "responseLoggingPercentage";
|
|
464
|
+
const _re = "reason";
|
|
465
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rtbfabric";
|
|
466
|
+
const _sCM = "statusCodeMatcher";
|
|
467
|
+
const _sGI = "securityGroupIds";
|
|
468
|
+
const _sI = "subnetIds";
|
|
469
|
+
const _sa = "sampling";
|
|
470
|
+
const _se = "server";
|
|
471
|
+
const _st = "status";
|
|
472
|
+
const _t = "tags";
|
|
473
|
+
const _tIM = "timeoutInMillis";
|
|
474
|
+
const _tK = "tagKeys";
|
|
475
|
+
const _tLC = "totalLinksCount";
|
|
476
|
+
const _tM = "timeoutMs";
|
|
477
|
+
const _tSC = "trustStoreConfiguration";
|
|
478
|
+
const _tp = "tps";
|
|
479
|
+
const _uA = "updatedAt";
|
|
480
|
+
const _uTC = "unhealthyThresholdCount";
|
|
481
|
+
const _v = "values";
|
|
482
|
+
const _vI = "vpcId";
|
|
483
|
+
const _va = "value";
|
|
484
|
+
const _ve = "version";
|
|
485
|
+
const n0 = "com.amazonaws.rtbfabric";
|
|
486
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
487
|
+
var RTBFabricServiceException$ = [-3, _s, "RTBFabricServiceException", 0, [], []];
|
|
488
|
+
_s_registry.registerError(RTBFabricServiceException$, RTBFabricServiceException);
|
|
489
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
490
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
491
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
492
|
+
[_m],
|
|
493
|
+
[0], 1
|
|
494
|
+
];
|
|
495
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
496
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
497
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
498
|
+
[_m],
|
|
499
|
+
[0], 1
|
|
500
|
+
];
|
|
501
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
502
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
503
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
504
|
+
[_m],
|
|
505
|
+
[0], 1
|
|
506
|
+
];
|
|
507
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
508
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
509
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
510
|
+
[_m],
|
|
511
|
+
[0], 1
|
|
512
|
+
];
|
|
513
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
514
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
515
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
516
|
+
[_m],
|
|
517
|
+
[0], 1
|
|
518
|
+
];
|
|
519
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
520
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
521
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
522
|
+
[_m],
|
|
523
|
+
[0], 1
|
|
524
|
+
];
|
|
525
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
526
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
527
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
528
|
+
[_m],
|
|
529
|
+
[0], 1
|
|
530
|
+
];
|
|
531
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
532
|
+
const errorTypeRegistries = [
|
|
533
|
+
_s_registry,
|
|
534
|
+
n0_registry,
|
|
535
|
+
];
|
|
536
|
+
var Base64EncodedCertificateChain = [0, n0, _BECC, 8, 0];
|
|
537
|
+
var AcceptLinkRequest$ = [3, n0, _ALR,
|
|
538
|
+
0,
|
|
539
|
+
[_gI, _lI, _lS, _a, _tIM],
|
|
540
|
+
[[0, 1], [0, 1], () => LinkLogSettings$, () => LinkAttributes$, 1], 3
|
|
541
|
+
];
|
|
542
|
+
var AcceptLinkResponse$ = [3, n0, _ALRc,
|
|
543
|
+
0,
|
|
544
|
+
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
|
|
545
|
+
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0], 6
|
|
546
|
+
];
|
|
547
|
+
var AssociateCertificateRequest$ = [3, n0, _ACR,
|
|
548
|
+
0,
|
|
549
|
+
[_gI, _aCA, _cTl],
|
|
550
|
+
[[0, 1], 0, [0, 4]], 2
|
|
551
|
+
];
|
|
552
|
+
var AssociateCertificateResponse$ = [3, n0, _ACRs,
|
|
553
|
+
0,
|
|
554
|
+
[_gI, _aCA, _st],
|
|
555
|
+
[0, 0, 0], 3
|
|
556
|
+
];
|
|
557
|
+
var AutoScalingGroupsConfiguration$ = [3, n0, _ASGC,
|
|
558
|
+
0,
|
|
559
|
+
[_aSGN, _rA, _hCC],
|
|
560
|
+
[64 | 0, 0, () => HealthCheckConfig$], 2
|
|
561
|
+
];
|
|
562
|
+
var CertificateAssociationSummary$ = [3, n0, _CAS,
|
|
563
|
+
0,
|
|
564
|
+
[_aCA, _st, _aA, _uA],
|
|
565
|
+
[0, 0, 4, 4], 2
|
|
566
|
+
];
|
|
567
|
+
var CreateInboundExternalLinkRequest$ = [3, n0, _CIELR,
|
|
568
|
+
0,
|
|
569
|
+
[_gI, _lS, _cTl, _a, _t],
|
|
570
|
+
[[0, 1], () => LinkLogSettings$, [0, 4], () => LinkAttributes$, 128 | 0], 2
|
|
571
|
+
];
|
|
572
|
+
var CreateInboundExternalLinkResponse$ = [3, n0, _CIELRr,
|
|
573
|
+
0,
|
|
574
|
+
[_gI, _lI, _st, _dN],
|
|
575
|
+
[0, 0, 0, 0], 4
|
|
576
|
+
];
|
|
577
|
+
var CreateLinkRequest$ = [3, n0, _CLR,
|
|
578
|
+
0,
|
|
579
|
+
[_gI, _pGI, _lS, _a, _hRA, _t, _tIM],
|
|
580
|
+
[[0, 1], 0, () => LinkLogSettings$, () => LinkAttributes$, 2, 128 | 0, 1], 3
|
|
581
|
+
];
|
|
582
|
+
var CreateLinkResponse$ = [3, n0, _CLRr,
|
|
583
|
+
0,
|
|
584
|
+
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _cPI],
|
|
585
|
+
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 0], 6
|
|
586
|
+
];
|
|
587
|
+
var CreateLinkRoutingRuleRequest$ = [3, n0, _CLRRR,
|
|
588
|
+
0,
|
|
589
|
+
[_gI, _lI, _p, _co, _cTl, _t],
|
|
590
|
+
[[0, 1], [0, 1], 1, () => RuleCondition$, [0, 4], 128 | 0], 4
|
|
591
|
+
];
|
|
592
|
+
var CreateLinkRoutingRuleResponse$ = [3, n0, _CLRRRr,
|
|
593
|
+
0,
|
|
594
|
+
[_rI, _st, _cA],
|
|
595
|
+
[0, 0, 4], 3
|
|
596
|
+
];
|
|
597
|
+
var CreateOutboundExternalLinkRequest$ = [3, n0, _COELR,
|
|
598
|
+
0,
|
|
599
|
+
[_gI, _pE, _lS, _cTl, _a, _t],
|
|
600
|
+
[[0, 1], 0, () => LinkLogSettings$, [0, 4], () => LinkAttributes$, 128 | 0], 3
|
|
601
|
+
];
|
|
602
|
+
var CreateOutboundExternalLinkResponse$ = [3, n0, _COELRr,
|
|
603
|
+
0,
|
|
604
|
+
[_gI, _lI, _st],
|
|
605
|
+
[0, 0, 0], 3
|
|
606
|
+
];
|
|
607
|
+
var CreateRequesterGatewayRequest$ = [3, n0, _CRGR,
|
|
608
|
+
0,
|
|
609
|
+
[_vI, _sI, _sGI, _cTl, _de, _t],
|
|
610
|
+
[0, 64 | 0, 64 | 0, [0, 4], 0, 128 | 0], 3
|
|
611
|
+
];
|
|
612
|
+
var CreateRequesterGatewayResponse$ = [3, n0, _CRGRr,
|
|
613
|
+
0,
|
|
614
|
+
[_gI, _dN, _st],
|
|
615
|
+
[0, 0, 0], 3
|
|
616
|
+
];
|
|
617
|
+
var CreateResponderGatewayRequest$ = [3, n0, _CRGRre,
|
|
618
|
+
0,
|
|
619
|
+
[_vI, _sI, _sGI, _po, _pr, _dN, _lC, _tSC, _mEC, _cTl, _de, _t, _gT],
|
|
620
|
+
[0, 64 | 0, 64 | 0, 1, 0, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], [0, 4], 0, 128 | 0, 0], 5
|
|
621
|
+
];
|
|
622
|
+
var CreateResponderGatewayResponse$ = [3, n0, _CRGRrea,
|
|
623
|
+
0,
|
|
624
|
+
[_gI, _st, _lC, _eIE],
|
|
625
|
+
[0, 0, () => ListenerConfig$, 0], 2
|
|
626
|
+
];
|
|
627
|
+
var DeleteInboundExternalLinkRequest$ = [3, n0, _DIELR,
|
|
628
|
+
0,
|
|
629
|
+
[_gI, _lI],
|
|
630
|
+
[[0, 1], [0, 1]], 2
|
|
631
|
+
];
|
|
632
|
+
var DeleteInboundExternalLinkResponse$ = [3, n0, _DIELRe,
|
|
633
|
+
0,
|
|
634
|
+
[_lI, _st],
|
|
635
|
+
[0, 0], 2
|
|
636
|
+
];
|
|
637
|
+
var DeleteLinkRequest$ = [3, n0, _DLR,
|
|
638
|
+
0,
|
|
639
|
+
[_gI, _lI],
|
|
640
|
+
[[0, 1], [0, 1]], 2
|
|
641
|
+
];
|
|
642
|
+
var DeleteLinkResponse$ = [3, n0, _DLRe,
|
|
643
|
+
0,
|
|
644
|
+
[_lI, _st],
|
|
645
|
+
[0, 0], 2
|
|
646
|
+
];
|
|
647
|
+
var DeleteLinkRoutingRuleRequest$ = [3, n0, _DLRRR,
|
|
648
|
+
0,
|
|
649
|
+
[_gI, _lI, _rI],
|
|
650
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
651
|
+
];
|
|
652
|
+
var DeleteLinkRoutingRuleResponse$ = [3, n0, _DLRRRe,
|
|
653
|
+
0,
|
|
654
|
+
[_rI, _st],
|
|
655
|
+
[0, 0], 2
|
|
656
|
+
];
|
|
657
|
+
var DeleteOutboundExternalLinkRequest$ = [3, n0, _DOELR,
|
|
658
|
+
0,
|
|
659
|
+
[_gI, _lI],
|
|
660
|
+
[[0, 1], [0, 1]], 2
|
|
661
|
+
];
|
|
662
|
+
var DeleteOutboundExternalLinkResponse$ = [3, n0, _DOELRe,
|
|
663
|
+
0,
|
|
664
|
+
[_lI, _st],
|
|
665
|
+
[0, 0], 2
|
|
666
|
+
];
|
|
667
|
+
var DeleteRequesterGatewayRequest$ = [3, n0, _DRGR,
|
|
668
|
+
0,
|
|
669
|
+
[_gI],
|
|
670
|
+
[[0, 1]], 1
|
|
671
|
+
];
|
|
672
|
+
var DeleteRequesterGatewayResponse$ = [3, n0, _DRGRe,
|
|
673
|
+
0,
|
|
674
|
+
[_gI, _st],
|
|
675
|
+
[0, 0], 2
|
|
676
|
+
];
|
|
677
|
+
var DeleteResponderGatewayRequest$ = [3, n0, _DRGRel,
|
|
678
|
+
0,
|
|
679
|
+
[_gI],
|
|
680
|
+
[[0, 1]], 1
|
|
681
|
+
];
|
|
682
|
+
var DeleteResponderGatewayResponse$ = [3, n0, _DRGRele,
|
|
683
|
+
0,
|
|
684
|
+
[_gI, _st],
|
|
685
|
+
[0, 0], 2
|
|
686
|
+
];
|
|
687
|
+
var DisassociateCertificateRequest$ = [3, n0, _DCR,
|
|
688
|
+
0,
|
|
689
|
+
[_gI, _aCA],
|
|
690
|
+
[[0, 1], [0, { [_hQ]: _aCA }]], 2
|
|
691
|
+
];
|
|
692
|
+
var DisassociateCertificateResponse$ = [3, n0, _DCRi,
|
|
693
|
+
0,
|
|
694
|
+
[_gI, _aCA, _st],
|
|
695
|
+
[0, 0, 0], 3
|
|
696
|
+
];
|
|
697
|
+
var EksEndpointsConfiguration$ = [3, n0, _EEC,
|
|
698
|
+
0,
|
|
699
|
+
[_eRN, _eRNn, _cASEU, _cASCCC, _cN, _rA],
|
|
700
|
+
[0, 0, 0, [() => Base64EncodedCertificateChain, 0], 0, 0], 6
|
|
701
|
+
];
|
|
702
|
+
var Filter$ = [3, n0, _F,
|
|
703
|
+
0,
|
|
704
|
+
[_cr],
|
|
705
|
+
[() => FilterCriteria], 1
|
|
706
|
+
];
|
|
707
|
+
var FilterCriterion$ = [3, n0, _FC,
|
|
708
|
+
0,
|
|
709
|
+
[_pa, _v],
|
|
710
|
+
[0, 64 | 0], 2
|
|
711
|
+
];
|
|
712
|
+
var GetCertificateAssociationRequest$ = [3, n0, _GCAR,
|
|
713
|
+
0,
|
|
714
|
+
[_gI, _aCA],
|
|
715
|
+
[[0, 1], [0, { [_hQ]: _aCA }]], 2
|
|
716
|
+
];
|
|
717
|
+
var GetCertificateAssociationResponse$ = [3, n0, _GCARe,
|
|
718
|
+
0,
|
|
719
|
+
[_gI, _aCA, _st, _aA, _uA],
|
|
720
|
+
[0, 0, 0, 4, 4], 3
|
|
721
|
+
];
|
|
722
|
+
var GetInboundExternalLinkRequest$ = [3, n0, _GIELR,
|
|
723
|
+
0,
|
|
724
|
+
[_gI, _lI],
|
|
725
|
+
[[0, 1], [0, 1]], 2
|
|
726
|
+
];
|
|
727
|
+
var GetInboundExternalLinkResponse$ = [3, n0, _GIELRe,
|
|
728
|
+
0,
|
|
729
|
+
[_gI, _lI, _st, _dN, _fM, _pFM, _a, _cA, _uA, _t, _lS, _cT],
|
|
730
|
+
[0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, 4, 4, 128 | 0, () => LinkLogSettings$, 0], 4
|
|
731
|
+
];
|
|
732
|
+
var GetLinkRequest$ = [3, n0, _GLR,
|
|
733
|
+
0,
|
|
734
|
+
[_gI, _lI],
|
|
735
|
+
[[0, 1], [0, 1]], 2
|
|
736
|
+
];
|
|
737
|
+
var GetLinkResponse$ = [3, n0, _GLRe,
|
|
738
|
+
0,
|
|
739
|
+
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _hRA, _tIM],
|
|
740
|
+
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 128 | 0, 2, 1], 6
|
|
741
|
+
];
|
|
742
|
+
var GetLinkRoutingRuleRequest$ = [3, n0, _GLRRR,
|
|
743
|
+
0,
|
|
744
|
+
[_gI, _lI, _rI],
|
|
745
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
746
|
+
];
|
|
747
|
+
var GetLinkRoutingRuleResponse$ = [3, n0, _GLRRRe,
|
|
748
|
+
0,
|
|
749
|
+
[_gI, _lI, _rI, _p, _co, _st, _cA, _uA, _t],
|
|
750
|
+
[0, 0, 0, 1, () => RuleCondition$, 0, 4, 4, 128 | 0], 8
|
|
751
|
+
];
|
|
752
|
+
var GetOutboundExternalLinkRequest$ = [3, n0, _GOELR,
|
|
753
|
+
0,
|
|
754
|
+
[_gI, _lI],
|
|
755
|
+
[[0, 1], [0, 1]], 2
|
|
756
|
+
];
|
|
757
|
+
var GetOutboundExternalLinkResponse$ = [3, n0, _GOELRe,
|
|
758
|
+
0,
|
|
759
|
+
[_gI, _lI, _st, _pE, _fM, _pFM, _a, _cA, _uA, _t, _lS, _cT],
|
|
760
|
+
[0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, 4, 4, 128 | 0, () => LinkLogSettings$, 0], 4
|
|
761
|
+
];
|
|
762
|
+
var GetRequesterGatewayRequest$ = [3, n0, _GRGR,
|
|
763
|
+
0,
|
|
764
|
+
[_gI],
|
|
765
|
+
[[0, 1]], 1
|
|
766
|
+
];
|
|
767
|
+
var GetRequesterGatewayResponse$ = [3, n0, _GRGRe,
|
|
768
|
+
0,
|
|
769
|
+
[_st, _dN, _vI, _sI, _sGI, _gI, _de, _cA, _uA, _t, _aLC, _tLC],
|
|
770
|
+
[0, 0, 0, 64 | 0, 64 | 0, 0, 0, 4, 4, 128 | 0, 1, 1], 6
|
|
771
|
+
];
|
|
772
|
+
var GetResponderGatewayRequest$ = [3, n0, _GRGRet,
|
|
773
|
+
0,
|
|
774
|
+
[_gI],
|
|
775
|
+
[[0, 1]], 1
|
|
776
|
+
];
|
|
777
|
+
var GetResponderGatewayResponse$ = [3, n0, _GRGRete,
|
|
778
|
+
0,
|
|
779
|
+
[_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _lRC, _gT, _eIE],
|
|
780
|
+
[0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 1, 0, 0], 7
|
|
781
|
+
];
|
|
782
|
+
var HeaderTagAction$ = [3, n0, _HTA,
|
|
783
|
+
0,
|
|
784
|
+
[_n, _va],
|
|
785
|
+
[0, 0], 2
|
|
786
|
+
];
|
|
787
|
+
var HealthCheckConfig$ = [3, n0, _HCC,
|
|
788
|
+
0,
|
|
789
|
+
[_po, _pa, _pr, _tM, _iS, _sCM, _hTC, _uTC],
|
|
790
|
+
[1, 0, 0, 1, 1, 0, 1, 1], 2
|
|
791
|
+
];
|
|
792
|
+
var LinkApplicationLogConfiguration$ = [3, n0, _LALC,
|
|
793
|
+
0,
|
|
794
|
+
[_sa],
|
|
795
|
+
[() => LinkApplicationLogSampling$], 1
|
|
796
|
+
];
|
|
797
|
+
var LinkApplicationLogSampling$ = [3, n0, _LALS,
|
|
798
|
+
0,
|
|
799
|
+
[_eL, _fL],
|
|
800
|
+
[1, 1], 2
|
|
801
|
+
];
|
|
802
|
+
var LinkAttributes$ = [3, n0, _LA,
|
|
803
|
+
0,
|
|
804
|
+
[_rEM, _cPI],
|
|
805
|
+
[() => ResponderErrorMasking, 0]
|
|
806
|
+
];
|
|
807
|
+
var LinkLogSettings$ = [3, n0, _LLS,
|
|
808
|
+
0,
|
|
809
|
+
[_aL],
|
|
810
|
+
[() => LinkApplicationLogConfiguration$], 1
|
|
811
|
+
];
|
|
812
|
+
var LinkRoutingRuleSummary$ = [3, n0, _LRRS,
|
|
813
|
+
0,
|
|
814
|
+
[_rI, _p, _co, _st, _cA, _uA],
|
|
815
|
+
[0, 1, () => RuleCondition$, 0, 4, 4], 6
|
|
816
|
+
];
|
|
817
|
+
var ListCertificateAssociationsRequest$ = [3, n0, _LCAR,
|
|
818
|
+
0,
|
|
819
|
+
[_gI, _nT, _mR],
|
|
820
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
821
|
+
];
|
|
822
|
+
var ListCertificateAssociationsResponse$ = [3, n0, _LCARi,
|
|
823
|
+
0,
|
|
824
|
+
[_cAe, _nT],
|
|
825
|
+
[() => CertificateAssociationSummaryList, 0], 1
|
|
826
|
+
];
|
|
827
|
+
var ListenerConfig$ = [3, n0, _LC,
|
|
828
|
+
0,
|
|
829
|
+
[_pro],
|
|
830
|
+
[64 | 0], 1
|
|
831
|
+
];
|
|
832
|
+
var ListLinkRoutingRulesRequest$ = [3, n0, _LLRRR,
|
|
833
|
+
0,
|
|
834
|
+
[_gI, _lI, _nT, _mR],
|
|
835
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
836
|
+
];
|
|
837
|
+
var ListLinkRoutingRulesResponse$ = [3, n0, _LLRRRi,
|
|
838
|
+
0,
|
|
839
|
+
[_r, _nT],
|
|
840
|
+
[() => LinkRoutingRuleList, 0]
|
|
841
|
+
];
|
|
842
|
+
var ListLinksRequest$ = [3, n0, _LLR,
|
|
843
|
+
0,
|
|
844
|
+
[_gI, _nT, _mR],
|
|
845
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
846
|
+
];
|
|
847
|
+
var ListLinksResponse$ = [3, n0, _LLRi,
|
|
848
|
+
0,
|
|
849
|
+
[_l, _nT],
|
|
850
|
+
[() => LinkList, 0]
|
|
851
|
+
];
|
|
852
|
+
var ListLinksResponseStructure$ = [3, n0, _LLRS,
|
|
853
|
+
0,
|
|
854
|
+
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _pE],
|
|
855
|
+
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 128 | 0, 0], 6
|
|
856
|
+
];
|
|
857
|
+
var ListRequesterGatewaysRequest$ = [3, n0, _LRGR,
|
|
858
|
+
0,
|
|
859
|
+
[_mR, _nT],
|
|
860
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
861
|
+
];
|
|
862
|
+
var ListRequesterGatewaysResponse$ = [3, n0, _LRGRi,
|
|
863
|
+
0,
|
|
864
|
+
[_gIa, _nT],
|
|
865
|
+
[64 | 0, 0]
|
|
866
|
+
];
|
|
867
|
+
var ListResponderGatewaysRequest$ = [3, n0, _LRGRis,
|
|
868
|
+
0,
|
|
869
|
+
[_mR, _nT],
|
|
870
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
871
|
+
];
|
|
872
|
+
var ListResponderGatewaysResponse$ = [3, n0, _LRGRist,
|
|
873
|
+
0,
|
|
874
|
+
[_gIa, _nT],
|
|
875
|
+
[64 | 0, 0]
|
|
876
|
+
];
|
|
877
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
878
|
+
0,
|
|
879
|
+
[_rAe],
|
|
880
|
+
[[0, 1]], 1
|
|
881
|
+
];
|
|
882
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
883
|
+
0,
|
|
884
|
+
[_t],
|
|
885
|
+
[128 | 0]
|
|
886
|
+
];
|
|
887
|
+
var ModuleConfiguration$ = [3, n0, _MC,
|
|
888
|
+
0,
|
|
889
|
+
[_n, _ve, _dO, _mP],
|
|
890
|
+
[0, 0, 64 | 0, () => ModuleParameters$], 1
|
|
891
|
+
];
|
|
892
|
+
var NoBidAction$ = [3, n0, _NBA,
|
|
893
|
+
0,
|
|
894
|
+
[_nBRC],
|
|
895
|
+
[1]
|
|
896
|
+
];
|
|
897
|
+
var NoBidModuleParameters$ = [3, n0, _NBMP,
|
|
898
|
+
0,
|
|
899
|
+
[_re, _rC, _pTP],
|
|
900
|
+
[0, 1, 1]
|
|
901
|
+
];
|
|
902
|
+
var OpenRtbAttributeModuleParameters$ = [3, n0, _ORAMP,
|
|
903
|
+
0,
|
|
904
|
+
[_fT, _fC, _ac, _hP],
|
|
905
|
+
[0, () => FilterConfiguration, () => Action$, 1], 4
|
|
906
|
+
];
|
|
907
|
+
var QueryStringKeyValuePair$ = [3, n0, _QSKVP,
|
|
908
|
+
0,
|
|
909
|
+
[_k, _va],
|
|
910
|
+
[0, 0], 2
|
|
911
|
+
];
|
|
912
|
+
var RateLimiterModuleParameters$ = [3, n0, _RLMP,
|
|
913
|
+
0,
|
|
914
|
+
[_tp],
|
|
915
|
+
[1]
|
|
916
|
+
];
|
|
917
|
+
var RejectLinkRequest$ = [3, n0, _RLR,
|
|
918
|
+
0,
|
|
919
|
+
[_gI, _lI],
|
|
920
|
+
[[0, 1], [0, 1]], 2
|
|
921
|
+
];
|
|
922
|
+
var RejectLinkResponse$ = [3, n0, _RLRe,
|
|
923
|
+
0,
|
|
924
|
+
[_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
|
|
925
|
+
[0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0], 6
|
|
926
|
+
];
|
|
927
|
+
var ResponderErrorMaskingForHttpCode$ = [3, n0, _REMFHC,
|
|
928
|
+
0,
|
|
929
|
+
[_hC, _ac, _lT, _rLP],
|
|
930
|
+
[0, 0, 64 | 0, 1], 3
|
|
931
|
+
];
|
|
932
|
+
var RuleCondition$ = [3, n0, _RC,
|
|
933
|
+
0,
|
|
934
|
+
[_hH, _hHW, _pP, _pEa, _qSE, _qSEu],
|
|
935
|
+
[0, 0, 0, 0, () => QueryStringKeyValuePair$, 0]
|
|
936
|
+
];
|
|
937
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
938
|
+
0,
|
|
939
|
+
[_rAe, _t],
|
|
940
|
+
[[0, 1], 128 | 0], 2
|
|
941
|
+
];
|
|
942
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
943
|
+
0,
|
|
944
|
+
[],
|
|
945
|
+
[]
|
|
946
|
+
];
|
|
947
|
+
var TrustStoreConfiguration$ = [3, n0, _TSC,
|
|
948
|
+
0,
|
|
949
|
+
[_cAC],
|
|
950
|
+
[[() => CertificateAuthorityCertificates, 0]], 1
|
|
951
|
+
];
|
|
952
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
953
|
+
0,
|
|
954
|
+
[_rAe, _tK],
|
|
955
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
956
|
+
];
|
|
957
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
958
|
+
0,
|
|
959
|
+
[],
|
|
960
|
+
[]
|
|
961
|
+
];
|
|
962
|
+
var UpdateLinkModuleFlowRequest$ = [3, n0, _ULMFR,
|
|
963
|
+
0,
|
|
964
|
+
[_gI, _lI, _mo, _cTl],
|
|
965
|
+
[[0, 1], [0, 1], () => ModuleConfigurationList, [0, 4]], 3
|
|
966
|
+
];
|
|
967
|
+
var UpdateLinkModuleFlowResponse$ = [3, n0, _ULMFRp,
|
|
968
|
+
0,
|
|
969
|
+
[_gI, _lI, _st],
|
|
970
|
+
[0, 0, 0], 3
|
|
971
|
+
];
|
|
972
|
+
var UpdateLinkRequest$ = [3, n0, _ULR,
|
|
973
|
+
0,
|
|
974
|
+
[_gI, _lI, _lS, _tIM],
|
|
975
|
+
[[0, 1], [0, 1], () => LinkLogSettings$, 1], 2
|
|
976
|
+
];
|
|
977
|
+
var UpdateLinkResponse$ = [3, n0, _ULRp,
|
|
978
|
+
0,
|
|
979
|
+
[_lI, _st],
|
|
980
|
+
[0, 0], 2
|
|
981
|
+
];
|
|
982
|
+
var UpdateLinkRoutingRuleRequest$ = [3, n0, _ULRRR,
|
|
983
|
+
0,
|
|
984
|
+
[_gI, _lI, _rI, _p, _co],
|
|
985
|
+
[[0, 1], [0, 1], [0, 1], 1, () => RuleCondition$], 5
|
|
986
|
+
];
|
|
987
|
+
var UpdateLinkRoutingRuleResponse$ = [3, n0, _ULRRRp,
|
|
988
|
+
0,
|
|
989
|
+
[_rI, _st, _uA],
|
|
990
|
+
[0, 0, 4], 3
|
|
991
|
+
];
|
|
992
|
+
var UpdateRequesterGatewayRequest$ = [3, n0, _URGR,
|
|
993
|
+
0,
|
|
994
|
+
[_gI, _cTl, _de],
|
|
995
|
+
[[0, 1], [0, 4], 0], 1
|
|
996
|
+
];
|
|
997
|
+
var UpdateRequesterGatewayResponse$ = [3, n0, _URGRp,
|
|
998
|
+
0,
|
|
999
|
+
[_gI, _st],
|
|
1000
|
+
[0, 0], 2
|
|
1001
|
+
];
|
|
1002
|
+
var UpdateResponderGatewayRequest$ = [3, n0, _URGRpd,
|
|
1003
|
+
0,
|
|
1004
|
+
[_po, _pr, _gI, _dN, _lC, _tSC, _mEC, _cTl, _de],
|
|
1005
|
+
[1, 0, [0, 1], 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], [0, 4], 0], 3
|
|
1006
|
+
];
|
|
1007
|
+
var UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
|
|
1008
|
+
0,
|
|
1009
|
+
[_gI, _st],
|
|
1010
|
+
[0, 0], 2
|
|
1011
|
+
];
|
|
1012
|
+
var CertificateAssociationSummaryList = [1, n0, _CASL,
|
|
1013
|
+
0, () => CertificateAssociationSummary$
|
|
1014
|
+
];
|
|
1015
|
+
var CertificateAuthorityCertificates = [1, n0, _CAC,
|
|
1016
|
+
0, [() => Base64EncodedCertificateChain,
|
|
1017
|
+
0]
|
|
1018
|
+
];
|
|
1019
|
+
var FilterConfiguration = [1, n0, _FCi,
|
|
1020
|
+
0, () => Filter$
|
|
1021
|
+
];
|
|
1022
|
+
var FilterCriteria = [1, n0, _FCil,
|
|
1023
|
+
0, () => FilterCriterion$
|
|
1024
|
+
];
|
|
1025
|
+
var LinkList = [1, n0, _LL,
|
|
1026
|
+
0, () => ListLinksResponseStructure$
|
|
1027
|
+
];
|
|
1028
|
+
var LinkRoutingRuleList = [1, n0, _LRRL,
|
|
1029
|
+
0, () => LinkRoutingRuleSummary$
|
|
1030
|
+
];
|
|
1031
|
+
var ModuleConfigurationList = [1, n0, _MCL,
|
|
1032
|
+
0, () => ModuleConfiguration$
|
|
1033
|
+
];
|
|
1034
|
+
var ResponderErrorMasking = [1, n0, _REM,
|
|
1035
|
+
0, () => ResponderErrorMaskingForHttpCode$
|
|
1036
|
+
];
|
|
1037
|
+
var Action$ = [4, n0, _A,
|
|
1038
|
+
0,
|
|
1039
|
+
[_nB, _hT],
|
|
1040
|
+
[() => NoBidAction$, () => HeaderTagAction$]
|
|
1041
|
+
];
|
|
1042
|
+
var ManagedEndpointConfiguration$ = [4, n0, _MEC,
|
|
1043
|
+
0,
|
|
1044
|
+
[_aSG, _eE],
|
|
1045
|
+
[() => AutoScalingGroupsConfiguration$, [() => EksEndpointsConfiguration$, 0]]
|
|
1046
|
+
];
|
|
1047
|
+
var ModuleParameters$ = [4, n0, _MP,
|
|
1048
|
+
0,
|
|
1049
|
+
[_nB, _oRA, _rL],
|
|
1050
|
+
[() => NoBidModuleParameters$, () => OpenRtbAttributeModuleParameters$, () => RateLimiterModuleParameters$]
|
|
1051
|
+
];
|
|
1052
|
+
var AcceptLink$ = [9, n0, _AL,
|
|
1053
|
+
{ [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/accept", 200] }, () => AcceptLinkRequest$, () => AcceptLinkResponse$
|
|
1054
|
+
];
|
|
1055
|
+
var AssociateCertificate$ = [9, n0, _AC,
|
|
1056
|
+
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/certificate", 200] }, () => AssociateCertificateRequest$, () => AssociateCertificateResponse$
|
|
1057
|
+
];
|
|
1058
|
+
var CreateInboundExternalLink$ = [9, n0, _CIEL,
|
|
1059
|
+
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/inbound-external-link", 200] }, () => CreateInboundExternalLinkRequest$, () => CreateInboundExternalLinkResponse$
|
|
1060
|
+
];
|
|
1061
|
+
var CreateLink$ = [9, n0, _CL,
|
|
1062
|
+
{ [_h]: ["POST", "/gateway/{gatewayId}/create-link", 200] }, () => CreateLinkRequest$, () => CreateLinkResponse$
|
|
1063
|
+
];
|
|
1064
|
+
var CreateLinkRoutingRule$ = [9, n0, _CLRR,
|
|
1065
|
+
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule", 200] }, () => CreateLinkRoutingRuleRequest$, () => CreateLinkRoutingRuleResponse$
|
|
1066
|
+
];
|
|
1067
|
+
var CreateOutboundExternalLink$ = [9, n0, _COEL,
|
|
1068
|
+
{ [_h]: ["POST", "/requester-gateway/{gatewayId}/outbound-external-link", 200] }, () => CreateOutboundExternalLinkRequest$, () => CreateOutboundExternalLinkResponse$
|
|
1069
|
+
];
|
|
1070
|
+
var CreateRequesterGateway$ = [9, n0, _CRG,
|
|
1071
|
+
{ [_h]: ["POST", "/requester-gateway", 200] }, () => CreateRequesterGatewayRequest$, () => CreateRequesterGatewayResponse$
|
|
1072
|
+
];
|
|
1073
|
+
var CreateResponderGateway$ = [9, n0, _CRGr,
|
|
1074
|
+
{ [_h]: ["POST", "/responder-gateway", 200] }, () => CreateResponderGatewayRequest$, () => CreateResponderGatewayResponse$
|
|
1075
|
+
];
|
|
1076
|
+
var DeleteInboundExternalLink$ = [9, n0, _DIEL,
|
|
1077
|
+
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200] }, () => DeleteInboundExternalLinkRequest$, () => DeleteInboundExternalLinkResponse$
|
|
1078
|
+
];
|
|
1079
|
+
var DeleteLink$ = [9, n0, _DL,
|
|
1080
|
+
{ [_h]: ["DELETE", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => DeleteLinkRequest$, () => DeleteLinkResponse$
|
|
1081
|
+
];
|
|
1082
|
+
var DeleteLinkRoutingRule$ = [9, n0, _DLRR,
|
|
1083
|
+
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => DeleteLinkRoutingRuleRequest$, () => DeleteLinkRoutingRuleResponse$
|
|
1084
|
+
];
|
|
1085
|
+
var DeleteOutboundExternalLink$ = [9, n0, _DOEL,
|
|
1086
|
+
{ [_h]: ["DELETE", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => DeleteOutboundExternalLinkRequest$, () => DeleteOutboundExternalLinkResponse$
|
|
1087
|
+
];
|
|
1088
|
+
var DeleteRequesterGateway$ = [9, n0, _DRG,
|
|
1089
|
+
{ [_h]: ["DELETE", "/requester-gateway/{gatewayId}", 200] }, () => DeleteRequesterGatewayRequest$, () => DeleteRequesterGatewayResponse$
|
|
1090
|
+
];
|
|
1091
|
+
var DeleteResponderGateway$ = [9, n0, _DRGe,
|
|
1092
|
+
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}", 200] }, () => DeleteResponderGatewayRequest$, () => DeleteResponderGatewayResponse$
|
|
1093
|
+
];
|
|
1094
|
+
var DisassociateCertificate$ = [9, n0, _DC,
|
|
1095
|
+
{ [_h]: ["DELETE", "/responder-gateway/{gatewayId}/certificate", 200] }, () => DisassociateCertificateRequest$, () => DisassociateCertificateResponse$
|
|
1096
|
+
];
|
|
1097
|
+
var GetCertificateAssociation$ = [9, n0, _GCA,
|
|
1098
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/certificate", 200] }, () => GetCertificateAssociationRequest$, () => GetCertificateAssociationResponse$
|
|
1099
|
+
];
|
|
1100
|
+
var GetInboundExternalLink$ = [9, n0, _GIEL,
|
|
1101
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200] }, () => GetInboundExternalLinkRequest$, () => GetInboundExternalLinkResponse$
|
|
1102
|
+
];
|
|
1103
|
+
var GetLink$ = [9, n0, _GL,
|
|
1104
|
+
{ [_h]: ["GET", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => GetLinkRequest$, () => GetLinkResponse$
|
|
1105
|
+
];
|
|
1106
|
+
var GetLinkRoutingRule$ = [9, n0, _GLRR,
|
|
1107
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => GetLinkRoutingRuleRequest$, () => GetLinkRoutingRuleResponse$
|
|
1108
|
+
];
|
|
1109
|
+
var GetOutboundExternalLink$ = [9, n0, _GOEL,
|
|
1110
|
+
{ [_h]: ["GET", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => GetOutboundExternalLinkRequest$, () => GetOutboundExternalLinkResponse$
|
|
1111
|
+
];
|
|
1112
|
+
var GetRequesterGateway$ = [9, n0, _GRG,
|
|
1113
|
+
{ [_h]: ["GET", "/requester-gateway/{gatewayId}", 200] }, () => GetRequesterGatewayRequest$, () => GetRequesterGatewayResponse$
|
|
1114
|
+
];
|
|
1115
|
+
var GetResponderGateway$ = [9, n0, _GRGe,
|
|
1116
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}", 200] }, () => GetResponderGatewayRequest$, () => GetResponderGatewayResponse$
|
|
1117
|
+
];
|
|
1118
|
+
var ListCertificateAssociations$ = [9, n0, _LCA,
|
|
1119
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/certificates", 200] }, () => ListCertificateAssociationsRequest$, () => ListCertificateAssociationsResponse$
|
|
1120
|
+
];
|
|
1121
|
+
var ListLinkRoutingRules$ = [9, n0, _LLRR,
|
|
1122
|
+
{ [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rules", 200] }, () => ListLinkRoutingRulesRequest$, () => ListLinkRoutingRulesResponse$
|
|
1123
|
+
];
|
|
1124
|
+
var ListLinks$ = [9, n0, _LLi,
|
|
1125
|
+
{ [_h]: ["GET", "/gateway/{gatewayId}/links/", 200] }, () => ListLinksRequest$, () => ListLinksResponse$
|
|
1126
|
+
];
|
|
1127
|
+
var ListRequesterGateways$ = [9, n0, _LRG,
|
|
1128
|
+
{ [_h]: ["GET", "/requester-gateways", 200] }, () => ListRequesterGatewaysRequest$, () => ListRequesterGatewaysResponse$
|
|
1129
|
+
];
|
|
1130
|
+
var ListResponderGateways$ = [9, n0, _LRGi,
|
|
1131
|
+
{ [_h]: ["GET", "/responder-gateways", 200] }, () => ListResponderGatewaysRequest$, () => ListResponderGatewaysResponse$
|
|
1132
|
+
];
|
|
1133
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1134
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1135
|
+
];
|
|
1136
|
+
var RejectLink$ = [9, n0, _RL,
|
|
1137
|
+
{ [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/reject", 200] }, () => RejectLinkRequest$, () => RejectLinkResponse$
|
|
1138
|
+
];
|
|
1139
|
+
var TagResource$ = [9, n0, _TR,
|
|
1140
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1141
|
+
];
|
|
1142
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1143
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1144
|
+
];
|
|
1145
|
+
var UpdateLink$ = [9, n0, _UL,
|
|
1146
|
+
{ [_h]: ["PATCH", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => UpdateLinkRequest$, () => UpdateLinkResponse$
|
|
1147
|
+
];
|
|
1148
|
+
var UpdateLinkModuleFlow$ = [9, n0, _ULMF,
|
|
1149
|
+
{ [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/module-flow", 200] }, () => UpdateLinkModuleFlowRequest$, () => UpdateLinkModuleFlowResponse$
|
|
1150
|
+
];
|
|
1151
|
+
var UpdateLinkRoutingRule$ = [9, n0, _ULRR,
|
|
1152
|
+
{ [_h]: ["PUT", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => UpdateLinkRoutingRuleRequest$, () => UpdateLinkRoutingRuleResponse$
|
|
1153
|
+
];
|
|
1154
|
+
var UpdateRequesterGateway$ = [9, n0, _URG,
|
|
1155
|
+
{ [_h]: ["POST", "/requester-gateway/{gatewayId}/update", 200] }, () => UpdateRequesterGatewayRequest$, () => UpdateRequesterGatewayResponse$
|
|
1156
|
+
];
|
|
1157
|
+
var UpdateResponderGateway$ = [9, n0, _URGp,
|
|
1158
|
+
{ [_h]: ["POST", "/responder-gateway/{gatewayId}/update", 200] }, () => UpdateResponderGatewayRequest$, () => UpdateResponderGatewayResponse$
|
|
1159
|
+
];
|
|
1160
|
+
|
|
1161
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1162
|
+
return {
|
|
1163
|
+
apiVersion: "2023-05-15",
|
|
1164
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1165
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1166
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1167
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1168
|
+
extensions: config?.extensions ?? [],
|
|
1169
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRTBFabricHttpAuthSchemeProvider,
|
|
1170
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1171
|
+
{
|
|
1172
|
+
schemeId: "aws.auth#sigv4",
|
|
1173
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1174
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1175
|
+
},
|
|
1176
|
+
],
|
|
1177
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1178
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1179
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1180
|
+
defaultNamespace: "com.amazonaws.rtbfabric",
|
|
1181
|
+
errorTypeRegistries,
|
|
1182
|
+
version: "2023-05-15",
|
|
1183
|
+
serviceTarget: "RTBFabric",
|
|
1184
|
+
},
|
|
1185
|
+
serviceId: config?.serviceId ?? "RTBFabric",
|
|
1186
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1187
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1188
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1189
|
+
};
|
|
1190
|
+
};
|
|
1191
|
+
|
|
1192
|
+
const getRuntimeConfig = (config) => {
|
|
1193
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1194
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1195
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1196
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1197
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1198
|
+
const loaderConfig = {
|
|
1199
|
+
profile: config?.profile,
|
|
1200
|
+
logger: clientSharedValues.logger,
|
|
1201
|
+
};
|
|
1202
|
+
return {
|
|
1203
|
+
...clientSharedValues,
|
|
1204
|
+
...config,
|
|
1205
|
+
runtime: "node",
|
|
1206
|
+
defaultsMode,
|
|
1207
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1208
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1209
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1210
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1211
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1212
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1213
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1214
|
+
retryMode: config?.retryMode ??
|
|
1215
|
+
loadConfig({
|
|
1216
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1217
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1218
|
+
}, config),
|
|
1219
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1220
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1221
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1222
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1223
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1224
|
+
};
|
|
1225
|
+
};
|
|
1226
|
+
|
|
34
1227
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1228
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1229
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1474,56 +2667,207 @@ const ResponderGatewayStatus = {
|
|
|
1474
2667
|
PENDING_UPDATE: "PENDING_UPDATE",
|
|
1475
2668
|
};
|
|
1476
2669
|
|
|
2670
|
+
exports.AcceptLink$ = AcceptLink$;
|
|
1477
2671
|
exports.AcceptLinkCommand = AcceptLinkCommand;
|
|
2672
|
+
exports.AcceptLinkRequest$ = AcceptLinkRequest$;
|
|
2673
|
+
exports.AcceptLinkResponse$ = AcceptLinkResponse$;
|
|
2674
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2675
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2676
|
+
exports.Action$ = Action$;
|
|
2677
|
+
exports.AssociateCertificate$ = AssociateCertificate$;
|
|
1478
2678
|
exports.AssociateCertificateCommand = AssociateCertificateCommand;
|
|
2679
|
+
exports.AssociateCertificateRequest$ = AssociateCertificateRequest$;
|
|
2680
|
+
exports.AssociateCertificateResponse$ = AssociateCertificateResponse$;
|
|
2681
|
+
exports.AutoScalingGroupsConfiguration$ = AutoScalingGroupsConfiguration$;
|
|
1479
2682
|
exports.CertificateAssociationStatus = CertificateAssociationStatus;
|
|
2683
|
+
exports.CertificateAssociationSummary$ = CertificateAssociationSummary$;
|
|
2684
|
+
exports.ConflictException = ConflictException;
|
|
2685
|
+
exports.ConflictException$ = ConflictException$;
|
|
1480
2686
|
exports.ConnectivityType = ConnectivityType;
|
|
2687
|
+
exports.CreateInboundExternalLink$ = CreateInboundExternalLink$;
|
|
1481
2688
|
exports.CreateInboundExternalLinkCommand = CreateInboundExternalLinkCommand;
|
|
2689
|
+
exports.CreateInboundExternalLinkRequest$ = CreateInboundExternalLinkRequest$;
|
|
2690
|
+
exports.CreateInboundExternalLinkResponse$ = CreateInboundExternalLinkResponse$;
|
|
2691
|
+
exports.CreateLink$ = CreateLink$;
|
|
1482
2692
|
exports.CreateLinkCommand = CreateLinkCommand;
|
|
2693
|
+
exports.CreateLinkRequest$ = CreateLinkRequest$;
|
|
2694
|
+
exports.CreateLinkResponse$ = CreateLinkResponse$;
|
|
2695
|
+
exports.CreateLinkRoutingRule$ = CreateLinkRoutingRule$;
|
|
1483
2696
|
exports.CreateLinkRoutingRuleCommand = CreateLinkRoutingRuleCommand;
|
|
2697
|
+
exports.CreateLinkRoutingRuleRequest$ = CreateLinkRoutingRuleRequest$;
|
|
2698
|
+
exports.CreateLinkRoutingRuleResponse$ = CreateLinkRoutingRuleResponse$;
|
|
2699
|
+
exports.CreateOutboundExternalLink$ = CreateOutboundExternalLink$;
|
|
1484
2700
|
exports.CreateOutboundExternalLinkCommand = CreateOutboundExternalLinkCommand;
|
|
2701
|
+
exports.CreateOutboundExternalLinkRequest$ = CreateOutboundExternalLinkRequest$;
|
|
2702
|
+
exports.CreateOutboundExternalLinkResponse$ = CreateOutboundExternalLinkResponse$;
|
|
2703
|
+
exports.CreateRequesterGateway$ = CreateRequesterGateway$;
|
|
1485
2704
|
exports.CreateRequesterGatewayCommand = CreateRequesterGatewayCommand;
|
|
2705
|
+
exports.CreateRequesterGatewayRequest$ = CreateRequesterGatewayRequest$;
|
|
2706
|
+
exports.CreateRequesterGatewayResponse$ = CreateRequesterGatewayResponse$;
|
|
2707
|
+
exports.CreateResponderGateway$ = CreateResponderGateway$;
|
|
1486
2708
|
exports.CreateResponderGatewayCommand = CreateResponderGatewayCommand;
|
|
2709
|
+
exports.CreateResponderGatewayRequest$ = CreateResponderGatewayRequest$;
|
|
2710
|
+
exports.CreateResponderGatewayResponse$ = CreateResponderGatewayResponse$;
|
|
2711
|
+
exports.DeleteInboundExternalLink$ = DeleteInboundExternalLink$;
|
|
1487
2712
|
exports.DeleteInboundExternalLinkCommand = DeleteInboundExternalLinkCommand;
|
|
2713
|
+
exports.DeleteInboundExternalLinkRequest$ = DeleteInboundExternalLinkRequest$;
|
|
2714
|
+
exports.DeleteInboundExternalLinkResponse$ = DeleteInboundExternalLinkResponse$;
|
|
2715
|
+
exports.DeleteLink$ = DeleteLink$;
|
|
1488
2716
|
exports.DeleteLinkCommand = DeleteLinkCommand;
|
|
2717
|
+
exports.DeleteLinkRequest$ = DeleteLinkRequest$;
|
|
2718
|
+
exports.DeleteLinkResponse$ = DeleteLinkResponse$;
|
|
2719
|
+
exports.DeleteLinkRoutingRule$ = DeleteLinkRoutingRule$;
|
|
1489
2720
|
exports.DeleteLinkRoutingRuleCommand = DeleteLinkRoutingRuleCommand;
|
|
2721
|
+
exports.DeleteLinkRoutingRuleRequest$ = DeleteLinkRoutingRuleRequest$;
|
|
2722
|
+
exports.DeleteLinkRoutingRuleResponse$ = DeleteLinkRoutingRuleResponse$;
|
|
2723
|
+
exports.DeleteOutboundExternalLink$ = DeleteOutboundExternalLink$;
|
|
1490
2724
|
exports.DeleteOutboundExternalLinkCommand = DeleteOutboundExternalLinkCommand;
|
|
2725
|
+
exports.DeleteOutboundExternalLinkRequest$ = DeleteOutboundExternalLinkRequest$;
|
|
2726
|
+
exports.DeleteOutboundExternalLinkResponse$ = DeleteOutboundExternalLinkResponse$;
|
|
2727
|
+
exports.DeleteRequesterGateway$ = DeleteRequesterGateway$;
|
|
1491
2728
|
exports.DeleteRequesterGatewayCommand = DeleteRequesterGatewayCommand;
|
|
2729
|
+
exports.DeleteRequesterGatewayRequest$ = DeleteRequesterGatewayRequest$;
|
|
2730
|
+
exports.DeleteRequesterGatewayResponse$ = DeleteRequesterGatewayResponse$;
|
|
2731
|
+
exports.DeleteResponderGateway$ = DeleteResponderGateway$;
|
|
1492
2732
|
exports.DeleteResponderGatewayCommand = DeleteResponderGatewayCommand;
|
|
2733
|
+
exports.DeleteResponderGatewayRequest$ = DeleteResponderGatewayRequest$;
|
|
2734
|
+
exports.DeleteResponderGatewayResponse$ = DeleteResponderGatewayResponse$;
|
|
2735
|
+
exports.DisassociateCertificate$ = DisassociateCertificate$;
|
|
1493
2736
|
exports.DisassociateCertificateCommand = DisassociateCertificateCommand;
|
|
2737
|
+
exports.DisassociateCertificateRequest$ = DisassociateCertificateRequest$;
|
|
2738
|
+
exports.DisassociateCertificateResponse$ = DisassociateCertificateResponse$;
|
|
2739
|
+
exports.EksEndpointsConfiguration$ = EksEndpointsConfiguration$;
|
|
2740
|
+
exports.Filter$ = Filter$;
|
|
2741
|
+
exports.FilterCriterion$ = FilterCriterion$;
|
|
1494
2742
|
exports.FilterType = FilterType;
|
|
1495
2743
|
exports.GatewayType = GatewayType;
|
|
2744
|
+
exports.GetCertificateAssociation$ = GetCertificateAssociation$;
|
|
1496
2745
|
exports.GetCertificateAssociationCommand = GetCertificateAssociationCommand;
|
|
2746
|
+
exports.GetCertificateAssociationRequest$ = GetCertificateAssociationRequest$;
|
|
2747
|
+
exports.GetCertificateAssociationResponse$ = GetCertificateAssociationResponse$;
|
|
2748
|
+
exports.GetInboundExternalLink$ = GetInboundExternalLink$;
|
|
1497
2749
|
exports.GetInboundExternalLinkCommand = GetInboundExternalLinkCommand;
|
|
2750
|
+
exports.GetInboundExternalLinkRequest$ = GetInboundExternalLinkRequest$;
|
|
2751
|
+
exports.GetInboundExternalLinkResponse$ = GetInboundExternalLinkResponse$;
|
|
2752
|
+
exports.GetLink$ = GetLink$;
|
|
1498
2753
|
exports.GetLinkCommand = GetLinkCommand;
|
|
2754
|
+
exports.GetLinkRequest$ = GetLinkRequest$;
|
|
2755
|
+
exports.GetLinkResponse$ = GetLinkResponse$;
|
|
2756
|
+
exports.GetLinkRoutingRule$ = GetLinkRoutingRule$;
|
|
1499
2757
|
exports.GetLinkRoutingRuleCommand = GetLinkRoutingRuleCommand;
|
|
2758
|
+
exports.GetLinkRoutingRuleRequest$ = GetLinkRoutingRuleRequest$;
|
|
2759
|
+
exports.GetLinkRoutingRuleResponse$ = GetLinkRoutingRuleResponse$;
|
|
2760
|
+
exports.GetOutboundExternalLink$ = GetOutboundExternalLink$;
|
|
1500
2761
|
exports.GetOutboundExternalLinkCommand = GetOutboundExternalLinkCommand;
|
|
2762
|
+
exports.GetOutboundExternalLinkRequest$ = GetOutboundExternalLinkRequest$;
|
|
2763
|
+
exports.GetOutboundExternalLinkResponse$ = GetOutboundExternalLinkResponse$;
|
|
2764
|
+
exports.GetRequesterGateway$ = GetRequesterGateway$;
|
|
1501
2765
|
exports.GetRequesterGatewayCommand = GetRequesterGatewayCommand;
|
|
2766
|
+
exports.GetRequesterGatewayRequest$ = GetRequesterGatewayRequest$;
|
|
2767
|
+
exports.GetRequesterGatewayResponse$ = GetRequesterGatewayResponse$;
|
|
2768
|
+
exports.GetResponderGateway$ = GetResponderGateway$;
|
|
1502
2769
|
exports.GetResponderGatewayCommand = GetResponderGatewayCommand;
|
|
2770
|
+
exports.GetResponderGatewayRequest$ = GetResponderGatewayRequest$;
|
|
2771
|
+
exports.GetResponderGatewayResponse$ = GetResponderGatewayResponse$;
|
|
2772
|
+
exports.HeaderTagAction$ = HeaderTagAction$;
|
|
2773
|
+
exports.HealthCheckConfig$ = HealthCheckConfig$;
|
|
2774
|
+
exports.InternalServerException = InternalServerException;
|
|
2775
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2776
|
+
exports.LinkApplicationLogConfiguration$ = LinkApplicationLogConfiguration$;
|
|
2777
|
+
exports.LinkApplicationLogSampling$ = LinkApplicationLogSampling$;
|
|
2778
|
+
exports.LinkAttributes$ = LinkAttributes$;
|
|
1503
2779
|
exports.LinkDirection = LinkDirection;
|
|
2780
|
+
exports.LinkLogSettings$ = LinkLogSettings$;
|
|
2781
|
+
exports.LinkRoutingRuleSummary$ = LinkRoutingRuleSummary$;
|
|
1504
2782
|
exports.LinkStatus = LinkStatus;
|
|
2783
|
+
exports.ListCertificateAssociations$ = ListCertificateAssociations$;
|
|
1505
2784
|
exports.ListCertificateAssociationsCommand = ListCertificateAssociationsCommand;
|
|
2785
|
+
exports.ListCertificateAssociationsRequest$ = ListCertificateAssociationsRequest$;
|
|
2786
|
+
exports.ListCertificateAssociationsResponse$ = ListCertificateAssociationsResponse$;
|
|
2787
|
+
exports.ListLinkRoutingRules$ = ListLinkRoutingRules$;
|
|
1506
2788
|
exports.ListLinkRoutingRulesCommand = ListLinkRoutingRulesCommand;
|
|
2789
|
+
exports.ListLinkRoutingRulesRequest$ = ListLinkRoutingRulesRequest$;
|
|
2790
|
+
exports.ListLinkRoutingRulesResponse$ = ListLinkRoutingRulesResponse$;
|
|
2791
|
+
exports.ListLinks$ = ListLinks$;
|
|
1507
2792
|
exports.ListLinksCommand = ListLinksCommand;
|
|
2793
|
+
exports.ListLinksRequest$ = ListLinksRequest$;
|
|
2794
|
+
exports.ListLinksResponse$ = ListLinksResponse$;
|
|
2795
|
+
exports.ListLinksResponseStructure$ = ListLinksResponseStructure$;
|
|
2796
|
+
exports.ListRequesterGateways$ = ListRequesterGateways$;
|
|
1508
2797
|
exports.ListRequesterGatewaysCommand = ListRequesterGatewaysCommand;
|
|
2798
|
+
exports.ListRequesterGatewaysRequest$ = ListRequesterGatewaysRequest$;
|
|
2799
|
+
exports.ListRequesterGatewaysResponse$ = ListRequesterGatewaysResponse$;
|
|
2800
|
+
exports.ListResponderGateways$ = ListResponderGateways$;
|
|
1509
2801
|
exports.ListResponderGatewaysCommand = ListResponderGatewaysCommand;
|
|
2802
|
+
exports.ListResponderGatewaysRequest$ = ListResponderGatewaysRequest$;
|
|
2803
|
+
exports.ListResponderGatewaysResponse$ = ListResponderGatewaysResponse$;
|
|
2804
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1510
2805
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2806
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2807
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2808
|
+
exports.ListenerConfig$ = ListenerConfig$;
|
|
2809
|
+
exports.ManagedEndpointConfiguration$ = ManagedEndpointConfiguration$;
|
|
2810
|
+
exports.ModuleConfiguration$ = ModuleConfiguration$;
|
|
2811
|
+
exports.ModuleParameters$ = ModuleParameters$;
|
|
2812
|
+
exports.NoBidAction$ = NoBidAction$;
|
|
2813
|
+
exports.NoBidModuleParameters$ = NoBidModuleParameters$;
|
|
2814
|
+
exports.OpenRtbAttributeModuleParameters$ = OpenRtbAttributeModuleParameters$;
|
|
1511
2815
|
exports.Protocol = Protocol;
|
|
2816
|
+
exports.QueryStringKeyValuePair$ = QueryStringKeyValuePair$;
|
|
1512
2817
|
exports.RTBFabric = RTBFabric;
|
|
1513
2818
|
exports.RTBFabricClient = RTBFabricClient;
|
|
2819
|
+
exports.RTBFabricServiceException = RTBFabricServiceException;
|
|
2820
|
+
exports.RTBFabricServiceException$ = RTBFabricServiceException$;
|
|
2821
|
+
exports.RateLimiterModuleParameters$ = RateLimiterModuleParameters$;
|
|
2822
|
+
exports.RejectLink$ = RejectLink$;
|
|
1514
2823
|
exports.RejectLinkCommand = RejectLinkCommand;
|
|
2824
|
+
exports.RejectLinkRequest$ = RejectLinkRequest$;
|
|
2825
|
+
exports.RejectLinkResponse$ = RejectLinkResponse$;
|
|
1515
2826
|
exports.RequesterGatewayStatus = RequesterGatewayStatus;
|
|
2827
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2828
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1516
2829
|
exports.ResponderErrorMaskingAction = ResponderErrorMaskingAction;
|
|
2830
|
+
exports.ResponderErrorMaskingForHttpCode$ = ResponderErrorMaskingForHttpCode$;
|
|
1517
2831
|
exports.ResponderErrorMaskingLoggingType = ResponderErrorMaskingLoggingType;
|
|
1518
2832
|
exports.ResponderGatewayStatus = ResponderGatewayStatus;
|
|
2833
|
+
exports.RuleCondition$ = RuleCondition$;
|
|
1519
2834
|
exports.RuleStatus = RuleStatus;
|
|
2835
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2836
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2837
|
+
exports.TagResource$ = TagResource$;
|
|
1520
2838
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2839
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2840
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2841
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2842
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2843
|
+
exports.TrustStoreConfiguration$ = TrustStoreConfiguration$;
|
|
2844
|
+
exports.UntagResource$ = UntagResource$;
|
|
1521
2845
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2846
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2847
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2848
|
+
exports.UpdateLink$ = UpdateLink$;
|
|
1522
2849
|
exports.UpdateLinkCommand = UpdateLinkCommand;
|
|
2850
|
+
exports.UpdateLinkModuleFlow$ = UpdateLinkModuleFlow$;
|
|
1523
2851
|
exports.UpdateLinkModuleFlowCommand = UpdateLinkModuleFlowCommand;
|
|
2852
|
+
exports.UpdateLinkModuleFlowRequest$ = UpdateLinkModuleFlowRequest$;
|
|
2853
|
+
exports.UpdateLinkModuleFlowResponse$ = UpdateLinkModuleFlowResponse$;
|
|
2854
|
+
exports.UpdateLinkRequest$ = UpdateLinkRequest$;
|
|
2855
|
+
exports.UpdateLinkResponse$ = UpdateLinkResponse$;
|
|
2856
|
+
exports.UpdateLinkRoutingRule$ = UpdateLinkRoutingRule$;
|
|
1524
2857
|
exports.UpdateLinkRoutingRuleCommand = UpdateLinkRoutingRuleCommand;
|
|
2858
|
+
exports.UpdateLinkRoutingRuleRequest$ = UpdateLinkRoutingRuleRequest$;
|
|
2859
|
+
exports.UpdateLinkRoutingRuleResponse$ = UpdateLinkRoutingRuleResponse$;
|
|
2860
|
+
exports.UpdateRequesterGateway$ = UpdateRequesterGateway$;
|
|
1525
2861
|
exports.UpdateRequesterGatewayCommand = UpdateRequesterGatewayCommand;
|
|
2862
|
+
exports.UpdateRequesterGatewayRequest$ = UpdateRequesterGatewayRequest$;
|
|
2863
|
+
exports.UpdateRequesterGatewayResponse$ = UpdateRequesterGatewayResponse$;
|
|
2864
|
+
exports.UpdateResponderGateway$ = UpdateResponderGateway$;
|
|
1526
2865
|
exports.UpdateResponderGatewayCommand = UpdateResponderGatewayCommand;
|
|
2866
|
+
exports.UpdateResponderGatewayRequest$ = UpdateResponderGatewayRequest$;
|
|
2867
|
+
exports.UpdateResponderGatewayResponse$ = UpdateResponderGatewayResponse$;
|
|
2868
|
+
exports.ValidationException = ValidationException;
|
|
2869
|
+
exports.ValidationException$ = ValidationException$;
|
|
2870
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1527
2871
|
exports.paginateListCertificateAssociations = paginateListCertificateAssociations;
|
|
1528
2872
|
exports.paginateListLinkRoutingRules = paginateListLinkRoutingRules;
|
|
1529
2873
|
exports.paginateListLinks = paginateListLinks;
|