@aws-sdk/client-rtbfabric 3.928.0 → 3.930.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 +1115 -1450
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/RTBFabricClient.js +2 -0
- package/dist-es/commands/AcceptLinkCommand.js +3 -9
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/CreateLinkCommand.js +3 -9
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/CreateRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/CreateResponderGatewayCommand.js +3 -10
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/DeleteLinkCommand.js +3 -9
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/DeleteResponderGatewayCommand.js +3 -9
- package/dist-es/commands/GetInboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/GetLinkCommand.js +3 -9
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +3 -9
- package/dist-es/commands/GetRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/GetResponderGatewayCommand.js +3 -10
- package/dist-es/commands/ListLinksCommand.js +3 -9
- package/dist-es/commands/ListRequesterGatewaysCommand.js +3 -9
- package/dist-es/commands/ListResponderGatewaysCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RejectLinkCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateLinkCommand.js +3 -9
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +3 -9
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +3 -9
- package/dist-es/commands/UpdateResponderGatewayCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -76
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1051 -0
- package/dist-types/RTBFabricClient.d.ts +10 -1
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +17 -1
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +29 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +8 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +37 -27
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +127 -0
- package/dist-types/ts3.4/RTBFabricClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -24
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -1163
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -245
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -329
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
var utilWaiter = require('@smithy/util-waiter');
|
|
21
19
|
|
|
22
20
|
const resolveClientEndpointParameters = (options) => {
|
|
@@ -93,6 +91,7 @@ class RTBFabricClient extends smithyClient.Client {
|
|
|
93
91
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
94
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
95
93
|
this.config = _config_8;
|
|
94
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
98
97
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -112,12 +111,12 @@ class RTBFabricClient extends smithyClient.Client {
|
|
|
112
111
|
}
|
|
113
112
|
}
|
|
114
113
|
|
|
115
|
-
class RTBFabricServiceException extends smithyClient.ServiceException {
|
|
114
|
+
let RTBFabricServiceException$1 = class RTBFabricServiceException extends smithyClient.ServiceException {
|
|
116
115
|
constructor(options) {
|
|
117
116
|
super(options);
|
|
118
117
|
Object.setPrototypeOf(this, RTBFabricServiceException.prototype);
|
|
119
118
|
}
|
|
120
|
-
}
|
|
119
|
+
};
|
|
121
120
|
|
|
122
121
|
const ResponderErrorMaskingAction = {
|
|
123
122
|
NO_BID: "NO_BID",
|
|
@@ -132,32 +131,10 @@ const LinkDirection = {
|
|
|
132
131
|
REQUEST: "REQUEST",
|
|
133
132
|
RESPONSE: "RESPONSE",
|
|
134
133
|
};
|
|
135
|
-
exports.Action = void 0;
|
|
136
|
-
(function (Action) {
|
|
137
|
-
Action.visit = (value, visitor) => {
|
|
138
|
-
if (value.noBid !== undefined)
|
|
139
|
-
return visitor.noBid(value.noBid);
|
|
140
|
-
if (value.headerTag !== undefined)
|
|
141
|
-
return visitor.headerTag(value.headerTag);
|
|
142
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
143
|
-
};
|
|
144
|
-
})(exports.Action || (exports.Action = {}));
|
|
145
134
|
const FilterType = {
|
|
146
135
|
EXCLUDE: "EXCLUDE",
|
|
147
136
|
INCLUDE: "INCLUDE",
|
|
148
137
|
};
|
|
149
|
-
exports.ModuleParameters = void 0;
|
|
150
|
-
(function (ModuleParameters) {
|
|
151
|
-
ModuleParameters.visit = (value, visitor) => {
|
|
152
|
-
if (value.noBid !== undefined)
|
|
153
|
-
return visitor.noBid(value.noBid);
|
|
154
|
-
if (value.openRtbAttribute !== undefined)
|
|
155
|
-
return visitor.openRtbAttribute(value.openRtbAttribute);
|
|
156
|
-
if (value.rateLimiter !== undefined)
|
|
157
|
-
return visitor.rateLimiter(value.rateLimiter);
|
|
158
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
159
|
-
};
|
|
160
|
-
})(exports.ModuleParameters || (exports.ModuleParameters = {}));
|
|
161
138
|
const LinkStatus = {
|
|
162
139
|
ACCEPTED: "ACCEPTED",
|
|
163
140
|
ACTIVE: "ACTIVE",
|
|
@@ -173,7 +150,7 @@ const LinkStatus = {
|
|
|
173
150
|
REJECTED: "REJECTED",
|
|
174
151
|
REQUESTED: "REQUESTED",
|
|
175
152
|
};
|
|
176
|
-
class AccessDeniedException extends RTBFabricServiceException {
|
|
153
|
+
let AccessDeniedException$1 = class AccessDeniedException extends RTBFabricServiceException$1 {
|
|
177
154
|
name = "AccessDeniedException";
|
|
178
155
|
$fault = "client";
|
|
179
156
|
constructor(opts) {
|
|
@@ -184,8 +161,8 @@ class AccessDeniedException extends RTBFabricServiceException {
|
|
|
184
161
|
});
|
|
185
162
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
186
163
|
}
|
|
187
|
-
}
|
|
188
|
-
class ConflictException extends RTBFabricServiceException {
|
|
164
|
+
};
|
|
165
|
+
let ConflictException$1 = class ConflictException extends RTBFabricServiceException$1 {
|
|
189
166
|
name = "ConflictException";
|
|
190
167
|
$fault = "client";
|
|
191
168
|
constructor(opts) {
|
|
@@ -196,8 +173,8 @@ class ConflictException extends RTBFabricServiceException {
|
|
|
196
173
|
});
|
|
197
174
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
198
175
|
}
|
|
199
|
-
}
|
|
200
|
-
class InternalServerException extends RTBFabricServiceException {
|
|
176
|
+
};
|
|
177
|
+
let InternalServerException$1 = class InternalServerException extends RTBFabricServiceException$1 {
|
|
201
178
|
name = "InternalServerException";
|
|
202
179
|
$fault = "server";
|
|
203
180
|
$retryable = {};
|
|
@@ -209,8 +186,8 @@ class InternalServerException extends RTBFabricServiceException {
|
|
|
209
186
|
});
|
|
210
187
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
211
188
|
}
|
|
212
|
-
}
|
|
213
|
-
class ResourceNotFoundException extends RTBFabricServiceException {
|
|
189
|
+
};
|
|
190
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends RTBFabricServiceException$1 {
|
|
214
191
|
name = "ResourceNotFoundException";
|
|
215
192
|
$fault = "client";
|
|
216
193
|
constructor(opts) {
|
|
@@ -221,8 +198,8 @@ class ResourceNotFoundException extends RTBFabricServiceException {
|
|
|
221
198
|
});
|
|
222
199
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
223
200
|
}
|
|
224
|
-
}
|
|
225
|
-
class ThrottlingException extends RTBFabricServiceException {
|
|
201
|
+
};
|
|
202
|
+
let ThrottlingException$1 = class ThrottlingException extends RTBFabricServiceException$1 {
|
|
226
203
|
name = "ThrottlingException";
|
|
227
204
|
$fault = "client";
|
|
228
205
|
$retryable = {};
|
|
@@ -234,8 +211,8 @@ class ThrottlingException extends RTBFabricServiceException {
|
|
|
234
211
|
});
|
|
235
212
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
236
213
|
}
|
|
237
|
-
}
|
|
238
|
-
class ValidationException extends RTBFabricServiceException {
|
|
214
|
+
};
|
|
215
|
+
let ValidationException$1 = class ValidationException extends RTBFabricServiceException$1 {
|
|
239
216
|
name = "ValidationException";
|
|
240
217
|
$fault = "client";
|
|
241
218
|
constructor(opts) {
|
|
@@ -246,8 +223,8 @@ class ValidationException extends RTBFabricServiceException {
|
|
|
246
223
|
});
|
|
247
224
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
248
225
|
}
|
|
249
|
-
}
|
|
250
|
-
class ServiceQuotaExceededException extends RTBFabricServiceException {
|
|
226
|
+
};
|
|
227
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends RTBFabricServiceException$1 {
|
|
251
228
|
name = "ServiceQuotaExceededException";
|
|
252
229
|
$fault = "client";
|
|
253
230
|
constructor(opts) {
|
|
@@ -258,7 +235,7 @@ class ServiceQuotaExceededException extends RTBFabricServiceException {
|
|
|
258
235
|
});
|
|
259
236
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
260
237
|
}
|
|
261
|
-
}
|
|
238
|
+
};
|
|
262
239
|
const RequesterGatewayStatus = {
|
|
263
240
|
ACTIVE: "ACTIVE",
|
|
264
241
|
DELETED: "DELETED",
|
|
@@ -270,16 +247,6 @@ const RequesterGatewayStatus = {
|
|
|
270
247
|
PENDING_RESTORATION: "PENDING_RESTORATION",
|
|
271
248
|
PENDING_UPDATE: "PENDING_UPDATE",
|
|
272
249
|
};
|
|
273
|
-
exports.ManagedEndpointConfiguration = void 0;
|
|
274
|
-
(function (ManagedEndpointConfiguration) {
|
|
275
|
-
ManagedEndpointConfiguration.visit = (value, visitor) => {
|
|
276
|
-
if (value.autoScalingGroups !== undefined)
|
|
277
|
-
return visitor.autoScalingGroups(value.autoScalingGroups);
|
|
278
|
-
if (value.eksEndpoints !== undefined)
|
|
279
|
-
return visitor.eksEndpoints(value.eksEndpoints);
|
|
280
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
281
|
-
};
|
|
282
|
-
})(exports.ManagedEndpointConfiguration || (exports.ManagedEndpointConfiguration = {}));
|
|
283
250
|
const Protocol = {
|
|
284
251
|
HTTP: "HTTP",
|
|
285
252
|
HTTPS: "HTTPS",
|
|
@@ -295,1221 +262,1055 @@ const ResponderGatewayStatus = {
|
|
|
295
262
|
PENDING_RESTORATION: "PENDING_RESTORATION",
|
|
296
263
|
PENDING_UPDATE: "PENDING_UPDATE",
|
|
297
264
|
};
|
|
298
|
-
const EksEndpointsConfigurationFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
...(obj.clusterApiServerCaCertificateChain && { clusterApiServerCaCertificateChain: smithyClient.SENSITIVE_STRING }),
|
|
301
|
-
});
|
|
302
|
-
const ManagedEndpointConfigurationFilterSensitiveLog = (obj) => {
|
|
303
|
-
if (obj.autoScalingGroups !== undefined)
|
|
304
|
-
return { autoScalingGroups: obj.autoScalingGroups };
|
|
305
|
-
if (obj.eksEndpoints !== undefined)
|
|
306
|
-
return { eksEndpoints: EksEndpointsConfigurationFilterSensitiveLog(obj.eksEndpoints) };
|
|
307
|
-
if (obj.$unknown !== undefined)
|
|
308
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
309
|
-
};
|
|
310
|
-
const TrustStoreConfigurationFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
...(obj.certificateAuthorityCertificates && { certificateAuthorityCertificates: smithyClient.SENSITIVE_STRING }),
|
|
313
|
-
});
|
|
314
|
-
const CreateResponderGatewayRequestFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
...(obj.trustStoreConfiguration && {
|
|
317
|
-
trustStoreConfiguration: TrustStoreConfigurationFilterSensitiveLog(obj.trustStoreConfiguration),
|
|
318
|
-
}),
|
|
319
|
-
...(obj.managedEndpointConfiguration && {
|
|
320
|
-
managedEndpointConfiguration: ManagedEndpointConfigurationFilterSensitiveLog(obj.managedEndpointConfiguration),
|
|
321
|
-
}),
|
|
322
|
-
});
|
|
323
|
-
const GetResponderGatewayResponseFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
...(obj.trustStoreConfiguration && {
|
|
326
|
-
trustStoreConfiguration: TrustStoreConfigurationFilterSensitiveLog(obj.trustStoreConfiguration),
|
|
327
|
-
}),
|
|
328
|
-
...(obj.managedEndpointConfiguration && {
|
|
329
|
-
managedEndpointConfiguration: ManagedEndpointConfigurationFilterSensitiveLog(obj.managedEndpointConfiguration),
|
|
330
|
-
}),
|
|
331
|
-
});
|
|
332
|
-
const UpdateResponderGatewayRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
...(obj.trustStoreConfiguration && {
|
|
335
|
-
trustStoreConfiguration: TrustStoreConfigurationFilterSensitiveLog(obj.trustStoreConfiguration),
|
|
336
|
-
}),
|
|
337
|
-
...(obj.managedEndpointConfiguration && {
|
|
338
|
-
managedEndpointConfiguration: ManagedEndpointConfigurationFilterSensitiveLog(obj.managedEndpointConfiguration),
|
|
339
|
-
}),
|
|
340
|
-
});
|
|
341
265
|
|
|
342
|
-
const
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
const
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
const
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
const
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
const
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
const
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
const
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
const
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
const
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
const
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
const
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
const
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
b.p("linkId", () => input.linkId, "{linkId}", false);
|
|
503
|
-
let body;
|
|
504
|
-
b.m("GET").h(headers).b(body);
|
|
505
|
-
return b.build();
|
|
506
|
-
};
|
|
507
|
-
const se_GetLinkCommand = async (input, context) => {
|
|
508
|
-
const b = core.requestBuilder(input, context);
|
|
509
|
-
const headers = {};
|
|
510
|
-
b.bp("/gateway/{gatewayId}/link/{linkId}");
|
|
511
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
512
|
-
b.p("linkId", () => input.linkId, "{linkId}", false);
|
|
513
|
-
let body;
|
|
514
|
-
b.m("GET").h(headers).b(body);
|
|
515
|
-
return b.build();
|
|
516
|
-
};
|
|
517
|
-
const se_GetOutboundExternalLinkCommand = async (input, context) => {
|
|
518
|
-
const b = core.requestBuilder(input, context);
|
|
519
|
-
const headers = {};
|
|
520
|
-
b.bp("/requester-gateway/{gatewayId}/outbound-external-link/{linkId}");
|
|
521
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
522
|
-
b.p("linkId", () => input.linkId, "{linkId}", false);
|
|
523
|
-
let body;
|
|
524
|
-
b.m("GET").h(headers).b(body);
|
|
525
|
-
return b.build();
|
|
526
|
-
};
|
|
527
|
-
const se_GetRequesterGatewayCommand = async (input, context) => {
|
|
528
|
-
const b = core.requestBuilder(input, context);
|
|
529
|
-
const headers = {};
|
|
530
|
-
b.bp("/requester-gateway/{gatewayId}");
|
|
531
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
532
|
-
let body;
|
|
533
|
-
b.m("GET").h(headers).b(body);
|
|
534
|
-
return b.build();
|
|
535
|
-
};
|
|
536
|
-
const se_GetResponderGatewayCommand = async (input, context) => {
|
|
537
|
-
const b = core.requestBuilder(input, context);
|
|
538
|
-
const headers = {};
|
|
539
|
-
b.bp("/responder-gateway/{gatewayId}");
|
|
540
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
541
|
-
let body;
|
|
542
|
-
b.m("GET").h(headers).b(body);
|
|
543
|
-
return b.build();
|
|
544
|
-
};
|
|
545
|
-
const se_ListLinksCommand = async (input, context) => {
|
|
546
|
-
const b = core.requestBuilder(input, context);
|
|
547
|
-
const headers = {};
|
|
548
|
-
b.bp("/gateway/{gatewayId}/links");
|
|
549
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
550
|
-
const query = smithyClient.map({
|
|
551
|
-
[_nT]: [, input[_nT]],
|
|
552
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
553
|
-
});
|
|
554
|
-
let body;
|
|
555
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
556
|
-
return b.build();
|
|
557
|
-
};
|
|
558
|
-
const se_ListRequesterGatewaysCommand = async (input, context) => {
|
|
559
|
-
const b = core.requestBuilder(input, context);
|
|
560
|
-
const headers = {};
|
|
561
|
-
b.bp("/requester-gateways");
|
|
562
|
-
const query = smithyClient.map({
|
|
563
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
564
|
-
[_nT]: [, input[_nT]],
|
|
565
|
-
});
|
|
566
|
-
let body;
|
|
567
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
568
|
-
return b.build();
|
|
569
|
-
};
|
|
570
|
-
const se_ListResponderGatewaysCommand = async (input, context) => {
|
|
571
|
-
const b = core.requestBuilder(input, context);
|
|
572
|
-
const headers = {};
|
|
573
|
-
b.bp("/responder-gateways");
|
|
574
|
-
const query = smithyClient.map({
|
|
575
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
576
|
-
[_nT]: [, input[_nT]],
|
|
577
|
-
});
|
|
578
|
-
let body;
|
|
579
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
580
|
-
return b.build();
|
|
581
|
-
};
|
|
582
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
583
|
-
const b = core.requestBuilder(input, context);
|
|
584
|
-
const headers = {};
|
|
585
|
-
b.bp("/tags/{resourceArn}");
|
|
586
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
587
|
-
let body;
|
|
588
|
-
b.m("GET").h(headers).b(body);
|
|
589
|
-
return b.build();
|
|
590
|
-
};
|
|
591
|
-
const se_RejectLinkCommand = async (input, context) => {
|
|
592
|
-
const b = core.requestBuilder(input, context);
|
|
593
|
-
const headers = {};
|
|
594
|
-
b.bp("/gateway/{gatewayId}/link/{linkId}/reject");
|
|
595
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
596
|
-
b.p("linkId", () => input.linkId, "{linkId}", false);
|
|
597
|
-
let body;
|
|
598
|
-
b.m("POST").h(headers).b(body);
|
|
599
|
-
return b.build();
|
|
600
|
-
};
|
|
601
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
602
|
-
const b = core.requestBuilder(input, context);
|
|
603
|
-
const headers = {
|
|
604
|
-
"content-type": "application/json",
|
|
605
|
-
};
|
|
606
|
-
b.bp("/tags/{resourceArn}");
|
|
607
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
608
|
-
let body;
|
|
609
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
610
|
-
tags: (_) => smithyClient._json(_),
|
|
611
|
-
}));
|
|
612
|
-
b.m("POST").h(headers).b(body);
|
|
613
|
-
return b.build();
|
|
614
|
-
};
|
|
615
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
616
|
-
const b = core.requestBuilder(input, context);
|
|
617
|
-
const headers = {};
|
|
618
|
-
b.bp("/tags/{resourceArn}");
|
|
619
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
620
|
-
const query = smithyClient.map({
|
|
621
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
622
|
-
});
|
|
623
|
-
let body;
|
|
624
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
625
|
-
return b.build();
|
|
626
|
-
};
|
|
627
|
-
const se_UpdateLinkCommand = async (input, context) => {
|
|
628
|
-
const b = core.requestBuilder(input, context);
|
|
629
|
-
const headers = {
|
|
630
|
-
"content-type": "application/json",
|
|
631
|
-
};
|
|
632
|
-
b.bp("/gateway/{gatewayId}/link/{linkId}");
|
|
633
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
634
|
-
b.p("linkId", () => input.linkId, "{linkId}", false);
|
|
635
|
-
let body;
|
|
636
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
637
|
-
logSettings: (_) => se_LinkLogSettings(_),
|
|
638
|
-
}));
|
|
639
|
-
b.m("PATCH").h(headers).b(body);
|
|
640
|
-
return b.build();
|
|
641
|
-
};
|
|
642
|
-
const se_UpdateLinkModuleFlowCommand = async (input, context) => {
|
|
643
|
-
const b = core.requestBuilder(input, context);
|
|
644
|
-
const headers = {
|
|
645
|
-
"content-type": "application/json",
|
|
646
|
-
};
|
|
647
|
-
b.bp("/gateway/{gatewayId}/link/{linkId}/module-flow");
|
|
648
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
649
|
-
b.p("linkId", () => input.linkId, "{linkId}", false);
|
|
650
|
-
let body;
|
|
651
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
652
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
653
|
-
modules: (_) => se_ModuleConfigurationList(_),
|
|
654
|
-
}));
|
|
655
|
-
b.m("POST").h(headers).b(body);
|
|
656
|
-
return b.build();
|
|
657
|
-
};
|
|
658
|
-
const se_UpdateRequesterGatewayCommand = async (input, context) => {
|
|
659
|
-
const b = core.requestBuilder(input, context);
|
|
660
|
-
const headers = {
|
|
661
|
-
"content-type": "application/json",
|
|
662
|
-
};
|
|
663
|
-
b.bp("/requester-gateway/{gatewayId}/update");
|
|
664
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
665
|
-
let body;
|
|
666
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
667
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
668
|
-
description: [],
|
|
669
|
-
}));
|
|
670
|
-
b.m("POST").h(headers).b(body);
|
|
671
|
-
return b.build();
|
|
672
|
-
};
|
|
673
|
-
const se_UpdateResponderGatewayCommand = async (input, context) => {
|
|
674
|
-
const b = core.requestBuilder(input, context);
|
|
675
|
-
const headers = {
|
|
676
|
-
"content-type": "application/json",
|
|
677
|
-
};
|
|
678
|
-
b.bp("/responder-gateway/{gatewayId}/update");
|
|
679
|
-
b.p("gatewayId", () => input.gatewayId, "{gatewayId}", false);
|
|
680
|
-
let body;
|
|
681
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
682
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
683
|
-
description: [],
|
|
684
|
-
domainName: [],
|
|
685
|
-
managedEndpointConfiguration: (_) => smithyClient._json(_),
|
|
686
|
-
port: [],
|
|
687
|
-
protocol: [],
|
|
688
|
-
trustStoreConfiguration: (_) => smithyClient._json(_),
|
|
689
|
-
}));
|
|
690
|
-
b.m("POST").h(headers).b(body);
|
|
691
|
-
return b.build();
|
|
692
|
-
};
|
|
693
|
-
const de_AcceptLinkCommand = async (output, context) => {
|
|
694
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
695
|
-
return de_CommandError(output, context);
|
|
696
|
-
}
|
|
697
|
-
const contents = smithyClient.map({
|
|
698
|
-
$metadata: deserializeMetadata(output),
|
|
699
|
-
});
|
|
700
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
701
|
-
const doc = smithyClient.take(data, {
|
|
702
|
-
attributes: (_) => de_LinkAttributes(_),
|
|
703
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
704
|
-
direction: smithyClient.expectString,
|
|
705
|
-
flowModules: (_) => de_ModuleConfigurationList(_),
|
|
706
|
-
gatewayId: smithyClient.expectString,
|
|
707
|
-
linkId: smithyClient.expectString,
|
|
708
|
-
peerGatewayId: smithyClient.expectString,
|
|
709
|
-
pendingFlowModules: (_) => de_ModuleConfigurationList(_),
|
|
710
|
-
status: smithyClient.expectString,
|
|
711
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
712
|
-
});
|
|
713
|
-
Object.assign(contents, doc);
|
|
714
|
-
return contents;
|
|
715
|
-
};
|
|
716
|
-
const de_CreateInboundExternalLinkCommand = async (output, context) => {
|
|
717
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
718
|
-
return de_CommandError(output, context);
|
|
719
|
-
}
|
|
720
|
-
const contents = smithyClient.map({
|
|
721
|
-
$metadata: deserializeMetadata(output),
|
|
722
|
-
});
|
|
723
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
724
|
-
const doc = smithyClient.take(data, {
|
|
725
|
-
domainName: smithyClient.expectString,
|
|
726
|
-
gatewayId: smithyClient.expectString,
|
|
727
|
-
linkId: smithyClient.expectString,
|
|
728
|
-
status: smithyClient.expectString,
|
|
729
|
-
});
|
|
730
|
-
Object.assign(contents, doc);
|
|
731
|
-
return contents;
|
|
732
|
-
};
|
|
733
|
-
const de_CreateLinkCommand = async (output, context) => {
|
|
734
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
735
|
-
return de_CommandError(output, context);
|
|
736
|
-
}
|
|
737
|
-
const contents = smithyClient.map({
|
|
738
|
-
$metadata: deserializeMetadata(output),
|
|
739
|
-
});
|
|
740
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
741
|
-
const doc = smithyClient.take(data, {
|
|
742
|
-
attributes: (_) => de_LinkAttributes(_),
|
|
743
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
744
|
-
customerProvidedId: smithyClient.expectString,
|
|
745
|
-
direction: smithyClient.expectString,
|
|
746
|
-
flowModules: (_) => de_ModuleConfigurationList(_),
|
|
747
|
-
gatewayId: smithyClient.expectString,
|
|
748
|
-
linkId: smithyClient.expectString,
|
|
749
|
-
peerGatewayId: smithyClient.expectString,
|
|
750
|
-
pendingFlowModules: (_) => de_ModuleConfigurationList(_),
|
|
751
|
-
status: smithyClient.expectString,
|
|
752
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
753
|
-
});
|
|
754
|
-
Object.assign(contents, doc);
|
|
755
|
-
return contents;
|
|
756
|
-
};
|
|
757
|
-
const de_CreateOutboundExternalLinkCommand = async (output, context) => {
|
|
758
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
759
|
-
return de_CommandError(output, context);
|
|
760
|
-
}
|
|
761
|
-
const contents = smithyClient.map({
|
|
762
|
-
$metadata: deserializeMetadata(output),
|
|
763
|
-
});
|
|
764
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
765
|
-
const doc = smithyClient.take(data, {
|
|
766
|
-
gatewayId: smithyClient.expectString,
|
|
767
|
-
linkId: smithyClient.expectString,
|
|
768
|
-
status: smithyClient.expectString,
|
|
769
|
-
});
|
|
770
|
-
Object.assign(contents, doc);
|
|
771
|
-
return contents;
|
|
772
|
-
};
|
|
773
|
-
const de_CreateRequesterGatewayCommand = async (output, context) => {
|
|
774
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
775
|
-
return de_CommandError(output, context);
|
|
776
|
-
}
|
|
777
|
-
const contents = smithyClient.map({
|
|
778
|
-
$metadata: deserializeMetadata(output),
|
|
779
|
-
});
|
|
780
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
781
|
-
const doc = smithyClient.take(data, {
|
|
782
|
-
domainName: smithyClient.expectString,
|
|
783
|
-
gatewayId: smithyClient.expectString,
|
|
784
|
-
status: smithyClient.expectString,
|
|
785
|
-
});
|
|
786
|
-
Object.assign(contents, doc);
|
|
787
|
-
return contents;
|
|
788
|
-
};
|
|
789
|
-
const de_CreateResponderGatewayCommand = async (output, context) => {
|
|
790
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
791
|
-
return de_CommandError(output, context);
|
|
792
|
-
}
|
|
793
|
-
const contents = smithyClient.map({
|
|
794
|
-
$metadata: deserializeMetadata(output),
|
|
795
|
-
});
|
|
796
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
797
|
-
const doc = smithyClient.take(data, {
|
|
798
|
-
gatewayId: smithyClient.expectString,
|
|
799
|
-
status: smithyClient.expectString,
|
|
800
|
-
});
|
|
801
|
-
Object.assign(contents, doc);
|
|
802
|
-
return contents;
|
|
803
|
-
};
|
|
804
|
-
const de_DeleteInboundExternalLinkCommand = async (output, context) => {
|
|
805
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
806
|
-
return de_CommandError(output, context);
|
|
807
|
-
}
|
|
808
|
-
const contents = smithyClient.map({
|
|
809
|
-
$metadata: deserializeMetadata(output),
|
|
810
|
-
});
|
|
811
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
812
|
-
const doc = smithyClient.take(data, {
|
|
813
|
-
linkId: smithyClient.expectString,
|
|
814
|
-
status: smithyClient.expectString,
|
|
815
|
-
});
|
|
816
|
-
Object.assign(contents, doc);
|
|
817
|
-
return contents;
|
|
818
|
-
};
|
|
819
|
-
const de_DeleteLinkCommand = async (output, context) => {
|
|
820
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
821
|
-
return de_CommandError(output, context);
|
|
822
|
-
}
|
|
823
|
-
const contents = smithyClient.map({
|
|
824
|
-
$metadata: deserializeMetadata(output),
|
|
825
|
-
});
|
|
826
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
827
|
-
const doc = smithyClient.take(data, {
|
|
828
|
-
linkId: smithyClient.expectString,
|
|
829
|
-
status: smithyClient.expectString,
|
|
830
|
-
});
|
|
831
|
-
Object.assign(contents, doc);
|
|
832
|
-
return contents;
|
|
833
|
-
};
|
|
834
|
-
const de_DeleteOutboundExternalLinkCommand = async (output, context) => {
|
|
835
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
836
|
-
return de_CommandError(output, context);
|
|
837
|
-
}
|
|
838
|
-
const contents = smithyClient.map({
|
|
839
|
-
$metadata: deserializeMetadata(output),
|
|
840
|
-
});
|
|
841
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
842
|
-
const doc = smithyClient.take(data, {
|
|
843
|
-
linkId: smithyClient.expectString,
|
|
844
|
-
status: smithyClient.expectString,
|
|
845
|
-
});
|
|
846
|
-
Object.assign(contents, doc);
|
|
847
|
-
return contents;
|
|
848
|
-
};
|
|
849
|
-
const de_DeleteRequesterGatewayCommand = async (output, context) => {
|
|
850
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
851
|
-
return de_CommandError(output, context);
|
|
852
|
-
}
|
|
853
|
-
const contents = smithyClient.map({
|
|
854
|
-
$metadata: deserializeMetadata(output),
|
|
855
|
-
});
|
|
856
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
857
|
-
const doc = smithyClient.take(data, {
|
|
858
|
-
gatewayId: smithyClient.expectString,
|
|
859
|
-
status: smithyClient.expectString,
|
|
860
|
-
});
|
|
861
|
-
Object.assign(contents, doc);
|
|
862
|
-
return contents;
|
|
863
|
-
};
|
|
864
|
-
const de_DeleteResponderGatewayCommand = async (output, context) => {
|
|
865
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
866
|
-
return de_CommandError(output, context);
|
|
867
|
-
}
|
|
868
|
-
const contents = smithyClient.map({
|
|
869
|
-
$metadata: deserializeMetadata(output),
|
|
870
|
-
});
|
|
871
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
872
|
-
const doc = smithyClient.take(data, {
|
|
873
|
-
gatewayId: smithyClient.expectString,
|
|
874
|
-
status: smithyClient.expectString,
|
|
875
|
-
});
|
|
876
|
-
Object.assign(contents, doc);
|
|
877
|
-
return contents;
|
|
878
|
-
};
|
|
879
|
-
const de_GetInboundExternalLinkCommand = async (output, context) => {
|
|
880
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
881
|
-
return de_CommandError(output, context);
|
|
882
|
-
}
|
|
883
|
-
const contents = smithyClient.map({
|
|
884
|
-
$metadata: deserializeMetadata(output),
|
|
885
|
-
});
|
|
886
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
887
|
-
const doc = smithyClient.take(data, {
|
|
888
|
-
attributes: (_) => de_LinkAttributes(_),
|
|
889
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
890
|
-
domainName: smithyClient.expectString,
|
|
891
|
-
flowModules: (_) => de_ModuleConfigurationList(_),
|
|
892
|
-
gatewayId: smithyClient.expectString,
|
|
893
|
-
linkId: smithyClient.expectString,
|
|
894
|
-
pendingFlowModules: (_) => de_ModuleConfigurationList(_),
|
|
895
|
-
status: smithyClient.expectString,
|
|
896
|
-
tags: smithyClient._json,
|
|
897
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
898
|
-
});
|
|
899
|
-
Object.assign(contents, doc);
|
|
900
|
-
return contents;
|
|
901
|
-
};
|
|
902
|
-
const de_GetLinkCommand = async (output, context) => {
|
|
903
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
904
|
-
return de_CommandError(output, context);
|
|
905
|
-
}
|
|
906
|
-
const contents = smithyClient.map({
|
|
907
|
-
$metadata: deserializeMetadata(output),
|
|
908
|
-
});
|
|
909
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
910
|
-
const doc = smithyClient.take(data, {
|
|
911
|
-
attributes: (_) => de_LinkAttributes(_),
|
|
912
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
913
|
-
direction: smithyClient.expectString,
|
|
914
|
-
flowModules: (_) => de_ModuleConfigurationList(_),
|
|
915
|
-
gatewayId: smithyClient.expectString,
|
|
916
|
-
linkId: smithyClient.expectString,
|
|
917
|
-
logSettings: (_) => de_LinkLogSettings(_),
|
|
918
|
-
peerGatewayId: smithyClient.expectString,
|
|
919
|
-
pendingFlowModules: (_) => de_ModuleConfigurationList(_),
|
|
920
|
-
status: smithyClient.expectString,
|
|
921
|
-
tags: smithyClient._json,
|
|
922
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
923
|
-
});
|
|
924
|
-
Object.assign(contents, doc);
|
|
925
|
-
return contents;
|
|
926
|
-
};
|
|
927
|
-
const de_GetOutboundExternalLinkCommand = async (output, context) => {
|
|
928
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
929
|
-
return de_CommandError(output, context);
|
|
930
|
-
}
|
|
931
|
-
const contents = smithyClient.map({
|
|
932
|
-
$metadata: deserializeMetadata(output),
|
|
933
|
-
});
|
|
934
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
935
|
-
const doc = smithyClient.take(data, {
|
|
936
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
937
|
-
gatewayId: smithyClient.expectString,
|
|
938
|
-
linkId: smithyClient.expectString,
|
|
939
|
-
publicEndpoint: smithyClient.expectString,
|
|
940
|
-
status: smithyClient.expectString,
|
|
941
|
-
tags: smithyClient._json,
|
|
942
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
943
|
-
});
|
|
944
|
-
Object.assign(contents, doc);
|
|
945
|
-
return contents;
|
|
946
|
-
};
|
|
947
|
-
const de_GetRequesterGatewayCommand = async (output, context) => {
|
|
948
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
949
|
-
return de_CommandError(output, context);
|
|
950
|
-
}
|
|
951
|
-
const contents = smithyClient.map({
|
|
952
|
-
$metadata: deserializeMetadata(output),
|
|
953
|
-
});
|
|
954
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
955
|
-
const doc = smithyClient.take(data, {
|
|
956
|
-
activeLinksCount: smithyClient.expectInt32,
|
|
957
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
958
|
-
description: smithyClient.expectString,
|
|
959
|
-
domainName: smithyClient.expectString,
|
|
960
|
-
gatewayId: smithyClient.expectString,
|
|
961
|
-
securityGroupIds: smithyClient._json,
|
|
962
|
-
status: smithyClient.expectString,
|
|
963
|
-
subnetIds: smithyClient._json,
|
|
964
|
-
tags: smithyClient._json,
|
|
965
|
-
totalLinksCount: smithyClient.expectInt32,
|
|
966
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
967
|
-
vpcId: smithyClient.expectString,
|
|
968
|
-
});
|
|
969
|
-
Object.assign(contents, doc);
|
|
970
|
-
return contents;
|
|
971
|
-
};
|
|
972
|
-
const de_GetResponderGatewayCommand = async (output, context) => {
|
|
973
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
974
|
-
return de_CommandError(output, context);
|
|
975
|
-
}
|
|
976
|
-
const contents = smithyClient.map({
|
|
977
|
-
$metadata: deserializeMetadata(output),
|
|
978
|
-
});
|
|
979
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
980
|
-
const doc = smithyClient.take(data, {
|
|
981
|
-
activeLinksCount: smithyClient.expectInt32,
|
|
982
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
983
|
-
description: smithyClient.expectString,
|
|
984
|
-
domainName: smithyClient.expectString,
|
|
985
|
-
gatewayId: smithyClient.expectString,
|
|
986
|
-
inboundLinksCount: smithyClient.expectInt32,
|
|
987
|
-
managedEndpointConfiguration: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
988
|
-
port: smithyClient.expectInt32,
|
|
989
|
-
protocol: smithyClient.expectString,
|
|
990
|
-
securityGroupIds: smithyClient._json,
|
|
991
|
-
status: smithyClient.expectString,
|
|
992
|
-
subnetIds: smithyClient._json,
|
|
993
|
-
tags: smithyClient._json,
|
|
994
|
-
totalLinksCount: smithyClient.expectInt32,
|
|
995
|
-
trustStoreConfiguration: smithyClient._json,
|
|
996
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
997
|
-
vpcId: smithyClient.expectString,
|
|
998
|
-
});
|
|
999
|
-
Object.assign(contents, doc);
|
|
1000
|
-
return contents;
|
|
1001
|
-
};
|
|
1002
|
-
const de_ListLinksCommand = async (output, context) => {
|
|
1003
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1004
|
-
return de_CommandError(output, context);
|
|
1005
|
-
}
|
|
1006
|
-
const contents = smithyClient.map({
|
|
1007
|
-
$metadata: deserializeMetadata(output),
|
|
1008
|
-
});
|
|
1009
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1010
|
-
const doc = smithyClient.take(data, {
|
|
1011
|
-
links: (_) => de_LinkList(_),
|
|
1012
|
-
nextToken: smithyClient.expectString,
|
|
1013
|
-
});
|
|
1014
|
-
Object.assign(contents, doc);
|
|
1015
|
-
return contents;
|
|
1016
|
-
};
|
|
1017
|
-
const de_ListRequesterGatewaysCommand = async (output, context) => {
|
|
1018
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1019
|
-
return de_CommandError(output, context);
|
|
1020
|
-
}
|
|
1021
|
-
const contents = smithyClient.map({
|
|
1022
|
-
$metadata: deserializeMetadata(output),
|
|
1023
|
-
});
|
|
1024
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1025
|
-
const doc = smithyClient.take(data, {
|
|
1026
|
-
gatewayIds: smithyClient._json,
|
|
1027
|
-
nextToken: smithyClient.expectString,
|
|
1028
|
-
});
|
|
1029
|
-
Object.assign(contents, doc);
|
|
1030
|
-
return contents;
|
|
1031
|
-
};
|
|
1032
|
-
const de_ListResponderGatewaysCommand = async (output, context) => {
|
|
1033
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1034
|
-
return de_CommandError(output, context);
|
|
1035
|
-
}
|
|
1036
|
-
const contents = smithyClient.map({
|
|
1037
|
-
$metadata: deserializeMetadata(output),
|
|
1038
|
-
});
|
|
1039
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1040
|
-
const doc = smithyClient.take(data, {
|
|
1041
|
-
gatewayIds: smithyClient._json,
|
|
1042
|
-
nextToken: smithyClient.expectString,
|
|
1043
|
-
});
|
|
1044
|
-
Object.assign(contents, doc);
|
|
1045
|
-
return contents;
|
|
1046
|
-
};
|
|
1047
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1048
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1049
|
-
return de_CommandError(output, context);
|
|
1050
|
-
}
|
|
1051
|
-
const contents = smithyClient.map({
|
|
1052
|
-
$metadata: deserializeMetadata(output),
|
|
1053
|
-
});
|
|
1054
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1055
|
-
const doc = smithyClient.take(data, {
|
|
1056
|
-
tags: smithyClient._json,
|
|
1057
|
-
});
|
|
1058
|
-
Object.assign(contents, doc);
|
|
1059
|
-
return contents;
|
|
1060
|
-
};
|
|
1061
|
-
const de_RejectLinkCommand = async (output, context) => {
|
|
1062
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1063
|
-
return de_CommandError(output, context);
|
|
1064
|
-
}
|
|
1065
|
-
const contents = smithyClient.map({
|
|
1066
|
-
$metadata: deserializeMetadata(output),
|
|
1067
|
-
});
|
|
1068
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1069
|
-
const doc = smithyClient.take(data, {
|
|
1070
|
-
attributes: (_) => de_LinkAttributes(_),
|
|
1071
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1072
|
-
direction: smithyClient.expectString,
|
|
1073
|
-
flowModules: (_) => de_ModuleConfigurationList(_),
|
|
1074
|
-
gatewayId: smithyClient.expectString,
|
|
1075
|
-
linkId: smithyClient.expectString,
|
|
1076
|
-
peerGatewayId: smithyClient.expectString,
|
|
1077
|
-
pendingFlowModules: (_) => de_ModuleConfigurationList(_),
|
|
1078
|
-
status: smithyClient.expectString,
|
|
1079
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1080
|
-
});
|
|
1081
|
-
Object.assign(contents, doc);
|
|
1082
|
-
return contents;
|
|
1083
|
-
};
|
|
1084
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1085
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1086
|
-
return de_CommandError(output, context);
|
|
1087
|
-
}
|
|
1088
|
-
const contents = smithyClient.map({
|
|
1089
|
-
$metadata: deserializeMetadata(output),
|
|
1090
|
-
});
|
|
1091
|
-
await smithyClient.collectBody(output.body, context);
|
|
1092
|
-
return contents;
|
|
1093
|
-
};
|
|
1094
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1095
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1096
|
-
return de_CommandError(output, context);
|
|
1097
|
-
}
|
|
1098
|
-
const contents = smithyClient.map({
|
|
1099
|
-
$metadata: deserializeMetadata(output),
|
|
1100
|
-
});
|
|
1101
|
-
await smithyClient.collectBody(output.body, context);
|
|
1102
|
-
return contents;
|
|
1103
|
-
};
|
|
1104
|
-
const de_UpdateLinkCommand = async (output, context) => {
|
|
1105
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1106
|
-
return de_CommandError(output, context);
|
|
1107
|
-
}
|
|
1108
|
-
const contents = smithyClient.map({
|
|
1109
|
-
$metadata: deserializeMetadata(output),
|
|
1110
|
-
});
|
|
1111
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1112
|
-
const doc = smithyClient.take(data, {
|
|
1113
|
-
linkId: smithyClient.expectString,
|
|
1114
|
-
status: smithyClient.expectString,
|
|
1115
|
-
});
|
|
1116
|
-
Object.assign(contents, doc);
|
|
1117
|
-
return contents;
|
|
1118
|
-
};
|
|
1119
|
-
const de_UpdateLinkModuleFlowCommand = async (output, context) => {
|
|
1120
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1121
|
-
return de_CommandError(output, context);
|
|
1122
|
-
}
|
|
1123
|
-
const contents = smithyClient.map({
|
|
1124
|
-
$metadata: deserializeMetadata(output),
|
|
1125
|
-
});
|
|
1126
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1127
|
-
const doc = smithyClient.take(data, {
|
|
1128
|
-
gatewayId: smithyClient.expectString,
|
|
1129
|
-
linkId: smithyClient.expectString,
|
|
1130
|
-
status: smithyClient.expectString,
|
|
1131
|
-
});
|
|
1132
|
-
Object.assign(contents, doc);
|
|
1133
|
-
return contents;
|
|
1134
|
-
};
|
|
1135
|
-
const de_UpdateRequesterGatewayCommand = async (output, context) => {
|
|
1136
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1137
|
-
return de_CommandError(output, context);
|
|
1138
|
-
}
|
|
1139
|
-
const contents = smithyClient.map({
|
|
1140
|
-
$metadata: deserializeMetadata(output),
|
|
1141
|
-
});
|
|
1142
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1143
|
-
const doc = smithyClient.take(data, {
|
|
1144
|
-
gatewayId: smithyClient.expectString,
|
|
1145
|
-
status: smithyClient.expectString,
|
|
1146
|
-
});
|
|
1147
|
-
Object.assign(contents, doc);
|
|
1148
|
-
return contents;
|
|
1149
|
-
};
|
|
1150
|
-
const de_UpdateResponderGatewayCommand = async (output, context) => {
|
|
1151
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1152
|
-
return de_CommandError(output, context);
|
|
1153
|
-
}
|
|
1154
|
-
const contents = smithyClient.map({
|
|
1155
|
-
$metadata: deserializeMetadata(output),
|
|
1156
|
-
});
|
|
1157
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1158
|
-
const doc = smithyClient.take(data, {
|
|
1159
|
-
gatewayId: smithyClient.expectString,
|
|
1160
|
-
status: smithyClient.expectString,
|
|
1161
|
-
});
|
|
1162
|
-
Object.assign(contents, doc);
|
|
1163
|
-
return contents;
|
|
1164
|
-
};
|
|
1165
|
-
const de_CommandError = async (output, context) => {
|
|
1166
|
-
const parsedOutput = {
|
|
1167
|
-
...output,
|
|
1168
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1169
|
-
};
|
|
1170
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1171
|
-
switch (errorCode) {
|
|
1172
|
-
case "AccessDeniedException":
|
|
1173
|
-
case "com.amazonaws.rtbfabric#AccessDeniedException":
|
|
1174
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1175
|
-
case "ConflictException":
|
|
1176
|
-
case "com.amazonaws.rtbfabric#ConflictException":
|
|
1177
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1178
|
-
case "InternalServerException":
|
|
1179
|
-
case "com.amazonaws.rtbfabric#InternalServerException":
|
|
1180
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1181
|
-
case "ResourceNotFoundException":
|
|
1182
|
-
case "com.amazonaws.rtbfabric#ResourceNotFoundException":
|
|
1183
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1184
|
-
case "ThrottlingException":
|
|
1185
|
-
case "com.amazonaws.rtbfabric#ThrottlingException":
|
|
1186
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1187
|
-
case "ValidationException":
|
|
1188
|
-
case "com.amazonaws.rtbfabric#ValidationException":
|
|
1189
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1190
|
-
case "ServiceQuotaExceededException":
|
|
1191
|
-
case "com.amazonaws.rtbfabric#ServiceQuotaExceededException":
|
|
1192
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1193
|
-
default:
|
|
1194
|
-
const parsedBody = parsedOutput.body;
|
|
1195
|
-
return throwDefaultError({
|
|
1196
|
-
output,
|
|
1197
|
-
parsedBody,
|
|
1198
|
-
errorCode,
|
|
1199
|
-
});
|
|
1200
|
-
}
|
|
1201
|
-
};
|
|
1202
|
-
const throwDefaultError = smithyClient.withBaseException(RTBFabricServiceException);
|
|
1203
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1204
|
-
const contents = smithyClient.map({});
|
|
1205
|
-
const data = parsedOutput.body;
|
|
1206
|
-
const doc = smithyClient.take(data, {
|
|
1207
|
-
message: smithyClient.expectString,
|
|
1208
|
-
});
|
|
1209
|
-
Object.assign(contents, doc);
|
|
1210
|
-
const exception = new AccessDeniedException({
|
|
1211
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1212
|
-
...contents,
|
|
1213
|
-
});
|
|
1214
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1215
|
-
};
|
|
1216
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1217
|
-
const contents = smithyClient.map({});
|
|
1218
|
-
const data = parsedOutput.body;
|
|
1219
|
-
const doc = smithyClient.take(data, {
|
|
1220
|
-
message: smithyClient.expectString,
|
|
1221
|
-
});
|
|
1222
|
-
Object.assign(contents, doc);
|
|
1223
|
-
const exception = new ConflictException({
|
|
1224
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1225
|
-
...contents,
|
|
1226
|
-
});
|
|
1227
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1228
|
-
};
|
|
1229
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1230
|
-
const contents = smithyClient.map({});
|
|
1231
|
-
const data = parsedOutput.body;
|
|
1232
|
-
const doc = smithyClient.take(data, {
|
|
1233
|
-
message: smithyClient.expectString,
|
|
1234
|
-
});
|
|
1235
|
-
Object.assign(contents, doc);
|
|
1236
|
-
const exception = new InternalServerException({
|
|
1237
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1238
|
-
...contents,
|
|
1239
|
-
});
|
|
1240
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1241
|
-
};
|
|
1242
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1243
|
-
const contents = smithyClient.map({});
|
|
1244
|
-
const data = parsedOutput.body;
|
|
1245
|
-
const doc = smithyClient.take(data, {
|
|
1246
|
-
message: smithyClient.expectString,
|
|
1247
|
-
});
|
|
1248
|
-
Object.assign(contents, doc);
|
|
1249
|
-
const exception = new ResourceNotFoundException({
|
|
1250
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1251
|
-
...contents,
|
|
1252
|
-
});
|
|
1253
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1254
|
-
};
|
|
1255
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1256
|
-
const contents = smithyClient.map({});
|
|
1257
|
-
const data = parsedOutput.body;
|
|
1258
|
-
const doc = smithyClient.take(data, {
|
|
1259
|
-
message: smithyClient.expectString,
|
|
1260
|
-
});
|
|
1261
|
-
Object.assign(contents, doc);
|
|
1262
|
-
const exception = new ServiceQuotaExceededException({
|
|
1263
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1264
|
-
...contents,
|
|
1265
|
-
});
|
|
1266
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1267
|
-
};
|
|
1268
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1269
|
-
const contents = smithyClient.map({});
|
|
1270
|
-
const data = parsedOutput.body;
|
|
1271
|
-
const doc = smithyClient.take(data, {
|
|
1272
|
-
message: smithyClient.expectString,
|
|
1273
|
-
});
|
|
1274
|
-
Object.assign(contents, doc);
|
|
1275
|
-
const exception = new ThrottlingException({
|
|
1276
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1277
|
-
...contents,
|
|
1278
|
-
});
|
|
1279
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1280
|
-
};
|
|
1281
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1282
|
-
const contents = smithyClient.map({});
|
|
1283
|
-
const data = parsedOutput.body;
|
|
1284
|
-
const doc = smithyClient.take(data, {
|
|
1285
|
-
message: smithyClient.expectString,
|
|
1286
|
-
});
|
|
1287
|
-
Object.assign(contents, doc);
|
|
1288
|
-
const exception = new ValidationException({
|
|
1289
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1290
|
-
...contents,
|
|
1291
|
-
});
|
|
1292
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1293
|
-
};
|
|
1294
|
-
const se_LinkApplicationLogConfiguration = (input, context) => {
|
|
1295
|
-
return smithyClient.take(input, {
|
|
1296
|
-
sampling: (_) => se_LinkApplicationLogSampling(_),
|
|
1297
|
-
});
|
|
1298
|
-
};
|
|
1299
|
-
const se_LinkApplicationLogSampling = (input, context) => {
|
|
1300
|
-
return smithyClient.take(input, {
|
|
1301
|
-
errorLog: smithyClient.serializeFloat,
|
|
1302
|
-
filterLog: smithyClient.serializeFloat,
|
|
1303
|
-
});
|
|
1304
|
-
};
|
|
1305
|
-
const se_LinkAttributes = (input, context) => {
|
|
1306
|
-
return smithyClient.take(input, {
|
|
1307
|
-
customerProvidedId: [],
|
|
1308
|
-
responderErrorMasking: (_) => se_ResponderErrorMasking(_),
|
|
1309
|
-
});
|
|
1310
|
-
};
|
|
1311
|
-
const se_LinkLogSettings = (input, context) => {
|
|
1312
|
-
return smithyClient.take(input, {
|
|
1313
|
-
applicationLogs: (_) => se_LinkApplicationLogConfiguration(_),
|
|
1314
|
-
});
|
|
1315
|
-
};
|
|
1316
|
-
const se_ModuleConfiguration = (input, context) => {
|
|
1317
|
-
return smithyClient.take(input, {
|
|
1318
|
-
dependsOn: smithyClient._json,
|
|
1319
|
-
moduleParameters: (_) => se_ModuleParameters(_),
|
|
1320
|
-
name: [],
|
|
1321
|
-
version: [],
|
|
1322
|
-
});
|
|
1323
|
-
};
|
|
1324
|
-
const se_ModuleConfigurationList = (input, context) => {
|
|
1325
|
-
return input
|
|
1326
|
-
.filter((e) => e != null)
|
|
1327
|
-
.map((entry) => {
|
|
1328
|
-
return se_ModuleConfiguration(entry);
|
|
1329
|
-
});
|
|
1330
|
-
};
|
|
1331
|
-
const se_ModuleParameters = (input, context) => {
|
|
1332
|
-
return exports.ModuleParameters.visit(input, {
|
|
1333
|
-
noBid: (value) => ({ noBid: se_NoBidModuleParameters(value) }),
|
|
1334
|
-
openRtbAttribute: (value) => ({ openRtbAttribute: se_OpenRtbAttributeModuleParameters(value) }),
|
|
1335
|
-
rateLimiter: (value) => ({ rateLimiter: se_RateLimiterModuleParameters(value) }),
|
|
1336
|
-
_: (name, value) => ({ [name]: value }),
|
|
1337
|
-
});
|
|
1338
|
-
};
|
|
1339
|
-
const se_NoBidModuleParameters = (input, context) => {
|
|
1340
|
-
return smithyClient.take(input, {
|
|
1341
|
-
passThroughPercentage: smithyClient.serializeFloat,
|
|
1342
|
-
reason: [],
|
|
1343
|
-
reasonCode: [],
|
|
1344
|
-
});
|
|
1345
|
-
};
|
|
1346
|
-
const se_OpenRtbAttributeModuleParameters = (input, context) => {
|
|
1347
|
-
return smithyClient.take(input, {
|
|
1348
|
-
action: smithyClient._json,
|
|
1349
|
-
filterConfiguration: smithyClient._json,
|
|
1350
|
-
filterType: [],
|
|
1351
|
-
holdbackPercentage: smithyClient.serializeFloat,
|
|
1352
|
-
});
|
|
1353
|
-
};
|
|
1354
|
-
const se_RateLimiterModuleParameters = (input, context) => {
|
|
1355
|
-
return smithyClient.take(input, {
|
|
1356
|
-
tps: smithyClient.serializeFloat,
|
|
1357
|
-
});
|
|
1358
|
-
};
|
|
1359
|
-
const se_ResponderErrorMasking = (input, context) => {
|
|
1360
|
-
return input
|
|
1361
|
-
.filter((e) => e != null)
|
|
1362
|
-
.map((entry) => {
|
|
1363
|
-
return se_ResponderErrorMaskingForHttpCode(entry);
|
|
1364
|
-
});
|
|
1365
|
-
};
|
|
1366
|
-
const se_ResponderErrorMaskingForHttpCode = (input, context) => {
|
|
1367
|
-
return smithyClient.take(input, {
|
|
1368
|
-
action: [],
|
|
1369
|
-
httpCode: [],
|
|
1370
|
-
loggingTypes: smithyClient._json,
|
|
1371
|
-
responseLoggingPercentage: smithyClient.serializeFloat,
|
|
1372
|
-
});
|
|
1373
|
-
};
|
|
1374
|
-
const de_LinkApplicationLogConfiguration = (output, context) => {
|
|
1375
|
-
return smithyClient.take(output, {
|
|
1376
|
-
sampling: (_) => de_LinkApplicationLogSampling(_),
|
|
1377
|
-
});
|
|
1378
|
-
};
|
|
1379
|
-
const de_LinkApplicationLogSampling = (output, context) => {
|
|
1380
|
-
return smithyClient.take(output, {
|
|
1381
|
-
errorLog: smithyClient.limitedParseDouble,
|
|
1382
|
-
filterLog: smithyClient.limitedParseDouble,
|
|
1383
|
-
});
|
|
1384
|
-
};
|
|
1385
|
-
const de_LinkAttributes = (output, context) => {
|
|
1386
|
-
return smithyClient.take(output, {
|
|
1387
|
-
customerProvidedId: smithyClient.expectString,
|
|
1388
|
-
responderErrorMasking: (_) => de_ResponderErrorMasking(_),
|
|
1389
|
-
});
|
|
1390
|
-
};
|
|
1391
|
-
const de_LinkList = (output, context) => {
|
|
1392
|
-
const retVal = (output || [])
|
|
1393
|
-
.filter((e) => e != null)
|
|
1394
|
-
.map((entry) => {
|
|
1395
|
-
return de_ListLinksResponseStructure(entry);
|
|
1396
|
-
});
|
|
1397
|
-
return retVal;
|
|
1398
|
-
};
|
|
1399
|
-
const de_LinkLogSettings = (output, context) => {
|
|
1400
|
-
return smithyClient.take(output, {
|
|
1401
|
-
applicationLogs: (_) => de_LinkApplicationLogConfiguration(_),
|
|
1402
|
-
});
|
|
1403
|
-
};
|
|
1404
|
-
const de_ListLinksResponseStructure = (output, context) => {
|
|
1405
|
-
return smithyClient.take(output, {
|
|
1406
|
-
attributes: (_) => de_LinkAttributes(_),
|
|
1407
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1408
|
-
direction: smithyClient.expectString,
|
|
1409
|
-
flowModules: (_) => de_ModuleConfigurationList(_),
|
|
1410
|
-
gatewayId: smithyClient.expectString,
|
|
1411
|
-
linkId: smithyClient.expectString,
|
|
1412
|
-
peerGatewayId: smithyClient.expectString,
|
|
1413
|
-
pendingFlowModules: (_) => de_ModuleConfigurationList(_),
|
|
1414
|
-
status: smithyClient.expectString,
|
|
1415
|
-
tags: smithyClient._json,
|
|
1416
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1417
|
-
});
|
|
1418
|
-
};
|
|
1419
|
-
const de_ModuleConfiguration = (output, context) => {
|
|
1420
|
-
return smithyClient.take(output, {
|
|
1421
|
-
dependsOn: smithyClient._json,
|
|
1422
|
-
moduleParameters: (_) => de_ModuleParameters(core$1.awsExpectUnion(_)),
|
|
1423
|
-
name: smithyClient.expectString,
|
|
1424
|
-
version: smithyClient.expectString,
|
|
1425
|
-
});
|
|
1426
|
-
};
|
|
1427
|
-
const de_ModuleConfigurationList = (output, context) => {
|
|
1428
|
-
const retVal = (output || [])
|
|
1429
|
-
.filter((e) => e != null)
|
|
1430
|
-
.map((entry) => {
|
|
1431
|
-
return de_ModuleConfiguration(entry);
|
|
1432
|
-
});
|
|
1433
|
-
return retVal;
|
|
1434
|
-
};
|
|
1435
|
-
const de_ModuleParameters = (output, context) => {
|
|
1436
|
-
if (output.noBid != null) {
|
|
1437
|
-
return {
|
|
1438
|
-
noBid: de_NoBidModuleParameters(output.noBid),
|
|
1439
|
-
};
|
|
1440
|
-
}
|
|
1441
|
-
if (output.openRtbAttribute != null) {
|
|
1442
|
-
return {
|
|
1443
|
-
openRtbAttribute: de_OpenRtbAttributeModuleParameters(output.openRtbAttribute),
|
|
1444
|
-
};
|
|
1445
|
-
}
|
|
1446
|
-
if (output.rateLimiter != null) {
|
|
1447
|
-
return {
|
|
1448
|
-
rateLimiter: de_RateLimiterModuleParameters(output.rateLimiter),
|
|
1449
|
-
};
|
|
1450
|
-
}
|
|
1451
|
-
return { $unknown: Object.entries(output)[0] };
|
|
1452
|
-
};
|
|
1453
|
-
const de_NoBidModuleParameters = (output, context) => {
|
|
1454
|
-
return smithyClient.take(output, {
|
|
1455
|
-
passThroughPercentage: smithyClient.limitedParseFloat32,
|
|
1456
|
-
reason: smithyClient.expectString,
|
|
1457
|
-
reasonCode: smithyClient.expectInt32,
|
|
1458
|
-
});
|
|
1459
|
-
};
|
|
1460
|
-
const de_OpenRtbAttributeModuleParameters = (output, context) => {
|
|
1461
|
-
return smithyClient.take(output, {
|
|
1462
|
-
action: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1463
|
-
filterConfiguration: smithyClient._json,
|
|
1464
|
-
filterType: smithyClient.expectString,
|
|
1465
|
-
holdbackPercentage: smithyClient.limitedParseFloat32,
|
|
1466
|
-
});
|
|
1467
|
-
};
|
|
1468
|
-
const de_RateLimiterModuleParameters = (output, context) => {
|
|
1469
|
-
return smithyClient.take(output, {
|
|
1470
|
-
tps: smithyClient.limitedParseFloat32,
|
|
1471
|
-
});
|
|
1472
|
-
};
|
|
1473
|
-
const de_ResponderErrorMasking = (output, context) => {
|
|
1474
|
-
const retVal = (output || [])
|
|
1475
|
-
.filter((e) => e != null)
|
|
1476
|
-
.map((entry) => {
|
|
1477
|
-
return de_ResponderErrorMaskingForHttpCode(entry);
|
|
1478
|
-
});
|
|
1479
|
-
return retVal;
|
|
1480
|
-
};
|
|
1481
|
-
const de_ResponderErrorMaskingForHttpCode = (output, context) => {
|
|
1482
|
-
return smithyClient.take(output, {
|
|
1483
|
-
action: smithyClient.expectString,
|
|
1484
|
-
httpCode: smithyClient.expectString,
|
|
1485
|
-
loggingTypes: smithyClient._json,
|
|
1486
|
-
responseLoggingPercentage: smithyClient.limitedParseFloat32,
|
|
1487
|
-
});
|
|
1488
|
-
};
|
|
1489
|
-
const deserializeMetadata = (output) => ({
|
|
1490
|
-
httpStatusCode: output.statusCode,
|
|
1491
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1492
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1493
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1494
|
-
});
|
|
266
|
+
const _A = "Action";
|
|
267
|
+
const _ADE = "AccessDeniedException";
|
|
268
|
+
const _AL = "AcceptLink";
|
|
269
|
+
const _ALR = "AcceptLinkRequest";
|
|
270
|
+
const _ALRc = "AcceptLinkResponse";
|
|
271
|
+
const _ASGC = "AutoScalingGroupsConfiguration";
|
|
272
|
+
const _BECC = "Base64EncodedCertificateChain";
|
|
273
|
+
const _CAC = "CertificateAuthorityCertificates";
|
|
274
|
+
const _CE = "ConflictException";
|
|
275
|
+
const _CIEL = "CreateInboundExternalLink";
|
|
276
|
+
const _CIELR = "CreateInboundExternalLinkRequest";
|
|
277
|
+
const _CIELRr = "CreateInboundExternalLinkResponse";
|
|
278
|
+
const _CL = "CreateLink";
|
|
279
|
+
const _CLR = "CreateLinkRequest";
|
|
280
|
+
const _CLRr = "CreateLinkResponse";
|
|
281
|
+
const _COEL = "CreateOutboundExternalLink";
|
|
282
|
+
const _COELR = "CreateOutboundExternalLinkRequest";
|
|
283
|
+
const _COELRr = "CreateOutboundExternalLinkResponse";
|
|
284
|
+
const _CRG = "CreateRequesterGateway";
|
|
285
|
+
const _CRGR = "CreateRequesterGatewayRequest";
|
|
286
|
+
const _CRGRr = "CreateRequesterGatewayResponse";
|
|
287
|
+
const _CRGRre = "CreateResponderGatewayRequest";
|
|
288
|
+
const _CRGRrea = "CreateResponderGatewayResponse";
|
|
289
|
+
const _CRGr = "CreateResponderGateway";
|
|
290
|
+
const _DIEL = "DeleteInboundExternalLink";
|
|
291
|
+
const _DIELR = "DeleteInboundExternalLinkRequest";
|
|
292
|
+
const _DIELRe = "DeleteInboundExternalLinkResponse";
|
|
293
|
+
const _DL = "DeleteLink";
|
|
294
|
+
const _DLR = "DeleteLinkRequest";
|
|
295
|
+
const _DLRe = "DeleteLinkResponse";
|
|
296
|
+
const _DOEL = "DeleteOutboundExternalLink";
|
|
297
|
+
const _DOELR = "DeleteOutboundExternalLinkRequest";
|
|
298
|
+
const _DOELRe = "DeleteOutboundExternalLinkResponse";
|
|
299
|
+
const _DRG = "DeleteRequesterGateway";
|
|
300
|
+
const _DRGR = "DeleteRequesterGatewayRequest";
|
|
301
|
+
const _DRGRe = "DeleteRequesterGatewayResponse";
|
|
302
|
+
const _DRGRel = "DeleteResponderGatewayRequest";
|
|
303
|
+
const _DRGRele = "DeleteResponderGatewayResponse";
|
|
304
|
+
const _DRGe = "DeleteResponderGateway";
|
|
305
|
+
const _EEC = "EksEndpointsConfiguration";
|
|
306
|
+
const _F = "Filter";
|
|
307
|
+
const _FC = "FilterCriterion";
|
|
308
|
+
const _FCi = "FilterConfiguration";
|
|
309
|
+
const _FCil = "FilterCriteria";
|
|
310
|
+
const _GIEL = "GetInboundExternalLink";
|
|
311
|
+
const _GIELR = "GetInboundExternalLinkRequest";
|
|
312
|
+
const _GIELRe = "GetInboundExternalLinkResponse";
|
|
313
|
+
const _GL = "GetLink";
|
|
314
|
+
const _GLR = "GetLinkRequest";
|
|
315
|
+
const _GLRe = "GetLinkResponse";
|
|
316
|
+
const _GOEL = "GetOutboundExternalLink";
|
|
317
|
+
const _GOELR = "GetOutboundExternalLinkRequest";
|
|
318
|
+
const _GOELRe = "GetOutboundExternalLinkResponse";
|
|
319
|
+
const _GRG = "GetRequesterGateway";
|
|
320
|
+
const _GRGR = "GetRequesterGatewayRequest";
|
|
321
|
+
const _GRGRe = "GetRequesterGatewayResponse";
|
|
322
|
+
const _GRGRet = "GetResponderGatewayRequest";
|
|
323
|
+
const _GRGRete = "GetResponderGatewayResponse";
|
|
324
|
+
const _GRGe = "GetResponderGateway";
|
|
325
|
+
const _HTA = "HeaderTagAction";
|
|
326
|
+
const _ISE = "InternalServerException";
|
|
327
|
+
const _LA = "LinkAttributes";
|
|
328
|
+
const _LALC = "LinkApplicationLogConfiguration";
|
|
329
|
+
const _LALS = "LinkApplicationLogSampling";
|
|
330
|
+
const _LL = "LinkList";
|
|
331
|
+
const _LLR = "ListLinksRequest";
|
|
332
|
+
const _LLRS = "ListLinksResponseStructure";
|
|
333
|
+
const _LLRi = "ListLinksResponse";
|
|
334
|
+
const _LLS = "LinkLogSettings";
|
|
335
|
+
const _LLi = "ListLinks";
|
|
336
|
+
const _LRG = "ListRequesterGateways";
|
|
337
|
+
const _LRGR = "ListRequesterGatewaysRequest";
|
|
338
|
+
const _LRGRi = "ListRequesterGatewaysResponse";
|
|
339
|
+
const _LRGRis = "ListResponderGatewaysRequest";
|
|
340
|
+
const _LRGRist = "ListResponderGatewaysResponse";
|
|
341
|
+
const _LRGi = "ListResponderGateways";
|
|
342
|
+
const _LTFR = "ListTagsForResource";
|
|
343
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
344
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
345
|
+
const _MC = "ModuleConfiguration";
|
|
346
|
+
const _MCL = "ModuleConfigurationList";
|
|
347
|
+
const _MEC = "ManagedEndpointConfiguration";
|
|
348
|
+
const _MP = "ModuleParameters";
|
|
349
|
+
const _NBA = "NoBidAction";
|
|
350
|
+
const _NBMP = "NoBidModuleParameters";
|
|
351
|
+
const _ORAMP = "OpenRtbAttributeModuleParameters";
|
|
352
|
+
const _REM = "ResponderErrorMasking";
|
|
353
|
+
const _REMFHC = "ResponderErrorMaskingForHttpCode";
|
|
354
|
+
const _RL = "RejectLink";
|
|
355
|
+
const _RLMP = "RateLimiterModuleParameters";
|
|
356
|
+
const _RLR = "RejectLinkRequest";
|
|
357
|
+
const _RLRe = "RejectLinkResponse";
|
|
358
|
+
const _RNFE = "ResourceNotFoundException";
|
|
359
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
360
|
+
const _TE = "ThrottlingException";
|
|
361
|
+
const _TR = "TagResource";
|
|
362
|
+
const _TRR = "TagResourceRequest";
|
|
363
|
+
const _TRRa = "TagResourceResponse";
|
|
364
|
+
const _TSC = "TrustStoreConfiguration";
|
|
365
|
+
const _UL = "UpdateLink";
|
|
366
|
+
const _ULMF = "UpdateLinkModuleFlow";
|
|
367
|
+
const _ULMFR = "UpdateLinkModuleFlowRequest";
|
|
368
|
+
const _ULMFRp = "UpdateLinkModuleFlowResponse";
|
|
369
|
+
const _ULR = "UpdateLinkRequest";
|
|
370
|
+
const _ULRp = "UpdateLinkResponse";
|
|
371
|
+
const _UR = "UntagResource";
|
|
372
|
+
const _URG = "UpdateRequesterGateway";
|
|
373
|
+
const _URGR = "UpdateRequesterGatewayRequest";
|
|
374
|
+
const _URGRp = "UpdateRequesterGatewayResponse";
|
|
375
|
+
const _URGRpd = "UpdateResponderGatewayRequest";
|
|
376
|
+
const _URGRpda = "UpdateResponderGatewayResponse";
|
|
377
|
+
const _URGp = "UpdateResponderGateway";
|
|
378
|
+
const _URR = "UntagResourceRequest";
|
|
379
|
+
const _URRn = "UntagResourceResponse";
|
|
380
|
+
const _VE = "ValidationException";
|
|
381
|
+
const _a = "attributes";
|
|
382
|
+
const _aL = "applicationLogs";
|
|
383
|
+
const _aLC = "activeLinksCount";
|
|
384
|
+
const _aSG = "autoScalingGroups";
|
|
385
|
+
const _aSGN = "autoScalingGroupNames";
|
|
386
|
+
const _ac = "action";
|
|
387
|
+
const _c = "client";
|
|
388
|
+
const _cA = "createdAt";
|
|
389
|
+
const _cAC = "certificateAuthorityCertificates";
|
|
390
|
+
const _cASCCC = "clusterApiServerCaCertificateChain";
|
|
391
|
+
const _cASEU = "clusterApiServerEndpointUri";
|
|
392
|
+
const _cN = "clusterName";
|
|
393
|
+
const _cPI = "customerProvidedId";
|
|
394
|
+
const _cT = "clientToken";
|
|
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 _eL = "errorLog";
|
|
403
|
+
const _eRN = "endpointsResourceName";
|
|
404
|
+
const _eRNn = "endpointsResourceNamespace";
|
|
405
|
+
const _fC = "filterConfiguration";
|
|
406
|
+
const _fL = "filterLog";
|
|
407
|
+
const _fM = "flowModules";
|
|
408
|
+
const _fT = "filterType";
|
|
409
|
+
const _gI = "gatewayId";
|
|
410
|
+
const _gIa = "gatewayIds";
|
|
411
|
+
const _h = "http";
|
|
412
|
+
const _hC = "httpCode";
|
|
413
|
+
const _hE = "httpError";
|
|
414
|
+
const _hP = "holdbackPercentage";
|
|
415
|
+
const _hQ = "httpQuery";
|
|
416
|
+
const _hRA = "httpResponderAllowed";
|
|
417
|
+
const _hT = "headerTag";
|
|
418
|
+
const _iLC = "inboundLinksCount";
|
|
419
|
+
const _l = "links";
|
|
420
|
+
const _lI = "linkId";
|
|
421
|
+
const _lS = "logSettings";
|
|
422
|
+
const _lT = "loggingTypes";
|
|
423
|
+
const _m = "message";
|
|
424
|
+
const _mEC = "managedEndpointConfiguration";
|
|
425
|
+
const _mP = "moduleParameters";
|
|
1495
426
|
const _mR = "maxResults";
|
|
427
|
+
const _mo = "modules";
|
|
428
|
+
const _n = "name";
|
|
429
|
+
const _nB = "noBid";
|
|
430
|
+
const _nBRC = "noBidReasonCode";
|
|
1496
431
|
const _nT = "nextToken";
|
|
432
|
+
const _oRA = "openRtbAttribute";
|
|
433
|
+
const _p = "port";
|
|
434
|
+
const _pE = "publicEndpoint";
|
|
435
|
+
const _pFM = "pendingFlowModules";
|
|
436
|
+
const _pGI = "peerGatewayId";
|
|
437
|
+
const _pTP = "passThroughPercentage";
|
|
438
|
+
const _pa = "path";
|
|
439
|
+
const _pr = "protocol";
|
|
440
|
+
const _r = "reason";
|
|
441
|
+
const _rA = "roleArn";
|
|
442
|
+
const _rAe = "resourceArn";
|
|
443
|
+
const _rC = "reasonCode";
|
|
444
|
+
const _rEM = "responderErrorMasking";
|
|
445
|
+
const _rL = "rateLimiter";
|
|
446
|
+
const _rLP = "responseLoggingPercentage";
|
|
447
|
+
const _s = "status";
|
|
448
|
+
const _sGI = "securityGroupIds";
|
|
449
|
+
const _sI = "subnetIds";
|
|
450
|
+
const _sa = "sampling";
|
|
451
|
+
const _se = "server";
|
|
452
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.rtbfabric";
|
|
453
|
+
const _t = "tags";
|
|
1497
454
|
const _tK = "tagKeys";
|
|
455
|
+
const _tLC = "totalLinksCount";
|
|
456
|
+
const _tSC = "trustStoreConfiguration";
|
|
457
|
+
const _tp = "tps";
|
|
458
|
+
const _uA = "updatedAt";
|
|
459
|
+
const _v = "values";
|
|
460
|
+
const _vI = "vpcId";
|
|
461
|
+
const _va = "value";
|
|
462
|
+
const _ve = "version";
|
|
463
|
+
const n0 = "com.amazonaws.rtbfabric";
|
|
464
|
+
var Base64EncodedCertificateChain = [0, n0, _BECC, 8, 0];
|
|
465
|
+
var AcceptLinkRequest = [
|
|
466
|
+
3,
|
|
467
|
+
n0,
|
|
468
|
+
_ALR,
|
|
469
|
+
0,
|
|
470
|
+
[_gI, _lI, _a, _lS],
|
|
471
|
+
[[0, 1], [0, 1], () => LinkAttributes, () => LinkLogSettings],
|
|
472
|
+
];
|
|
473
|
+
var AcceptLinkResponse = [
|
|
474
|
+
3,
|
|
475
|
+
n0,
|
|
476
|
+
_ALRc,
|
|
477
|
+
0,
|
|
478
|
+
[_gI, _pGI, _s, _cA, _uA, _d, _fM, _pFM, _a, _lI],
|
|
479
|
+
[0, 0, 0, 4, 4, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes, 0],
|
|
480
|
+
];
|
|
481
|
+
var AccessDeniedException = [
|
|
482
|
+
-3,
|
|
483
|
+
n0,
|
|
484
|
+
_ADE,
|
|
485
|
+
{
|
|
486
|
+
[_e]: _c,
|
|
487
|
+
[_hE]: 403,
|
|
488
|
+
},
|
|
489
|
+
[_m],
|
|
490
|
+
[0],
|
|
491
|
+
];
|
|
492
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
493
|
+
var AutoScalingGroupsConfiguration = [3, n0, _ASGC, 0, [_aSGN, _rA], [64 | 0, 0]];
|
|
494
|
+
var ConflictException = [
|
|
495
|
+
-3,
|
|
496
|
+
n0,
|
|
497
|
+
_CE,
|
|
498
|
+
{
|
|
499
|
+
[_e]: _c,
|
|
500
|
+
[_hE]: 409,
|
|
501
|
+
},
|
|
502
|
+
[_m],
|
|
503
|
+
[0],
|
|
504
|
+
];
|
|
505
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
506
|
+
var CreateInboundExternalLinkRequest = [
|
|
507
|
+
3,
|
|
508
|
+
n0,
|
|
509
|
+
_CIELR,
|
|
510
|
+
0,
|
|
511
|
+
[_cT, _gI, _a, _lS, _t],
|
|
512
|
+
[[0, 4], [0, 1], () => LinkAttributes, () => LinkLogSettings, 128 | 0],
|
|
513
|
+
];
|
|
514
|
+
var CreateInboundExternalLinkResponse = [
|
|
515
|
+
3,
|
|
516
|
+
n0,
|
|
517
|
+
_CIELRr,
|
|
518
|
+
0,
|
|
519
|
+
[_gI, _lI, _s, _dN],
|
|
520
|
+
[0, 0, 0, 0],
|
|
521
|
+
];
|
|
522
|
+
var CreateLinkRequest = [
|
|
523
|
+
3,
|
|
524
|
+
n0,
|
|
525
|
+
_CLR,
|
|
526
|
+
0,
|
|
527
|
+
[_gI, _pGI, _a, _hRA, _t, _lS],
|
|
528
|
+
[[0, 1], 0, () => LinkAttributes, 2, 128 | 0, () => LinkLogSettings],
|
|
529
|
+
];
|
|
530
|
+
var CreateLinkResponse = [
|
|
531
|
+
3,
|
|
532
|
+
n0,
|
|
533
|
+
_CLRr,
|
|
534
|
+
0,
|
|
535
|
+
[_gI, _pGI, _s, _cA, _uA, _d, _fM, _pFM, _a, _lI, _cPI],
|
|
536
|
+
[0, 0, 0, 4, 4, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes, 0, 0],
|
|
537
|
+
];
|
|
538
|
+
var CreateOutboundExternalLinkRequest = [
|
|
539
|
+
3,
|
|
540
|
+
n0,
|
|
541
|
+
_COELR,
|
|
542
|
+
0,
|
|
543
|
+
[_cT, _gI, _a, _pE, _lS, _t],
|
|
544
|
+
[[0, 4], [0, 1], () => LinkAttributes, 0, () => LinkLogSettings, 128 | 0],
|
|
545
|
+
];
|
|
546
|
+
var CreateOutboundExternalLinkResponse = [3, n0, _COELRr, 0, [_gI, _lI, _s], [0, 0, 0]];
|
|
547
|
+
var CreateRequesterGatewayRequest = [
|
|
548
|
+
3,
|
|
549
|
+
n0,
|
|
550
|
+
_CRGR,
|
|
551
|
+
0,
|
|
552
|
+
[_vI, _sI, _sGI, _cT, _de, _t],
|
|
553
|
+
[0, 64 | 0, 64 | 0, [0, 4], 0, 128 | 0],
|
|
554
|
+
];
|
|
555
|
+
var CreateRequesterGatewayResponse = [3, n0, _CRGRr, 0, [_gI, _dN, _s], [0, 0, 0]];
|
|
556
|
+
var CreateResponderGatewayRequest = [
|
|
557
|
+
3,
|
|
558
|
+
n0,
|
|
559
|
+
_CRGRre,
|
|
560
|
+
0,
|
|
561
|
+
[_vI, _sI, _sGI, _dN, _p, _pr, _tSC, _mEC, _cT, _de, _t],
|
|
562
|
+
[
|
|
563
|
+
0,
|
|
564
|
+
64 | 0,
|
|
565
|
+
64 | 0,
|
|
566
|
+
0,
|
|
567
|
+
1,
|
|
568
|
+
0,
|
|
569
|
+
[() => TrustStoreConfiguration, 0],
|
|
570
|
+
[() => ManagedEndpointConfiguration, 0],
|
|
571
|
+
[0, 4],
|
|
572
|
+
0,
|
|
573
|
+
128 | 0,
|
|
574
|
+
],
|
|
575
|
+
];
|
|
576
|
+
var CreateResponderGatewayResponse = [3, n0, _CRGRrea, 0, [_gI, _s], [0, 0]];
|
|
577
|
+
var DeleteInboundExternalLinkRequest = [
|
|
578
|
+
3,
|
|
579
|
+
n0,
|
|
580
|
+
_DIELR,
|
|
581
|
+
0,
|
|
582
|
+
[_gI, _lI],
|
|
583
|
+
[
|
|
584
|
+
[0, 1],
|
|
585
|
+
[0, 1],
|
|
586
|
+
],
|
|
587
|
+
];
|
|
588
|
+
var DeleteInboundExternalLinkResponse = [3, n0, _DIELRe, 0, [_lI, _s], [0, 0]];
|
|
589
|
+
var DeleteLinkRequest = [
|
|
590
|
+
3,
|
|
591
|
+
n0,
|
|
592
|
+
_DLR,
|
|
593
|
+
0,
|
|
594
|
+
[_gI, _lI],
|
|
595
|
+
[
|
|
596
|
+
[0, 1],
|
|
597
|
+
[0, 1],
|
|
598
|
+
],
|
|
599
|
+
];
|
|
600
|
+
var DeleteLinkResponse = [3, n0, _DLRe, 0, [_lI, _s], [0, 0]];
|
|
601
|
+
var DeleteOutboundExternalLinkRequest = [
|
|
602
|
+
3,
|
|
603
|
+
n0,
|
|
604
|
+
_DOELR,
|
|
605
|
+
0,
|
|
606
|
+
[_gI, _lI],
|
|
607
|
+
[
|
|
608
|
+
[0, 1],
|
|
609
|
+
[0, 1],
|
|
610
|
+
],
|
|
611
|
+
];
|
|
612
|
+
var DeleteOutboundExternalLinkResponse = [3, n0, _DOELRe, 0, [_lI, _s], [0, 0]];
|
|
613
|
+
var DeleteRequesterGatewayRequest = [3, n0, _DRGR, 0, [_gI], [[0, 1]]];
|
|
614
|
+
var DeleteRequesterGatewayResponse = [3, n0, _DRGRe, 0, [_gI, _s], [0, 0]];
|
|
615
|
+
var DeleteResponderGatewayRequest = [3, n0, _DRGRel, 0, [_gI], [[0, 1]]];
|
|
616
|
+
var DeleteResponderGatewayResponse = [3, n0, _DRGRele, 0, [_gI, _s], [0, 0]];
|
|
617
|
+
var EksEndpointsConfiguration = [
|
|
618
|
+
3,
|
|
619
|
+
n0,
|
|
620
|
+
_EEC,
|
|
621
|
+
0,
|
|
622
|
+
[_eRN, _eRNn, _cASEU, _cASCCC, _cN, _rA],
|
|
623
|
+
[0, 0, 0, [() => Base64EncodedCertificateChain, 0], 0, 0],
|
|
624
|
+
];
|
|
625
|
+
var Filter = [3, n0, _F, 0, [_cr], [() => FilterCriteria]];
|
|
626
|
+
var FilterCriterion = [3, n0, _FC, 0, [_pa, _v], [0, 64 | 0]];
|
|
627
|
+
var GetInboundExternalLinkRequest = [
|
|
628
|
+
3,
|
|
629
|
+
n0,
|
|
630
|
+
_GIELR,
|
|
631
|
+
0,
|
|
632
|
+
[_gI, _lI],
|
|
633
|
+
[
|
|
634
|
+
[0, 1],
|
|
635
|
+
[0, 1],
|
|
636
|
+
],
|
|
637
|
+
];
|
|
638
|
+
var GetInboundExternalLinkResponse = [
|
|
639
|
+
3,
|
|
640
|
+
n0,
|
|
641
|
+
_GIELRe,
|
|
642
|
+
0,
|
|
643
|
+
[_gI, _lI, _s, _dN, _fM, _pFM, _a, _cA, _uA, _t, _lS],
|
|
644
|
+
[
|
|
645
|
+
0,
|
|
646
|
+
0,
|
|
647
|
+
0,
|
|
648
|
+
0,
|
|
649
|
+
() => ModuleConfigurationList,
|
|
650
|
+
() => ModuleConfigurationList,
|
|
651
|
+
() => LinkAttributes,
|
|
652
|
+
4,
|
|
653
|
+
4,
|
|
654
|
+
128 | 0,
|
|
655
|
+
() => LinkLogSettings,
|
|
656
|
+
],
|
|
657
|
+
];
|
|
658
|
+
var GetLinkRequest = [
|
|
659
|
+
3,
|
|
660
|
+
n0,
|
|
661
|
+
_GLR,
|
|
662
|
+
0,
|
|
663
|
+
[_gI, _lI],
|
|
664
|
+
[
|
|
665
|
+
[0, 1],
|
|
666
|
+
[0, 1],
|
|
667
|
+
],
|
|
668
|
+
];
|
|
669
|
+
var GetLinkResponse = [
|
|
670
|
+
3,
|
|
671
|
+
n0,
|
|
672
|
+
_GLRe,
|
|
673
|
+
0,
|
|
674
|
+
[_gI, _pGI, _s, _cA, _uA, _d, _fM, _pFM, _a, _lI, _t, _lS],
|
|
675
|
+
[
|
|
676
|
+
0,
|
|
677
|
+
0,
|
|
678
|
+
0,
|
|
679
|
+
4,
|
|
680
|
+
4,
|
|
681
|
+
0,
|
|
682
|
+
() => ModuleConfigurationList,
|
|
683
|
+
() => ModuleConfigurationList,
|
|
684
|
+
() => LinkAttributes,
|
|
685
|
+
0,
|
|
686
|
+
128 | 0,
|
|
687
|
+
() => LinkLogSettings,
|
|
688
|
+
],
|
|
689
|
+
];
|
|
690
|
+
var GetOutboundExternalLinkRequest = [
|
|
691
|
+
3,
|
|
692
|
+
n0,
|
|
693
|
+
_GOELR,
|
|
694
|
+
0,
|
|
695
|
+
[_gI, _lI],
|
|
696
|
+
[
|
|
697
|
+
[0, 1],
|
|
698
|
+
[0, 1],
|
|
699
|
+
],
|
|
700
|
+
];
|
|
701
|
+
var GetOutboundExternalLinkResponse = [
|
|
702
|
+
3,
|
|
703
|
+
n0,
|
|
704
|
+
_GOELRe,
|
|
705
|
+
0,
|
|
706
|
+
[_gI, _lI, _s, _pE, _cA, _uA, _t, _lS],
|
|
707
|
+
[0, 0, 0, 0, 4, 4, 128 | 0, () => LinkLogSettings],
|
|
708
|
+
];
|
|
709
|
+
var GetRequesterGatewayRequest = [3, n0, _GRGR, 0, [_gI], [[0, 1]]];
|
|
710
|
+
var GetRequesterGatewayResponse = [
|
|
711
|
+
3,
|
|
712
|
+
n0,
|
|
713
|
+
_GRGRe,
|
|
714
|
+
0,
|
|
715
|
+
[_s, _dN, _de, _cA, _uA, _vI, _sI, _sGI, _gI, _t, _aLC, _tLC],
|
|
716
|
+
[0, 0, 0, 4, 4, 0, 64 | 0, 64 | 0, 0, 128 | 0, 1, 1],
|
|
717
|
+
];
|
|
718
|
+
var GetResponderGatewayRequest = [3, n0, _GRGRet, 0, [_gI], [[0, 1]]];
|
|
719
|
+
var GetResponderGatewayResponse = [
|
|
720
|
+
3,
|
|
721
|
+
n0,
|
|
722
|
+
_GRGRete,
|
|
723
|
+
0,
|
|
724
|
+
[_vI, _sI, _sGI, _s, _de, _cA, _uA, _dN, _p, _pr, _tSC, _mEC, _gI, _t, _aLC, _tLC, _iLC],
|
|
725
|
+
[
|
|
726
|
+
0,
|
|
727
|
+
64 | 0,
|
|
728
|
+
64 | 0,
|
|
729
|
+
0,
|
|
730
|
+
0,
|
|
731
|
+
4,
|
|
732
|
+
4,
|
|
733
|
+
0,
|
|
734
|
+
1,
|
|
735
|
+
0,
|
|
736
|
+
[() => TrustStoreConfiguration, 0],
|
|
737
|
+
[() => ManagedEndpointConfiguration, 0],
|
|
738
|
+
0,
|
|
739
|
+
128 | 0,
|
|
740
|
+
1,
|
|
741
|
+
1,
|
|
742
|
+
1,
|
|
743
|
+
],
|
|
744
|
+
];
|
|
745
|
+
var HeaderTagAction = [3, n0, _HTA, 0, [_n, _va], [0, 0]];
|
|
746
|
+
var InternalServerException = [
|
|
747
|
+
-3,
|
|
748
|
+
n0,
|
|
749
|
+
_ISE,
|
|
750
|
+
{
|
|
751
|
+
[_e]: _se,
|
|
752
|
+
[_hE]: 500,
|
|
753
|
+
},
|
|
754
|
+
[_m],
|
|
755
|
+
[0],
|
|
756
|
+
];
|
|
757
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
758
|
+
var LinkApplicationLogConfiguration = [
|
|
759
|
+
3,
|
|
760
|
+
n0,
|
|
761
|
+
_LALC,
|
|
762
|
+
0,
|
|
763
|
+
[_sa],
|
|
764
|
+
[() => LinkApplicationLogSampling],
|
|
765
|
+
];
|
|
766
|
+
var LinkApplicationLogSampling = [3, n0, _LALS, 0, [_eL, _fL], [1, 1]];
|
|
767
|
+
var LinkAttributes = [3, n0, _LA, 0, [_rEM, _cPI], [() => ResponderErrorMasking, 0]];
|
|
768
|
+
var LinkLogSettings = [3, n0, _LLS, 0, [_aL], [() => LinkApplicationLogConfiguration]];
|
|
769
|
+
var ListLinksRequest = [
|
|
770
|
+
3,
|
|
771
|
+
n0,
|
|
772
|
+
_LLR,
|
|
773
|
+
0,
|
|
774
|
+
[_gI, _nT, _mR],
|
|
775
|
+
[
|
|
776
|
+
[0, 1],
|
|
777
|
+
[
|
|
778
|
+
0,
|
|
779
|
+
{
|
|
780
|
+
[_hQ]: _nT,
|
|
781
|
+
},
|
|
782
|
+
],
|
|
783
|
+
[
|
|
784
|
+
1,
|
|
785
|
+
{
|
|
786
|
+
[_hQ]: _mR,
|
|
787
|
+
},
|
|
788
|
+
],
|
|
789
|
+
],
|
|
790
|
+
];
|
|
791
|
+
var ListLinksResponse = [3, n0, _LLRi, 0, [_l, _nT], [() => LinkList, 0]];
|
|
792
|
+
var ListLinksResponseStructure = [
|
|
793
|
+
3,
|
|
794
|
+
n0,
|
|
795
|
+
_LLRS,
|
|
796
|
+
0,
|
|
797
|
+
[_gI, _pGI, _s, _cA, _uA, _d, _fM, _pFM, _a, _lI, _t],
|
|
798
|
+
[0, 0, 0, 4, 4, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes, 0, 128 | 0],
|
|
799
|
+
];
|
|
800
|
+
var ListRequesterGatewaysRequest = [
|
|
801
|
+
3,
|
|
802
|
+
n0,
|
|
803
|
+
_LRGR,
|
|
804
|
+
0,
|
|
805
|
+
[_mR, _nT],
|
|
806
|
+
[
|
|
807
|
+
[
|
|
808
|
+
1,
|
|
809
|
+
{
|
|
810
|
+
[_hQ]: _mR,
|
|
811
|
+
},
|
|
812
|
+
],
|
|
813
|
+
[
|
|
814
|
+
0,
|
|
815
|
+
{
|
|
816
|
+
[_hQ]: _nT,
|
|
817
|
+
},
|
|
818
|
+
],
|
|
819
|
+
],
|
|
820
|
+
];
|
|
821
|
+
var ListRequesterGatewaysResponse = [3, n0, _LRGRi, 0, [_gIa, _nT], [64 | 0, 0]];
|
|
822
|
+
var ListResponderGatewaysRequest = [
|
|
823
|
+
3,
|
|
824
|
+
n0,
|
|
825
|
+
_LRGRis,
|
|
826
|
+
0,
|
|
827
|
+
[_mR, _nT],
|
|
828
|
+
[
|
|
829
|
+
[
|
|
830
|
+
1,
|
|
831
|
+
{
|
|
832
|
+
[_hQ]: _mR,
|
|
833
|
+
},
|
|
834
|
+
],
|
|
835
|
+
[
|
|
836
|
+
0,
|
|
837
|
+
{
|
|
838
|
+
[_hQ]: _nT,
|
|
839
|
+
},
|
|
840
|
+
],
|
|
841
|
+
],
|
|
842
|
+
];
|
|
843
|
+
var ListResponderGatewaysResponse = [3, n0, _LRGRist, 0, [_gIa, _nT], [64 | 0, 0]];
|
|
844
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
845
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
846
|
+
var ModuleConfiguration = [
|
|
847
|
+
3,
|
|
848
|
+
n0,
|
|
849
|
+
_MC,
|
|
850
|
+
0,
|
|
851
|
+
[_ve, _n, _dO, _mP],
|
|
852
|
+
[0, 0, 64 | 0, () => ModuleParameters],
|
|
853
|
+
];
|
|
854
|
+
var NoBidAction = [3, n0, _NBA, 0, [_nBRC], [1]];
|
|
855
|
+
var NoBidModuleParameters = [3, n0, _NBMP, 0, [_r, _rC, _pTP], [0, 1, 1]];
|
|
856
|
+
var OpenRtbAttributeModuleParameters = [
|
|
857
|
+
3,
|
|
858
|
+
n0,
|
|
859
|
+
_ORAMP,
|
|
860
|
+
0,
|
|
861
|
+
[_fT, _fC, _ac, _hP],
|
|
862
|
+
[0, () => FilterConfiguration, () => Action, 1],
|
|
863
|
+
];
|
|
864
|
+
var RateLimiterModuleParameters = [3, n0, _RLMP, 0, [_tp], [1]];
|
|
865
|
+
var RejectLinkRequest = [
|
|
866
|
+
3,
|
|
867
|
+
n0,
|
|
868
|
+
_RLR,
|
|
869
|
+
0,
|
|
870
|
+
[_gI, _lI],
|
|
871
|
+
[
|
|
872
|
+
[0, 1],
|
|
873
|
+
[0, 1],
|
|
874
|
+
],
|
|
875
|
+
];
|
|
876
|
+
var RejectLinkResponse = [
|
|
877
|
+
3,
|
|
878
|
+
n0,
|
|
879
|
+
_RLRe,
|
|
880
|
+
0,
|
|
881
|
+
[_gI, _pGI, _s, _cA, _uA, _d, _fM, _pFM, _a, _lI],
|
|
882
|
+
[0, 0, 0, 4, 4, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes, 0],
|
|
883
|
+
];
|
|
884
|
+
var ResourceNotFoundException = [
|
|
885
|
+
-3,
|
|
886
|
+
n0,
|
|
887
|
+
_RNFE,
|
|
888
|
+
{
|
|
889
|
+
[_e]: _c,
|
|
890
|
+
[_hE]: 404,
|
|
891
|
+
},
|
|
892
|
+
[_m],
|
|
893
|
+
[0],
|
|
894
|
+
];
|
|
895
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
896
|
+
var ResponderErrorMaskingForHttpCode = [
|
|
897
|
+
3,
|
|
898
|
+
n0,
|
|
899
|
+
_REMFHC,
|
|
900
|
+
0,
|
|
901
|
+
[_hC, _ac, _lT, _rLP],
|
|
902
|
+
[0, 0, 64 | 0, 1],
|
|
903
|
+
];
|
|
904
|
+
var ServiceQuotaExceededException = [
|
|
905
|
+
-3,
|
|
906
|
+
n0,
|
|
907
|
+
_SQEE,
|
|
908
|
+
{
|
|
909
|
+
[_e]: _c,
|
|
910
|
+
[_hE]: 402,
|
|
911
|
+
},
|
|
912
|
+
[_m],
|
|
913
|
+
[0],
|
|
914
|
+
];
|
|
915
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
916
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
|
|
917
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
918
|
+
var ThrottlingException = [
|
|
919
|
+
-3,
|
|
920
|
+
n0,
|
|
921
|
+
_TE,
|
|
922
|
+
{
|
|
923
|
+
[_e]: _c,
|
|
924
|
+
[_hE]: 429,
|
|
925
|
+
},
|
|
926
|
+
[_m],
|
|
927
|
+
[0],
|
|
928
|
+
];
|
|
929
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
930
|
+
var TrustStoreConfiguration = [
|
|
931
|
+
3,
|
|
932
|
+
n0,
|
|
933
|
+
_TSC,
|
|
934
|
+
0,
|
|
935
|
+
[_cAC],
|
|
936
|
+
[[() => CertificateAuthorityCertificates, 0]],
|
|
937
|
+
];
|
|
938
|
+
var UntagResourceRequest = [
|
|
939
|
+
3,
|
|
940
|
+
n0,
|
|
941
|
+
_URR,
|
|
942
|
+
0,
|
|
943
|
+
[_rAe, _tK],
|
|
944
|
+
[
|
|
945
|
+
[0, 1],
|
|
946
|
+
[
|
|
947
|
+
64 | 0,
|
|
948
|
+
{
|
|
949
|
+
[_hQ]: _tK,
|
|
950
|
+
},
|
|
951
|
+
],
|
|
952
|
+
],
|
|
953
|
+
];
|
|
954
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
955
|
+
var UpdateLinkModuleFlowRequest = [
|
|
956
|
+
3,
|
|
957
|
+
n0,
|
|
958
|
+
_ULMFR,
|
|
959
|
+
0,
|
|
960
|
+
[_cT, _gI, _lI, _mo],
|
|
961
|
+
[[0, 4], [0, 1], [0, 1], () => ModuleConfigurationList],
|
|
962
|
+
];
|
|
963
|
+
var UpdateLinkModuleFlowResponse = [3, n0, _ULMFRp, 0, [_gI, _lI, _s], [0, 0, 0]];
|
|
964
|
+
var UpdateLinkRequest = [
|
|
965
|
+
3,
|
|
966
|
+
n0,
|
|
967
|
+
_ULR,
|
|
968
|
+
0,
|
|
969
|
+
[_gI, _lI, _lS],
|
|
970
|
+
[[0, 1], [0, 1], () => LinkLogSettings],
|
|
971
|
+
];
|
|
972
|
+
var UpdateLinkResponse = [3, n0, _ULRp, 0, [_lI, _s], [0, 0]];
|
|
973
|
+
var UpdateRequesterGatewayRequest = [
|
|
974
|
+
3,
|
|
975
|
+
n0,
|
|
976
|
+
_URGR,
|
|
977
|
+
0,
|
|
978
|
+
[_cT, _gI, _de],
|
|
979
|
+
[[0, 4], [0, 1], 0],
|
|
980
|
+
];
|
|
981
|
+
var UpdateRequesterGatewayResponse = [3, n0, _URGRp, 0, [_gI, _s], [0, 0]];
|
|
982
|
+
var UpdateResponderGatewayRequest = [
|
|
983
|
+
3,
|
|
984
|
+
n0,
|
|
985
|
+
_URGRpd,
|
|
986
|
+
0,
|
|
987
|
+
[_dN, _p, _pr, _tSC, _mEC, _cT, _gI, _de],
|
|
988
|
+
[0, 1, 0, [() => TrustStoreConfiguration, 0], [() => ManagedEndpointConfiguration, 0], [0, 4], [0, 1], 0],
|
|
989
|
+
];
|
|
990
|
+
var UpdateResponderGatewayResponse = [3, n0, _URGRpda, 0, [_gI, _s], [0, 0]];
|
|
991
|
+
var ValidationException = [
|
|
992
|
+
-3,
|
|
993
|
+
n0,
|
|
994
|
+
_VE,
|
|
995
|
+
{
|
|
996
|
+
[_e]: _c,
|
|
997
|
+
[_hE]: 400,
|
|
998
|
+
},
|
|
999
|
+
[_m],
|
|
1000
|
+
[0],
|
|
1001
|
+
];
|
|
1002
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1003
|
+
var RTBFabricServiceException = [-3, _sm, "RTBFabricServiceException", 0, [], []];
|
|
1004
|
+
schema.TypeRegistry.for(_sm).registerError(RTBFabricServiceException, RTBFabricServiceException$1);
|
|
1005
|
+
var CertificateAuthorityCertificates = [
|
|
1006
|
+
1,
|
|
1007
|
+
n0,
|
|
1008
|
+
_CAC,
|
|
1009
|
+
0,
|
|
1010
|
+
[() => Base64EncodedCertificateChain, 0],
|
|
1011
|
+
];
|
|
1012
|
+
var FilterConfiguration = [1, n0, _FCi, 0, () => Filter];
|
|
1013
|
+
var FilterCriteria = [1, n0, _FCil, 0, () => FilterCriterion];
|
|
1014
|
+
var LinkList = [1, n0, _LL, 0, () => ListLinksResponseStructure];
|
|
1015
|
+
var ModuleConfigurationList = [1, n0, _MCL, 0, () => ModuleConfiguration];
|
|
1016
|
+
var ResponderErrorMasking = [1, n0, _REM, 0, () => ResponderErrorMaskingForHttpCode];
|
|
1017
|
+
var Action = [3, n0, _A, 0, [_nB, _hT], [() => NoBidAction, () => HeaderTagAction]];
|
|
1018
|
+
var ManagedEndpointConfiguration = [
|
|
1019
|
+
3,
|
|
1020
|
+
n0,
|
|
1021
|
+
_MEC,
|
|
1022
|
+
0,
|
|
1023
|
+
[_aSG, _eE],
|
|
1024
|
+
[() => AutoScalingGroupsConfiguration, [() => EksEndpointsConfiguration, 0]],
|
|
1025
|
+
];
|
|
1026
|
+
var ModuleParameters = [
|
|
1027
|
+
3,
|
|
1028
|
+
n0,
|
|
1029
|
+
_MP,
|
|
1030
|
+
0,
|
|
1031
|
+
[_nB, _oRA, _rL],
|
|
1032
|
+
[() => NoBidModuleParameters, () => OpenRtbAttributeModuleParameters, () => RateLimiterModuleParameters],
|
|
1033
|
+
];
|
|
1034
|
+
var AcceptLink = [
|
|
1035
|
+
9,
|
|
1036
|
+
n0,
|
|
1037
|
+
_AL,
|
|
1038
|
+
{
|
|
1039
|
+
[_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/accept", 200],
|
|
1040
|
+
},
|
|
1041
|
+
() => AcceptLinkRequest,
|
|
1042
|
+
() => AcceptLinkResponse,
|
|
1043
|
+
];
|
|
1044
|
+
var CreateInboundExternalLink = [
|
|
1045
|
+
9,
|
|
1046
|
+
n0,
|
|
1047
|
+
_CIEL,
|
|
1048
|
+
{
|
|
1049
|
+
[_h]: ["POST", "/responder-gateway/{gatewayId}/inbound-external-link", 200],
|
|
1050
|
+
},
|
|
1051
|
+
() => CreateInboundExternalLinkRequest,
|
|
1052
|
+
() => CreateInboundExternalLinkResponse,
|
|
1053
|
+
];
|
|
1054
|
+
var CreateLink = [
|
|
1055
|
+
9,
|
|
1056
|
+
n0,
|
|
1057
|
+
_CL,
|
|
1058
|
+
{
|
|
1059
|
+
[_h]: ["POST", "/gateway/{gatewayId}/create-link", 200],
|
|
1060
|
+
},
|
|
1061
|
+
() => CreateLinkRequest,
|
|
1062
|
+
() => CreateLinkResponse,
|
|
1063
|
+
];
|
|
1064
|
+
var CreateOutboundExternalLink = [
|
|
1065
|
+
9,
|
|
1066
|
+
n0,
|
|
1067
|
+
_COEL,
|
|
1068
|
+
{
|
|
1069
|
+
[_h]: ["POST", "/requester-gateway/{gatewayId}/outbound-external-link", 200],
|
|
1070
|
+
},
|
|
1071
|
+
() => CreateOutboundExternalLinkRequest,
|
|
1072
|
+
() => CreateOutboundExternalLinkResponse,
|
|
1073
|
+
];
|
|
1074
|
+
var CreateRequesterGateway = [
|
|
1075
|
+
9,
|
|
1076
|
+
n0,
|
|
1077
|
+
_CRG,
|
|
1078
|
+
{
|
|
1079
|
+
[_h]: ["POST", "/requester-gateway", 200],
|
|
1080
|
+
},
|
|
1081
|
+
() => CreateRequesterGatewayRequest,
|
|
1082
|
+
() => CreateRequesterGatewayResponse,
|
|
1083
|
+
];
|
|
1084
|
+
var CreateResponderGateway = [
|
|
1085
|
+
9,
|
|
1086
|
+
n0,
|
|
1087
|
+
_CRGr,
|
|
1088
|
+
{
|
|
1089
|
+
[_h]: ["POST", "/responder-gateway", 200],
|
|
1090
|
+
},
|
|
1091
|
+
() => CreateResponderGatewayRequest,
|
|
1092
|
+
() => CreateResponderGatewayResponse,
|
|
1093
|
+
];
|
|
1094
|
+
var DeleteInboundExternalLink = [
|
|
1095
|
+
9,
|
|
1096
|
+
n0,
|
|
1097
|
+
_DIEL,
|
|
1098
|
+
{
|
|
1099
|
+
[_h]: ["DELETE", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200],
|
|
1100
|
+
},
|
|
1101
|
+
() => DeleteInboundExternalLinkRequest,
|
|
1102
|
+
() => DeleteInboundExternalLinkResponse,
|
|
1103
|
+
];
|
|
1104
|
+
var DeleteLink = [
|
|
1105
|
+
9,
|
|
1106
|
+
n0,
|
|
1107
|
+
_DL,
|
|
1108
|
+
{
|
|
1109
|
+
[_h]: ["DELETE", "/gateway/{gatewayId}/link/{linkId}", 200],
|
|
1110
|
+
},
|
|
1111
|
+
() => DeleteLinkRequest,
|
|
1112
|
+
() => DeleteLinkResponse,
|
|
1113
|
+
];
|
|
1114
|
+
var DeleteOutboundExternalLink = [
|
|
1115
|
+
9,
|
|
1116
|
+
n0,
|
|
1117
|
+
_DOEL,
|
|
1118
|
+
{
|
|
1119
|
+
[_h]: ["DELETE", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200],
|
|
1120
|
+
},
|
|
1121
|
+
() => DeleteOutboundExternalLinkRequest,
|
|
1122
|
+
() => DeleteOutboundExternalLinkResponse,
|
|
1123
|
+
];
|
|
1124
|
+
var DeleteRequesterGateway = [
|
|
1125
|
+
9,
|
|
1126
|
+
n0,
|
|
1127
|
+
_DRG,
|
|
1128
|
+
{
|
|
1129
|
+
[_h]: ["DELETE", "/requester-gateway/{gatewayId}", 200],
|
|
1130
|
+
},
|
|
1131
|
+
() => DeleteRequesterGatewayRequest,
|
|
1132
|
+
() => DeleteRequesterGatewayResponse,
|
|
1133
|
+
];
|
|
1134
|
+
var DeleteResponderGateway = [
|
|
1135
|
+
9,
|
|
1136
|
+
n0,
|
|
1137
|
+
_DRGe,
|
|
1138
|
+
{
|
|
1139
|
+
[_h]: ["DELETE", "/responder-gateway/{gatewayId}", 200],
|
|
1140
|
+
},
|
|
1141
|
+
() => DeleteResponderGatewayRequest,
|
|
1142
|
+
() => DeleteResponderGatewayResponse,
|
|
1143
|
+
];
|
|
1144
|
+
var GetInboundExternalLink = [
|
|
1145
|
+
9,
|
|
1146
|
+
n0,
|
|
1147
|
+
_GIEL,
|
|
1148
|
+
{
|
|
1149
|
+
[_h]: ["GET", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200],
|
|
1150
|
+
},
|
|
1151
|
+
() => GetInboundExternalLinkRequest,
|
|
1152
|
+
() => GetInboundExternalLinkResponse,
|
|
1153
|
+
];
|
|
1154
|
+
var GetLink = [
|
|
1155
|
+
9,
|
|
1156
|
+
n0,
|
|
1157
|
+
_GL,
|
|
1158
|
+
{
|
|
1159
|
+
[_h]: ["GET", "/gateway/{gatewayId}/link/{linkId}", 200],
|
|
1160
|
+
},
|
|
1161
|
+
() => GetLinkRequest,
|
|
1162
|
+
() => GetLinkResponse,
|
|
1163
|
+
];
|
|
1164
|
+
var GetOutboundExternalLink = [
|
|
1165
|
+
9,
|
|
1166
|
+
n0,
|
|
1167
|
+
_GOEL,
|
|
1168
|
+
{
|
|
1169
|
+
[_h]: ["GET", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200],
|
|
1170
|
+
},
|
|
1171
|
+
() => GetOutboundExternalLinkRequest,
|
|
1172
|
+
() => GetOutboundExternalLinkResponse,
|
|
1173
|
+
];
|
|
1174
|
+
var GetRequesterGateway = [
|
|
1175
|
+
9,
|
|
1176
|
+
n0,
|
|
1177
|
+
_GRG,
|
|
1178
|
+
{
|
|
1179
|
+
[_h]: ["GET", "/requester-gateway/{gatewayId}", 200],
|
|
1180
|
+
},
|
|
1181
|
+
() => GetRequesterGatewayRequest,
|
|
1182
|
+
() => GetRequesterGatewayResponse,
|
|
1183
|
+
];
|
|
1184
|
+
var GetResponderGateway = [
|
|
1185
|
+
9,
|
|
1186
|
+
n0,
|
|
1187
|
+
_GRGe,
|
|
1188
|
+
{
|
|
1189
|
+
[_h]: ["GET", "/responder-gateway/{gatewayId}", 200],
|
|
1190
|
+
},
|
|
1191
|
+
() => GetResponderGatewayRequest,
|
|
1192
|
+
() => GetResponderGatewayResponse,
|
|
1193
|
+
];
|
|
1194
|
+
var ListLinks = [
|
|
1195
|
+
9,
|
|
1196
|
+
n0,
|
|
1197
|
+
_LLi,
|
|
1198
|
+
{
|
|
1199
|
+
[_h]: ["GET", "/gateway/{gatewayId}/links/", 200],
|
|
1200
|
+
},
|
|
1201
|
+
() => ListLinksRequest,
|
|
1202
|
+
() => ListLinksResponse,
|
|
1203
|
+
];
|
|
1204
|
+
var ListRequesterGateways = [
|
|
1205
|
+
9,
|
|
1206
|
+
n0,
|
|
1207
|
+
_LRG,
|
|
1208
|
+
{
|
|
1209
|
+
[_h]: ["GET", "/requester-gateways", 200],
|
|
1210
|
+
},
|
|
1211
|
+
() => ListRequesterGatewaysRequest,
|
|
1212
|
+
() => ListRequesterGatewaysResponse,
|
|
1213
|
+
];
|
|
1214
|
+
var ListResponderGateways = [
|
|
1215
|
+
9,
|
|
1216
|
+
n0,
|
|
1217
|
+
_LRGi,
|
|
1218
|
+
{
|
|
1219
|
+
[_h]: ["GET", "/responder-gateways", 200],
|
|
1220
|
+
},
|
|
1221
|
+
() => ListResponderGatewaysRequest,
|
|
1222
|
+
() => ListResponderGatewaysResponse,
|
|
1223
|
+
];
|
|
1224
|
+
var ListTagsForResource = [
|
|
1225
|
+
9,
|
|
1226
|
+
n0,
|
|
1227
|
+
_LTFR,
|
|
1228
|
+
{
|
|
1229
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1230
|
+
},
|
|
1231
|
+
() => ListTagsForResourceRequest,
|
|
1232
|
+
() => ListTagsForResourceResponse,
|
|
1233
|
+
];
|
|
1234
|
+
var RejectLink = [
|
|
1235
|
+
9,
|
|
1236
|
+
n0,
|
|
1237
|
+
_RL,
|
|
1238
|
+
{
|
|
1239
|
+
[_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/reject", 200],
|
|
1240
|
+
},
|
|
1241
|
+
() => RejectLinkRequest,
|
|
1242
|
+
() => RejectLinkResponse,
|
|
1243
|
+
];
|
|
1244
|
+
var TagResource = [
|
|
1245
|
+
9,
|
|
1246
|
+
n0,
|
|
1247
|
+
_TR,
|
|
1248
|
+
{
|
|
1249
|
+
[_h]: ["POST", "/tags/{resourceArn}", 204],
|
|
1250
|
+
},
|
|
1251
|
+
() => TagResourceRequest,
|
|
1252
|
+
() => TagResourceResponse,
|
|
1253
|
+
];
|
|
1254
|
+
var UntagResource = [
|
|
1255
|
+
9,
|
|
1256
|
+
n0,
|
|
1257
|
+
_UR,
|
|
1258
|
+
{
|
|
1259
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 204],
|
|
1260
|
+
},
|
|
1261
|
+
() => UntagResourceRequest,
|
|
1262
|
+
() => UntagResourceResponse,
|
|
1263
|
+
];
|
|
1264
|
+
var UpdateLink = [
|
|
1265
|
+
9,
|
|
1266
|
+
n0,
|
|
1267
|
+
_UL,
|
|
1268
|
+
{
|
|
1269
|
+
[_h]: ["PATCH", "/gateway/{gatewayId}/link/{linkId}", 200],
|
|
1270
|
+
},
|
|
1271
|
+
() => UpdateLinkRequest,
|
|
1272
|
+
() => UpdateLinkResponse,
|
|
1273
|
+
];
|
|
1274
|
+
var UpdateLinkModuleFlow = [
|
|
1275
|
+
9,
|
|
1276
|
+
n0,
|
|
1277
|
+
_ULMF,
|
|
1278
|
+
{
|
|
1279
|
+
[_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/module-flow", 200],
|
|
1280
|
+
},
|
|
1281
|
+
() => UpdateLinkModuleFlowRequest,
|
|
1282
|
+
() => UpdateLinkModuleFlowResponse,
|
|
1283
|
+
];
|
|
1284
|
+
var UpdateRequesterGateway = [
|
|
1285
|
+
9,
|
|
1286
|
+
n0,
|
|
1287
|
+
_URG,
|
|
1288
|
+
{
|
|
1289
|
+
[_h]: ["POST", "/requester-gateway/{gatewayId}/update", 200],
|
|
1290
|
+
},
|
|
1291
|
+
() => UpdateRequesterGatewayRequest,
|
|
1292
|
+
() => UpdateRequesterGatewayResponse,
|
|
1293
|
+
];
|
|
1294
|
+
var UpdateResponderGateway = [
|
|
1295
|
+
9,
|
|
1296
|
+
n0,
|
|
1297
|
+
_URGp,
|
|
1298
|
+
{
|
|
1299
|
+
[_h]: ["POST", "/responder-gateway/{gatewayId}/update", 200],
|
|
1300
|
+
},
|
|
1301
|
+
() => UpdateResponderGatewayRequest,
|
|
1302
|
+
() => UpdateResponderGatewayResponse,
|
|
1303
|
+
];
|
|
1498
1304
|
|
|
1499
1305
|
class AcceptLinkCommand extends smithyClient.Command
|
|
1500
1306
|
.classBuilder()
|
|
1501
1307
|
.ep(commonParams)
|
|
1502
1308
|
.m(function (Command, cs, config, o) {
|
|
1503
|
-
return [
|
|
1504
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1505
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1506
|
-
];
|
|
1309
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1507
1310
|
})
|
|
1508
1311
|
.s("RTBFabric", "AcceptLink", {})
|
|
1509
1312
|
.n("RTBFabricClient", "AcceptLinkCommand")
|
|
1510
|
-
.
|
|
1511
|
-
.ser(se_AcceptLinkCommand)
|
|
1512
|
-
.de(de_AcceptLinkCommand)
|
|
1313
|
+
.sc(AcceptLink)
|
|
1513
1314
|
.build() {
|
|
1514
1315
|
}
|
|
1515
1316
|
|
|
@@ -1517,16 +1318,11 @@ class CreateInboundExternalLinkCommand extends smithyClient.Command
|
|
|
1517
1318
|
.classBuilder()
|
|
1518
1319
|
.ep(commonParams)
|
|
1519
1320
|
.m(function (Command, cs, config, o) {
|
|
1520
|
-
return [
|
|
1521
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1522
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1523
|
-
];
|
|
1321
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1524
1322
|
})
|
|
1525
1323
|
.s("RTBFabric", "CreateInboundExternalLink", {})
|
|
1526
1324
|
.n("RTBFabricClient", "CreateInboundExternalLinkCommand")
|
|
1527
|
-
.
|
|
1528
|
-
.ser(se_CreateInboundExternalLinkCommand)
|
|
1529
|
-
.de(de_CreateInboundExternalLinkCommand)
|
|
1325
|
+
.sc(CreateInboundExternalLink)
|
|
1530
1326
|
.build() {
|
|
1531
1327
|
}
|
|
1532
1328
|
|
|
@@ -1534,16 +1330,11 @@ class CreateLinkCommand extends smithyClient.Command
|
|
|
1534
1330
|
.classBuilder()
|
|
1535
1331
|
.ep(commonParams)
|
|
1536
1332
|
.m(function (Command, cs, config, o) {
|
|
1537
|
-
return [
|
|
1538
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1539
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1540
|
-
];
|
|
1333
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1541
1334
|
})
|
|
1542
1335
|
.s("RTBFabric", "CreateLink", {})
|
|
1543
1336
|
.n("RTBFabricClient", "CreateLinkCommand")
|
|
1544
|
-
.
|
|
1545
|
-
.ser(se_CreateLinkCommand)
|
|
1546
|
-
.de(de_CreateLinkCommand)
|
|
1337
|
+
.sc(CreateLink)
|
|
1547
1338
|
.build() {
|
|
1548
1339
|
}
|
|
1549
1340
|
|
|
@@ -1551,16 +1342,11 @@ class CreateOutboundExternalLinkCommand extends smithyClient.Command
|
|
|
1551
1342
|
.classBuilder()
|
|
1552
1343
|
.ep(commonParams)
|
|
1553
1344
|
.m(function (Command, cs, config, o) {
|
|
1554
|
-
return [
|
|
1555
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1556
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1557
|
-
];
|
|
1345
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1558
1346
|
})
|
|
1559
1347
|
.s("RTBFabric", "CreateOutboundExternalLink", {})
|
|
1560
1348
|
.n("RTBFabricClient", "CreateOutboundExternalLinkCommand")
|
|
1561
|
-
.
|
|
1562
|
-
.ser(se_CreateOutboundExternalLinkCommand)
|
|
1563
|
-
.de(de_CreateOutboundExternalLinkCommand)
|
|
1349
|
+
.sc(CreateOutboundExternalLink)
|
|
1564
1350
|
.build() {
|
|
1565
1351
|
}
|
|
1566
1352
|
|
|
@@ -1568,16 +1354,11 @@ class CreateRequesterGatewayCommand extends smithyClient.Command
|
|
|
1568
1354
|
.classBuilder()
|
|
1569
1355
|
.ep(commonParams)
|
|
1570
1356
|
.m(function (Command, cs, config, o) {
|
|
1571
|
-
return [
|
|
1572
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1573
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1574
|
-
];
|
|
1357
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1575
1358
|
})
|
|
1576
1359
|
.s("RTBFabric", "CreateRequesterGateway", {})
|
|
1577
1360
|
.n("RTBFabricClient", "CreateRequesterGatewayCommand")
|
|
1578
|
-
.
|
|
1579
|
-
.ser(se_CreateRequesterGatewayCommand)
|
|
1580
|
-
.de(de_CreateRequesterGatewayCommand)
|
|
1361
|
+
.sc(CreateRequesterGateway)
|
|
1581
1362
|
.build() {
|
|
1582
1363
|
}
|
|
1583
1364
|
|
|
@@ -1585,16 +1366,11 @@ class CreateResponderGatewayCommand extends smithyClient.Command
|
|
|
1585
1366
|
.classBuilder()
|
|
1586
1367
|
.ep(commonParams)
|
|
1587
1368
|
.m(function (Command, cs, config, o) {
|
|
1588
|
-
return [
|
|
1589
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1590
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1591
|
-
];
|
|
1369
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1592
1370
|
})
|
|
1593
1371
|
.s("RTBFabric", "CreateResponderGateway", {})
|
|
1594
1372
|
.n("RTBFabricClient", "CreateResponderGatewayCommand")
|
|
1595
|
-
.
|
|
1596
|
-
.ser(se_CreateResponderGatewayCommand)
|
|
1597
|
-
.de(de_CreateResponderGatewayCommand)
|
|
1373
|
+
.sc(CreateResponderGateway)
|
|
1598
1374
|
.build() {
|
|
1599
1375
|
}
|
|
1600
1376
|
|
|
@@ -1602,16 +1378,11 @@ class DeleteInboundExternalLinkCommand extends smithyClient.Command
|
|
|
1602
1378
|
.classBuilder()
|
|
1603
1379
|
.ep(commonParams)
|
|
1604
1380
|
.m(function (Command, cs, config, o) {
|
|
1605
|
-
return [
|
|
1606
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1607
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1608
|
-
];
|
|
1381
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1609
1382
|
})
|
|
1610
1383
|
.s("RTBFabric", "DeleteInboundExternalLink", {})
|
|
1611
1384
|
.n("RTBFabricClient", "DeleteInboundExternalLinkCommand")
|
|
1612
|
-
.
|
|
1613
|
-
.ser(se_DeleteInboundExternalLinkCommand)
|
|
1614
|
-
.de(de_DeleteInboundExternalLinkCommand)
|
|
1385
|
+
.sc(DeleteInboundExternalLink)
|
|
1615
1386
|
.build() {
|
|
1616
1387
|
}
|
|
1617
1388
|
|
|
@@ -1619,16 +1390,11 @@ class DeleteLinkCommand extends smithyClient.Command
|
|
|
1619
1390
|
.classBuilder()
|
|
1620
1391
|
.ep(commonParams)
|
|
1621
1392
|
.m(function (Command, cs, config, o) {
|
|
1622
|
-
return [
|
|
1623
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1624
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1625
|
-
];
|
|
1393
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1626
1394
|
})
|
|
1627
1395
|
.s("RTBFabric", "DeleteLink", {})
|
|
1628
1396
|
.n("RTBFabricClient", "DeleteLinkCommand")
|
|
1629
|
-
.
|
|
1630
|
-
.ser(se_DeleteLinkCommand)
|
|
1631
|
-
.de(de_DeleteLinkCommand)
|
|
1397
|
+
.sc(DeleteLink)
|
|
1632
1398
|
.build() {
|
|
1633
1399
|
}
|
|
1634
1400
|
|
|
@@ -1636,16 +1402,11 @@ class DeleteOutboundExternalLinkCommand extends smithyClient.Command
|
|
|
1636
1402
|
.classBuilder()
|
|
1637
1403
|
.ep(commonParams)
|
|
1638
1404
|
.m(function (Command, cs, config, o) {
|
|
1639
|
-
return [
|
|
1640
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1641
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1642
|
-
];
|
|
1405
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1643
1406
|
})
|
|
1644
1407
|
.s("RTBFabric", "DeleteOutboundExternalLink", {})
|
|
1645
1408
|
.n("RTBFabricClient", "DeleteOutboundExternalLinkCommand")
|
|
1646
|
-
.
|
|
1647
|
-
.ser(se_DeleteOutboundExternalLinkCommand)
|
|
1648
|
-
.de(de_DeleteOutboundExternalLinkCommand)
|
|
1409
|
+
.sc(DeleteOutboundExternalLink)
|
|
1649
1410
|
.build() {
|
|
1650
1411
|
}
|
|
1651
1412
|
|
|
@@ -1653,16 +1414,11 @@ class DeleteRequesterGatewayCommand extends smithyClient.Command
|
|
|
1653
1414
|
.classBuilder()
|
|
1654
1415
|
.ep(commonParams)
|
|
1655
1416
|
.m(function (Command, cs, config, o) {
|
|
1656
|
-
return [
|
|
1657
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1658
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1659
|
-
];
|
|
1417
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1660
1418
|
})
|
|
1661
1419
|
.s("RTBFabric", "DeleteRequesterGateway", {})
|
|
1662
1420
|
.n("RTBFabricClient", "DeleteRequesterGatewayCommand")
|
|
1663
|
-
.
|
|
1664
|
-
.ser(se_DeleteRequesterGatewayCommand)
|
|
1665
|
-
.de(de_DeleteRequesterGatewayCommand)
|
|
1421
|
+
.sc(DeleteRequesterGateway)
|
|
1666
1422
|
.build() {
|
|
1667
1423
|
}
|
|
1668
1424
|
|
|
@@ -1670,16 +1426,11 @@ class DeleteResponderGatewayCommand extends smithyClient.Command
|
|
|
1670
1426
|
.classBuilder()
|
|
1671
1427
|
.ep(commonParams)
|
|
1672
1428
|
.m(function (Command, cs, config, o) {
|
|
1673
|
-
return [
|
|
1674
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1675
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1676
|
-
];
|
|
1429
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1677
1430
|
})
|
|
1678
1431
|
.s("RTBFabric", "DeleteResponderGateway", {})
|
|
1679
1432
|
.n("RTBFabricClient", "DeleteResponderGatewayCommand")
|
|
1680
|
-
.
|
|
1681
|
-
.ser(se_DeleteResponderGatewayCommand)
|
|
1682
|
-
.de(de_DeleteResponderGatewayCommand)
|
|
1433
|
+
.sc(DeleteResponderGateway)
|
|
1683
1434
|
.build() {
|
|
1684
1435
|
}
|
|
1685
1436
|
|
|
@@ -1687,16 +1438,11 @@ class GetInboundExternalLinkCommand extends smithyClient.Command
|
|
|
1687
1438
|
.classBuilder()
|
|
1688
1439
|
.ep(commonParams)
|
|
1689
1440
|
.m(function (Command, cs, config, o) {
|
|
1690
|
-
return [
|
|
1691
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1692
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1693
|
-
];
|
|
1441
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1694
1442
|
})
|
|
1695
1443
|
.s("RTBFabric", "GetInboundExternalLink", {})
|
|
1696
1444
|
.n("RTBFabricClient", "GetInboundExternalLinkCommand")
|
|
1697
|
-
.
|
|
1698
|
-
.ser(se_GetInboundExternalLinkCommand)
|
|
1699
|
-
.de(de_GetInboundExternalLinkCommand)
|
|
1445
|
+
.sc(GetInboundExternalLink)
|
|
1700
1446
|
.build() {
|
|
1701
1447
|
}
|
|
1702
1448
|
|
|
@@ -1704,16 +1450,11 @@ class GetLinkCommand extends smithyClient.Command
|
|
|
1704
1450
|
.classBuilder()
|
|
1705
1451
|
.ep(commonParams)
|
|
1706
1452
|
.m(function (Command, cs, config, o) {
|
|
1707
|
-
return [
|
|
1708
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1709
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1710
|
-
];
|
|
1453
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1711
1454
|
})
|
|
1712
1455
|
.s("RTBFabric", "GetLink", {})
|
|
1713
1456
|
.n("RTBFabricClient", "GetLinkCommand")
|
|
1714
|
-
.
|
|
1715
|
-
.ser(se_GetLinkCommand)
|
|
1716
|
-
.de(de_GetLinkCommand)
|
|
1457
|
+
.sc(GetLink)
|
|
1717
1458
|
.build() {
|
|
1718
1459
|
}
|
|
1719
1460
|
|
|
@@ -1721,16 +1462,11 @@ class GetOutboundExternalLinkCommand extends smithyClient.Command
|
|
|
1721
1462
|
.classBuilder()
|
|
1722
1463
|
.ep(commonParams)
|
|
1723
1464
|
.m(function (Command, cs, config, o) {
|
|
1724
|
-
return [
|
|
1725
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1726
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1727
|
-
];
|
|
1465
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1728
1466
|
})
|
|
1729
1467
|
.s("RTBFabric", "GetOutboundExternalLink", {})
|
|
1730
1468
|
.n("RTBFabricClient", "GetOutboundExternalLinkCommand")
|
|
1731
|
-
.
|
|
1732
|
-
.ser(se_GetOutboundExternalLinkCommand)
|
|
1733
|
-
.de(de_GetOutboundExternalLinkCommand)
|
|
1469
|
+
.sc(GetOutboundExternalLink)
|
|
1734
1470
|
.build() {
|
|
1735
1471
|
}
|
|
1736
1472
|
|
|
@@ -1738,16 +1474,11 @@ class GetRequesterGatewayCommand extends smithyClient.Command
|
|
|
1738
1474
|
.classBuilder()
|
|
1739
1475
|
.ep(commonParams)
|
|
1740
1476
|
.m(function (Command, cs, config, o) {
|
|
1741
|
-
return [
|
|
1742
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1743
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1744
|
-
];
|
|
1477
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1745
1478
|
})
|
|
1746
1479
|
.s("RTBFabric", "GetRequesterGateway", {})
|
|
1747
1480
|
.n("RTBFabricClient", "GetRequesterGatewayCommand")
|
|
1748
|
-
.
|
|
1749
|
-
.ser(se_GetRequesterGatewayCommand)
|
|
1750
|
-
.de(de_GetRequesterGatewayCommand)
|
|
1481
|
+
.sc(GetRequesterGateway)
|
|
1751
1482
|
.build() {
|
|
1752
1483
|
}
|
|
1753
1484
|
|
|
@@ -1755,16 +1486,11 @@ class GetResponderGatewayCommand extends smithyClient.Command
|
|
|
1755
1486
|
.classBuilder()
|
|
1756
1487
|
.ep(commonParams)
|
|
1757
1488
|
.m(function (Command, cs, config, o) {
|
|
1758
|
-
return [
|
|
1759
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1760
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1761
|
-
];
|
|
1489
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1762
1490
|
})
|
|
1763
1491
|
.s("RTBFabric", "GetResponderGateway", {})
|
|
1764
1492
|
.n("RTBFabricClient", "GetResponderGatewayCommand")
|
|
1765
|
-
.
|
|
1766
|
-
.ser(se_GetResponderGatewayCommand)
|
|
1767
|
-
.de(de_GetResponderGatewayCommand)
|
|
1493
|
+
.sc(GetResponderGateway)
|
|
1768
1494
|
.build() {
|
|
1769
1495
|
}
|
|
1770
1496
|
|
|
@@ -1772,16 +1498,11 @@ class ListLinksCommand extends smithyClient.Command
|
|
|
1772
1498
|
.classBuilder()
|
|
1773
1499
|
.ep(commonParams)
|
|
1774
1500
|
.m(function (Command, cs, config, o) {
|
|
1775
|
-
return [
|
|
1776
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1777
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1778
|
-
];
|
|
1501
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1779
1502
|
})
|
|
1780
1503
|
.s("RTBFabric", "ListLinks", {})
|
|
1781
1504
|
.n("RTBFabricClient", "ListLinksCommand")
|
|
1782
|
-
.
|
|
1783
|
-
.ser(se_ListLinksCommand)
|
|
1784
|
-
.de(de_ListLinksCommand)
|
|
1505
|
+
.sc(ListLinks)
|
|
1785
1506
|
.build() {
|
|
1786
1507
|
}
|
|
1787
1508
|
|
|
@@ -1789,16 +1510,11 @@ class ListRequesterGatewaysCommand extends smithyClient.Command
|
|
|
1789
1510
|
.classBuilder()
|
|
1790
1511
|
.ep(commonParams)
|
|
1791
1512
|
.m(function (Command, cs, config, o) {
|
|
1792
|
-
return [
|
|
1793
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1794
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1795
|
-
];
|
|
1513
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1796
1514
|
})
|
|
1797
1515
|
.s("RTBFabric", "ListRequesterGateways", {})
|
|
1798
1516
|
.n("RTBFabricClient", "ListRequesterGatewaysCommand")
|
|
1799
|
-
.
|
|
1800
|
-
.ser(se_ListRequesterGatewaysCommand)
|
|
1801
|
-
.de(de_ListRequesterGatewaysCommand)
|
|
1517
|
+
.sc(ListRequesterGateways)
|
|
1802
1518
|
.build() {
|
|
1803
1519
|
}
|
|
1804
1520
|
|
|
@@ -1806,16 +1522,11 @@ class ListResponderGatewaysCommand extends smithyClient.Command
|
|
|
1806
1522
|
.classBuilder()
|
|
1807
1523
|
.ep(commonParams)
|
|
1808
1524
|
.m(function (Command, cs, config, o) {
|
|
1809
|
-
return [
|
|
1810
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1811
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1812
|
-
];
|
|
1525
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1813
1526
|
})
|
|
1814
1527
|
.s("RTBFabric", "ListResponderGateways", {})
|
|
1815
1528
|
.n("RTBFabricClient", "ListResponderGatewaysCommand")
|
|
1816
|
-
.
|
|
1817
|
-
.ser(se_ListResponderGatewaysCommand)
|
|
1818
|
-
.de(de_ListResponderGatewaysCommand)
|
|
1529
|
+
.sc(ListResponderGateways)
|
|
1819
1530
|
.build() {
|
|
1820
1531
|
}
|
|
1821
1532
|
|
|
@@ -1823,16 +1534,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1823
1534
|
.classBuilder()
|
|
1824
1535
|
.ep(commonParams)
|
|
1825
1536
|
.m(function (Command, cs, config, o) {
|
|
1826
|
-
return [
|
|
1827
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1828
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1829
|
-
];
|
|
1537
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1830
1538
|
})
|
|
1831
1539
|
.s("RTBFabric", "ListTagsForResource", {})
|
|
1832
1540
|
.n("RTBFabricClient", "ListTagsForResourceCommand")
|
|
1833
|
-
.
|
|
1834
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1835
|
-
.de(de_ListTagsForResourceCommand)
|
|
1541
|
+
.sc(ListTagsForResource)
|
|
1836
1542
|
.build() {
|
|
1837
1543
|
}
|
|
1838
1544
|
|
|
@@ -1840,16 +1546,11 @@ class RejectLinkCommand extends smithyClient.Command
|
|
|
1840
1546
|
.classBuilder()
|
|
1841
1547
|
.ep(commonParams)
|
|
1842
1548
|
.m(function (Command, cs, config, o) {
|
|
1843
|
-
return [
|
|
1844
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1845
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1846
|
-
];
|
|
1549
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1847
1550
|
})
|
|
1848
1551
|
.s("RTBFabric", "RejectLink", {})
|
|
1849
1552
|
.n("RTBFabricClient", "RejectLinkCommand")
|
|
1850
|
-
.
|
|
1851
|
-
.ser(se_RejectLinkCommand)
|
|
1852
|
-
.de(de_RejectLinkCommand)
|
|
1553
|
+
.sc(RejectLink)
|
|
1853
1554
|
.build() {
|
|
1854
1555
|
}
|
|
1855
1556
|
|
|
@@ -1857,16 +1558,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1857
1558
|
.classBuilder()
|
|
1858
1559
|
.ep(commonParams)
|
|
1859
1560
|
.m(function (Command, cs, config, o) {
|
|
1860
|
-
return [
|
|
1861
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1862
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1863
|
-
];
|
|
1561
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1864
1562
|
})
|
|
1865
1563
|
.s("RTBFabric", "TagResource", {})
|
|
1866
1564
|
.n("RTBFabricClient", "TagResourceCommand")
|
|
1867
|
-
.
|
|
1868
|
-
.ser(se_TagResourceCommand)
|
|
1869
|
-
.de(de_TagResourceCommand)
|
|
1565
|
+
.sc(TagResource)
|
|
1870
1566
|
.build() {
|
|
1871
1567
|
}
|
|
1872
1568
|
|
|
@@ -1874,16 +1570,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1874
1570
|
.classBuilder()
|
|
1875
1571
|
.ep(commonParams)
|
|
1876
1572
|
.m(function (Command, cs, config, o) {
|
|
1877
|
-
return [
|
|
1878
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1879
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1880
|
-
];
|
|
1573
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1881
1574
|
})
|
|
1882
1575
|
.s("RTBFabric", "UntagResource", {})
|
|
1883
1576
|
.n("RTBFabricClient", "UntagResourceCommand")
|
|
1884
|
-
.
|
|
1885
|
-
.ser(se_UntagResourceCommand)
|
|
1886
|
-
.de(de_UntagResourceCommand)
|
|
1577
|
+
.sc(UntagResource)
|
|
1887
1578
|
.build() {
|
|
1888
1579
|
}
|
|
1889
1580
|
|
|
@@ -1891,16 +1582,11 @@ class UpdateLinkCommand extends smithyClient.Command
|
|
|
1891
1582
|
.classBuilder()
|
|
1892
1583
|
.ep(commonParams)
|
|
1893
1584
|
.m(function (Command, cs, config, o) {
|
|
1894
|
-
return [
|
|
1895
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1896
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1897
|
-
];
|
|
1585
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1898
1586
|
})
|
|
1899
1587
|
.s("RTBFabric", "UpdateLink", {})
|
|
1900
1588
|
.n("RTBFabricClient", "UpdateLinkCommand")
|
|
1901
|
-
.
|
|
1902
|
-
.ser(se_UpdateLinkCommand)
|
|
1903
|
-
.de(de_UpdateLinkCommand)
|
|
1589
|
+
.sc(UpdateLink)
|
|
1904
1590
|
.build() {
|
|
1905
1591
|
}
|
|
1906
1592
|
|
|
@@ -1908,16 +1594,11 @@ class UpdateLinkModuleFlowCommand extends smithyClient.Command
|
|
|
1908
1594
|
.classBuilder()
|
|
1909
1595
|
.ep(commonParams)
|
|
1910
1596
|
.m(function (Command, cs, config, o) {
|
|
1911
|
-
return [
|
|
1912
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1913
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1914
|
-
];
|
|
1597
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1915
1598
|
})
|
|
1916
1599
|
.s("RTBFabric", "UpdateLinkModuleFlow", {})
|
|
1917
1600
|
.n("RTBFabricClient", "UpdateLinkModuleFlowCommand")
|
|
1918
|
-
.
|
|
1919
|
-
.ser(se_UpdateLinkModuleFlowCommand)
|
|
1920
|
-
.de(de_UpdateLinkModuleFlowCommand)
|
|
1601
|
+
.sc(UpdateLinkModuleFlow)
|
|
1921
1602
|
.build() {
|
|
1922
1603
|
}
|
|
1923
1604
|
|
|
@@ -1925,16 +1606,11 @@ class UpdateRequesterGatewayCommand extends smithyClient.Command
|
|
|
1925
1606
|
.classBuilder()
|
|
1926
1607
|
.ep(commonParams)
|
|
1927
1608
|
.m(function (Command, cs, config, o) {
|
|
1928
|
-
return [
|
|
1929
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1930
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1931
|
-
];
|
|
1609
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1932
1610
|
})
|
|
1933
1611
|
.s("RTBFabric", "UpdateRequesterGateway", {})
|
|
1934
1612
|
.n("RTBFabricClient", "UpdateRequesterGatewayCommand")
|
|
1935
|
-
.
|
|
1936
|
-
.ser(se_UpdateRequesterGatewayCommand)
|
|
1937
|
-
.de(de_UpdateRequesterGatewayCommand)
|
|
1613
|
+
.sc(UpdateRequesterGateway)
|
|
1938
1614
|
.build() {
|
|
1939
1615
|
}
|
|
1940
1616
|
|
|
@@ -1942,16 +1618,11 @@ class UpdateResponderGatewayCommand extends smithyClient.Command
|
|
|
1942
1618
|
.classBuilder()
|
|
1943
1619
|
.ep(commonParams)
|
|
1944
1620
|
.m(function (Command, cs, config, o) {
|
|
1945
|
-
return [
|
|
1946
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1947
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1948
|
-
];
|
|
1621
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1949
1622
|
})
|
|
1950
1623
|
.s("RTBFabric", "UpdateResponderGateway", {})
|
|
1951
1624
|
.n("RTBFabricClient", "UpdateResponderGatewayCommand")
|
|
1952
|
-
.
|
|
1953
|
-
.ser(se_UpdateResponderGatewayCommand)
|
|
1954
|
-
.de(de_UpdateResponderGatewayCommand)
|
|
1625
|
+
.sc(UpdateResponderGateway)
|
|
1955
1626
|
.build() {
|
|
1956
1627
|
}
|
|
1957
1628
|
|
|
@@ -2423,56 +2094,50 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2423
2094
|
get: function () { return smithyClient.Client; }
|
|
2424
2095
|
});
|
|
2425
2096
|
exports.AcceptLinkCommand = AcceptLinkCommand;
|
|
2426
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2427
|
-
exports.ConflictException = ConflictException;
|
|
2097
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2098
|
+
exports.ConflictException = ConflictException$1;
|
|
2428
2099
|
exports.CreateInboundExternalLinkCommand = CreateInboundExternalLinkCommand;
|
|
2429
2100
|
exports.CreateLinkCommand = CreateLinkCommand;
|
|
2430
2101
|
exports.CreateOutboundExternalLinkCommand = CreateOutboundExternalLinkCommand;
|
|
2431
2102
|
exports.CreateRequesterGatewayCommand = CreateRequesterGatewayCommand;
|
|
2432
2103
|
exports.CreateResponderGatewayCommand = CreateResponderGatewayCommand;
|
|
2433
|
-
exports.CreateResponderGatewayRequestFilterSensitiveLog = CreateResponderGatewayRequestFilterSensitiveLog;
|
|
2434
2104
|
exports.DeleteInboundExternalLinkCommand = DeleteInboundExternalLinkCommand;
|
|
2435
2105
|
exports.DeleteLinkCommand = DeleteLinkCommand;
|
|
2436
2106
|
exports.DeleteOutboundExternalLinkCommand = DeleteOutboundExternalLinkCommand;
|
|
2437
2107
|
exports.DeleteRequesterGatewayCommand = DeleteRequesterGatewayCommand;
|
|
2438
2108
|
exports.DeleteResponderGatewayCommand = DeleteResponderGatewayCommand;
|
|
2439
|
-
exports.EksEndpointsConfigurationFilterSensitiveLog = EksEndpointsConfigurationFilterSensitiveLog;
|
|
2440
2109
|
exports.FilterType = FilterType;
|
|
2441
2110
|
exports.GetInboundExternalLinkCommand = GetInboundExternalLinkCommand;
|
|
2442
2111
|
exports.GetLinkCommand = GetLinkCommand;
|
|
2443
2112
|
exports.GetOutboundExternalLinkCommand = GetOutboundExternalLinkCommand;
|
|
2444
2113
|
exports.GetRequesterGatewayCommand = GetRequesterGatewayCommand;
|
|
2445
2114
|
exports.GetResponderGatewayCommand = GetResponderGatewayCommand;
|
|
2446
|
-
exports.
|
|
2447
|
-
exports.InternalServerException = InternalServerException;
|
|
2115
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2448
2116
|
exports.LinkDirection = LinkDirection;
|
|
2449
2117
|
exports.LinkStatus = LinkStatus;
|
|
2450
2118
|
exports.ListLinksCommand = ListLinksCommand;
|
|
2451
2119
|
exports.ListRequesterGatewaysCommand = ListRequesterGatewaysCommand;
|
|
2452
2120
|
exports.ListResponderGatewaysCommand = ListResponderGatewaysCommand;
|
|
2453
2121
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2454
|
-
exports.ManagedEndpointConfigurationFilterSensitiveLog = ManagedEndpointConfigurationFilterSensitiveLog;
|
|
2455
2122
|
exports.Protocol = Protocol;
|
|
2456
2123
|
exports.RTBFabric = RTBFabric;
|
|
2457
2124
|
exports.RTBFabricClient = RTBFabricClient;
|
|
2458
|
-
exports.RTBFabricServiceException = RTBFabricServiceException;
|
|
2125
|
+
exports.RTBFabricServiceException = RTBFabricServiceException$1;
|
|
2459
2126
|
exports.RejectLinkCommand = RejectLinkCommand;
|
|
2460
2127
|
exports.RequesterGatewayStatus = RequesterGatewayStatus;
|
|
2461
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2128
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2462
2129
|
exports.ResponderErrorMaskingAction = ResponderErrorMaskingAction;
|
|
2463
2130
|
exports.ResponderErrorMaskingLoggingType = ResponderErrorMaskingLoggingType;
|
|
2464
2131
|
exports.ResponderGatewayStatus = ResponderGatewayStatus;
|
|
2465
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2132
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2466
2133
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2467
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2468
|
-
exports.TrustStoreConfigurationFilterSensitiveLog = TrustStoreConfigurationFilterSensitiveLog;
|
|
2134
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2469
2135
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2470
2136
|
exports.UpdateLinkCommand = UpdateLinkCommand;
|
|
2471
2137
|
exports.UpdateLinkModuleFlowCommand = UpdateLinkModuleFlowCommand;
|
|
2472
2138
|
exports.UpdateRequesterGatewayCommand = UpdateRequesterGatewayCommand;
|
|
2473
2139
|
exports.UpdateResponderGatewayCommand = UpdateResponderGatewayCommand;
|
|
2474
|
-
exports.
|
|
2475
|
-
exports.ValidationException = ValidationException;
|
|
2140
|
+
exports.ValidationException = ValidationException$1;
|
|
2476
2141
|
exports.paginateListLinks = paginateListLinks;
|
|
2477
2142
|
exports.paginateListRequesterGateways = paginateListRequesterGateways;
|
|
2478
2143
|
exports.paginateListResponderGateways = paginateListResponderGateways;
|