@aws-sdk/client-vpc-lattice 3.721.0 → 3.726.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 +409 -256
- package/dist-es/VPCLatticeClient.js +1 -0
- package/dist-es/models/models_0.js +32 -18
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -243,7 +243,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
243
243
|
}, "resolveRuntimeExtensions");
|
|
244
244
|
|
|
245
245
|
// src/VPCLatticeClient.ts
|
|
246
|
-
var
|
|
246
|
+
var VPCLatticeClient = class extends import_smithy_client.Client {
|
|
247
|
+
static {
|
|
248
|
+
__name(this, "VPCLatticeClient");
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* The resolved configuration of VPCLatticeClient class. This is resolved and normalized from the {@link VPCLatticeClientConfig | constructor configuration interface}.
|
|
252
|
+
*/
|
|
253
|
+
config;
|
|
247
254
|
constructor(...[configuration]) {
|
|
248
255
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
249
256
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -253,7 +260,7 @@ var _VPCLatticeClient = class _VPCLatticeClient extends import_smithy_client.Cli
|
|
|
253
260
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
254
261
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
255
262
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
256
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
263
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
257
264
|
super(_config_8);
|
|
258
265
|
this.config = _config_8;
|
|
259
266
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -281,8 +288,6 @@ var _VPCLatticeClient = class _VPCLatticeClient extends import_smithy_client.Cli
|
|
|
281
288
|
super.destroy();
|
|
282
289
|
}
|
|
283
290
|
};
|
|
284
|
-
__name(_VPCLatticeClient, "VPCLatticeClient");
|
|
285
|
-
var VPCLatticeClient = _VPCLatticeClient;
|
|
286
291
|
|
|
287
292
|
// src/VPCLattice.ts
|
|
288
293
|
|
|
@@ -300,7 +305,10 @@ var import_uuid = require("uuid");
|
|
|
300
305
|
|
|
301
306
|
// src/models/VPCLatticeServiceException.ts
|
|
302
307
|
|
|
303
|
-
var
|
|
308
|
+
var VPCLatticeServiceException = class _VPCLatticeServiceException extends import_smithy_client.ServiceException {
|
|
309
|
+
static {
|
|
310
|
+
__name(this, "VPCLatticeServiceException");
|
|
311
|
+
}
|
|
304
312
|
/**
|
|
305
313
|
* @internal
|
|
306
314
|
*/
|
|
@@ -309,11 +317,14 @@ var _VPCLatticeServiceException = class _VPCLatticeServiceException extends impo
|
|
|
309
317
|
Object.setPrototypeOf(this, _VPCLatticeServiceException.prototype);
|
|
310
318
|
}
|
|
311
319
|
};
|
|
312
|
-
__name(_VPCLatticeServiceException, "VPCLatticeServiceException");
|
|
313
|
-
var VPCLatticeServiceException = _VPCLatticeServiceException;
|
|
314
320
|
|
|
315
321
|
// src/models/models_0.ts
|
|
316
|
-
var
|
|
322
|
+
var AccessDeniedException = class _AccessDeniedException extends VPCLatticeServiceException {
|
|
323
|
+
static {
|
|
324
|
+
__name(this, "AccessDeniedException");
|
|
325
|
+
}
|
|
326
|
+
name = "AccessDeniedException";
|
|
327
|
+
$fault = "client";
|
|
317
328
|
/**
|
|
318
329
|
* @internal
|
|
319
330
|
*/
|
|
@@ -323,14 +334,25 @@ var _AccessDeniedException = class _AccessDeniedException extends VPCLatticeServ
|
|
|
323
334
|
$fault: "client",
|
|
324
335
|
...opts
|
|
325
336
|
});
|
|
326
|
-
this.name = "AccessDeniedException";
|
|
327
|
-
this.$fault = "client";
|
|
328
337
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
329
338
|
}
|
|
330
339
|
};
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
340
|
+
var ConflictException = class _ConflictException extends VPCLatticeServiceException {
|
|
341
|
+
static {
|
|
342
|
+
__name(this, "ConflictException");
|
|
343
|
+
}
|
|
344
|
+
name = "ConflictException";
|
|
345
|
+
$fault = "client";
|
|
346
|
+
/**
|
|
347
|
+
* <p>The resource ID.</p>
|
|
348
|
+
* @public
|
|
349
|
+
*/
|
|
350
|
+
resourceId;
|
|
351
|
+
/**
|
|
352
|
+
* <p>The resource type.</p>
|
|
353
|
+
* @public
|
|
354
|
+
*/
|
|
355
|
+
resourceType;
|
|
334
356
|
/**
|
|
335
357
|
* @internal
|
|
336
358
|
*/
|
|
@@ -340,15 +362,11 @@ var _ConflictException = class _ConflictException extends VPCLatticeServiceExcep
|
|
|
340
362
|
$fault: "client",
|
|
341
363
|
...opts
|
|
342
364
|
});
|
|
343
|
-
this.name = "ConflictException";
|
|
344
|
-
this.$fault = "client";
|
|
345
365
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
346
366
|
this.resourceId = opts.resourceId;
|
|
347
367
|
this.resourceType = opts.resourceType;
|
|
348
368
|
}
|
|
349
369
|
};
|
|
350
|
-
__name(_ConflictException, "ConflictException");
|
|
351
|
-
var ConflictException = _ConflictException;
|
|
352
370
|
var ServiceNetworkLogType = {
|
|
353
371
|
/**
|
|
354
372
|
* Indicates logs for Lattice resource configurations.
|
|
@@ -359,7 +377,18 @@ var ServiceNetworkLogType = {
|
|
|
359
377
|
*/
|
|
360
378
|
SERVICE: "SERVICE"
|
|
361
379
|
};
|
|
362
|
-
var
|
|
380
|
+
var InternalServerException = class _InternalServerException extends VPCLatticeServiceException {
|
|
381
|
+
static {
|
|
382
|
+
__name(this, "InternalServerException");
|
|
383
|
+
}
|
|
384
|
+
name = "InternalServerException";
|
|
385
|
+
$fault = "server";
|
|
386
|
+
$retryable = {};
|
|
387
|
+
/**
|
|
388
|
+
* <p>The number of seconds to wait before retrying.</p>
|
|
389
|
+
* @public
|
|
390
|
+
*/
|
|
391
|
+
retryAfterSeconds;
|
|
363
392
|
/**
|
|
364
393
|
* @internal
|
|
365
394
|
*/
|
|
@@ -369,16 +398,26 @@ var _InternalServerException = class _InternalServerException extends VPCLattice
|
|
|
369
398
|
$fault: "server",
|
|
370
399
|
...opts
|
|
371
400
|
});
|
|
372
|
-
this.name = "InternalServerException";
|
|
373
|
-
this.$fault = "server";
|
|
374
|
-
this.$retryable = {};
|
|
375
401
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
376
402
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
377
403
|
}
|
|
378
404
|
};
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
405
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends VPCLatticeServiceException {
|
|
406
|
+
static {
|
|
407
|
+
__name(this, "ResourceNotFoundException");
|
|
408
|
+
}
|
|
409
|
+
name = "ResourceNotFoundException";
|
|
410
|
+
$fault = "client";
|
|
411
|
+
/**
|
|
412
|
+
* <p>The resource ID.</p>
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
415
|
+
resourceId;
|
|
416
|
+
/**
|
|
417
|
+
* <p>The resource type.</p>
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
resourceType;
|
|
382
421
|
/**
|
|
383
422
|
* @internal
|
|
384
423
|
*/
|
|
@@ -388,16 +427,35 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends VPCLat
|
|
|
388
427
|
$fault: "client",
|
|
389
428
|
...opts
|
|
390
429
|
});
|
|
391
|
-
this.name = "ResourceNotFoundException";
|
|
392
|
-
this.$fault = "client";
|
|
393
430
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
394
431
|
this.resourceId = opts.resourceId;
|
|
395
432
|
this.resourceType = opts.resourceType;
|
|
396
433
|
}
|
|
397
434
|
};
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
435
|
+
var ThrottlingException = class _ThrottlingException extends VPCLatticeServiceException {
|
|
436
|
+
static {
|
|
437
|
+
__name(this, "ThrottlingException");
|
|
438
|
+
}
|
|
439
|
+
name = "ThrottlingException";
|
|
440
|
+
$fault = "client";
|
|
441
|
+
$retryable = {
|
|
442
|
+
throttling: true
|
|
443
|
+
};
|
|
444
|
+
/**
|
|
445
|
+
* <p>The service code.</p>
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
serviceCode;
|
|
449
|
+
/**
|
|
450
|
+
* <p>The ID of the service quota that was exceeded.</p>
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
quotaCode;
|
|
454
|
+
/**
|
|
455
|
+
* <p>The number of seconds to wait before retrying.</p>
|
|
456
|
+
* @public
|
|
457
|
+
*/
|
|
458
|
+
retryAfterSeconds;
|
|
401
459
|
/**
|
|
402
460
|
* @internal
|
|
403
461
|
*/
|
|
@@ -407,26 +465,34 @@ var _ThrottlingException = class _ThrottlingException extends VPCLatticeServiceE
|
|
|
407
465
|
$fault: "client",
|
|
408
466
|
...opts
|
|
409
467
|
});
|
|
410
|
-
this.name = "ThrottlingException";
|
|
411
|
-
this.$fault = "client";
|
|
412
|
-
this.$retryable = {
|
|
413
|
-
throttling: true
|
|
414
|
-
};
|
|
415
468
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
416
469
|
this.serviceCode = opts.serviceCode;
|
|
417
470
|
this.quotaCode = opts.quotaCode;
|
|
418
471
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
419
472
|
}
|
|
420
473
|
};
|
|
421
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
422
|
-
var ThrottlingException = _ThrottlingException;
|
|
423
474
|
var ValidationExceptionReason = {
|
|
424
475
|
CANNOT_PARSE: "cannotParse",
|
|
425
476
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
426
477
|
OTHER: "other",
|
|
427
478
|
UNKNOWN_OPERATION: "unknownOperation"
|
|
428
479
|
};
|
|
429
|
-
var
|
|
480
|
+
var ValidationException = class _ValidationException extends VPCLatticeServiceException {
|
|
481
|
+
static {
|
|
482
|
+
__name(this, "ValidationException");
|
|
483
|
+
}
|
|
484
|
+
name = "ValidationException";
|
|
485
|
+
$fault = "client";
|
|
486
|
+
/**
|
|
487
|
+
* <p>The reason.</p>
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
reason;
|
|
491
|
+
/**
|
|
492
|
+
* <p>The fields that failed validation.</p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
fieldList;
|
|
430
496
|
/**
|
|
431
497
|
* @internal
|
|
432
498
|
*/
|
|
@@ -436,15 +502,11 @@ var _ValidationException = class _ValidationException extends VPCLatticeServiceE
|
|
|
436
502
|
$fault: "client",
|
|
437
503
|
...opts
|
|
438
504
|
});
|
|
439
|
-
this.name = "ValidationException";
|
|
440
|
-
this.$fault = "client";
|
|
441
505
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
442
506
|
this.reason = opts.reason;
|
|
443
507
|
this.fieldList = opts.fieldList;
|
|
444
508
|
}
|
|
445
509
|
};
|
|
446
|
-
__name(_ValidationException, "ValidationException");
|
|
447
|
-
var ValidationException = _ValidationException;
|
|
448
510
|
var AuthPolicyState = {
|
|
449
511
|
Active: "Active",
|
|
450
512
|
Inactive: "Inactive"
|
|
@@ -507,7 +569,32 @@ var ListenerProtocol = {
|
|
|
507
569
|
*/
|
|
508
570
|
TLS_PASSTHROUGH: "TLS_PASSTHROUGH"
|
|
509
571
|
};
|
|
510
|
-
var
|
|
572
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends VPCLatticeServiceException {
|
|
573
|
+
static {
|
|
574
|
+
__name(this, "ServiceQuotaExceededException");
|
|
575
|
+
}
|
|
576
|
+
name = "ServiceQuotaExceededException";
|
|
577
|
+
$fault = "client";
|
|
578
|
+
/**
|
|
579
|
+
* <p>The resource ID.</p>
|
|
580
|
+
* @public
|
|
581
|
+
*/
|
|
582
|
+
resourceId;
|
|
583
|
+
/**
|
|
584
|
+
* <p>The resource type.</p>
|
|
585
|
+
* @public
|
|
586
|
+
*/
|
|
587
|
+
resourceType;
|
|
588
|
+
/**
|
|
589
|
+
* <p>The service code.</p>
|
|
590
|
+
* @public
|
|
591
|
+
*/
|
|
592
|
+
serviceCode;
|
|
593
|
+
/**
|
|
594
|
+
* <p>The ID of the service quota that was exceeded.</p>
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
597
|
+
quotaCode;
|
|
511
598
|
/**
|
|
512
599
|
* @internal
|
|
513
600
|
*/
|
|
@@ -517,8 +604,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
517
604
|
$fault: "client",
|
|
518
605
|
...opts
|
|
519
606
|
});
|
|
520
|
-
this.name = "ServiceQuotaExceededException";
|
|
521
|
-
this.$fault = "client";
|
|
522
607
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
523
608
|
this.resourceId = opts.resourceId;
|
|
524
609
|
this.resourceType = opts.resourceType;
|
|
@@ -526,8 +611,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
526
611
|
this.quotaCode = opts.quotaCode;
|
|
527
612
|
}
|
|
528
613
|
};
|
|
529
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
530
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
531
614
|
var ProtocolType = {
|
|
532
615
|
/**
|
|
533
616
|
* Resource Configuration protocol type TCP
|
|
@@ -3513,967 +3596,1036 @@ var _vEO = "vpcEndpointOwner";
|
|
|
3513
3596
|
var _vI = "vpcIdentifier";
|
|
3514
3597
|
|
|
3515
3598
|
// src/commands/BatchUpdateRuleCommand.ts
|
|
3516
|
-
var
|
|
3599
|
+
var BatchUpdateRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3517
3600
|
return [
|
|
3518
3601
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3519
3602
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3520
3603
|
];
|
|
3521
3604
|
}).s("MercuryControlPlane", "BatchUpdateRule", {}).n("VPCLatticeClient", "BatchUpdateRuleCommand").f(void 0, void 0).ser(se_BatchUpdateRuleCommand).de(de_BatchUpdateRuleCommand).build() {
|
|
3605
|
+
static {
|
|
3606
|
+
__name(this, "BatchUpdateRuleCommand");
|
|
3607
|
+
}
|
|
3522
3608
|
};
|
|
3523
|
-
__name(_BatchUpdateRuleCommand, "BatchUpdateRuleCommand");
|
|
3524
|
-
var BatchUpdateRuleCommand = _BatchUpdateRuleCommand;
|
|
3525
3609
|
|
|
3526
3610
|
// src/commands/CreateAccessLogSubscriptionCommand.ts
|
|
3527
3611
|
|
|
3528
3612
|
|
|
3529
3613
|
|
|
3530
|
-
var
|
|
3614
|
+
var CreateAccessLogSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3531
3615
|
return [
|
|
3532
3616
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3533
3617
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3534
3618
|
];
|
|
3535
3619
|
}).s("MercuryControlPlane", "CreateAccessLogSubscription", {}).n("VPCLatticeClient", "CreateAccessLogSubscriptionCommand").f(void 0, void 0).ser(se_CreateAccessLogSubscriptionCommand).de(de_CreateAccessLogSubscriptionCommand).build() {
|
|
3620
|
+
static {
|
|
3621
|
+
__name(this, "CreateAccessLogSubscriptionCommand");
|
|
3622
|
+
}
|
|
3536
3623
|
};
|
|
3537
|
-
__name(_CreateAccessLogSubscriptionCommand, "CreateAccessLogSubscriptionCommand");
|
|
3538
|
-
var CreateAccessLogSubscriptionCommand = _CreateAccessLogSubscriptionCommand;
|
|
3539
3624
|
|
|
3540
3625
|
// src/commands/CreateListenerCommand.ts
|
|
3541
3626
|
|
|
3542
3627
|
|
|
3543
3628
|
|
|
3544
|
-
var
|
|
3629
|
+
var CreateListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3545
3630
|
return [
|
|
3546
3631
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3547
3632
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3548
3633
|
];
|
|
3549
3634
|
}).s("MercuryControlPlane", "CreateListener", {}).n("VPCLatticeClient", "CreateListenerCommand").f(void 0, void 0).ser(se_CreateListenerCommand).de(de_CreateListenerCommand).build() {
|
|
3635
|
+
static {
|
|
3636
|
+
__name(this, "CreateListenerCommand");
|
|
3637
|
+
}
|
|
3550
3638
|
};
|
|
3551
|
-
__name(_CreateListenerCommand, "CreateListenerCommand");
|
|
3552
|
-
var CreateListenerCommand = _CreateListenerCommand;
|
|
3553
3639
|
|
|
3554
3640
|
// src/commands/CreateResourceConfigurationCommand.ts
|
|
3555
3641
|
|
|
3556
3642
|
|
|
3557
3643
|
|
|
3558
|
-
var
|
|
3644
|
+
var CreateResourceConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3559
3645
|
return [
|
|
3560
3646
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3561
3647
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3562
3648
|
];
|
|
3563
3649
|
}).s("MercuryControlPlane", "CreateResourceConfiguration", {}).n("VPCLatticeClient", "CreateResourceConfigurationCommand").f(void 0, void 0).ser(se_CreateResourceConfigurationCommand).de(de_CreateResourceConfigurationCommand).build() {
|
|
3650
|
+
static {
|
|
3651
|
+
__name(this, "CreateResourceConfigurationCommand");
|
|
3652
|
+
}
|
|
3564
3653
|
};
|
|
3565
|
-
__name(_CreateResourceConfigurationCommand, "CreateResourceConfigurationCommand");
|
|
3566
|
-
var CreateResourceConfigurationCommand = _CreateResourceConfigurationCommand;
|
|
3567
3654
|
|
|
3568
3655
|
// src/commands/CreateResourceGatewayCommand.ts
|
|
3569
3656
|
|
|
3570
3657
|
|
|
3571
3658
|
|
|
3572
|
-
var
|
|
3659
|
+
var CreateResourceGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3573
3660
|
return [
|
|
3574
3661
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3575
3662
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3576
3663
|
];
|
|
3577
3664
|
}).s("MercuryControlPlane", "CreateResourceGateway", {}).n("VPCLatticeClient", "CreateResourceGatewayCommand").f(void 0, void 0).ser(se_CreateResourceGatewayCommand).de(de_CreateResourceGatewayCommand).build() {
|
|
3665
|
+
static {
|
|
3666
|
+
__name(this, "CreateResourceGatewayCommand");
|
|
3667
|
+
}
|
|
3578
3668
|
};
|
|
3579
|
-
__name(_CreateResourceGatewayCommand, "CreateResourceGatewayCommand");
|
|
3580
|
-
var CreateResourceGatewayCommand = _CreateResourceGatewayCommand;
|
|
3581
3669
|
|
|
3582
3670
|
// src/commands/CreateRuleCommand.ts
|
|
3583
3671
|
|
|
3584
3672
|
|
|
3585
3673
|
|
|
3586
|
-
var
|
|
3674
|
+
var CreateRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3587
3675
|
return [
|
|
3588
3676
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3589
3677
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3590
3678
|
];
|
|
3591
3679
|
}).s("MercuryControlPlane", "CreateRule", {}).n("VPCLatticeClient", "CreateRuleCommand").f(void 0, void 0).ser(se_CreateRuleCommand).de(de_CreateRuleCommand).build() {
|
|
3680
|
+
static {
|
|
3681
|
+
__name(this, "CreateRuleCommand");
|
|
3682
|
+
}
|
|
3592
3683
|
};
|
|
3593
|
-
__name(_CreateRuleCommand, "CreateRuleCommand");
|
|
3594
|
-
var CreateRuleCommand = _CreateRuleCommand;
|
|
3595
3684
|
|
|
3596
3685
|
// src/commands/CreateServiceCommand.ts
|
|
3597
3686
|
|
|
3598
3687
|
|
|
3599
3688
|
|
|
3600
|
-
var
|
|
3689
|
+
var CreateServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3601
3690
|
return [
|
|
3602
3691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3603
3692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3604
3693
|
];
|
|
3605
3694
|
}).s("MercuryControlPlane", "CreateService", {}).n("VPCLatticeClient", "CreateServiceCommand").f(void 0, void 0).ser(se_CreateServiceCommand).de(de_CreateServiceCommand).build() {
|
|
3695
|
+
static {
|
|
3696
|
+
__name(this, "CreateServiceCommand");
|
|
3697
|
+
}
|
|
3606
3698
|
};
|
|
3607
|
-
__name(_CreateServiceCommand, "CreateServiceCommand");
|
|
3608
|
-
var CreateServiceCommand = _CreateServiceCommand;
|
|
3609
3699
|
|
|
3610
3700
|
// src/commands/CreateServiceNetworkCommand.ts
|
|
3611
3701
|
|
|
3612
3702
|
|
|
3613
3703
|
|
|
3614
|
-
var
|
|
3704
|
+
var CreateServiceNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3615
3705
|
return [
|
|
3616
3706
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3617
3707
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3618
3708
|
];
|
|
3619
3709
|
}).s("MercuryControlPlane", "CreateServiceNetwork", {}).n("VPCLatticeClient", "CreateServiceNetworkCommand").f(void 0, void 0).ser(se_CreateServiceNetworkCommand).de(de_CreateServiceNetworkCommand).build() {
|
|
3710
|
+
static {
|
|
3711
|
+
__name(this, "CreateServiceNetworkCommand");
|
|
3712
|
+
}
|
|
3620
3713
|
};
|
|
3621
|
-
__name(_CreateServiceNetworkCommand, "CreateServiceNetworkCommand");
|
|
3622
|
-
var CreateServiceNetworkCommand = _CreateServiceNetworkCommand;
|
|
3623
3714
|
|
|
3624
3715
|
// src/commands/CreateServiceNetworkResourceAssociationCommand.ts
|
|
3625
3716
|
|
|
3626
3717
|
|
|
3627
3718
|
|
|
3628
|
-
var
|
|
3719
|
+
var CreateServiceNetworkResourceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3629
3720
|
return [
|
|
3630
3721
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3631
3722
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3632
3723
|
];
|
|
3633
3724
|
}).s("MercuryControlPlane", "CreateServiceNetworkResourceAssociation", {}).n("VPCLatticeClient", "CreateServiceNetworkResourceAssociationCommand").f(void 0, void 0).ser(se_CreateServiceNetworkResourceAssociationCommand).de(de_CreateServiceNetworkResourceAssociationCommand).build() {
|
|
3725
|
+
static {
|
|
3726
|
+
__name(this, "CreateServiceNetworkResourceAssociationCommand");
|
|
3727
|
+
}
|
|
3634
3728
|
};
|
|
3635
|
-
__name(_CreateServiceNetworkResourceAssociationCommand, "CreateServiceNetworkResourceAssociationCommand");
|
|
3636
|
-
var CreateServiceNetworkResourceAssociationCommand = _CreateServiceNetworkResourceAssociationCommand;
|
|
3637
3729
|
|
|
3638
3730
|
// src/commands/CreateServiceNetworkServiceAssociationCommand.ts
|
|
3639
3731
|
|
|
3640
3732
|
|
|
3641
3733
|
|
|
3642
|
-
var
|
|
3734
|
+
var CreateServiceNetworkServiceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3643
3735
|
return [
|
|
3644
3736
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3645
3737
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3646
3738
|
];
|
|
3647
3739
|
}).s("MercuryControlPlane", "CreateServiceNetworkServiceAssociation", {}).n("VPCLatticeClient", "CreateServiceNetworkServiceAssociationCommand").f(void 0, void 0).ser(se_CreateServiceNetworkServiceAssociationCommand).de(de_CreateServiceNetworkServiceAssociationCommand).build() {
|
|
3740
|
+
static {
|
|
3741
|
+
__name(this, "CreateServiceNetworkServiceAssociationCommand");
|
|
3742
|
+
}
|
|
3648
3743
|
};
|
|
3649
|
-
__name(_CreateServiceNetworkServiceAssociationCommand, "CreateServiceNetworkServiceAssociationCommand");
|
|
3650
|
-
var CreateServiceNetworkServiceAssociationCommand = _CreateServiceNetworkServiceAssociationCommand;
|
|
3651
3744
|
|
|
3652
3745
|
// src/commands/CreateServiceNetworkVpcAssociationCommand.ts
|
|
3653
3746
|
|
|
3654
3747
|
|
|
3655
3748
|
|
|
3656
|
-
var
|
|
3749
|
+
var CreateServiceNetworkVpcAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3657
3750
|
return [
|
|
3658
3751
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3659
3752
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3660
3753
|
];
|
|
3661
3754
|
}).s("MercuryControlPlane", "CreateServiceNetworkVpcAssociation", {}).n("VPCLatticeClient", "CreateServiceNetworkVpcAssociationCommand").f(void 0, void 0).ser(se_CreateServiceNetworkVpcAssociationCommand).de(de_CreateServiceNetworkVpcAssociationCommand).build() {
|
|
3755
|
+
static {
|
|
3756
|
+
__name(this, "CreateServiceNetworkVpcAssociationCommand");
|
|
3757
|
+
}
|
|
3662
3758
|
};
|
|
3663
|
-
__name(_CreateServiceNetworkVpcAssociationCommand, "CreateServiceNetworkVpcAssociationCommand");
|
|
3664
|
-
var CreateServiceNetworkVpcAssociationCommand = _CreateServiceNetworkVpcAssociationCommand;
|
|
3665
3759
|
|
|
3666
3760
|
// src/commands/CreateTargetGroupCommand.ts
|
|
3667
3761
|
|
|
3668
3762
|
|
|
3669
3763
|
|
|
3670
|
-
var
|
|
3764
|
+
var CreateTargetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3671
3765
|
return [
|
|
3672
3766
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3673
3767
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3674
3768
|
];
|
|
3675
3769
|
}).s("MercuryControlPlane", "CreateTargetGroup", {}).n("VPCLatticeClient", "CreateTargetGroupCommand").f(void 0, void 0).ser(se_CreateTargetGroupCommand).de(de_CreateTargetGroupCommand).build() {
|
|
3770
|
+
static {
|
|
3771
|
+
__name(this, "CreateTargetGroupCommand");
|
|
3772
|
+
}
|
|
3676
3773
|
};
|
|
3677
|
-
__name(_CreateTargetGroupCommand, "CreateTargetGroupCommand");
|
|
3678
|
-
var CreateTargetGroupCommand = _CreateTargetGroupCommand;
|
|
3679
3774
|
|
|
3680
3775
|
// src/commands/DeleteAccessLogSubscriptionCommand.ts
|
|
3681
3776
|
|
|
3682
3777
|
|
|
3683
3778
|
|
|
3684
|
-
var
|
|
3779
|
+
var DeleteAccessLogSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3685
3780
|
return [
|
|
3686
3781
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3687
3782
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3688
3783
|
];
|
|
3689
3784
|
}).s("MercuryControlPlane", "DeleteAccessLogSubscription", {}).n("VPCLatticeClient", "DeleteAccessLogSubscriptionCommand").f(void 0, void 0).ser(se_DeleteAccessLogSubscriptionCommand).de(de_DeleteAccessLogSubscriptionCommand).build() {
|
|
3785
|
+
static {
|
|
3786
|
+
__name(this, "DeleteAccessLogSubscriptionCommand");
|
|
3787
|
+
}
|
|
3690
3788
|
};
|
|
3691
|
-
__name(_DeleteAccessLogSubscriptionCommand, "DeleteAccessLogSubscriptionCommand");
|
|
3692
|
-
var DeleteAccessLogSubscriptionCommand = _DeleteAccessLogSubscriptionCommand;
|
|
3693
3789
|
|
|
3694
3790
|
// src/commands/DeleteAuthPolicyCommand.ts
|
|
3695
3791
|
|
|
3696
3792
|
|
|
3697
3793
|
|
|
3698
|
-
var
|
|
3794
|
+
var DeleteAuthPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3699
3795
|
return [
|
|
3700
3796
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3701
3797
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3702
3798
|
];
|
|
3703
3799
|
}).s("MercuryControlPlane", "DeleteAuthPolicy", {}).n("VPCLatticeClient", "DeleteAuthPolicyCommand").f(void 0, void 0).ser(se_DeleteAuthPolicyCommand).de(de_DeleteAuthPolicyCommand).build() {
|
|
3800
|
+
static {
|
|
3801
|
+
__name(this, "DeleteAuthPolicyCommand");
|
|
3802
|
+
}
|
|
3704
3803
|
};
|
|
3705
|
-
__name(_DeleteAuthPolicyCommand, "DeleteAuthPolicyCommand");
|
|
3706
|
-
var DeleteAuthPolicyCommand = _DeleteAuthPolicyCommand;
|
|
3707
3804
|
|
|
3708
3805
|
// src/commands/DeleteListenerCommand.ts
|
|
3709
3806
|
|
|
3710
3807
|
|
|
3711
3808
|
|
|
3712
|
-
var
|
|
3809
|
+
var DeleteListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3713
3810
|
return [
|
|
3714
3811
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3715
3812
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3716
3813
|
];
|
|
3717
3814
|
}).s("MercuryControlPlane", "DeleteListener", {}).n("VPCLatticeClient", "DeleteListenerCommand").f(void 0, void 0).ser(se_DeleteListenerCommand).de(de_DeleteListenerCommand).build() {
|
|
3815
|
+
static {
|
|
3816
|
+
__name(this, "DeleteListenerCommand");
|
|
3817
|
+
}
|
|
3718
3818
|
};
|
|
3719
|
-
__name(_DeleteListenerCommand, "DeleteListenerCommand");
|
|
3720
|
-
var DeleteListenerCommand = _DeleteListenerCommand;
|
|
3721
3819
|
|
|
3722
3820
|
// src/commands/DeleteResourceConfigurationCommand.ts
|
|
3723
3821
|
|
|
3724
3822
|
|
|
3725
3823
|
|
|
3726
|
-
var
|
|
3824
|
+
var DeleteResourceConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3727
3825
|
return [
|
|
3728
3826
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3729
3827
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3730
3828
|
];
|
|
3731
3829
|
}).s("MercuryControlPlane", "DeleteResourceConfiguration", {}).n("VPCLatticeClient", "DeleteResourceConfigurationCommand").f(void 0, void 0).ser(se_DeleteResourceConfigurationCommand).de(de_DeleteResourceConfigurationCommand).build() {
|
|
3830
|
+
static {
|
|
3831
|
+
__name(this, "DeleteResourceConfigurationCommand");
|
|
3832
|
+
}
|
|
3732
3833
|
};
|
|
3733
|
-
__name(_DeleteResourceConfigurationCommand, "DeleteResourceConfigurationCommand");
|
|
3734
|
-
var DeleteResourceConfigurationCommand = _DeleteResourceConfigurationCommand;
|
|
3735
3834
|
|
|
3736
3835
|
// src/commands/DeleteResourceEndpointAssociationCommand.ts
|
|
3737
3836
|
|
|
3738
3837
|
|
|
3739
3838
|
|
|
3740
|
-
var
|
|
3839
|
+
var DeleteResourceEndpointAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3741
3840
|
return [
|
|
3742
3841
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3743
3842
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3744
3843
|
];
|
|
3745
3844
|
}).s("MercuryControlPlane", "DeleteResourceEndpointAssociation", {}).n("VPCLatticeClient", "DeleteResourceEndpointAssociationCommand").f(void 0, void 0).ser(se_DeleteResourceEndpointAssociationCommand).de(de_DeleteResourceEndpointAssociationCommand).build() {
|
|
3845
|
+
static {
|
|
3846
|
+
__name(this, "DeleteResourceEndpointAssociationCommand");
|
|
3847
|
+
}
|
|
3746
3848
|
};
|
|
3747
|
-
__name(_DeleteResourceEndpointAssociationCommand, "DeleteResourceEndpointAssociationCommand");
|
|
3748
|
-
var DeleteResourceEndpointAssociationCommand = _DeleteResourceEndpointAssociationCommand;
|
|
3749
3849
|
|
|
3750
3850
|
// src/commands/DeleteResourceGatewayCommand.ts
|
|
3751
3851
|
|
|
3752
3852
|
|
|
3753
3853
|
|
|
3754
|
-
var
|
|
3854
|
+
var DeleteResourceGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3755
3855
|
return [
|
|
3756
3856
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3757
3857
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3758
3858
|
];
|
|
3759
3859
|
}).s("MercuryControlPlane", "DeleteResourceGateway", {}).n("VPCLatticeClient", "DeleteResourceGatewayCommand").f(void 0, void 0).ser(se_DeleteResourceGatewayCommand).de(de_DeleteResourceGatewayCommand).build() {
|
|
3860
|
+
static {
|
|
3861
|
+
__name(this, "DeleteResourceGatewayCommand");
|
|
3862
|
+
}
|
|
3760
3863
|
};
|
|
3761
|
-
__name(_DeleteResourceGatewayCommand, "DeleteResourceGatewayCommand");
|
|
3762
|
-
var DeleteResourceGatewayCommand = _DeleteResourceGatewayCommand;
|
|
3763
3864
|
|
|
3764
3865
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
3765
3866
|
|
|
3766
3867
|
|
|
3767
3868
|
|
|
3768
|
-
var
|
|
3869
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3769
3870
|
return [
|
|
3770
3871
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3771
3872
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3772
3873
|
];
|
|
3773
3874
|
}).s("MercuryControlPlane", "DeleteResourcePolicy", {}).n("VPCLatticeClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
3875
|
+
static {
|
|
3876
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
3877
|
+
}
|
|
3774
3878
|
};
|
|
3775
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
3776
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
3777
3879
|
|
|
3778
3880
|
// src/commands/DeleteRuleCommand.ts
|
|
3779
3881
|
|
|
3780
3882
|
|
|
3781
3883
|
|
|
3782
|
-
var
|
|
3884
|
+
var DeleteRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3783
3885
|
return [
|
|
3784
3886
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3785
3887
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3786
3888
|
];
|
|
3787
3889
|
}).s("MercuryControlPlane", "DeleteRule", {}).n("VPCLatticeClient", "DeleteRuleCommand").f(void 0, void 0).ser(se_DeleteRuleCommand).de(de_DeleteRuleCommand).build() {
|
|
3890
|
+
static {
|
|
3891
|
+
__name(this, "DeleteRuleCommand");
|
|
3892
|
+
}
|
|
3788
3893
|
};
|
|
3789
|
-
__name(_DeleteRuleCommand, "DeleteRuleCommand");
|
|
3790
|
-
var DeleteRuleCommand = _DeleteRuleCommand;
|
|
3791
3894
|
|
|
3792
3895
|
// src/commands/DeleteServiceCommand.ts
|
|
3793
3896
|
|
|
3794
3897
|
|
|
3795
3898
|
|
|
3796
|
-
var
|
|
3899
|
+
var DeleteServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3797
3900
|
return [
|
|
3798
3901
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3799
3902
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3800
3903
|
];
|
|
3801
3904
|
}).s("MercuryControlPlane", "DeleteService", {}).n("VPCLatticeClient", "DeleteServiceCommand").f(void 0, void 0).ser(se_DeleteServiceCommand).de(de_DeleteServiceCommand).build() {
|
|
3905
|
+
static {
|
|
3906
|
+
__name(this, "DeleteServiceCommand");
|
|
3907
|
+
}
|
|
3802
3908
|
};
|
|
3803
|
-
__name(_DeleteServiceCommand, "DeleteServiceCommand");
|
|
3804
|
-
var DeleteServiceCommand = _DeleteServiceCommand;
|
|
3805
3909
|
|
|
3806
3910
|
// src/commands/DeleteServiceNetworkCommand.ts
|
|
3807
3911
|
|
|
3808
3912
|
|
|
3809
3913
|
|
|
3810
|
-
var
|
|
3914
|
+
var DeleteServiceNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3811
3915
|
return [
|
|
3812
3916
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3813
3917
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3814
3918
|
];
|
|
3815
3919
|
}).s("MercuryControlPlane", "DeleteServiceNetwork", {}).n("VPCLatticeClient", "DeleteServiceNetworkCommand").f(void 0, void 0).ser(se_DeleteServiceNetworkCommand).de(de_DeleteServiceNetworkCommand).build() {
|
|
3920
|
+
static {
|
|
3921
|
+
__name(this, "DeleteServiceNetworkCommand");
|
|
3922
|
+
}
|
|
3816
3923
|
};
|
|
3817
|
-
__name(_DeleteServiceNetworkCommand, "DeleteServiceNetworkCommand");
|
|
3818
|
-
var DeleteServiceNetworkCommand = _DeleteServiceNetworkCommand;
|
|
3819
3924
|
|
|
3820
3925
|
// src/commands/DeleteServiceNetworkResourceAssociationCommand.ts
|
|
3821
3926
|
|
|
3822
3927
|
|
|
3823
3928
|
|
|
3824
|
-
var
|
|
3929
|
+
var DeleteServiceNetworkResourceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3825
3930
|
return [
|
|
3826
3931
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3827
3932
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3828
3933
|
];
|
|
3829
3934
|
}).s("MercuryControlPlane", "DeleteServiceNetworkResourceAssociation", {}).n("VPCLatticeClient", "DeleteServiceNetworkResourceAssociationCommand").f(void 0, void 0).ser(se_DeleteServiceNetworkResourceAssociationCommand).de(de_DeleteServiceNetworkResourceAssociationCommand).build() {
|
|
3935
|
+
static {
|
|
3936
|
+
__name(this, "DeleteServiceNetworkResourceAssociationCommand");
|
|
3937
|
+
}
|
|
3830
3938
|
};
|
|
3831
|
-
__name(_DeleteServiceNetworkResourceAssociationCommand, "DeleteServiceNetworkResourceAssociationCommand");
|
|
3832
|
-
var DeleteServiceNetworkResourceAssociationCommand = _DeleteServiceNetworkResourceAssociationCommand;
|
|
3833
3939
|
|
|
3834
3940
|
// src/commands/DeleteServiceNetworkServiceAssociationCommand.ts
|
|
3835
3941
|
|
|
3836
3942
|
|
|
3837
3943
|
|
|
3838
|
-
var
|
|
3944
|
+
var DeleteServiceNetworkServiceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3839
3945
|
return [
|
|
3840
3946
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3841
3947
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3842
3948
|
];
|
|
3843
3949
|
}).s("MercuryControlPlane", "DeleteServiceNetworkServiceAssociation", {}).n("VPCLatticeClient", "DeleteServiceNetworkServiceAssociationCommand").f(void 0, void 0).ser(se_DeleteServiceNetworkServiceAssociationCommand).de(de_DeleteServiceNetworkServiceAssociationCommand).build() {
|
|
3950
|
+
static {
|
|
3951
|
+
__name(this, "DeleteServiceNetworkServiceAssociationCommand");
|
|
3952
|
+
}
|
|
3844
3953
|
};
|
|
3845
|
-
__name(_DeleteServiceNetworkServiceAssociationCommand, "DeleteServiceNetworkServiceAssociationCommand");
|
|
3846
|
-
var DeleteServiceNetworkServiceAssociationCommand = _DeleteServiceNetworkServiceAssociationCommand;
|
|
3847
3954
|
|
|
3848
3955
|
// src/commands/DeleteServiceNetworkVpcAssociationCommand.ts
|
|
3849
3956
|
|
|
3850
3957
|
|
|
3851
3958
|
|
|
3852
|
-
var
|
|
3959
|
+
var DeleteServiceNetworkVpcAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3853
3960
|
return [
|
|
3854
3961
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3855
3962
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3856
3963
|
];
|
|
3857
3964
|
}).s("MercuryControlPlane", "DeleteServiceNetworkVpcAssociation", {}).n("VPCLatticeClient", "DeleteServiceNetworkVpcAssociationCommand").f(void 0, void 0).ser(se_DeleteServiceNetworkVpcAssociationCommand).de(de_DeleteServiceNetworkVpcAssociationCommand).build() {
|
|
3965
|
+
static {
|
|
3966
|
+
__name(this, "DeleteServiceNetworkVpcAssociationCommand");
|
|
3967
|
+
}
|
|
3858
3968
|
};
|
|
3859
|
-
__name(_DeleteServiceNetworkVpcAssociationCommand, "DeleteServiceNetworkVpcAssociationCommand");
|
|
3860
|
-
var DeleteServiceNetworkVpcAssociationCommand = _DeleteServiceNetworkVpcAssociationCommand;
|
|
3861
3969
|
|
|
3862
3970
|
// src/commands/DeleteTargetGroupCommand.ts
|
|
3863
3971
|
|
|
3864
3972
|
|
|
3865
3973
|
|
|
3866
|
-
var
|
|
3974
|
+
var DeleteTargetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3867
3975
|
return [
|
|
3868
3976
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3869
3977
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3870
3978
|
];
|
|
3871
3979
|
}).s("MercuryControlPlane", "DeleteTargetGroup", {}).n("VPCLatticeClient", "DeleteTargetGroupCommand").f(void 0, void 0).ser(se_DeleteTargetGroupCommand).de(de_DeleteTargetGroupCommand).build() {
|
|
3980
|
+
static {
|
|
3981
|
+
__name(this, "DeleteTargetGroupCommand");
|
|
3982
|
+
}
|
|
3872
3983
|
};
|
|
3873
|
-
__name(_DeleteTargetGroupCommand, "DeleteTargetGroupCommand");
|
|
3874
|
-
var DeleteTargetGroupCommand = _DeleteTargetGroupCommand;
|
|
3875
3984
|
|
|
3876
3985
|
// src/commands/DeregisterTargetsCommand.ts
|
|
3877
3986
|
|
|
3878
3987
|
|
|
3879
3988
|
|
|
3880
|
-
var
|
|
3989
|
+
var DeregisterTargetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3881
3990
|
return [
|
|
3882
3991
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3883
3992
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3884
3993
|
];
|
|
3885
3994
|
}).s("MercuryControlPlane", "DeregisterTargets", {}).n("VPCLatticeClient", "DeregisterTargetsCommand").f(void 0, void 0).ser(se_DeregisterTargetsCommand).de(de_DeregisterTargetsCommand).build() {
|
|
3995
|
+
static {
|
|
3996
|
+
__name(this, "DeregisterTargetsCommand");
|
|
3997
|
+
}
|
|
3886
3998
|
};
|
|
3887
|
-
__name(_DeregisterTargetsCommand, "DeregisterTargetsCommand");
|
|
3888
|
-
var DeregisterTargetsCommand = _DeregisterTargetsCommand;
|
|
3889
3999
|
|
|
3890
4000
|
// src/commands/GetAccessLogSubscriptionCommand.ts
|
|
3891
4001
|
|
|
3892
4002
|
|
|
3893
4003
|
|
|
3894
|
-
var
|
|
4004
|
+
var GetAccessLogSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3895
4005
|
return [
|
|
3896
4006
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3897
4007
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3898
4008
|
];
|
|
3899
4009
|
}).s("MercuryControlPlane", "GetAccessLogSubscription", {}).n("VPCLatticeClient", "GetAccessLogSubscriptionCommand").f(void 0, void 0).ser(se_GetAccessLogSubscriptionCommand).de(de_GetAccessLogSubscriptionCommand).build() {
|
|
4010
|
+
static {
|
|
4011
|
+
__name(this, "GetAccessLogSubscriptionCommand");
|
|
4012
|
+
}
|
|
3900
4013
|
};
|
|
3901
|
-
__name(_GetAccessLogSubscriptionCommand, "GetAccessLogSubscriptionCommand");
|
|
3902
|
-
var GetAccessLogSubscriptionCommand = _GetAccessLogSubscriptionCommand;
|
|
3903
4014
|
|
|
3904
4015
|
// src/commands/GetAuthPolicyCommand.ts
|
|
3905
4016
|
|
|
3906
4017
|
|
|
3907
4018
|
|
|
3908
|
-
var
|
|
4019
|
+
var GetAuthPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3909
4020
|
return [
|
|
3910
4021
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3911
4022
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3912
4023
|
];
|
|
3913
4024
|
}).s("MercuryControlPlane", "GetAuthPolicy", {}).n("VPCLatticeClient", "GetAuthPolicyCommand").f(void 0, void 0).ser(se_GetAuthPolicyCommand).de(de_GetAuthPolicyCommand).build() {
|
|
4025
|
+
static {
|
|
4026
|
+
__name(this, "GetAuthPolicyCommand");
|
|
4027
|
+
}
|
|
3914
4028
|
};
|
|
3915
|
-
__name(_GetAuthPolicyCommand, "GetAuthPolicyCommand");
|
|
3916
|
-
var GetAuthPolicyCommand = _GetAuthPolicyCommand;
|
|
3917
4029
|
|
|
3918
4030
|
// src/commands/GetListenerCommand.ts
|
|
3919
4031
|
|
|
3920
4032
|
|
|
3921
4033
|
|
|
3922
|
-
var
|
|
4034
|
+
var GetListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3923
4035
|
return [
|
|
3924
4036
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3925
4037
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3926
4038
|
];
|
|
3927
4039
|
}).s("MercuryControlPlane", "GetListener", {}).n("VPCLatticeClient", "GetListenerCommand").f(void 0, void 0).ser(se_GetListenerCommand).de(de_GetListenerCommand).build() {
|
|
4040
|
+
static {
|
|
4041
|
+
__name(this, "GetListenerCommand");
|
|
4042
|
+
}
|
|
3928
4043
|
};
|
|
3929
|
-
__name(_GetListenerCommand, "GetListenerCommand");
|
|
3930
|
-
var GetListenerCommand = _GetListenerCommand;
|
|
3931
4044
|
|
|
3932
4045
|
// src/commands/GetResourceConfigurationCommand.ts
|
|
3933
4046
|
|
|
3934
4047
|
|
|
3935
4048
|
|
|
3936
|
-
var
|
|
4049
|
+
var GetResourceConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3937
4050
|
return [
|
|
3938
4051
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3939
4052
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3940
4053
|
];
|
|
3941
4054
|
}).s("MercuryControlPlane", "GetResourceConfiguration", {}).n("VPCLatticeClient", "GetResourceConfigurationCommand").f(void 0, void 0).ser(se_GetResourceConfigurationCommand).de(de_GetResourceConfigurationCommand).build() {
|
|
4055
|
+
static {
|
|
4056
|
+
__name(this, "GetResourceConfigurationCommand");
|
|
4057
|
+
}
|
|
3942
4058
|
};
|
|
3943
|
-
__name(_GetResourceConfigurationCommand, "GetResourceConfigurationCommand");
|
|
3944
|
-
var GetResourceConfigurationCommand = _GetResourceConfigurationCommand;
|
|
3945
4059
|
|
|
3946
4060
|
// src/commands/GetResourceGatewayCommand.ts
|
|
3947
4061
|
|
|
3948
4062
|
|
|
3949
4063
|
|
|
3950
|
-
var
|
|
4064
|
+
var GetResourceGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3951
4065
|
return [
|
|
3952
4066
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3953
4067
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3954
4068
|
];
|
|
3955
4069
|
}).s("MercuryControlPlane", "GetResourceGateway", {}).n("VPCLatticeClient", "GetResourceGatewayCommand").f(void 0, void 0).ser(se_GetResourceGatewayCommand).de(de_GetResourceGatewayCommand).build() {
|
|
4070
|
+
static {
|
|
4071
|
+
__name(this, "GetResourceGatewayCommand");
|
|
4072
|
+
}
|
|
3956
4073
|
};
|
|
3957
|
-
__name(_GetResourceGatewayCommand, "GetResourceGatewayCommand");
|
|
3958
|
-
var GetResourceGatewayCommand = _GetResourceGatewayCommand;
|
|
3959
4074
|
|
|
3960
4075
|
// src/commands/GetResourcePolicyCommand.ts
|
|
3961
4076
|
|
|
3962
4077
|
|
|
3963
4078
|
|
|
3964
|
-
var
|
|
4079
|
+
var GetResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3965
4080
|
return [
|
|
3966
4081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3967
4082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3968
4083
|
];
|
|
3969
4084
|
}).s("MercuryControlPlane", "GetResourcePolicy", {}).n("VPCLatticeClient", "GetResourcePolicyCommand").f(void 0, void 0).ser(se_GetResourcePolicyCommand).de(de_GetResourcePolicyCommand).build() {
|
|
4085
|
+
static {
|
|
4086
|
+
__name(this, "GetResourcePolicyCommand");
|
|
4087
|
+
}
|
|
3970
4088
|
};
|
|
3971
|
-
__name(_GetResourcePolicyCommand, "GetResourcePolicyCommand");
|
|
3972
|
-
var GetResourcePolicyCommand = _GetResourcePolicyCommand;
|
|
3973
4089
|
|
|
3974
4090
|
// src/commands/GetRuleCommand.ts
|
|
3975
4091
|
|
|
3976
4092
|
|
|
3977
4093
|
|
|
3978
|
-
var
|
|
4094
|
+
var GetRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3979
4095
|
return [
|
|
3980
4096
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3981
4097
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3982
4098
|
];
|
|
3983
4099
|
}).s("MercuryControlPlane", "GetRule", {}).n("VPCLatticeClient", "GetRuleCommand").f(void 0, void 0).ser(se_GetRuleCommand).de(de_GetRuleCommand).build() {
|
|
4100
|
+
static {
|
|
4101
|
+
__name(this, "GetRuleCommand");
|
|
4102
|
+
}
|
|
3984
4103
|
};
|
|
3985
|
-
__name(_GetRuleCommand, "GetRuleCommand");
|
|
3986
|
-
var GetRuleCommand = _GetRuleCommand;
|
|
3987
4104
|
|
|
3988
4105
|
// src/commands/GetServiceCommand.ts
|
|
3989
4106
|
|
|
3990
4107
|
|
|
3991
4108
|
|
|
3992
|
-
var
|
|
4109
|
+
var GetServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3993
4110
|
return [
|
|
3994
4111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3995
4112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3996
4113
|
];
|
|
3997
4114
|
}).s("MercuryControlPlane", "GetService", {}).n("VPCLatticeClient", "GetServiceCommand").f(void 0, void 0).ser(se_GetServiceCommand).de(de_GetServiceCommand).build() {
|
|
4115
|
+
static {
|
|
4116
|
+
__name(this, "GetServiceCommand");
|
|
4117
|
+
}
|
|
3998
4118
|
};
|
|
3999
|
-
__name(_GetServiceCommand, "GetServiceCommand");
|
|
4000
|
-
var GetServiceCommand = _GetServiceCommand;
|
|
4001
4119
|
|
|
4002
4120
|
// src/commands/GetServiceNetworkCommand.ts
|
|
4003
4121
|
|
|
4004
4122
|
|
|
4005
4123
|
|
|
4006
|
-
var
|
|
4124
|
+
var GetServiceNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4007
4125
|
return [
|
|
4008
4126
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4009
4127
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4010
4128
|
];
|
|
4011
4129
|
}).s("MercuryControlPlane", "GetServiceNetwork", {}).n("VPCLatticeClient", "GetServiceNetworkCommand").f(void 0, void 0).ser(se_GetServiceNetworkCommand).de(de_GetServiceNetworkCommand).build() {
|
|
4130
|
+
static {
|
|
4131
|
+
__name(this, "GetServiceNetworkCommand");
|
|
4132
|
+
}
|
|
4012
4133
|
};
|
|
4013
|
-
__name(_GetServiceNetworkCommand, "GetServiceNetworkCommand");
|
|
4014
|
-
var GetServiceNetworkCommand = _GetServiceNetworkCommand;
|
|
4015
4134
|
|
|
4016
4135
|
// src/commands/GetServiceNetworkResourceAssociationCommand.ts
|
|
4017
4136
|
|
|
4018
4137
|
|
|
4019
4138
|
|
|
4020
|
-
var
|
|
4139
|
+
var GetServiceNetworkResourceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4021
4140
|
return [
|
|
4022
4141
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4023
4142
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4024
4143
|
];
|
|
4025
4144
|
}).s("MercuryControlPlane", "GetServiceNetworkResourceAssociation", {}).n("VPCLatticeClient", "GetServiceNetworkResourceAssociationCommand").f(void 0, void 0).ser(se_GetServiceNetworkResourceAssociationCommand).de(de_GetServiceNetworkResourceAssociationCommand).build() {
|
|
4145
|
+
static {
|
|
4146
|
+
__name(this, "GetServiceNetworkResourceAssociationCommand");
|
|
4147
|
+
}
|
|
4026
4148
|
};
|
|
4027
|
-
__name(_GetServiceNetworkResourceAssociationCommand, "GetServiceNetworkResourceAssociationCommand");
|
|
4028
|
-
var GetServiceNetworkResourceAssociationCommand = _GetServiceNetworkResourceAssociationCommand;
|
|
4029
4149
|
|
|
4030
4150
|
// src/commands/GetServiceNetworkServiceAssociationCommand.ts
|
|
4031
4151
|
|
|
4032
4152
|
|
|
4033
4153
|
|
|
4034
|
-
var
|
|
4154
|
+
var GetServiceNetworkServiceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4035
4155
|
return [
|
|
4036
4156
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4037
4157
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4038
4158
|
];
|
|
4039
4159
|
}).s("MercuryControlPlane", "GetServiceNetworkServiceAssociation", {}).n("VPCLatticeClient", "GetServiceNetworkServiceAssociationCommand").f(void 0, void 0).ser(se_GetServiceNetworkServiceAssociationCommand).de(de_GetServiceNetworkServiceAssociationCommand).build() {
|
|
4160
|
+
static {
|
|
4161
|
+
__name(this, "GetServiceNetworkServiceAssociationCommand");
|
|
4162
|
+
}
|
|
4040
4163
|
};
|
|
4041
|
-
__name(_GetServiceNetworkServiceAssociationCommand, "GetServiceNetworkServiceAssociationCommand");
|
|
4042
|
-
var GetServiceNetworkServiceAssociationCommand = _GetServiceNetworkServiceAssociationCommand;
|
|
4043
4164
|
|
|
4044
4165
|
// src/commands/GetServiceNetworkVpcAssociationCommand.ts
|
|
4045
4166
|
|
|
4046
4167
|
|
|
4047
4168
|
|
|
4048
|
-
var
|
|
4169
|
+
var GetServiceNetworkVpcAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4049
4170
|
return [
|
|
4050
4171
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4051
4172
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4052
4173
|
];
|
|
4053
4174
|
}).s("MercuryControlPlane", "GetServiceNetworkVpcAssociation", {}).n("VPCLatticeClient", "GetServiceNetworkVpcAssociationCommand").f(void 0, void 0).ser(se_GetServiceNetworkVpcAssociationCommand).de(de_GetServiceNetworkVpcAssociationCommand).build() {
|
|
4175
|
+
static {
|
|
4176
|
+
__name(this, "GetServiceNetworkVpcAssociationCommand");
|
|
4177
|
+
}
|
|
4054
4178
|
};
|
|
4055
|
-
__name(_GetServiceNetworkVpcAssociationCommand, "GetServiceNetworkVpcAssociationCommand");
|
|
4056
|
-
var GetServiceNetworkVpcAssociationCommand = _GetServiceNetworkVpcAssociationCommand;
|
|
4057
4179
|
|
|
4058
4180
|
// src/commands/GetTargetGroupCommand.ts
|
|
4059
4181
|
|
|
4060
4182
|
|
|
4061
4183
|
|
|
4062
|
-
var
|
|
4184
|
+
var GetTargetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4063
4185
|
return [
|
|
4064
4186
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4065
4187
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4066
4188
|
];
|
|
4067
4189
|
}).s("MercuryControlPlane", "GetTargetGroup", {}).n("VPCLatticeClient", "GetTargetGroupCommand").f(void 0, void 0).ser(se_GetTargetGroupCommand).de(de_GetTargetGroupCommand).build() {
|
|
4190
|
+
static {
|
|
4191
|
+
__name(this, "GetTargetGroupCommand");
|
|
4192
|
+
}
|
|
4068
4193
|
};
|
|
4069
|
-
__name(_GetTargetGroupCommand, "GetTargetGroupCommand");
|
|
4070
|
-
var GetTargetGroupCommand = _GetTargetGroupCommand;
|
|
4071
4194
|
|
|
4072
4195
|
// src/commands/ListAccessLogSubscriptionsCommand.ts
|
|
4073
4196
|
|
|
4074
4197
|
|
|
4075
4198
|
|
|
4076
|
-
var
|
|
4199
|
+
var ListAccessLogSubscriptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4077
4200
|
return [
|
|
4078
4201
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4079
4202
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4080
4203
|
];
|
|
4081
4204
|
}).s("MercuryControlPlane", "ListAccessLogSubscriptions", {}).n("VPCLatticeClient", "ListAccessLogSubscriptionsCommand").f(void 0, void 0).ser(se_ListAccessLogSubscriptionsCommand).de(de_ListAccessLogSubscriptionsCommand).build() {
|
|
4205
|
+
static {
|
|
4206
|
+
__name(this, "ListAccessLogSubscriptionsCommand");
|
|
4207
|
+
}
|
|
4082
4208
|
};
|
|
4083
|
-
__name(_ListAccessLogSubscriptionsCommand, "ListAccessLogSubscriptionsCommand");
|
|
4084
|
-
var ListAccessLogSubscriptionsCommand = _ListAccessLogSubscriptionsCommand;
|
|
4085
4209
|
|
|
4086
4210
|
// src/commands/ListListenersCommand.ts
|
|
4087
4211
|
|
|
4088
4212
|
|
|
4089
4213
|
|
|
4090
|
-
var
|
|
4214
|
+
var ListListenersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4091
4215
|
return [
|
|
4092
4216
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4093
4217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4094
4218
|
];
|
|
4095
4219
|
}).s("MercuryControlPlane", "ListListeners", {}).n("VPCLatticeClient", "ListListenersCommand").f(void 0, void 0).ser(se_ListListenersCommand).de(de_ListListenersCommand).build() {
|
|
4220
|
+
static {
|
|
4221
|
+
__name(this, "ListListenersCommand");
|
|
4222
|
+
}
|
|
4096
4223
|
};
|
|
4097
|
-
__name(_ListListenersCommand, "ListListenersCommand");
|
|
4098
|
-
var ListListenersCommand = _ListListenersCommand;
|
|
4099
4224
|
|
|
4100
4225
|
// src/commands/ListResourceConfigurationsCommand.ts
|
|
4101
4226
|
|
|
4102
4227
|
|
|
4103
4228
|
|
|
4104
|
-
var
|
|
4229
|
+
var ListResourceConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4105
4230
|
return [
|
|
4106
4231
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4107
4232
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4108
4233
|
];
|
|
4109
4234
|
}).s("MercuryControlPlane", "ListResourceConfigurations", {}).n("VPCLatticeClient", "ListResourceConfigurationsCommand").f(void 0, void 0).ser(se_ListResourceConfigurationsCommand).de(de_ListResourceConfigurationsCommand).build() {
|
|
4235
|
+
static {
|
|
4236
|
+
__name(this, "ListResourceConfigurationsCommand");
|
|
4237
|
+
}
|
|
4110
4238
|
};
|
|
4111
|
-
__name(_ListResourceConfigurationsCommand, "ListResourceConfigurationsCommand");
|
|
4112
|
-
var ListResourceConfigurationsCommand = _ListResourceConfigurationsCommand;
|
|
4113
4239
|
|
|
4114
4240
|
// src/commands/ListResourceEndpointAssociationsCommand.ts
|
|
4115
4241
|
|
|
4116
4242
|
|
|
4117
4243
|
|
|
4118
|
-
var
|
|
4244
|
+
var ListResourceEndpointAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4119
4245
|
return [
|
|
4120
4246
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4121
4247
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4122
4248
|
];
|
|
4123
4249
|
}).s("MercuryControlPlane", "ListResourceEndpointAssociations", {}).n("VPCLatticeClient", "ListResourceEndpointAssociationsCommand").f(void 0, void 0).ser(se_ListResourceEndpointAssociationsCommand).de(de_ListResourceEndpointAssociationsCommand).build() {
|
|
4250
|
+
static {
|
|
4251
|
+
__name(this, "ListResourceEndpointAssociationsCommand");
|
|
4252
|
+
}
|
|
4124
4253
|
};
|
|
4125
|
-
__name(_ListResourceEndpointAssociationsCommand, "ListResourceEndpointAssociationsCommand");
|
|
4126
|
-
var ListResourceEndpointAssociationsCommand = _ListResourceEndpointAssociationsCommand;
|
|
4127
4254
|
|
|
4128
4255
|
// src/commands/ListResourceGatewaysCommand.ts
|
|
4129
4256
|
|
|
4130
4257
|
|
|
4131
4258
|
|
|
4132
|
-
var
|
|
4259
|
+
var ListResourceGatewaysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4133
4260
|
return [
|
|
4134
4261
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4135
4262
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4136
4263
|
];
|
|
4137
4264
|
}).s("MercuryControlPlane", "ListResourceGateways", {}).n("VPCLatticeClient", "ListResourceGatewaysCommand").f(void 0, void 0).ser(se_ListResourceGatewaysCommand).de(de_ListResourceGatewaysCommand).build() {
|
|
4265
|
+
static {
|
|
4266
|
+
__name(this, "ListResourceGatewaysCommand");
|
|
4267
|
+
}
|
|
4138
4268
|
};
|
|
4139
|
-
__name(_ListResourceGatewaysCommand, "ListResourceGatewaysCommand");
|
|
4140
|
-
var ListResourceGatewaysCommand = _ListResourceGatewaysCommand;
|
|
4141
4269
|
|
|
4142
4270
|
// src/commands/ListRulesCommand.ts
|
|
4143
4271
|
|
|
4144
4272
|
|
|
4145
4273
|
|
|
4146
|
-
var
|
|
4274
|
+
var ListRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4147
4275
|
return [
|
|
4148
4276
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4149
4277
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4150
4278
|
];
|
|
4151
4279
|
}).s("MercuryControlPlane", "ListRules", {}).n("VPCLatticeClient", "ListRulesCommand").f(void 0, void 0).ser(se_ListRulesCommand).de(de_ListRulesCommand).build() {
|
|
4280
|
+
static {
|
|
4281
|
+
__name(this, "ListRulesCommand");
|
|
4282
|
+
}
|
|
4152
4283
|
};
|
|
4153
|
-
__name(_ListRulesCommand, "ListRulesCommand");
|
|
4154
|
-
var ListRulesCommand = _ListRulesCommand;
|
|
4155
4284
|
|
|
4156
4285
|
// src/commands/ListServiceNetworkResourceAssociationsCommand.ts
|
|
4157
4286
|
|
|
4158
4287
|
|
|
4159
4288
|
|
|
4160
|
-
var
|
|
4289
|
+
var ListServiceNetworkResourceAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4161
4290
|
return [
|
|
4162
4291
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4163
4292
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4164
4293
|
];
|
|
4165
4294
|
}).s("MercuryControlPlane", "ListServiceNetworkResourceAssociations", {}).n("VPCLatticeClient", "ListServiceNetworkResourceAssociationsCommand").f(void 0, void 0).ser(se_ListServiceNetworkResourceAssociationsCommand).de(de_ListServiceNetworkResourceAssociationsCommand).build() {
|
|
4295
|
+
static {
|
|
4296
|
+
__name(this, "ListServiceNetworkResourceAssociationsCommand");
|
|
4297
|
+
}
|
|
4166
4298
|
};
|
|
4167
|
-
__name(_ListServiceNetworkResourceAssociationsCommand, "ListServiceNetworkResourceAssociationsCommand");
|
|
4168
|
-
var ListServiceNetworkResourceAssociationsCommand = _ListServiceNetworkResourceAssociationsCommand;
|
|
4169
4299
|
|
|
4170
4300
|
// src/commands/ListServiceNetworksCommand.ts
|
|
4171
4301
|
|
|
4172
4302
|
|
|
4173
4303
|
|
|
4174
|
-
var
|
|
4304
|
+
var ListServiceNetworksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4175
4305
|
return [
|
|
4176
4306
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4177
4307
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4178
4308
|
];
|
|
4179
4309
|
}).s("MercuryControlPlane", "ListServiceNetworks", {}).n("VPCLatticeClient", "ListServiceNetworksCommand").f(void 0, void 0).ser(se_ListServiceNetworksCommand).de(de_ListServiceNetworksCommand).build() {
|
|
4310
|
+
static {
|
|
4311
|
+
__name(this, "ListServiceNetworksCommand");
|
|
4312
|
+
}
|
|
4180
4313
|
};
|
|
4181
|
-
__name(_ListServiceNetworksCommand, "ListServiceNetworksCommand");
|
|
4182
|
-
var ListServiceNetworksCommand = _ListServiceNetworksCommand;
|
|
4183
4314
|
|
|
4184
4315
|
// src/commands/ListServiceNetworkServiceAssociationsCommand.ts
|
|
4185
4316
|
|
|
4186
4317
|
|
|
4187
4318
|
|
|
4188
|
-
var
|
|
4319
|
+
var ListServiceNetworkServiceAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4189
4320
|
return [
|
|
4190
4321
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4191
4322
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4192
4323
|
];
|
|
4193
4324
|
}).s("MercuryControlPlane", "ListServiceNetworkServiceAssociations", {}).n("VPCLatticeClient", "ListServiceNetworkServiceAssociationsCommand").f(void 0, void 0).ser(se_ListServiceNetworkServiceAssociationsCommand).de(de_ListServiceNetworkServiceAssociationsCommand).build() {
|
|
4325
|
+
static {
|
|
4326
|
+
__name(this, "ListServiceNetworkServiceAssociationsCommand");
|
|
4327
|
+
}
|
|
4194
4328
|
};
|
|
4195
|
-
__name(_ListServiceNetworkServiceAssociationsCommand, "ListServiceNetworkServiceAssociationsCommand");
|
|
4196
|
-
var ListServiceNetworkServiceAssociationsCommand = _ListServiceNetworkServiceAssociationsCommand;
|
|
4197
4329
|
|
|
4198
4330
|
// src/commands/ListServiceNetworkVpcAssociationsCommand.ts
|
|
4199
4331
|
|
|
4200
4332
|
|
|
4201
4333
|
|
|
4202
|
-
var
|
|
4334
|
+
var ListServiceNetworkVpcAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4203
4335
|
return [
|
|
4204
4336
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4205
4337
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4206
4338
|
];
|
|
4207
4339
|
}).s("MercuryControlPlane", "ListServiceNetworkVpcAssociations", {}).n("VPCLatticeClient", "ListServiceNetworkVpcAssociationsCommand").f(void 0, void 0).ser(se_ListServiceNetworkVpcAssociationsCommand).de(de_ListServiceNetworkVpcAssociationsCommand).build() {
|
|
4340
|
+
static {
|
|
4341
|
+
__name(this, "ListServiceNetworkVpcAssociationsCommand");
|
|
4342
|
+
}
|
|
4208
4343
|
};
|
|
4209
|
-
__name(_ListServiceNetworkVpcAssociationsCommand, "ListServiceNetworkVpcAssociationsCommand");
|
|
4210
|
-
var ListServiceNetworkVpcAssociationsCommand = _ListServiceNetworkVpcAssociationsCommand;
|
|
4211
4344
|
|
|
4212
4345
|
// src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts
|
|
4213
4346
|
|
|
4214
4347
|
|
|
4215
4348
|
|
|
4216
|
-
var
|
|
4349
|
+
var ListServiceNetworkVpcEndpointAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4217
4350
|
return [
|
|
4218
4351
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4219
4352
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4220
4353
|
];
|
|
4221
4354
|
}).s("MercuryControlPlane", "ListServiceNetworkVpcEndpointAssociations", {}).n("VPCLatticeClient", "ListServiceNetworkVpcEndpointAssociationsCommand").f(void 0, void 0).ser(se_ListServiceNetworkVpcEndpointAssociationsCommand).de(de_ListServiceNetworkVpcEndpointAssociationsCommand).build() {
|
|
4355
|
+
static {
|
|
4356
|
+
__name(this, "ListServiceNetworkVpcEndpointAssociationsCommand");
|
|
4357
|
+
}
|
|
4222
4358
|
};
|
|
4223
|
-
__name(_ListServiceNetworkVpcEndpointAssociationsCommand, "ListServiceNetworkVpcEndpointAssociationsCommand");
|
|
4224
|
-
var ListServiceNetworkVpcEndpointAssociationsCommand = _ListServiceNetworkVpcEndpointAssociationsCommand;
|
|
4225
4359
|
|
|
4226
4360
|
// src/commands/ListServicesCommand.ts
|
|
4227
4361
|
|
|
4228
4362
|
|
|
4229
4363
|
|
|
4230
|
-
var
|
|
4364
|
+
var ListServicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4231
4365
|
return [
|
|
4232
4366
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4233
4367
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4234
4368
|
];
|
|
4235
4369
|
}).s("MercuryControlPlane", "ListServices", {}).n("VPCLatticeClient", "ListServicesCommand").f(void 0, void 0).ser(se_ListServicesCommand).de(de_ListServicesCommand).build() {
|
|
4370
|
+
static {
|
|
4371
|
+
__name(this, "ListServicesCommand");
|
|
4372
|
+
}
|
|
4236
4373
|
};
|
|
4237
|
-
__name(_ListServicesCommand, "ListServicesCommand");
|
|
4238
|
-
var ListServicesCommand = _ListServicesCommand;
|
|
4239
4374
|
|
|
4240
4375
|
// src/commands/ListTagsForResourceCommand.ts
|
|
4241
4376
|
|
|
4242
4377
|
|
|
4243
4378
|
|
|
4244
|
-
var
|
|
4379
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4245
4380
|
return [
|
|
4246
4381
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4247
4382
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4248
4383
|
];
|
|
4249
4384
|
}).s("MercuryControlPlane", "ListTagsForResource", {}).n("VPCLatticeClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4385
|
+
static {
|
|
4386
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4387
|
+
}
|
|
4250
4388
|
};
|
|
4251
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
4252
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
4253
4389
|
|
|
4254
4390
|
// src/commands/ListTargetGroupsCommand.ts
|
|
4255
4391
|
|
|
4256
4392
|
|
|
4257
4393
|
|
|
4258
|
-
var
|
|
4394
|
+
var ListTargetGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4259
4395
|
return [
|
|
4260
4396
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4261
4397
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4262
4398
|
];
|
|
4263
4399
|
}).s("MercuryControlPlane", "ListTargetGroups", {}).n("VPCLatticeClient", "ListTargetGroupsCommand").f(void 0, void 0).ser(se_ListTargetGroupsCommand).de(de_ListTargetGroupsCommand).build() {
|
|
4400
|
+
static {
|
|
4401
|
+
__name(this, "ListTargetGroupsCommand");
|
|
4402
|
+
}
|
|
4264
4403
|
};
|
|
4265
|
-
__name(_ListTargetGroupsCommand, "ListTargetGroupsCommand");
|
|
4266
|
-
var ListTargetGroupsCommand = _ListTargetGroupsCommand;
|
|
4267
4404
|
|
|
4268
4405
|
// src/commands/ListTargetsCommand.ts
|
|
4269
4406
|
|
|
4270
4407
|
|
|
4271
4408
|
|
|
4272
|
-
var
|
|
4409
|
+
var ListTargetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4273
4410
|
return [
|
|
4274
4411
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4275
4412
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4276
4413
|
];
|
|
4277
4414
|
}).s("MercuryControlPlane", "ListTargets", {}).n("VPCLatticeClient", "ListTargetsCommand").f(void 0, void 0).ser(se_ListTargetsCommand).de(de_ListTargetsCommand).build() {
|
|
4415
|
+
static {
|
|
4416
|
+
__name(this, "ListTargetsCommand");
|
|
4417
|
+
}
|
|
4278
4418
|
};
|
|
4279
|
-
__name(_ListTargetsCommand, "ListTargetsCommand");
|
|
4280
|
-
var ListTargetsCommand = _ListTargetsCommand;
|
|
4281
4419
|
|
|
4282
4420
|
// src/commands/PutAuthPolicyCommand.ts
|
|
4283
4421
|
|
|
4284
4422
|
|
|
4285
4423
|
|
|
4286
|
-
var
|
|
4424
|
+
var PutAuthPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4287
4425
|
return [
|
|
4288
4426
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4289
4427
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4290
4428
|
];
|
|
4291
4429
|
}).s("MercuryControlPlane", "PutAuthPolicy", {}).n("VPCLatticeClient", "PutAuthPolicyCommand").f(void 0, void 0).ser(se_PutAuthPolicyCommand).de(de_PutAuthPolicyCommand).build() {
|
|
4430
|
+
static {
|
|
4431
|
+
__name(this, "PutAuthPolicyCommand");
|
|
4432
|
+
}
|
|
4292
4433
|
};
|
|
4293
|
-
__name(_PutAuthPolicyCommand, "PutAuthPolicyCommand");
|
|
4294
|
-
var PutAuthPolicyCommand = _PutAuthPolicyCommand;
|
|
4295
4434
|
|
|
4296
4435
|
// src/commands/PutResourcePolicyCommand.ts
|
|
4297
4436
|
|
|
4298
4437
|
|
|
4299
4438
|
|
|
4300
|
-
var
|
|
4439
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4301
4440
|
return [
|
|
4302
4441
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4303
4442
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4304
4443
|
];
|
|
4305
4444
|
}).s("MercuryControlPlane", "PutResourcePolicy", {}).n("VPCLatticeClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
4445
|
+
static {
|
|
4446
|
+
__name(this, "PutResourcePolicyCommand");
|
|
4447
|
+
}
|
|
4306
4448
|
};
|
|
4307
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
4308
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
4309
4449
|
|
|
4310
4450
|
// src/commands/RegisterTargetsCommand.ts
|
|
4311
4451
|
|
|
4312
4452
|
|
|
4313
4453
|
|
|
4314
|
-
var
|
|
4454
|
+
var RegisterTargetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4315
4455
|
return [
|
|
4316
4456
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4317
4457
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4318
4458
|
];
|
|
4319
4459
|
}).s("MercuryControlPlane", "RegisterTargets", {}).n("VPCLatticeClient", "RegisterTargetsCommand").f(void 0, void 0).ser(se_RegisterTargetsCommand).de(de_RegisterTargetsCommand).build() {
|
|
4460
|
+
static {
|
|
4461
|
+
__name(this, "RegisterTargetsCommand");
|
|
4462
|
+
}
|
|
4320
4463
|
};
|
|
4321
|
-
__name(_RegisterTargetsCommand, "RegisterTargetsCommand");
|
|
4322
|
-
var RegisterTargetsCommand = _RegisterTargetsCommand;
|
|
4323
4464
|
|
|
4324
4465
|
// src/commands/TagResourceCommand.ts
|
|
4325
4466
|
|
|
4326
4467
|
|
|
4327
4468
|
|
|
4328
|
-
var
|
|
4469
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4329
4470
|
return [
|
|
4330
4471
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4331
4472
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4332
4473
|
];
|
|
4333
4474
|
}).s("MercuryControlPlane", "TagResource", {}).n("VPCLatticeClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4475
|
+
static {
|
|
4476
|
+
__name(this, "TagResourceCommand");
|
|
4477
|
+
}
|
|
4334
4478
|
};
|
|
4335
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4336
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4337
4479
|
|
|
4338
4480
|
// src/commands/UntagResourceCommand.ts
|
|
4339
4481
|
|
|
4340
4482
|
|
|
4341
4483
|
|
|
4342
|
-
var
|
|
4484
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4343
4485
|
return [
|
|
4344
4486
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4345
4487
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4346
4488
|
];
|
|
4347
4489
|
}).s("MercuryControlPlane", "UntagResource", {}).n("VPCLatticeClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4490
|
+
static {
|
|
4491
|
+
__name(this, "UntagResourceCommand");
|
|
4492
|
+
}
|
|
4348
4493
|
};
|
|
4349
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4350
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4351
4494
|
|
|
4352
4495
|
// src/commands/UpdateAccessLogSubscriptionCommand.ts
|
|
4353
4496
|
|
|
4354
4497
|
|
|
4355
4498
|
|
|
4356
|
-
var
|
|
4499
|
+
var UpdateAccessLogSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4357
4500
|
return [
|
|
4358
4501
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4359
4502
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4360
4503
|
];
|
|
4361
4504
|
}).s("MercuryControlPlane", "UpdateAccessLogSubscription", {}).n("VPCLatticeClient", "UpdateAccessLogSubscriptionCommand").f(void 0, void 0).ser(se_UpdateAccessLogSubscriptionCommand).de(de_UpdateAccessLogSubscriptionCommand).build() {
|
|
4505
|
+
static {
|
|
4506
|
+
__name(this, "UpdateAccessLogSubscriptionCommand");
|
|
4507
|
+
}
|
|
4362
4508
|
};
|
|
4363
|
-
__name(_UpdateAccessLogSubscriptionCommand, "UpdateAccessLogSubscriptionCommand");
|
|
4364
|
-
var UpdateAccessLogSubscriptionCommand = _UpdateAccessLogSubscriptionCommand;
|
|
4365
4509
|
|
|
4366
4510
|
// src/commands/UpdateListenerCommand.ts
|
|
4367
4511
|
|
|
4368
4512
|
|
|
4369
4513
|
|
|
4370
|
-
var
|
|
4514
|
+
var UpdateListenerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4371
4515
|
return [
|
|
4372
4516
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4373
4517
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4374
4518
|
];
|
|
4375
4519
|
}).s("MercuryControlPlane", "UpdateListener", {}).n("VPCLatticeClient", "UpdateListenerCommand").f(void 0, void 0).ser(se_UpdateListenerCommand).de(de_UpdateListenerCommand).build() {
|
|
4520
|
+
static {
|
|
4521
|
+
__name(this, "UpdateListenerCommand");
|
|
4522
|
+
}
|
|
4376
4523
|
};
|
|
4377
|
-
__name(_UpdateListenerCommand, "UpdateListenerCommand");
|
|
4378
|
-
var UpdateListenerCommand = _UpdateListenerCommand;
|
|
4379
4524
|
|
|
4380
4525
|
// src/commands/UpdateResourceConfigurationCommand.ts
|
|
4381
4526
|
|
|
4382
4527
|
|
|
4383
4528
|
|
|
4384
|
-
var
|
|
4529
|
+
var UpdateResourceConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4385
4530
|
return [
|
|
4386
4531
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4387
4532
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4388
4533
|
];
|
|
4389
4534
|
}).s("MercuryControlPlane", "UpdateResourceConfiguration", {}).n("VPCLatticeClient", "UpdateResourceConfigurationCommand").f(void 0, void 0).ser(se_UpdateResourceConfigurationCommand).de(de_UpdateResourceConfigurationCommand).build() {
|
|
4535
|
+
static {
|
|
4536
|
+
__name(this, "UpdateResourceConfigurationCommand");
|
|
4537
|
+
}
|
|
4390
4538
|
};
|
|
4391
|
-
__name(_UpdateResourceConfigurationCommand, "UpdateResourceConfigurationCommand");
|
|
4392
|
-
var UpdateResourceConfigurationCommand = _UpdateResourceConfigurationCommand;
|
|
4393
4539
|
|
|
4394
4540
|
// src/commands/UpdateResourceGatewayCommand.ts
|
|
4395
4541
|
|
|
4396
4542
|
|
|
4397
4543
|
|
|
4398
|
-
var
|
|
4544
|
+
var UpdateResourceGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4399
4545
|
return [
|
|
4400
4546
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4401
4547
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4402
4548
|
];
|
|
4403
4549
|
}).s("MercuryControlPlane", "UpdateResourceGateway", {}).n("VPCLatticeClient", "UpdateResourceGatewayCommand").f(void 0, void 0).ser(se_UpdateResourceGatewayCommand).de(de_UpdateResourceGatewayCommand).build() {
|
|
4550
|
+
static {
|
|
4551
|
+
__name(this, "UpdateResourceGatewayCommand");
|
|
4552
|
+
}
|
|
4404
4553
|
};
|
|
4405
|
-
__name(_UpdateResourceGatewayCommand, "UpdateResourceGatewayCommand");
|
|
4406
|
-
var UpdateResourceGatewayCommand = _UpdateResourceGatewayCommand;
|
|
4407
4554
|
|
|
4408
4555
|
// src/commands/UpdateRuleCommand.ts
|
|
4409
4556
|
|
|
4410
4557
|
|
|
4411
4558
|
|
|
4412
|
-
var
|
|
4559
|
+
var UpdateRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4413
4560
|
return [
|
|
4414
4561
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4415
4562
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4416
4563
|
];
|
|
4417
4564
|
}).s("MercuryControlPlane", "UpdateRule", {}).n("VPCLatticeClient", "UpdateRuleCommand").f(void 0, void 0).ser(se_UpdateRuleCommand).de(de_UpdateRuleCommand).build() {
|
|
4565
|
+
static {
|
|
4566
|
+
__name(this, "UpdateRuleCommand");
|
|
4567
|
+
}
|
|
4418
4568
|
};
|
|
4419
|
-
__name(_UpdateRuleCommand, "UpdateRuleCommand");
|
|
4420
|
-
var UpdateRuleCommand = _UpdateRuleCommand;
|
|
4421
4569
|
|
|
4422
4570
|
// src/commands/UpdateServiceCommand.ts
|
|
4423
4571
|
|
|
4424
4572
|
|
|
4425
4573
|
|
|
4426
|
-
var
|
|
4574
|
+
var UpdateServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4427
4575
|
return [
|
|
4428
4576
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4429
4577
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4430
4578
|
];
|
|
4431
4579
|
}).s("MercuryControlPlane", "UpdateService", {}).n("VPCLatticeClient", "UpdateServiceCommand").f(void 0, void 0).ser(se_UpdateServiceCommand).de(de_UpdateServiceCommand).build() {
|
|
4580
|
+
static {
|
|
4581
|
+
__name(this, "UpdateServiceCommand");
|
|
4582
|
+
}
|
|
4432
4583
|
};
|
|
4433
|
-
__name(_UpdateServiceCommand, "UpdateServiceCommand");
|
|
4434
|
-
var UpdateServiceCommand = _UpdateServiceCommand;
|
|
4435
4584
|
|
|
4436
4585
|
// src/commands/UpdateServiceNetworkCommand.ts
|
|
4437
4586
|
|
|
4438
4587
|
|
|
4439
4588
|
|
|
4440
|
-
var
|
|
4589
|
+
var UpdateServiceNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4441
4590
|
return [
|
|
4442
4591
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4443
4592
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4444
4593
|
];
|
|
4445
4594
|
}).s("MercuryControlPlane", "UpdateServiceNetwork", {}).n("VPCLatticeClient", "UpdateServiceNetworkCommand").f(void 0, void 0).ser(se_UpdateServiceNetworkCommand).de(de_UpdateServiceNetworkCommand).build() {
|
|
4595
|
+
static {
|
|
4596
|
+
__name(this, "UpdateServiceNetworkCommand");
|
|
4597
|
+
}
|
|
4446
4598
|
};
|
|
4447
|
-
__name(_UpdateServiceNetworkCommand, "UpdateServiceNetworkCommand");
|
|
4448
|
-
var UpdateServiceNetworkCommand = _UpdateServiceNetworkCommand;
|
|
4449
4599
|
|
|
4450
4600
|
// src/commands/UpdateServiceNetworkVpcAssociationCommand.ts
|
|
4451
4601
|
|
|
4452
4602
|
|
|
4453
4603
|
|
|
4454
|
-
var
|
|
4604
|
+
var UpdateServiceNetworkVpcAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4455
4605
|
return [
|
|
4456
4606
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4457
4607
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4458
4608
|
];
|
|
4459
4609
|
}).s("MercuryControlPlane", "UpdateServiceNetworkVpcAssociation", {}).n("VPCLatticeClient", "UpdateServiceNetworkVpcAssociationCommand").f(void 0, void 0).ser(se_UpdateServiceNetworkVpcAssociationCommand).de(de_UpdateServiceNetworkVpcAssociationCommand).build() {
|
|
4610
|
+
static {
|
|
4611
|
+
__name(this, "UpdateServiceNetworkVpcAssociationCommand");
|
|
4612
|
+
}
|
|
4460
4613
|
};
|
|
4461
|
-
__name(_UpdateServiceNetworkVpcAssociationCommand, "UpdateServiceNetworkVpcAssociationCommand");
|
|
4462
|
-
var UpdateServiceNetworkVpcAssociationCommand = _UpdateServiceNetworkVpcAssociationCommand;
|
|
4463
4614
|
|
|
4464
4615
|
// src/commands/UpdateTargetGroupCommand.ts
|
|
4465
4616
|
|
|
4466
4617
|
|
|
4467
4618
|
|
|
4468
|
-
var
|
|
4619
|
+
var UpdateTargetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4469
4620
|
return [
|
|
4470
4621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4471
4622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4472
4623
|
];
|
|
4473
4624
|
}).s("MercuryControlPlane", "UpdateTargetGroup", {}).n("VPCLatticeClient", "UpdateTargetGroupCommand").f(void 0, void 0).ser(se_UpdateTargetGroupCommand).de(de_UpdateTargetGroupCommand).build() {
|
|
4625
|
+
static {
|
|
4626
|
+
__name(this, "UpdateTargetGroupCommand");
|
|
4627
|
+
}
|
|
4474
4628
|
};
|
|
4475
|
-
__name(_UpdateTargetGroupCommand, "UpdateTargetGroupCommand");
|
|
4476
|
-
var UpdateTargetGroupCommand = _UpdateTargetGroupCommand;
|
|
4477
4629
|
|
|
4478
4630
|
// src/VPCLattice.ts
|
|
4479
4631
|
var commands = {
|
|
@@ -4547,10 +4699,11 @@ var commands = {
|
|
|
4547
4699
|
UpdateServiceNetworkVpcAssociationCommand,
|
|
4548
4700
|
UpdateTargetGroupCommand
|
|
4549
4701
|
};
|
|
4550
|
-
var
|
|
4702
|
+
var VPCLattice = class extends VPCLatticeClient {
|
|
4703
|
+
static {
|
|
4704
|
+
__name(this, "VPCLattice");
|
|
4705
|
+
}
|
|
4551
4706
|
};
|
|
4552
|
-
__name(_VPCLattice, "VPCLattice");
|
|
4553
|
-
var VPCLattice = _VPCLattice;
|
|
4554
4707
|
(0, import_smithy_client.createAggregatedClient)(commands, VPCLattice);
|
|
4555
4708
|
|
|
4556
4709
|
// src/pagination/ListAccessLogSubscriptionsPaginator.ts
|