@aws-sdk/client-networkmanager 3.716.0 → 3.723.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 +499 -314
- package/dist-es/NetworkManagerClient.js +1 -0
- package/dist-es/models/models_0.js +38 -16
- 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
|
@@ -292,7 +292,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
292
292
|
}, "resolveRuntimeExtensions");
|
|
293
293
|
|
|
294
294
|
// src/NetworkManagerClient.ts
|
|
295
|
-
var
|
|
295
|
+
var NetworkManagerClient = class extends import_smithy_client.Client {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "NetworkManagerClient");
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* The resolved configuration of NetworkManagerClient class. This is resolved and normalized from the {@link NetworkManagerClientConfig | constructor configuration interface}.
|
|
301
|
+
*/
|
|
302
|
+
config;
|
|
296
303
|
constructor(...[configuration]) {
|
|
297
304
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
298
305
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -302,7 +309,7 @@ var _NetworkManagerClient = class _NetworkManagerClient extends import_smithy_cl
|
|
|
302
309
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
303
310
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
304
311
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
305
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
312
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
306
313
|
super(_config_8);
|
|
307
314
|
this.config = _config_8;
|
|
308
315
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -330,8 +337,6 @@ var _NetworkManagerClient = class _NetworkManagerClient extends import_smithy_cl
|
|
|
330
337
|
super.destroy();
|
|
331
338
|
}
|
|
332
339
|
};
|
|
333
|
-
__name(_NetworkManagerClient, "NetworkManagerClient");
|
|
334
|
-
var NetworkManagerClient = _NetworkManagerClient;
|
|
335
340
|
|
|
336
341
|
// src/NetworkManager.ts
|
|
337
342
|
|
|
@@ -352,7 +357,10 @@ var import_uuid = require("uuid");
|
|
|
352
357
|
|
|
353
358
|
// src/models/NetworkManagerServiceException.ts
|
|
354
359
|
|
|
355
|
-
var
|
|
360
|
+
var NetworkManagerServiceException = class _NetworkManagerServiceException extends import_smithy_client.ServiceException {
|
|
361
|
+
static {
|
|
362
|
+
__name(this, "NetworkManagerServiceException");
|
|
363
|
+
}
|
|
356
364
|
/**
|
|
357
365
|
* @internal
|
|
358
366
|
*/
|
|
@@ -361,8 +369,6 @@ var _NetworkManagerServiceException = class _NetworkManagerServiceException exte
|
|
|
361
369
|
Object.setPrototypeOf(this, _NetworkManagerServiceException.prototype);
|
|
362
370
|
}
|
|
363
371
|
};
|
|
364
|
-
__name(_NetworkManagerServiceException, "NetworkManagerServiceException");
|
|
365
|
-
var NetworkManagerServiceException = _NetworkManagerServiceException;
|
|
366
372
|
|
|
367
373
|
// src/models/models_0.ts
|
|
368
374
|
var AttachmentType = {
|
|
@@ -396,7 +402,13 @@ var AttachmentState = {
|
|
|
396
402
|
REJECTED: "REJECTED",
|
|
397
403
|
UPDATING: "UPDATING"
|
|
398
404
|
};
|
|
399
|
-
var
|
|
405
|
+
var AccessDeniedException = class _AccessDeniedException extends NetworkManagerServiceException {
|
|
406
|
+
static {
|
|
407
|
+
__name(this, "AccessDeniedException");
|
|
408
|
+
}
|
|
409
|
+
name = "AccessDeniedException";
|
|
410
|
+
$fault = "client";
|
|
411
|
+
Message;
|
|
400
412
|
/**
|
|
401
413
|
* @internal
|
|
402
414
|
*/
|
|
@@ -406,15 +418,27 @@ var _AccessDeniedException = class _AccessDeniedException extends NetworkManager
|
|
|
406
418
|
$fault: "client",
|
|
407
419
|
...opts
|
|
408
420
|
});
|
|
409
|
-
this.name = "AccessDeniedException";
|
|
410
|
-
this.$fault = "client";
|
|
411
421
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
412
422
|
this.Message = opts.Message;
|
|
413
423
|
}
|
|
414
424
|
};
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
425
|
+
var ConflictException = class _ConflictException extends NetworkManagerServiceException {
|
|
426
|
+
static {
|
|
427
|
+
__name(this, "ConflictException");
|
|
428
|
+
}
|
|
429
|
+
name = "ConflictException";
|
|
430
|
+
$fault = "client";
|
|
431
|
+
Message;
|
|
432
|
+
/**
|
|
433
|
+
* <p>The ID of the resource.</p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
ResourceId;
|
|
437
|
+
/**
|
|
438
|
+
* <p>The resource type.</p>
|
|
439
|
+
* @public
|
|
440
|
+
*/
|
|
441
|
+
ResourceType;
|
|
418
442
|
/**
|
|
419
443
|
* @internal
|
|
420
444
|
*/
|
|
@@ -424,17 +448,24 @@ var _ConflictException = class _ConflictException extends NetworkManagerServiceE
|
|
|
424
448
|
$fault: "client",
|
|
425
449
|
...opts
|
|
426
450
|
});
|
|
427
|
-
this.name = "ConflictException";
|
|
428
|
-
this.$fault = "client";
|
|
429
451
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
430
452
|
this.Message = opts.Message;
|
|
431
453
|
this.ResourceId = opts.ResourceId;
|
|
432
454
|
this.ResourceType = opts.ResourceType;
|
|
433
455
|
}
|
|
434
456
|
};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
457
|
+
var InternalServerException = class _InternalServerException extends NetworkManagerServiceException {
|
|
458
|
+
static {
|
|
459
|
+
__name(this, "InternalServerException");
|
|
460
|
+
}
|
|
461
|
+
name = "InternalServerException";
|
|
462
|
+
$fault = "server";
|
|
463
|
+
Message;
|
|
464
|
+
/**
|
|
465
|
+
* <p>Indicates when to retry the request.</p>
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
RetryAfterSeconds;
|
|
438
469
|
/**
|
|
439
470
|
* @internal
|
|
440
471
|
*/
|
|
@@ -444,16 +475,33 @@ var _InternalServerException = class _InternalServerException extends NetworkMan
|
|
|
444
475
|
$fault: "server",
|
|
445
476
|
...opts
|
|
446
477
|
});
|
|
447
|
-
this.name = "InternalServerException";
|
|
448
|
-
this.$fault = "server";
|
|
449
478
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
450
479
|
this.Message = opts.Message;
|
|
451
480
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
452
481
|
}
|
|
453
482
|
};
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
483
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends NetworkManagerServiceException {
|
|
484
|
+
static {
|
|
485
|
+
__name(this, "ResourceNotFoundException");
|
|
486
|
+
}
|
|
487
|
+
name = "ResourceNotFoundException";
|
|
488
|
+
$fault = "client";
|
|
489
|
+
Message;
|
|
490
|
+
/**
|
|
491
|
+
* <p>The ID of the resource.</p>
|
|
492
|
+
* @public
|
|
493
|
+
*/
|
|
494
|
+
ResourceId;
|
|
495
|
+
/**
|
|
496
|
+
* <p>The resource type.</p>
|
|
497
|
+
* @public
|
|
498
|
+
*/
|
|
499
|
+
ResourceType;
|
|
500
|
+
/**
|
|
501
|
+
* <p>The specified resource could not be found.</p>
|
|
502
|
+
* @public
|
|
503
|
+
*/
|
|
504
|
+
Context;
|
|
457
505
|
/**
|
|
458
506
|
* @internal
|
|
459
507
|
*/
|
|
@@ -463,8 +511,6 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Networ
|
|
|
463
511
|
$fault: "client",
|
|
464
512
|
...opts
|
|
465
513
|
});
|
|
466
|
-
this.name = "ResourceNotFoundException";
|
|
467
|
-
this.$fault = "client";
|
|
468
514
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
469
515
|
this.Message = opts.Message;
|
|
470
516
|
this.ResourceId = opts.ResourceId;
|
|
@@ -472,9 +518,18 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Networ
|
|
|
472
518
|
this.Context = opts.Context;
|
|
473
519
|
}
|
|
474
520
|
};
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
521
|
+
var ThrottlingException = class _ThrottlingException extends NetworkManagerServiceException {
|
|
522
|
+
static {
|
|
523
|
+
__name(this, "ThrottlingException");
|
|
524
|
+
}
|
|
525
|
+
name = "ThrottlingException";
|
|
526
|
+
$fault = "client";
|
|
527
|
+
Message;
|
|
528
|
+
/**
|
|
529
|
+
* <p>Indicates when to retry the request.</p>
|
|
530
|
+
* @public
|
|
531
|
+
*/
|
|
532
|
+
RetryAfterSeconds;
|
|
478
533
|
/**
|
|
479
534
|
* @internal
|
|
480
535
|
*/
|
|
@@ -484,22 +539,34 @@ var _ThrottlingException = class _ThrottlingException extends NetworkManagerServ
|
|
|
484
539
|
$fault: "client",
|
|
485
540
|
...opts
|
|
486
541
|
});
|
|
487
|
-
this.name = "ThrottlingException";
|
|
488
|
-
this.$fault = "client";
|
|
489
542
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
490
543
|
this.Message = opts.Message;
|
|
491
544
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
492
545
|
}
|
|
493
546
|
};
|
|
494
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
495
|
-
var ThrottlingException = _ThrottlingException;
|
|
496
547
|
var ValidationExceptionReason = {
|
|
497
548
|
CANNOT_PARSE: "CannotParse",
|
|
498
549
|
FIELD_VALIDATION_FAILED: "FieldValidationFailed",
|
|
499
550
|
OTHER: "Other",
|
|
500
551
|
UNKNOWN_OPERATION: "UnknownOperation"
|
|
501
552
|
};
|
|
502
|
-
var
|
|
553
|
+
var ValidationException = class _ValidationException extends NetworkManagerServiceException {
|
|
554
|
+
static {
|
|
555
|
+
__name(this, "ValidationException");
|
|
556
|
+
}
|
|
557
|
+
name = "ValidationException";
|
|
558
|
+
$fault = "client";
|
|
559
|
+
Message;
|
|
560
|
+
/**
|
|
561
|
+
* <p>The reason for the error.</p>
|
|
562
|
+
* @public
|
|
563
|
+
*/
|
|
564
|
+
Reason;
|
|
565
|
+
/**
|
|
566
|
+
* <p>The fields that caused the error, if applicable.</p>
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
Fields;
|
|
503
570
|
/**
|
|
504
571
|
* @internal
|
|
505
572
|
*/
|
|
@@ -509,23 +576,49 @@ var _ValidationException = class _ValidationException extends NetworkManagerServ
|
|
|
509
576
|
$fault: "client",
|
|
510
577
|
...opts
|
|
511
578
|
});
|
|
512
|
-
this.name = "ValidationException";
|
|
513
|
-
this.$fault = "client";
|
|
514
579
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
515
580
|
this.Message = opts.Message;
|
|
516
581
|
this.Reason = opts.Reason;
|
|
517
582
|
this.Fields = opts.Fields;
|
|
518
583
|
}
|
|
519
584
|
};
|
|
520
|
-
__name(_ValidationException, "ValidationException");
|
|
521
|
-
var ValidationException = _ValidationException;
|
|
522
585
|
var ConnectPeerAssociationState = {
|
|
523
586
|
available: "AVAILABLE",
|
|
524
587
|
deleted: "DELETED",
|
|
525
588
|
deleting: "DELETING",
|
|
526
589
|
pending: "PENDING"
|
|
527
590
|
};
|
|
528
|
-
var
|
|
591
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends NetworkManagerServiceException {
|
|
592
|
+
static {
|
|
593
|
+
__name(this, "ServiceQuotaExceededException");
|
|
594
|
+
}
|
|
595
|
+
name = "ServiceQuotaExceededException";
|
|
596
|
+
$fault = "client";
|
|
597
|
+
/**
|
|
598
|
+
* <p>The error message.</p>
|
|
599
|
+
* @public
|
|
600
|
+
*/
|
|
601
|
+
Message;
|
|
602
|
+
/**
|
|
603
|
+
* <p>The ID of the resource.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
ResourceId;
|
|
607
|
+
/**
|
|
608
|
+
* <p>The resource type.</p>
|
|
609
|
+
* @public
|
|
610
|
+
*/
|
|
611
|
+
ResourceType;
|
|
612
|
+
/**
|
|
613
|
+
* <p>The limit code.</p>
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
616
|
+
LimitCode;
|
|
617
|
+
/**
|
|
618
|
+
* <p>The service code.</p>
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
ServiceCode;
|
|
529
622
|
/**
|
|
530
623
|
* @internal
|
|
531
624
|
*/
|
|
@@ -535,8 +628,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
535
628
|
$fault: "client",
|
|
536
629
|
...opts
|
|
537
630
|
});
|
|
538
|
-
this.name = "ServiceQuotaExceededException";
|
|
539
|
-
this.$fault = "client";
|
|
540
631
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
541
632
|
this.Message = opts.Message;
|
|
542
633
|
this.ResourceId = opts.ResourceId;
|
|
@@ -545,8 +636,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
545
636
|
this.ServiceCode = opts.ServiceCode;
|
|
546
637
|
}
|
|
547
638
|
};
|
|
548
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
549
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
550
639
|
var CustomerGatewayAssociationState = {
|
|
551
640
|
available: "AVAILABLE",
|
|
552
641
|
deleted: "DELETED",
|
|
@@ -646,7 +735,18 @@ var CoreNetworkPolicyAlias = {
|
|
|
646
735
|
LATEST: "LATEST",
|
|
647
736
|
LIVE: "LIVE"
|
|
648
737
|
};
|
|
649
|
-
var
|
|
738
|
+
var CoreNetworkPolicyException = class _CoreNetworkPolicyException extends NetworkManagerServiceException {
|
|
739
|
+
static {
|
|
740
|
+
__name(this, "CoreNetworkPolicyException");
|
|
741
|
+
}
|
|
742
|
+
name = "CoreNetworkPolicyException";
|
|
743
|
+
$fault = "client";
|
|
744
|
+
Message;
|
|
745
|
+
/**
|
|
746
|
+
* <p>Describes a core network policy exception.</p>
|
|
747
|
+
* @public
|
|
748
|
+
*/
|
|
749
|
+
Errors;
|
|
650
750
|
/**
|
|
651
751
|
* @internal
|
|
652
752
|
*/
|
|
@@ -656,15 +756,11 @@ var _CoreNetworkPolicyException = class _CoreNetworkPolicyException extends Netw
|
|
|
656
756
|
$fault: "client",
|
|
657
757
|
...opts
|
|
658
758
|
});
|
|
659
|
-
this.name = "CoreNetworkPolicyException";
|
|
660
|
-
this.$fault = "client";
|
|
661
759
|
Object.setPrototypeOf(this, _CoreNetworkPolicyException.prototype);
|
|
662
760
|
this.Message = opts.Message;
|
|
663
761
|
this.Errors = opts.Errors;
|
|
664
762
|
}
|
|
665
763
|
};
|
|
666
|
-
__name(_CoreNetworkPolicyException, "CoreNetworkPolicyException");
|
|
667
|
-
var CoreNetworkPolicyException = _CoreNetworkPolicyException;
|
|
668
764
|
var DeviceState = {
|
|
669
765
|
available: "AVAILABLE",
|
|
670
766
|
deleting: "DELETING",
|
|
@@ -3886,1233 +3982,1321 @@ var _tGCPA = "transitGatewayConnectPeerArns";
|
|
|
3886
3982
|
var _tK = "tagKeys";
|
|
3887
3983
|
|
|
3888
3984
|
// src/commands/AcceptAttachmentCommand.ts
|
|
3889
|
-
var
|
|
3985
|
+
var AcceptAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3890
3986
|
return [
|
|
3891
3987
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3892
3988
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3893
3989
|
];
|
|
3894
3990
|
}).s("NetworkManager", "AcceptAttachment", {}).n("NetworkManagerClient", "AcceptAttachmentCommand").f(void 0, void 0).ser(se_AcceptAttachmentCommand).de(de_AcceptAttachmentCommand).build() {
|
|
3991
|
+
static {
|
|
3992
|
+
__name(this, "AcceptAttachmentCommand");
|
|
3993
|
+
}
|
|
3895
3994
|
};
|
|
3896
|
-
__name(_AcceptAttachmentCommand, "AcceptAttachmentCommand");
|
|
3897
|
-
var AcceptAttachmentCommand = _AcceptAttachmentCommand;
|
|
3898
3995
|
|
|
3899
3996
|
// src/commands/AssociateConnectPeerCommand.ts
|
|
3900
3997
|
|
|
3901
3998
|
|
|
3902
3999
|
|
|
3903
|
-
var
|
|
4000
|
+
var AssociateConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3904
4001
|
return [
|
|
3905
4002
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3906
4003
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3907
4004
|
];
|
|
3908
4005
|
}).s("NetworkManager", "AssociateConnectPeer", {}).n("NetworkManagerClient", "AssociateConnectPeerCommand").f(void 0, void 0).ser(se_AssociateConnectPeerCommand).de(de_AssociateConnectPeerCommand).build() {
|
|
4006
|
+
static {
|
|
4007
|
+
__name(this, "AssociateConnectPeerCommand");
|
|
4008
|
+
}
|
|
3909
4009
|
};
|
|
3910
|
-
__name(_AssociateConnectPeerCommand, "AssociateConnectPeerCommand");
|
|
3911
|
-
var AssociateConnectPeerCommand = _AssociateConnectPeerCommand;
|
|
3912
4010
|
|
|
3913
4011
|
// src/commands/AssociateCustomerGatewayCommand.ts
|
|
3914
4012
|
|
|
3915
4013
|
|
|
3916
4014
|
|
|
3917
|
-
var
|
|
4015
|
+
var AssociateCustomerGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3918
4016
|
return [
|
|
3919
4017
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3920
4018
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3921
4019
|
];
|
|
3922
4020
|
}).s("NetworkManager", "AssociateCustomerGateway", {}).n("NetworkManagerClient", "AssociateCustomerGatewayCommand").f(void 0, void 0).ser(se_AssociateCustomerGatewayCommand).de(de_AssociateCustomerGatewayCommand).build() {
|
|
4021
|
+
static {
|
|
4022
|
+
__name(this, "AssociateCustomerGatewayCommand");
|
|
4023
|
+
}
|
|
3923
4024
|
};
|
|
3924
|
-
__name(_AssociateCustomerGatewayCommand, "AssociateCustomerGatewayCommand");
|
|
3925
|
-
var AssociateCustomerGatewayCommand = _AssociateCustomerGatewayCommand;
|
|
3926
4025
|
|
|
3927
4026
|
// src/commands/AssociateLinkCommand.ts
|
|
3928
4027
|
|
|
3929
4028
|
|
|
3930
4029
|
|
|
3931
|
-
var
|
|
4030
|
+
var AssociateLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3932
4031
|
return [
|
|
3933
4032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3934
4033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3935
4034
|
];
|
|
3936
4035
|
}).s("NetworkManager", "AssociateLink", {}).n("NetworkManagerClient", "AssociateLinkCommand").f(void 0, void 0).ser(se_AssociateLinkCommand).de(de_AssociateLinkCommand).build() {
|
|
4036
|
+
static {
|
|
4037
|
+
__name(this, "AssociateLinkCommand");
|
|
4038
|
+
}
|
|
3937
4039
|
};
|
|
3938
|
-
__name(_AssociateLinkCommand, "AssociateLinkCommand");
|
|
3939
|
-
var AssociateLinkCommand = _AssociateLinkCommand;
|
|
3940
4040
|
|
|
3941
4041
|
// src/commands/AssociateTransitGatewayConnectPeerCommand.ts
|
|
3942
4042
|
|
|
3943
4043
|
|
|
3944
4044
|
|
|
3945
|
-
var
|
|
4045
|
+
var AssociateTransitGatewayConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3946
4046
|
return [
|
|
3947
4047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3948
4048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3949
4049
|
];
|
|
3950
4050
|
}).s("NetworkManager", "AssociateTransitGatewayConnectPeer", {}).n("NetworkManagerClient", "AssociateTransitGatewayConnectPeerCommand").f(void 0, void 0).ser(se_AssociateTransitGatewayConnectPeerCommand).de(de_AssociateTransitGatewayConnectPeerCommand).build() {
|
|
4051
|
+
static {
|
|
4052
|
+
__name(this, "AssociateTransitGatewayConnectPeerCommand");
|
|
4053
|
+
}
|
|
3951
4054
|
};
|
|
3952
|
-
__name(_AssociateTransitGatewayConnectPeerCommand, "AssociateTransitGatewayConnectPeerCommand");
|
|
3953
|
-
var AssociateTransitGatewayConnectPeerCommand = _AssociateTransitGatewayConnectPeerCommand;
|
|
3954
4055
|
|
|
3955
4056
|
// src/commands/CreateConnectAttachmentCommand.ts
|
|
3956
4057
|
|
|
3957
4058
|
|
|
3958
4059
|
|
|
3959
|
-
var
|
|
4060
|
+
var CreateConnectAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3960
4061
|
return [
|
|
3961
4062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3962
4063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3963
4064
|
];
|
|
3964
4065
|
}).s("NetworkManager", "CreateConnectAttachment", {}).n("NetworkManagerClient", "CreateConnectAttachmentCommand").f(void 0, void 0).ser(se_CreateConnectAttachmentCommand).de(de_CreateConnectAttachmentCommand).build() {
|
|
4066
|
+
static {
|
|
4067
|
+
__name(this, "CreateConnectAttachmentCommand");
|
|
4068
|
+
}
|
|
3965
4069
|
};
|
|
3966
|
-
__name(_CreateConnectAttachmentCommand, "CreateConnectAttachmentCommand");
|
|
3967
|
-
var CreateConnectAttachmentCommand = _CreateConnectAttachmentCommand;
|
|
3968
4070
|
|
|
3969
4071
|
// src/commands/CreateConnectionCommand.ts
|
|
3970
4072
|
|
|
3971
4073
|
|
|
3972
4074
|
|
|
3973
|
-
var
|
|
4075
|
+
var CreateConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3974
4076
|
return [
|
|
3975
4077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3976
4078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3977
4079
|
];
|
|
3978
4080
|
}).s("NetworkManager", "CreateConnection", {}).n("NetworkManagerClient", "CreateConnectionCommand").f(void 0, void 0).ser(se_CreateConnectionCommand).de(de_CreateConnectionCommand).build() {
|
|
4081
|
+
static {
|
|
4082
|
+
__name(this, "CreateConnectionCommand");
|
|
4083
|
+
}
|
|
3979
4084
|
};
|
|
3980
|
-
__name(_CreateConnectionCommand, "CreateConnectionCommand");
|
|
3981
|
-
var CreateConnectionCommand = _CreateConnectionCommand;
|
|
3982
4085
|
|
|
3983
4086
|
// src/commands/CreateConnectPeerCommand.ts
|
|
3984
4087
|
|
|
3985
4088
|
|
|
3986
4089
|
|
|
3987
|
-
var
|
|
4090
|
+
var CreateConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3988
4091
|
return [
|
|
3989
4092
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3990
4093
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3991
4094
|
];
|
|
3992
4095
|
}).s("NetworkManager", "CreateConnectPeer", {}).n("NetworkManagerClient", "CreateConnectPeerCommand").f(void 0, void 0).ser(se_CreateConnectPeerCommand).de(de_CreateConnectPeerCommand).build() {
|
|
4096
|
+
static {
|
|
4097
|
+
__name(this, "CreateConnectPeerCommand");
|
|
4098
|
+
}
|
|
3993
4099
|
};
|
|
3994
|
-
__name(_CreateConnectPeerCommand, "CreateConnectPeerCommand");
|
|
3995
|
-
var CreateConnectPeerCommand = _CreateConnectPeerCommand;
|
|
3996
4100
|
|
|
3997
4101
|
// src/commands/CreateCoreNetworkCommand.ts
|
|
3998
4102
|
|
|
3999
4103
|
|
|
4000
4104
|
|
|
4001
|
-
var
|
|
4105
|
+
var CreateCoreNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4002
4106
|
return [
|
|
4003
4107
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4004
4108
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4005
4109
|
];
|
|
4006
4110
|
}).s("NetworkManager", "CreateCoreNetwork", {}).n("NetworkManagerClient", "CreateCoreNetworkCommand").f(void 0, void 0).ser(se_CreateCoreNetworkCommand).de(de_CreateCoreNetworkCommand).build() {
|
|
4111
|
+
static {
|
|
4112
|
+
__name(this, "CreateCoreNetworkCommand");
|
|
4113
|
+
}
|
|
4007
4114
|
};
|
|
4008
|
-
__name(_CreateCoreNetworkCommand, "CreateCoreNetworkCommand");
|
|
4009
|
-
var CreateCoreNetworkCommand = _CreateCoreNetworkCommand;
|
|
4010
4115
|
|
|
4011
4116
|
// src/commands/CreateDeviceCommand.ts
|
|
4012
4117
|
|
|
4013
4118
|
|
|
4014
4119
|
|
|
4015
|
-
var
|
|
4120
|
+
var CreateDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4016
4121
|
return [
|
|
4017
4122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4018
4123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4019
4124
|
];
|
|
4020
4125
|
}).s("NetworkManager", "CreateDevice", {}).n("NetworkManagerClient", "CreateDeviceCommand").f(CreateDeviceRequestFilterSensitiveLog, CreateDeviceResponseFilterSensitiveLog).ser(se_CreateDeviceCommand).de(de_CreateDeviceCommand).build() {
|
|
4126
|
+
static {
|
|
4127
|
+
__name(this, "CreateDeviceCommand");
|
|
4128
|
+
}
|
|
4021
4129
|
};
|
|
4022
|
-
__name(_CreateDeviceCommand, "CreateDeviceCommand");
|
|
4023
|
-
var CreateDeviceCommand = _CreateDeviceCommand;
|
|
4024
4130
|
|
|
4025
4131
|
// src/commands/CreateDirectConnectGatewayAttachmentCommand.ts
|
|
4026
4132
|
|
|
4027
4133
|
|
|
4028
4134
|
|
|
4029
|
-
var
|
|
4135
|
+
var CreateDirectConnectGatewayAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4030
4136
|
return [
|
|
4031
4137
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4032
4138
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4033
4139
|
];
|
|
4034
4140
|
}).s("NetworkManager", "CreateDirectConnectGatewayAttachment", {}).n("NetworkManagerClient", "CreateDirectConnectGatewayAttachmentCommand").f(void 0, void 0).ser(se_CreateDirectConnectGatewayAttachmentCommand).de(de_CreateDirectConnectGatewayAttachmentCommand).build() {
|
|
4141
|
+
static {
|
|
4142
|
+
__name(this, "CreateDirectConnectGatewayAttachmentCommand");
|
|
4143
|
+
}
|
|
4035
4144
|
};
|
|
4036
|
-
__name(_CreateDirectConnectGatewayAttachmentCommand, "CreateDirectConnectGatewayAttachmentCommand");
|
|
4037
|
-
var CreateDirectConnectGatewayAttachmentCommand = _CreateDirectConnectGatewayAttachmentCommand;
|
|
4038
4145
|
|
|
4039
4146
|
// src/commands/CreateGlobalNetworkCommand.ts
|
|
4040
4147
|
|
|
4041
4148
|
|
|
4042
4149
|
|
|
4043
|
-
var
|
|
4150
|
+
var CreateGlobalNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4044
4151
|
return [
|
|
4045
4152
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4046
4153
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4047
4154
|
];
|
|
4048
4155
|
}).s("NetworkManager", "CreateGlobalNetwork", {}).n("NetworkManagerClient", "CreateGlobalNetworkCommand").f(void 0, void 0).ser(se_CreateGlobalNetworkCommand).de(de_CreateGlobalNetworkCommand).build() {
|
|
4156
|
+
static {
|
|
4157
|
+
__name(this, "CreateGlobalNetworkCommand");
|
|
4158
|
+
}
|
|
4049
4159
|
};
|
|
4050
|
-
__name(_CreateGlobalNetworkCommand, "CreateGlobalNetworkCommand");
|
|
4051
|
-
var CreateGlobalNetworkCommand = _CreateGlobalNetworkCommand;
|
|
4052
4160
|
|
|
4053
4161
|
// src/commands/CreateLinkCommand.ts
|
|
4054
4162
|
|
|
4055
4163
|
|
|
4056
4164
|
|
|
4057
|
-
var
|
|
4165
|
+
var CreateLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4058
4166
|
return [
|
|
4059
4167
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4060
4168
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4061
4169
|
];
|
|
4062
4170
|
}).s("NetworkManager", "CreateLink", {}).n("NetworkManagerClient", "CreateLinkCommand").f(void 0, void 0).ser(se_CreateLinkCommand).de(de_CreateLinkCommand).build() {
|
|
4171
|
+
static {
|
|
4172
|
+
__name(this, "CreateLinkCommand");
|
|
4173
|
+
}
|
|
4063
4174
|
};
|
|
4064
|
-
__name(_CreateLinkCommand, "CreateLinkCommand");
|
|
4065
|
-
var CreateLinkCommand = _CreateLinkCommand;
|
|
4066
4175
|
|
|
4067
4176
|
// src/commands/CreateSiteCommand.ts
|
|
4068
4177
|
|
|
4069
4178
|
|
|
4070
4179
|
|
|
4071
|
-
var
|
|
4180
|
+
var CreateSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4072
4181
|
return [
|
|
4073
4182
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4074
4183
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4075
4184
|
];
|
|
4076
4185
|
}).s("NetworkManager", "CreateSite", {}).n("NetworkManagerClient", "CreateSiteCommand").f(CreateSiteRequestFilterSensitiveLog, CreateSiteResponseFilterSensitiveLog).ser(se_CreateSiteCommand).de(de_CreateSiteCommand).build() {
|
|
4186
|
+
static {
|
|
4187
|
+
__name(this, "CreateSiteCommand");
|
|
4188
|
+
}
|
|
4077
4189
|
};
|
|
4078
|
-
__name(_CreateSiteCommand, "CreateSiteCommand");
|
|
4079
|
-
var CreateSiteCommand = _CreateSiteCommand;
|
|
4080
4190
|
|
|
4081
4191
|
// src/commands/CreateSiteToSiteVpnAttachmentCommand.ts
|
|
4082
4192
|
|
|
4083
4193
|
|
|
4084
4194
|
|
|
4085
|
-
var
|
|
4195
|
+
var CreateSiteToSiteVpnAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4086
4196
|
return [
|
|
4087
4197
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4088
4198
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4089
4199
|
];
|
|
4090
4200
|
}).s("NetworkManager", "CreateSiteToSiteVpnAttachment", {}).n("NetworkManagerClient", "CreateSiteToSiteVpnAttachmentCommand").f(void 0, void 0).ser(se_CreateSiteToSiteVpnAttachmentCommand).de(de_CreateSiteToSiteVpnAttachmentCommand).build() {
|
|
4201
|
+
static {
|
|
4202
|
+
__name(this, "CreateSiteToSiteVpnAttachmentCommand");
|
|
4203
|
+
}
|
|
4091
4204
|
};
|
|
4092
|
-
__name(_CreateSiteToSiteVpnAttachmentCommand, "CreateSiteToSiteVpnAttachmentCommand");
|
|
4093
|
-
var CreateSiteToSiteVpnAttachmentCommand = _CreateSiteToSiteVpnAttachmentCommand;
|
|
4094
4205
|
|
|
4095
4206
|
// src/commands/CreateTransitGatewayPeeringCommand.ts
|
|
4096
4207
|
|
|
4097
4208
|
|
|
4098
4209
|
|
|
4099
|
-
var
|
|
4210
|
+
var CreateTransitGatewayPeeringCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4100
4211
|
return [
|
|
4101
4212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4102
4213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4103
4214
|
];
|
|
4104
4215
|
}).s("NetworkManager", "CreateTransitGatewayPeering", {}).n("NetworkManagerClient", "CreateTransitGatewayPeeringCommand").f(void 0, void 0).ser(se_CreateTransitGatewayPeeringCommand).de(de_CreateTransitGatewayPeeringCommand).build() {
|
|
4216
|
+
static {
|
|
4217
|
+
__name(this, "CreateTransitGatewayPeeringCommand");
|
|
4218
|
+
}
|
|
4105
4219
|
};
|
|
4106
|
-
__name(_CreateTransitGatewayPeeringCommand, "CreateTransitGatewayPeeringCommand");
|
|
4107
|
-
var CreateTransitGatewayPeeringCommand = _CreateTransitGatewayPeeringCommand;
|
|
4108
4220
|
|
|
4109
4221
|
// src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts
|
|
4110
4222
|
|
|
4111
4223
|
|
|
4112
4224
|
|
|
4113
|
-
var
|
|
4225
|
+
var CreateTransitGatewayRouteTableAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4114
4226
|
return [
|
|
4115
4227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4116
4228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4117
4229
|
];
|
|
4118
4230
|
}).s("NetworkManager", "CreateTransitGatewayRouteTableAttachment", {}).n("NetworkManagerClient", "CreateTransitGatewayRouteTableAttachmentCommand").f(void 0, void 0).ser(se_CreateTransitGatewayRouteTableAttachmentCommand).de(de_CreateTransitGatewayRouteTableAttachmentCommand).build() {
|
|
4231
|
+
static {
|
|
4232
|
+
__name(this, "CreateTransitGatewayRouteTableAttachmentCommand");
|
|
4233
|
+
}
|
|
4119
4234
|
};
|
|
4120
|
-
__name(_CreateTransitGatewayRouteTableAttachmentCommand, "CreateTransitGatewayRouteTableAttachmentCommand");
|
|
4121
|
-
var CreateTransitGatewayRouteTableAttachmentCommand = _CreateTransitGatewayRouteTableAttachmentCommand;
|
|
4122
4235
|
|
|
4123
4236
|
// src/commands/CreateVpcAttachmentCommand.ts
|
|
4124
4237
|
|
|
4125
4238
|
|
|
4126
4239
|
|
|
4127
|
-
var
|
|
4240
|
+
var CreateVpcAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4128
4241
|
return [
|
|
4129
4242
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4130
4243
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4131
4244
|
];
|
|
4132
4245
|
}).s("NetworkManager", "CreateVpcAttachment", {}).n("NetworkManagerClient", "CreateVpcAttachmentCommand").f(void 0, void 0).ser(se_CreateVpcAttachmentCommand).de(de_CreateVpcAttachmentCommand).build() {
|
|
4246
|
+
static {
|
|
4247
|
+
__name(this, "CreateVpcAttachmentCommand");
|
|
4248
|
+
}
|
|
4133
4249
|
};
|
|
4134
|
-
__name(_CreateVpcAttachmentCommand, "CreateVpcAttachmentCommand");
|
|
4135
|
-
var CreateVpcAttachmentCommand = _CreateVpcAttachmentCommand;
|
|
4136
4250
|
|
|
4137
4251
|
// src/commands/DeleteAttachmentCommand.ts
|
|
4138
4252
|
|
|
4139
4253
|
|
|
4140
4254
|
|
|
4141
|
-
var
|
|
4255
|
+
var DeleteAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4142
4256
|
return [
|
|
4143
4257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4144
4258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4145
4259
|
];
|
|
4146
4260
|
}).s("NetworkManager", "DeleteAttachment", {}).n("NetworkManagerClient", "DeleteAttachmentCommand").f(void 0, void 0).ser(se_DeleteAttachmentCommand).de(de_DeleteAttachmentCommand).build() {
|
|
4261
|
+
static {
|
|
4262
|
+
__name(this, "DeleteAttachmentCommand");
|
|
4263
|
+
}
|
|
4147
4264
|
};
|
|
4148
|
-
__name(_DeleteAttachmentCommand, "DeleteAttachmentCommand");
|
|
4149
|
-
var DeleteAttachmentCommand = _DeleteAttachmentCommand;
|
|
4150
4265
|
|
|
4151
4266
|
// src/commands/DeleteConnectionCommand.ts
|
|
4152
4267
|
|
|
4153
4268
|
|
|
4154
4269
|
|
|
4155
|
-
var
|
|
4270
|
+
var DeleteConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4156
4271
|
return [
|
|
4157
4272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4158
4273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4159
4274
|
];
|
|
4160
4275
|
}).s("NetworkManager", "DeleteConnection", {}).n("NetworkManagerClient", "DeleteConnectionCommand").f(void 0, void 0).ser(se_DeleteConnectionCommand).de(de_DeleteConnectionCommand).build() {
|
|
4276
|
+
static {
|
|
4277
|
+
__name(this, "DeleteConnectionCommand");
|
|
4278
|
+
}
|
|
4161
4279
|
};
|
|
4162
|
-
__name(_DeleteConnectionCommand, "DeleteConnectionCommand");
|
|
4163
|
-
var DeleteConnectionCommand = _DeleteConnectionCommand;
|
|
4164
4280
|
|
|
4165
4281
|
// src/commands/DeleteConnectPeerCommand.ts
|
|
4166
4282
|
|
|
4167
4283
|
|
|
4168
4284
|
|
|
4169
|
-
var
|
|
4285
|
+
var DeleteConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4170
4286
|
return [
|
|
4171
4287
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4172
4288
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4173
4289
|
];
|
|
4174
4290
|
}).s("NetworkManager", "DeleteConnectPeer", {}).n("NetworkManagerClient", "DeleteConnectPeerCommand").f(void 0, void 0).ser(se_DeleteConnectPeerCommand).de(de_DeleteConnectPeerCommand).build() {
|
|
4291
|
+
static {
|
|
4292
|
+
__name(this, "DeleteConnectPeerCommand");
|
|
4293
|
+
}
|
|
4175
4294
|
};
|
|
4176
|
-
__name(_DeleteConnectPeerCommand, "DeleteConnectPeerCommand");
|
|
4177
|
-
var DeleteConnectPeerCommand = _DeleteConnectPeerCommand;
|
|
4178
4295
|
|
|
4179
4296
|
// src/commands/DeleteCoreNetworkCommand.ts
|
|
4180
4297
|
|
|
4181
4298
|
|
|
4182
4299
|
|
|
4183
|
-
var
|
|
4300
|
+
var DeleteCoreNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4184
4301
|
return [
|
|
4185
4302
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4186
4303
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4187
4304
|
];
|
|
4188
4305
|
}).s("NetworkManager", "DeleteCoreNetwork", {}).n("NetworkManagerClient", "DeleteCoreNetworkCommand").f(void 0, void 0).ser(se_DeleteCoreNetworkCommand).de(de_DeleteCoreNetworkCommand).build() {
|
|
4306
|
+
static {
|
|
4307
|
+
__name(this, "DeleteCoreNetworkCommand");
|
|
4308
|
+
}
|
|
4189
4309
|
};
|
|
4190
|
-
__name(_DeleteCoreNetworkCommand, "DeleteCoreNetworkCommand");
|
|
4191
|
-
var DeleteCoreNetworkCommand = _DeleteCoreNetworkCommand;
|
|
4192
4310
|
|
|
4193
4311
|
// src/commands/DeleteCoreNetworkPolicyVersionCommand.ts
|
|
4194
4312
|
|
|
4195
4313
|
|
|
4196
4314
|
|
|
4197
|
-
var
|
|
4315
|
+
var DeleteCoreNetworkPolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4198
4316
|
return [
|
|
4199
4317
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4200
4318
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4201
4319
|
];
|
|
4202
4320
|
}).s("NetworkManager", "DeleteCoreNetworkPolicyVersion", {}).n("NetworkManagerClient", "DeleteCoreNetworkPolicyVersionCommand").f(void 0, void 0).ser(se_DeleteCoreNetworkPolicyVersionCommand).de(de_DeleteCoreNetworkPolicyVersionCommand).build() {
|
|
4321
|
+
static {
|
|
4322
|
+
__name(this, "DeleteCoreNetworkPolicyVersionCommand");
|
|
4323
|
+
}
|
|
4203
4324
|
};
|
|
4204
|
-
__name(_DeleteCoreNetworkPolicyVersionCommand, "DeleteCoreNetworkPolicyVersionCommand");
|
|
4205
|
-
var DeleteCoreNetworkPolicyVersionCommand = _DeleteCoreNetworkPolicyVersionCommand;
|
|
4206
4325
|
|
|
4207
4326
|
// src/commands/DeleteDeviceCommand.ts
|
|
4208
4327
|
|
|
4209
4328
|
|
|
4210
4329
|
|
|
4211
|
-
var
|
|
4330
|
+
var DeleteDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4212
4331
|
return [
|
|
4213
4332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4214
4333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4215
4334
|
];
|
|
4216
4335
|
}).s("NetworkManager", "DeleteDevice", {}).n("NetworkManagerClient", "DeleteDeviceCommand").f(void 0, DeleteDeviceResponseFilterSensitiveLog).ser(se_DeleteDeviceCommand).de(de_DeleteDeviceCommand).build() {
|
|
4336
|
+
static {
|
|
4337
|
+
__name(this, "DeleteDeviceCommand");
|
|
4338
|
+
}
|
|
4217
4339
|
};
|
|
4218
|
-
__name(_DeleteDeviceCommand, "DeleteDeviceCommand");
|
|
4219
|
-
var DeleteDeviceCommand = _DeleteDeviceCommand;
|
|
4220
4340
|
|
|
4221
4341
|
// src/commands/DeleteGlobalNetworkCommand.ts
|
|
4222
4342
|
|
|
4223
4343
|
|
|
4224
4344
|
|
|
4225
|
-
var
|
|
4345
|
+
var DeleteGlobalNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4226
4346
|
return [
|
|
4227
4347
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4228
4348
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4229
4349
|
];
|
|
4230
4350
|
}).s("NetworkManager", "DeleteGlobalNetwork", {}).n("NetworkManagerClient", "DeleteGlobalNetworkCommand").f(void 0, void 0).ser(se_DeleteGlobalNetworkCommand).de(de_DeleteGlobalNetworkCommand).build() {
|
|
4351
|
+
static {
|
|
4352
|
+
__name(this, "DeleteGlobalNetworkCommand");
|
|
4353
|
+
}
|
|
4231
4354
|
};
|
|
4232
|
-
__name(_DeleteGlobalNetworkCommand, "DeleteGlobalNetworkCommand");
|
|
4233
|
-
var DeleteGlobalNetworkCommand = _DeleteGlobalNetworkCommand;
|
|
4234
4355
|
|
|
4235
4356
|
// src/commands/DeleteLinkCommand.ts
|
|
4236
4357
|
|
|
4237
4358
|
|
|
4238
4359
|
|
|
4239
|
-
var
|
|
4360
|
+
var DeleteLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4240
4361
|
return [
|
|
4241
4362
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4242
4363
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4243
4364
|
];
|
|
4244
4365
|
}).s("NetworkManager", "DeleteLink", {}).n("NetworkManagerClient", "DeleteLinkCommand").f(void 0, void 0).ser(se_DeleteLinkCommand).de(de_DeleteLinkCommand).build() {
|
|
4366
|
+
static {
|
|
4367
|
+
__name(this, "DeleteLinkCommand");
|
|
4368
|
+
}
|
|
4245
4369
|
};
|
|
4246
|
-
__name(_DeleteLinkCommand, "DeleteLinkCommand");
|
|
4247
|
-
var DeleteLinkCommand = _DeleteLinkCommand;
|
|
4248
4370
|
|
|
4249
4371
|
// src/commands/DeletePeeringCommand.ts
|
|
4250
4372
|
|
|
4251
4373
|
|
|
4252
4374
|
|
|
4253
|
-
var
|
|
4375
|
+
var DeletePeeringCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4254
4376
|
return [
|
|
4255
4377
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4256
4378
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4257
4379
|
];
|
|
4258
4380
|
}).s("NetworkManager", "DeletePeering", {}).n("NetworkManagerClient", "DeletePeeringCommand").f(void 0, void 0).ser(se_DeletePeeringCommand).de(de_DeletePeeringCommand).build() {
|
|
4381
|
+
static {
|
|
4382
|
+
__name(this, "DeletePeeringCommand");
|
|
4383
|
+
}
|
|
4259
4384
|
};
|
|
4260
|
-
__name(_DeletePeeringCommand, "DeletePeeringCommand");
|
|
4261
|
-
var DeletePeeringCommand = _DeletePeeringCommand;
|
|
4262
4385
|
|
|
4263
4386
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
4264
4387
|
|
|
4265
4388
|
|
|
4266
4389
|
|
|
4267
|
-
var
|
|
4390
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4268
4391
|
return [
|
|
4269
4392
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4270
4393
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4271
4394
|
];
|
|
4272
4395
|
}).s("NetworkManager", "DeleteResourcePolicy", {}).n("NetworkManagerClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
4396
|
+
static {
|
|
4397
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
4398
|
+
}
|
|
4273
4399
|
};
|
|
4274
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
4275
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
4276
4400
|
|
|
4277
4401
|
// src/commands/DeleteSiteCommand.ts
|
|
4278
4402
|
|
|
4279
4403
|
|
|
4280
4404
|
|
|
4281
|
-
var
|
|
4405
|
+
var DeleteSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4282
4406
|
return [
|
|
4283
4407
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4284
4408
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4285
4409
|
];
|
|
4286
4410
|
}).s("NetworkManager", "DeleteSite", {}).n("NetworkManagerClient", "DeleteSiteCommand").f(void 0, DeleteSiteResponseFilterSensitiveLog).ser(se_DeleteSiteCommand).de(de_DeleteSiteCommand).build() {
|
|
4411
|
+
static {
|
|
4412
|
+
__name(this, "DeleteSiteCommand");
|
|
4413
|
+
}
|
|
4287
4414
|
};
|
|
4288
|
-
__name(_DeleteSiteCommand, "DeleteSiteCommand");
|
|
4289
|
-
var DeleteSiteCommand = _DeleteSiteCommand;
|
|
4290
4415
|
|
|
4291
4416
|
// src/commands/DeregisterTransitGatewayCommand.ts
|
|
4292
4417
|
|
|
4293
4418
|
|
|
4294
4419
|
|
|
4295
|
-
var
|
|
4420
|
+
var DeregisterTransitGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4296
4421
|
return [
|
|
4297
4422
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4298
4423
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4299
4424
|
];
|
|
4300
4425
|
}).s("NetworkManager", "DeregisterTransitGateway", {}).n("NetworkManagerClient", "DeregisterTransitGatewayCommand").f(void 0, void 0).ser(se_DeregisterTransitGatewayCommand).de(de_DeregisterTransitGatewayCommand).build() {
|
|
4426
|
+
static {
|
|
4427
|
+
__name(this, "DeregisterTransitGatewayCommand");
|
|
4428
|
+
}
|
|
4301
4429
|
};
|
|
4302
|
-
__name(_DeregisterTransitGatewayCommand, "DeregisterTransitGatewayCommand");
|
|
4303
|
-
var DeregisterTransitGatewayCommand = _DeregisterTransitGatewayCommand;
|
|
4304
4430
|
|
|
4305
4431
|
// src/commands/DescribeGlobalNetworksCommand.ts
|
|
4306
4432
|
|
|
4307
4433
|
|
|
4308
4434
|
|
|
4309
|
-
var
|
|
4435
|
+
var DescribeGlobalNetworksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4310
4436
|
return [
|
|
4311
4437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4312
4438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4313
4439
|
];
|
|
4314
4440
|
}).s("NetworkManager", "DescribeGlobalNetworks", {}).n("NetworkManagerClient", "DescribeGlobalNetworksCommand").f(void 0, void 0).ser(se_DescribeGlobalNetworksCommand).de(de_DescribeGlobalNetworksCommand).build() {
|
|
4441
|
+
static {
|
|
4442
|
+
__name(this, "DescribeGlobalNetworksCommand");
|
|
4443
|
+
}
|
|
4315
4444
|
};
|
|
4316
|
-
__name(_DescribeGlobalNetworksCommand, "DescribeGlobalNetworksCommand");
|
|
4317
|
-
var DescribeGlobalNetworksCommand = _DescribeGlobalNetworksCommand;
|
|
4318
4445
|
|
|
4319
4446
|
// src/commands/DisassociateConnectPeerCommand.ts
|
|
4320
4447
|
|
|
4321
4448
|
|
|
4322
4449
|
|
|
4323
|
-
var
|
|
4450
|
+
var DisassociateConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4324
4451
|
return [
|
|
4325
4452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4326
4453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4327
4454
|
];
|
|
4328
4455
|
}).s("NetworkManager", "DisassociateConnectPeer", {}).n("NetworkManagerClient", "DisassociateConnectPeerCommand").f(void 0, void 0).ser(se_DisassociateConnectPeerCommand).de(de_DisassociateConnectPeerCommand).build() {
|
|
4456
|
+
static {
|
|
4457
|
+
__name(this, "DisassociateConnectPeerCommand");
|
|
4458
|
+
}
|
|
4329
4459
|
};
|
|
4330
|
-
__name(_DisassociateConnectPeerCommand, "DisassociateConnectPeerCommand");
|
|
4331
|
-
var DisassociateConnectPeerCommand = _DisassociateConnectPeerCommand;
|
|
4332
4460
|
|
|
4333
4461
|
// src/commands/DisassociateCustomerGatewayCommand.ts
|
|
4334
4462
|
|
|
4335
4463
|
|
|
4336
4464
|
|
|
4337
|
-
var
|
|
4465
|
+
var DisassociateCustomerGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4338
4466
|
return [
|
|
4339
4467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4340
4468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4341
4469
|
];
|
|
4342
4470
|
}).s("NetworkManager", "DisassociateCustomerGateway", {}).n("NetworkManagerClient", "DisassociateCustomerGatewayCommand").f(void 0, void 0).ser(se_DisassociateCustomerGatewayCommand).de(de_DisassociateCustomerGatewayCommand).build() {
|
|
4471
|
+
static {
|
|
4472
|
+
__name(this, "DisassociateCustomerGatewayCommand");
|
|
4473
|
+
}
|
|
4343
4474
|
};
|
|
4344
|
-
__name(_DisassociateCustomerGatewayCommand, "DisassociateCustomerGatewayCommand");
|
|
4345
|
-
var DisassociateCustomerGatewayCommand = _DisassociateCustomerGatewayCommand;
|
|
4346
4475
|
|
|
4347
4476
|
// src/commands/DisassociateLinkCommand.ts
|
|
4348
4477
|
|
|
4349
4478
|
|
|
4350
4479
|
|
|
4351
|
-
var
|
|
4480
|
+
var DisassociateLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4352
4481
|
return [
|
|
4353
4482
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4354
4483
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4355
4484
|
];
|
|
4356
4485
|
}).s("NetworkManager", "DisassociateLink", {}).n("NetworkManagerClient", "DisassociateLinkCommand").f(void 0, void 0).ser(se_DisassociateLinkCommand).de(de_DisassociateLinkCommand).build() {
|
|
4486
|
+
static {
|
|
4487
|
+
__name(this, "DisassociateLinkCommand");
|
|
4488
|
+
}
|
|
4357
4489
|
};
|
|
4358
|
-
__name(_DisassociateLinkCommand, "DisassociateLinkCommand");
|
|
4359
|
-
var DisassociateLinkCommand = _DisassociateLinkCommand;
|
|
4360
4490
|
|
|
4361
4491
|
// src/commands/DisassociateTransitGatewayConnectPeerCommand.ts
|
|
4362
4492
|
|
|
4363
4493
|
|
|
4364
4494
|
|
|
4365
|
-
var
|
|
4495
|
+
var DisassociateTransitGatewayConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4366
4496
|
return [
|
|
4367
4497
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4368
4498
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4369
4499
|
];
|
|
4370
4500
|
}).s("NetworkManager", "DisassociateTransitGatewayConnectPeer", {}).n("NetworkManagerClient", "DisassociateTransitGatewayConnectPeerCommand").f(void 0, void 0).ser(se_DisassociateTransitGatewayConnectPeerCommand).de(de_DisassociateTransitGatewayConnectPeerCommand).build() {
|
|
4501
|
+
static {
|
|
4502
|
+
__name(this, "DisassociateTransitGatewayConnectPeerCommand");
|
|
4503
|
+
}
|
|
4371
4504
|
};
|
|
4372
|
-
__name(_DisassociateTransitGatewayConnectPeerCommand, "DisassociateTransitGatewayConnectPeerCommand");
|
|
4373
|
-
var DisassociateTransitGatewayConnectPeerCommand = _DisassociateTransitGatewayConnectPeerCommand;
|
|
4374
4505
|
|
|
4375
4506
|
// src/commands/ExecuteCoreNetworkChangeSetCommand.ts
|
|
4376
4507
|
|
|
4377
4508
|
|
|
4378
4509
|
|
|
4379
|
-
var
|
|
4510
|
+
var ExecuteCoreNetworkChangeSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4380
4511
|
return [
|
|
4381
4512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4382
4513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4383
4514
|
];
|
|
4384
4515
|
}).s("NetworkManager", "ExecuteCoreNetworkChangeSet", {}).n("NetworkManagerClient", "ExecuteCoreNetworkChangeSetCommand").f(void 0, void 0).ser(se_ExecuteCoreNetworkChangeSetCommand).de(de_ExecuteCoreNetworkChangeSetCommand).build() {
|
|
4516
|
+
static {
|
|
4517
|
+
__name(this, "ExecuteCoreNetworkChangeSetCommand");
|
|
4518
|
+
}
|
|
4385
4519
|
};
|
|
4386
|
-
__name(_ExecuteCoreNetworkChangeSetCommand, "ExecuteCoreNetworkChangeSetCommand");
|
|
4387
|
-
var ExecuteCoreNetworkChangeSetCommand = _ExecuteCoreNetworkChangeSetCommand;
|
|
4388
4520
|
|
|
4389
4521
|
// src/commands/GetConnectAttachmentCommand.ts
|
|
4390
4522
|
|
|
4391
4523
|
|
|
4392
4524
|
|
|
4393
|
-
var
|
|
4525
|
+
var GetConnectAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4394
4526
|
return [
|
|
4395
4527
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4396
4528
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4397
4529
|
];
|
|
4398
4530
|
}).s("NetworkManager", "GetConnectAttachment", {}).n("NetworkManagerClient", "GetConnectAttachmentCommand").f(void 0, void 0).ser(se_GetConnectAttachmentCommand).de(de_GetConnectAttachmentCommand).build() {
|
|
4531
|
+
static {
|
|
4532
|
+
__name(this, "GetConnectAttachmentCommand");
|
|
4533
|
+
}
|
|
4399
4534
|
};
|
|
4400
|
-
__name(_GetConnectAttachmentCommand, "GetConnectAttachmentCommand");
|
|
4401
|
-
var GetConnectAttachmentCommand = _GetConnectAttachmentCommand;
|
|
4402
4535
|
|
|
4403
4536
|
// src/commands/GetConnectionsCommand.ts
|
|
4404
4537
|
|
|
4405
4538
|
|
|
4406
4539
|
|
|
4407
|
-
var
|
|
4540
|
+
var GetConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4408
4541
|
return [
|
|
4409
4542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4410
4543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4411
4544
|
];
|
|
4412
4545
|
}).s("NetworkManager", "GetConnections", {}).n("NetworkManagerClient", "GetConnectionsCommand").f(void 0, void 0).ser(se_GetConnectionsCommand).de(de_GetConnectionsCommand).build() {
|
|
4546
|
+
static {
|
|
4547
|
+
__name(this, "GetConnectionsCommand");
|
|
4548
|
+
}
|
|
4413
4549
|
};
|
|
4414
|
-
__name(_GetConnectionsCommand, "GetConnectionsCommand");
|
|
4415
|
-
var GetConnectionsCommand = _GetConnectionsCommand;
|
|
4416
4550
|
|
|
4417
4551
|
// src/commands/GetConnectPeerAssociationsCommand.ts
|
|
4418
4552
|
|
|
4419
4553
|
|
|
4420
4554
|
|
|
4421
|
-
var
|
|
4555
|
+
var GetConnectPeerAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4422
4556
|
return [
|
|
4423
4557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4424
4558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4425
4559
|
];
|
|
4426
4560
|
}).s("NetworkManager", "GetConnectPeerAssociations", {}).n("NetworkManagerClient", "GetConnectPeerAssociationsCommand").f(void 0, void 0).ser(se_GetConnectPeerAssociationsCommand).de(de_GetConnectPeerAssociationsCommand).build() {
|
|
4561
|
+
static {
|
|
4562
|
+
__name(this, "GetConnectPeerAssociationsCommand");
|
|
4563
|
+
}
|
|
4427
4564
|
};
|
|
4428
|
-
__name(_GetConnectPeerAssociationsCommand, "GetConnectPeerAssociationsCommand");
|
|
4429
|
-
var GetConnectPeerAssociationsCommand = _GetConnectPeerAssociationsCommand;
|
|
4430
4565
|
|
|
4431
4566
|
// src/commands/GetConnectPeerCommand.ts
|
|
4432
4567
|
|
|
4433
4568
|
|
|
4434
4569
|
|
|
4435
|
-
var
|
|
4570
|
+
var GetConnectPeerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4436
4571
|
return [
|
|
4437
4572
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4438
4573
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4439
4574
|
];
|
|
4440
4575
|
}).s("NetworkManager", "GetConnectPeer", {}).n("NetworkManagerClient", "GetConnectPeerCommand").f(void 0, void 0).ser(se_GetConnectPeerCommand).de(de_GetConnectPeerCommand).build() {
|
|
4576
|
+
static {
|
|
4577
|
+
__name(this, "GetConnectPeerCommand");
|
|
4578
|
+
}
|
|
4441
4579
|
};
|
|
4442
|
-
__name(_GetConnectPeerCommand, "GetConnectPeerCommand");
|
|
4443
|
-
var GetConnectPeerCommand = _GetConnectPeerCommand;
|
|
4444
4580
|
|
|
4445
4581
|
// src/commands/GetCoreNetworkChangeEventsCommand.ts
|
|
4446
4582
|
|
|
4447
4583
|
|
|
4448
4584
|
|
|
4449
|
-
var
|
|
4585
|
+
var GetCoreNetworkChangeEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4450
4586
|
return [
|
|
4451
4587
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4452
4588
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4453
4589
|
];
|
|
4454
4590
|
}).s("NetworkManager", "GetCoreNetworkChangeEvents", {}).n("NetworkManagerClient", "GetCoreNetworkChangeEventsCommand").f(void 0, void 0).ser(se_GetCoreNetworkChangeEventsCommand).de(de_GetCoreNetworkChangeEventsCommand).build() {
|
|
4591
|
+
static {
|
|
4592
|
+
__name(this, "GetCoreNetworkChangeEventsCommand");
|
|
4593
|
+
}
|
|
4455
4594
|
};
|
|
4456
|
-
__name(_GetCoreNetworkChangeEventsCommand, "GetCoreNetworkChangeEventsCommand");
|
|
4457
|
-
var GetCoreNetworkChangeEventsCommand = _GetCoreNetworkChangeEventsCommand;
|
|
4458
4595
|
|
|
4459
4596
|
// src/commands/GetCoreNetworkChangeSetCommand.ts
|
|
4460
4597
|
|
|
4461
4598
|
|
|
4462
4599
|
|
|
4463
|
-
var
|
|
4600
|
+
var GetCoreNetworkChangeSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4464
4601
|
return [
|
|
4465
4602
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4466
4603
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4467
4604
|
];
|
|
4468
4605
|
}).s("NetworkManager", "GetCoreNetworkChangeSet", {}).n("NetworkManagerClient", "GetCoreNetworkChangeSetCommand").f(void 0, void 0).ser(se_GetCoreNetworkChangeSetCommand).de(de_GetCoreNetworkChangeSetCommand).build() {
|
|
4606
|
+
static {
|
|
4607
|
+
__name(this, "GetCoreNetworkChangeSetCommand");
|
|
4608
|
+
}
|
|
4469
4609
|
};
|
|
4470
|
-
__name(_GetCoreNetworkChangeSetCommand, "GetCoreNetworkChangeSetCommand");
|
|
4471
|
-
var GetCoreNetworkChangeSetCommand = _GetCoreNetworkChangeSetCommand;
|
|
4472
4610
|
|
|
4473
4611
|
// src/commands/GetCoreNetworkCommand.ts
|
|
4474
4612
|
|
|
4475
4613
|
|
|
4476
4614
|
|
|
4477
|
-
var
|
|
4615
|
+
var GetCoreNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4478
4616
|
return [
|
|
4479
4617
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4480
4618
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4481
4619
|
];
|
|
4482
4620
|
}).s("NetworkManager", "GetCoreNetwork", {}).n("NetworkManagerClient", "GetCoreNetworkCommand").f(void 0, void 0).ser(se_GetCoreNetworkCommand).de(de_GetCoreNetworkCommand).build() {
|
|
4621
|
+
static {
|
|
4622
|
+
__name(this, "GetCoreNetworkCommand");
|
|
4623
|
+
}
|
|
4483
4624
|
};
|
|
4484
|
-
__name(_GetCoreNetworkCommand, "GetCoreNetworkCommand");
|
|
4485
|
-
var GetCoreNetworkCommand = _GetCoreNetworkCommand;
|
|
4486
4625
|
|
|
4487
4626
|
// src/commands/GetCoreNetworkPolicyCommand.ts
|
|
4488
4627
|
|
|
4489
4628
|
|
|
4490
4629
|
|
|
4491
|
-
var
|
|
4630
|
+
var GetCoreNetworkPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4492
4631
|
return [
|
|
4493
4632
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4494
4633
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4495
4634
|
];
|
|
4496
4635
|
}).s("NetworkManager", "GetCoreNetworkPolicy", {}).n("NetworkManagerClient", "GetCoreNetworkPolicyCommand").f(void 0, void 0).ser(se_GetCoreNetworkPolicyCommand).de(de_GetCoreNetworkPolicyCommand).build() {
|
|
4636
|
+
static {
|
|
4637
|
+
__name(this, "GetCoreNetworkPolicyCommand");
|
|
4638
|
+
}
|
|
4497
4639
|
};
|
|
4498
|
-
__name(_GetCoreNetworkPolicyCommand, "GetCoreNetworkPolicyCommand");
|
|
4499
|
-
var GetCoreNetworkPolicyCommand = _GetCoreNetworkPolicyCommand;
|
|
4500
4640
|
|
|
4501
4641
|
// src/commands/GetCustomerGatewayAssociationsCommand.ts
|
|
4502
4642
|
|
|
4503
4643
|
|
|
4504
4644
|
|
|
4505
|
-
var
|
|
4645
|
+
var GetCustomerGatewayAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4506
4646
|
return [
|
|
4507
4647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4508
4648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4509
4649
|
];
|
|
4510
4650
|
}).s("NetworkManager", "GetCustomerGatewayAssociations", {}).n("NetworkManagerClient", "GetCustomerGatewayAssociationsCommand").f(void 0, void 0).ser(se_GetCustomerGatewayAssociationsCommand).de(de_GetCustomerGatewayAssociationsCommand).build() {
|
|
4651
|
+
static {
|
|
4652
|
+
__name(this, "GetCustomerGatewayAssociationsCommand");
|
|
4653
|
+
}
|
|
4511
4654
|
};
|
|
4512
|
-
__name(_GetCustomerGatewayAssociationsCommand, "GetCustomerGatewayAssociationsCommand");
|
|
4513
|
-
var GetCustomerGatewayAssociationsCommand = _GetCustomerGatewayAssociationsCommand;
|
|
4514
4655
|
|
|
4515
4656
|
// src/commands/GetDevicesCommand.ts
|
|
4516
4657
|
|
|
4517
4658
|
|
|
4518
4659
|
|
|
4519
|
-
var
|
|
4660
|
+
var GetDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4520
4661
|
return [
|
|
4521
4662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4522
4663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4523
4664
|
];
|
|
4524
4665
|
}).s("NetworkManager", "GetDevices", {}).n("NetworkManagerClient", "GetDevicesCommand").f(void 0, GetDevicesResponseFilterSensitiveLog).ser(se_GetDevicesCommand).de(de_GetDevicesCommand).build() {
|
|
4666
|
+
static {
|
|
4667
|
+
__name(this, "GetDevicesCommand");
|
|
4668
|
+
}
|
|
4525
4669
|
};
|
|
4526
|
-
__name(_GetDevicesCommand, "GetDevicesCommand");
|
|
4527
|
-
var GetDevicesCommand = _GetDevicesCommand;
|
|
4528
4670
|
|
|
4529
4671
|
// src/commands/GetDirectConnectGatewayAttachmentCommand.ts
|
|
4530
4672
|
|
|
4531
4673
|
|
|
4532
4674
|
|
|
4533
|
-
var
|
|
4675
|
+
var GetDirectConnectGatewayAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4534
4676
|
return [
|
|
4535
4677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4536
4678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4537
4679
|
];
|
|
4538
4680
|
}).s("NetworkManager", "GetDirectConnectGatewayAttachment", {}).n("NetworkManagerClient", "GetDirectConnectGatewayAttachmentCommand").f(void 0, void 0).ser(se_GetDirectConnectGatewayAttachmentCommand).de(de_GetDirectConnectGatewayAttachmentCommand).build() {
|
|
4681
|
+
static {
|
|
4682
|
+
__name(this, "GetDirectConnectGatewayAttachmentCommand");
|
|
4683
|
+
}
|
|
4539
4684
|
};
|
|
4540
|
-
__name(_GetDirectConnectGatewayAttachmentCommand, "GetDirectConnectGatewayAttachmentCommand");
|
|
4541
|
-
var GetDirectConnectGatewayAttachmentCommand = _GetDirectConnectGatewayAttachmentCommand;
|
|
4542
4685
|
|
|
4543
4686
|
// src/commands/GetLinkAssociationsCommand.ts
|
|
4544
4687
|
|
|
4545
4688
|
|
|
4546
4689
|
|
|
4547
|
-
var
|
|
4690
|
+
var GetLinkAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4548
4691
|
return [
|
|
4549
4692
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4550
4693
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4551
4694
|
];
|
|
4552
4695
|
}).s("NetworkManager", "GetLinkAssociations", {}).n("NetworkManagerClient", "GetLinkAssociationsCommand").f(void 0, void 0).ser(se_GetLinkAssociationsCommand).de(de_GetLinkAssociationsCommand).build() {
|
|
4696
|
+
static {
|
|
4697
|
+
__name(this, "GetLinkAssociationsCommand");
|
|
4698
|
+
}
|
|
4553
4699
|
};
|
|
4554
|
-
__name(_GetLinkAssociationsCommand, "GetLinkAssociationsCommand");
|
|
4555
|
-
var GetLinkAssociationsCommand = _GetLinkAssociationsCommand;
|
|
4556
4700
|
|
|
4557
4701
|
// src/commands/GetLinksCommand.ts
|
|
4558
4702
|
|
|
4559
4703
|
|
|
4560
4704
|
|
|
4561
|
-
var
|
|
4705
|
+
var GetLinksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4562
4706
|
return [
|
|
4563
4707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4564
4708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4565
4709
|
];
|
|
4566
4710
|
}).s("NetworkManager", "GetLinks", {}).n("NetworkManagerClient", "GetLinksCommand").f(void 0, void 0).ser(se_GetLinksCommand).de(de_GetLinksCommand).build() {
|
|
4711
|
+
static {
|
|
4712
|
+
__name(this, "GetLinksCommand");
|
|
4713
|
+
}
|
|
4567
4714
|
};
|
|
4568
|
-
__name(_GetLinksCommand, "GetLinksCommand");
|
|
4569
|
-
var GetLinksCommand = _GetLinksCommand;
|
|
4570
4715
|
|
|
4571
4716
|
// src/commands/GetNetworkResourceCountsCommand.ts
|
|
4572
4717
|
|
|
4573
4718
|
|
|
4574
4719
|
|
|
4575
|
-
var
|
|
4720
|
+
var GetNetworkResourceCountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4576
4721
|
return [
|
|
4577
4722
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4578
4723
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4579
4724
|
];
|
|
4580
4725
|
}).s("NetworkManager", "GetNetworkResourceCounts", {}).n("NetworkManagerClient", "GetNetworkResourceCountsCommand").f(void 0, void 0).ser(se_GetNetworkResourceCountsCommand).de(de_GetNetworkResourceCountsCommand).build() {
|
|
4726
|
+
static {
|
|
4727
|
+
__name(this, "GetNetworkResourceCountsCommand");
|
|
4728
|
+
}
|
|
4581
4729
|
};
|
|
4582
|
-
__name(_GetNetworkResourceCountsCommand, "GetNetworkResourceCountsCommand");
|
|
4583
|
-
var GetNetworkResourceCountsCommand = _GetNetworkResourceCountsCommand;
|
|
4584
4730
|
|
|
4585
4731
|
// src/commands/GetNetworkResourceRelationshipsCommand.ts
|
|
4586
4732
|
|
|
4587
4733
|
|
|
4588
4734
|
|
|
4589
|
-
var
|
|
4735
|
+
var GetNetworkResourceRelationshipsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4590
4736
|
return [
|
|
4591
4737
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4592
4738
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4593
4739
|
];
|
|
4594
4740
|
}).s("NetworkManager", "GetNetworkResourceRelationships", {}).n("NetworkManagerClient", "GetNetworkResourceRelationshipsCommand").f(void 0, void 0).ser(se_GetNetworkResourceRelationshipsCommand).de(de_GetNetworkResourceRelationshipsCommand).build() {
|
|
4741
|
+
static {
|
|
4742
|
+
__name(this, "GetNetworkResourceRelationshipsCommand");
|
|
4743
|
+
}
|
|
4595
4744
|
};
|
|
4596
|
-
__name(_GetNetworkResourceRelationshipsCommand, "GetNetworkResourceRelationshipsCommand");
|
|
4597
|
-
var GetNetworkResourceRelationshipsCommand = _GetNetworkResourceRelationshipsCommand;
|
|
4598
4745
|
|
|
4599
4746
|
// src/commands/GetNetworkResourcesCommand.ts
|
|
4600
4747
|
|
|
4601
4748
|
|
|
4602
4749
|
|
|
4603
|
-
var
|
|
4750
|
+
var GetNetworkResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4604
4751
|
return [
|
|
4605
4752
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4606
4753
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4607
4754
|
];
|
|
4608
4755
|
}).s("NetworkManager", "GetNetworkResources", {}).n("NetworkManagerClient", "GetNetworkResourcesCommand").f(void 0, void 0).ser(se_GetNetworkResourcesCommand).de(de_GetNetworkResourcesCommand).build() {
|
|
4756
|
+
static {
|
|
4757
|
+
__name(this, "GetNetworkResourcesCommand");
|
|
4758
|
+
}
|
|
4609
4759
|
};
|
|
4610
|
-
__name(_GetNetworkResourcesCommand, "GetNetworkResourcesCommand");
|
|
4611
|
-
var GetNetworkResourcesCommand = _GetNetworkResourcesCommand;
|
|
4612
4760
|
|
|
4613
4761
|
// src/commands/GetNetworkRoutesCommand.ts
|
|
4614
4762
|
|
|
4615
4763
|
|
|
4616
4764
|
|
|
4617
|
-
var
|
|
4765
|
+
var GetNetworkRoutesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4618
4766
|
return [
|
|
4619
4767
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4620
4768
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4621
4769
|
];
|
|
4622
4770
|
}).s("NetworkManager", "GetNetworkRoutes", {}).n("NetworkManagerClient", "GetNetworkRoutesCommand").f(void 0, void 0).ser(se_GetNetworkRoutesCommand).de(de_GetNetworkRoutesCommand).build() {
|
|
4771
|
+
static {
|
|
4772
|
+
__name(this, "GetNetworkRoutesCommand");
|
|
4773
|
+
}
|
|
4623
4774
|
};
|
|
4624
|
-
__name(_GetNetworkRoutesCommand, "GetNetworkRoutesCommand");
|
|
4625
|
-
var GetNetworkRoutesCommand = _GetNetworkRoutesCommand;
|
|
4626
4775
|
|
|
4627
4776
|
// src/commands/GetNetworkTelemetryCommand.ts
|
|
4628
4777
|
|
|
4629
4778
|
|
|
4630
4779
|
|
|
4631
|
-
var
|
|
4780
|
+
var GetNetworkTelemetryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4632
4781
|
return [
|
|
4633
4782
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4634
4783
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4635
4784
|
];
|
|
4636
4785
|
}).s("NetworkManager", "GetNetworkTelemetry", {}).n("NetworkManagerClient", "GetNetworkTelemetryCommand").f(void 0, void 0).ser(se_GetNetworkTelemetryCommand).de(de_GetNetworkTelemetryCommand).build() {
|
|
4786
|
+
static {
|
|
4787
|
+
__name(this, "GetNetworkTelemetryCommand");
|
|
4788
|
+
}
|
|
4637
4789
|
};
|
|
4638
|
-
__name(_GetNetworkTelemetryCommand, "GetNetworkTelemetryCommand");
|
|
4639
|
-
var GetNetworkTelemetryCommand = _GetNetworkTelemetryCommand;
|
|
4640
4790
|
|
|
4641
4791
|
// src/commands/GetResourcePolicyCommand.ts
|
|
4642
4792
|
|
|
4643
4793
|
|
|
4644
4794
|
|
|
4645
|
-
var
|
|
4795
|
+
var GetResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4646
4796
|
return [
|
|
4647
4797
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4648
4798
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4649
4799
|
];
|
|
4650
4800
|
}).s("NetworkManager", "GetResourcePolicy", {}).n("NetworkManagerClient", "GetResourcePolicyCommand").f(void 0, void 0).ser(se_GetResourcePolicyCommand).de(de_GetResourcePolicyCommand).build() {
|
|
4801
|
+
static {
|
|
4802
|
+
__name(this, "GetResourcePolicyCommand");
|
|
4803
|
+
}
|
|
4651
4804
|
};
|
|
4652
|
-
__name(_GetResourcePolicyCommand, "GetResourcePolicyCommand");
|
|
4653
|
-
var GetResourcePolicyCommand = _GetResourcePolicyCommand;
|
|
4654
4805
|
|
|
4655
4806
|
// src/commands/GetRouteAnalysisCommand.ts
|
|
4656
4807
|
|
|
4657
4808
|
|
|
4658
4809
|
|
|
4659
|
-
var
|
|
4810
|
+
var GetRouteAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4660
4811
|
return [
|
|
4661
4812
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4662
4813
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4663
4814
|
];
|
|
4664
4815
|
}).s("NetworkManager", "GetRouteAnalysis", {}).n("NetworkManagerClient", "GetRouteAnalysisCommand").f(void 0, void 0).ser(se_GetRouteAnalysisCommand).de(de_GetRouteAnalysisCommand).build() {
|
|
4816
|
+
static {
|
|
4817
|
+
__name(this, "GetRouteAnalysisCommand");
|
|
4818
|
+
}
|
|
4665
4819
|
};
|
|
4666
|
-
__name(_GetRouteAnalysisCommand, "GetRouteAnalysisCommand");
|
|
4667
|
-
var GetRouteAnalysisCommand = _GetRouteAnalysisCommand;
|
|
4668
4820
|
|
|
4669
4821
|
// src/commands/GetSitesCommand.ts
|
|
4670
4822
|
|
|
4671
4823
|
|
|
4672
4824
|
|
|
4673
|
-
var
|
|
4825
|
+
var GetSitesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4674
4826
|
return [
|
|
4675
4827
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4676
4828
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4677
4829
|
];
|
|
4678
4830
|
}).s("NetworkManager", "GetSites", {}).n("NetworkManagerClient", "GetSitesCommand").f(void 0, GetSitesResponseFilterSensitiveLog).ser(se_GetSitesCommand).de(de_GetSitesCommand).build() {
|
|
4831
|
+
static {
|
|
4832
|
+
__name(this, "GetSitesCommand");
|
|
4833
|
+
}
|
|
4679
4834
|
};
|
|
4680
|
-
__name(_GetSitesCommand, "GetSitesCommand");
|
|
4681
|
-
var GetSitesCommand = _GetSitesCommand;
|
|
4682
4835
|
|
|
4683
4836
|
// src/commands/GetSiteToSiteVpnAttachmentCommand.ts
|
|
4684
4837
|
|
|
4685
4838
|
|
|
4686
4839
|
|
|
4687
|
-
var
|
|
4840
|
+
var GetSiteToSiteVpnAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4688
4841
|
return [
|
|
4689
4842
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4690
4843
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4691
4844
|
];
|
|
4692
4845
|
}).s("NetworkManager", "GetSiteToSiteVpnAttachment", {}).n("NetworkManagerClient", "GetSiteToSiteVpnAttachmentCommand").f(void 0, void 0).ser(se_GetSiteToSiteVpnAttachmentCommand).de(de_GetSiteToSiteVpnAttachmentCommand).build() {
|
|
4846
|
+
static {
|
|
4847
|
+
__name(this, "GetSiteToSiteVpnAttachmentCommand");
|
|
4848
|
+
}
|
|
4693
4849
|
};
|
|
4694
|
-
__name(_GetSiteToSiteVpnAttachmentCommand, "GetSiteToSiteVpnAttachmentCommand");
|
|
4695
|
-
var GetSiteToSiteVpnAttachmentCommand = _GetSiteToSiteVpnAttachmentCommand;
|
|
4696
4850
|
|
|
4697
4851
|
// src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts
|
|
4698
4852
|
|
|
4699
4853
|
|
|
4700
4854
|
|
|
4701
|
-
var
|
|
4855
|
+
var GetTransitGatewayConnectPeerAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4702
4856
|
return [
|
|
4703
4857
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4704
4858
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4705
4859
|
];
|
|
4706
4860
|
}).s("NetworkManager", "GetTransitGatewayConnectPeerAssociations", {}).n("NetworkManagerClient", "GetTransitGatewayConnectPeerAssociationsCommand").f(void 0, void 0).ser(se_GetTransitGatewayConnectPeerAssociationsCommand).de(de_GetTransitGatewayConnectPeerAssociationsCommand).build() {
|
|
4861
|
+
static {
|
|
4862
|
+
__name(this, "GetTransitGatewayConnectPeerAssociationsCommand");
|
|
4863
|
+
}
|
|
4707
4864
|
};
|
|
4708
|
-
__name(_GetTransitGatewayConnectPeerAssociationsCommand, "GetTransitGatewayConnectPeerAssociationsCommand");
|
|
4709
|
-
var GetTransitGatewayConnectPeerAssociationsCommand = _GetTransitGatewayConnectPeerAssociationsCommand;
|
|
4710
4865
|
|
|
4711
4866
|
// src/commands/GetTransitGatewayPeeringCommand.ts
|
|
4712
4867
|
|
|
4713
4868
|
|
|
4714
4869
|
|
|
4715
|
-
var
|
|
4870
|
+
var GetTransitGatewayPeeringCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4716
4871
|
return [
|
|
4717
4872
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4718
4873
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4719
4874
|
];
|
|
4720
4875
|
}).s("NetworkManager", "GetTransitGatewayPeering", {}).n("NetworkManagerClient", "GetTransitGatewayPeeringCommand").f(void 0, void 0).ser(se_GetTransitGatewayPeeringCommand).de(de_GetTransitGatewayPeeringCommand).build() {
|
|
4876
|
+
static {
|
|
4877
|
+
__name(this, "GetTransitGatewayPeeringCommand");
|
|
4878
|
+
}
|
|
4721
4879
|
};
|
|
4722
|
-
__name(_GetTransitGatewayPeeringCommand, "GetTransitGatewayPeeringCommand");
|
|
4723
|
-
var GetTransitGatewayPeeringCommand = _GetTransitGatewayPeeringCommand;
|
|
4724
4880
|
|
|
4725
4881
|
// src/commands/GetTransitGatewayRegistrationsCommand.ts
|
|
4726
4882
|
|
|
4727
4883
|
|
|
4728
4884
|
|
|
4729
|
-
var
|
|
4885
|
+
var GetTransitGatewayRegistrationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4730
4886
|
return [
|
|
4731
4887
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4732
4888
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4733
4889
|
];
|
|
4734
4890
|
}).s("NetworkManager", "GetTransitGatewayRegistrations", {}).n("NetworkManagerClient", "GetTransitGatewayRegistrationsCommand").f(void 0, void 0).ser(se_GetTransitGatewayRegistrationsCommand).de(de_GetTransitGatewayRegistrationsCommand).build() {
|
|
4891
|
+
static {
|
|
4892
|
+
__name(this, "GetTransitGatewayRegistrationsCommand");
|
|
4893
|
+
}
|
|
4735
4894
|
};
|
|
4736
|
-
__name(_GetTransitGatewayRegistrationsCommand, "GetTransitGatewayRegistrationsCommand");
|
|
4737
|
-
var GetTransitGatewayRegistrationsCommand = _GetTransitGatewayRegistrationsCommand;
|
|
4738
4895
|
|
|
4739
4896
|
// src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts
|
|
4740
4897
|
|
|
4741
4898
|
|
|
4742
4899
|
|
|
4743
|
-
var
|
|
4900
|
+
var GetTransitGatewayRouteTableAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4744
4901
|
return [
|
|
4745
4902
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4746
4903
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4747
4904
|
];
|
|
4748
4905
|
}).s("NetworkManager", "GetTransitGatewayRouteTableAttachment", {}).n("NetworkManagerClient", "GetTransitGatewayRouteTableAttachmentCommand").f(void 0, void 0).ser(se_GetTransitGatewayRouteTableAttachmentCommand).de(de_GetTransitGatewayRouteTableAttachmentCommand).build() {
|
|
4906
|
+
static {
|
|
4907
|
+
__name(this, "GetTransitGatewayRouteTableAttachmentCommand");
|
|
4908
|
+
}
|
|
4749
4909
|
};
|
|
4750
|
-
__name(_GetTransitGatewayRouteTableAttachmentCommand, "GetTransitGatewayRouteTableAttachmentCommand");
|
|
4751
|
-
var GetTransitGatewayRouteTableAttachmentCommand = _GetTransitGatewayRouteTableAttachmentCommand;
|
|
4752
4910
|
|
|
4753
4911
|
// src/commands/GetVpcAttachmentCommand.ts
|
|
4754
4912
|
|
|
4755
4913
|
|
|
4756
4914
|
|
|
4757
|
-
var
|
|
4915
|
+
var GetVpcAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4758
4916
|
return [
|
|
4759
4917
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4760
4918
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4761
4919
|
];
|
|
4762
4920
|
}).s("NetworkManager", "GetVpcAttachment", {}).n("NetworkManagerClient", "GetVpcAttachmentCommand").f(void 0, void 0).ser(se_GetVpcAttachmentCommand).de(de_GetVpcAttachmentCommand).build() {
|
|
4921
|
+
static {
|
|
4922
|
+
__name(this, "GetVpcAttachmentCommand");
|
|
4923
|
+
}
|
|
4763
4924
|
};
|
|
4764
|
-
__name(_GetVpcAttachmentCommand, "GetVpcAttachmentCommand");
|
|
4765
|
-
var GetVpcAttachmentCommand = _GetVpcAttachmentCommand;
|
|
4766
4925
|
|
|
4767
4926
|
// src/commands/ListAttachmentsCommand.ts
|
|
4768
4927
|
|
|
4769
4928
|
|
|
4770
4929
|
|
|
4771
|
-
var
|
|
4930
|
+
var ListAttachmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4772
4931
|
return [
|
|
4773
4932
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4774
4933
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4775
4934
|
];
|
|
4776
4935
|
}).s("NetworkManager", "ListAttachments", {}).n("NetworkManagerClient", "ListAttachmentsCommand").f(void 0, void 0).ser(se_ListAttachmentsCommand).de(de_ListAttachmentsCommand).build() {
|
|
4936
|
+
static {
|
|
4937
|
+
__name(this, "ListAttachmentsCommand");
|
|
4938
|
+
}
|
|
4777
4939
|
};
|
|
4778
|
-
__name(_ListAttachmentsCommand, "ListAttachmentsCommand");
|
|
4779
|
-
var ListAttachmentsCommand = _ListAttachmentsCommand;
|
|
4780
4940
|
|
|
4781
4941
|
// src/commands/ListConnectPeersCommand.ts
|
|
4782
4942
|
|
|
4783
4943
|
|
|
4784
4944
|
|
|
4785
|
-
var
|
|
4945
|
+
var ListConnectPeersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4786
4946
|
return [
|
|
4787
4947
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4788
4948
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4789
4949
|
];
|
|
4790
4950
|
}).s("NetworkManager", "ListConnectPeers", {}).n("NetworkManagerClient", "ListConnectPeersCommand").f(void 0, void 0).ser(se_ListConnectPeersCommand).de(de_ListConnectPeersCommand).build() {
|
|
4951
|
+
static {
|
|
4952
|
+
__name(this, "ListConnectPeersCommand");
|
|
4953
|
+
}
|
|
4791
4954
|
};
|
|
4792
|
-
__name(_ListConnectPeersCommand, "ListConnectPeersCommand");
|
|
4793
|
-
var ListConnectPeersCommand = _ListConnectPeersCommand;
|
|
4794
4955
|
|
|
4795
4956
|
// src/commands/ListCoreNetworkPolicyVersionsCommand.ts
|
|
4796
4957
|
|
|
4797
4958
|
|
|
4798
4959
|
|
|
4799
|
-
var
|
|
4960
|
+
var ListCoreNetworkPolicyVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4800
4961
|
return [
|
|
4801
4962
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4802
4963
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4803
4964
|
];
|
|
4804
4965
|
}).s("NetworkManager", "ListCoreNetworkPolicyVersions", {}).n("NetworkManagerClient", "ListCoreNetworkPolicyVersionsCommand").f(void 0, void 0).ser(se_ListCoreNetworkPolicyVersionsCommand).de(de_ListCoreNetworkPolicyVersionsCommand).build() {
|
|
4966
|
+
static {
|
|
4967
|
+
__name(this, "ListCoreNetworkPolicyVersionsCommand");
|
|
4968
|
+
}
|
|
4805
4969
|
};
|
|
4806
|
-
__name(_ListCoreNetworkPolicyVersionsCommand, "ListCoreNetworkPolicyVersionsCommand");
|
|
4807
|
-
var ListCoreNetworkPolicyVersionsCommand = _ListCoreNetworkPolicyVersionsCommand;
|
|
4808
4970
|
|
|
4809
4971
|
// src/commands/ListCoreNetworksCommand.ts
|
|
4810
4972
|
|
|
4811
4973
|
|
|
4812
4974
|
|
|
4813
|
-
var
|
|
4975
|
+
var ListCoreNetworksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4814
4976
|
return [
|
|
4815
4977
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4816
4978
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4817
4979
|
];
|
|
4818
4980
|
}).s("NetworkManager", "ListCoreNetworks", {}).n("NetworkManagerClient", "ListCoreNetworksCommand").f(void 0, void 0).ser(se_ListCoreNetworksCommand).de(de_ListCoreNetworksCommand).build() {
|
|
4981
|
+
static {
|
|
4982
|
+
__name(this, "ListCoreNetworksCommand");
|
|
4983
|
+
}
|
|
4819
4984
|
};
|
|
4820
|
-
__name(_ListCoreNetworksCommand, "ListCoreNetworksCommand");
|
|
4821
|
-
var ListCoreNetworksCommand = _ListCoreNetworksCommand;
|
|
4822
4985
|
|
|
4823
4986
|
// src/commands/ListOrganizationServiceAccessStatusCommand.ts
|
|
4824
4987
|
|
|
4825
4988
|
|
|
4826
4989
|
|
|
4827
|
-
var
|
|
4990
|
+
var ListOrganizationServiceAccessStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4828
4991
|
return [
|
|
4829
4992
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4830
4993
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4831
4994
|
];
|
|
4832
4995
|
}).s("NetworkManager", "ListOrganizationServiceAccessStatus", {}).n("NetworkManagerClient", "ListOrganizationServiceAccessStatusCommand").f(void 0, void 0).ser(se_ListOrganizationServiceAccessStatusCommand).de(de_ListOrganizationServiceAccessStatusCommand).build() {
|
|
4996
|
+
static {
|
|
4997
|
+
__name(this, "ListOrganizationServiceAccessStatusCommand");
|
|
4998
|
+
}
|
|
4833
4999
|
};
|
|
4834
|
-
__name(_ListOrganizationServiceAccessStatusCommand, "ListOrganizationServiceAccessStatusCommand");
|
|
4835
|
-
var ListOrganizationServiceAccessStatusCommand = _ListOrganizationServiceAccessStatusCommand;
|
|
4836
5000
|
|
|
4837
5001
|
// src/commands/ListPeeringsCommand.ts
|
|
4838
5002
|
|
|
4839
5003
|
|
|
4840
5004
|
|
|
4841
|
-
var
|
|
5005
|
+
var ListPeeringsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4842
5006
|
return [
|
|
4843
5007
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4844
5008
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4845
5009
|
];
|
|
4846
5010
|
}).s("NetworkManager", "ListPeerings", {}).n("NetworkManagerClient", "ListPeeringsCommand").f(void 0, void 0).ser(se_ListPeeringsCommand).de(de_ListPeeringsCommand).build() {
|
|
5011
|
+
static {
|
|
5012
|
+
__name(this, "ListPeeringsCommand");
|
|
5013
|
+
}
|
|
4847
5014
|
};
|
|
4848
|
-
__name(_ListPeeringsCommand, "ListPeeringsCommand");
|
|
4849
|
-
var ListPeeringsCommand = _ListPeeringsCommand;
|
|
4850
5015
|
|
|
4851
5016
|
// src/commands/ListTagsForResourceCommand.ts
|
|
4852
5017
|
|
|
4853
5018
|
|
|
4854
5019
|
|
|
4855
|
-
var
|
|
5020
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4856
5021
|
return [
|
|
4857
5022
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4858
5023
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4859
5024
|
];
|
|
4860
5025
|
}).s("NetworkManager", "ListTagsForResource", {}).n("NetworkManagerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
5026
|
+
static {
|
|
5027
|
+
__name(this, "ListTagsForResourceCommand");
|
|
5028
|
+
}
|
|
4861
5029
|
};
|
|
4862
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
4863
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
4864
5030
|
|
|
4865
5031
|
// src/commands/PutCoreNetworkPolicyCommand.ts
|
|
4866
5032
|
|
|
4867
5033
|
|
|
4868
5034
|
|
|
4869
|
-
var
|
|
5035
|
+
var PutCoreNetworkPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4870
5036
|
return [
|
|
4871
5037
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4872
5038
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4873
5039
|
];
|
|
4874
5040
|
}).s("NetworkManager", "PutCoreNetworkPolicy", {}).n("NetworkManagerClient", "PutCoreNetworkPolicyCommand").f(void 0, void 0).ser(se_PutCoreNetworkPolicyCommand).de(de_PutCoreNetworkPolicyCommand).build() {
|
|
5041
|
+
static {
|
|
5042
|
+
__name(this, "PutCoreNetworkPolicyCommand");
|
|
5043
|
+
}
|
|
4875
5044
|
};
|
|
4876
|
-
__name(_PutCoreNetworkPolicyCommand, "PutCoreNetworkPolicyCommand");
|
|
4877
|
-
var PutCoreNetworkPolicyCommand = _PutCoreNetworkPolicyCommand;
|
|
4878
5045
|
|
|
4879
5046
|
// src/commands/PutResourcePolicyCommand.ts
|
|
4880
5047
|
|
|
4881
5048
|
|
|
4882
5049
|
|
|
4883
|
-
var
|
|
5050
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4884
5051
|
return [
|
|
4885
5052
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4886
5053
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4887
5054
|
];
|
|
4888
5055
|
}).s("NetworkManager", "PutResourcePolicy", {}).n("NetworkManagerClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
5056
|
+
static {
|
|
5057
|
+
__name(this, "PutResourcePolicyCommand");
|
|
5058
|
+
}
|
|
4889
5059
|
};
|
|
4890
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
4891
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
4892
5060
|
|
|
4893
5061
|
// src/commands/RegisterTransitGatewayCommand.ts
|
|
4894
5062
|
|
|
4895
5063
|
|
|
4896
5064
|
|
|
4897
|
-
var
|
|
5065
|
+
var RegisterTransitGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4898
5066
|
return [
|
|
4899
5067
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4900
5068
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4901
5069
|
];
|
|
4902
5070
|
}).s("NetworkManager", "RegisterTransitGateway", {}).n("NetworkManagerClient", "RegisterTransitGatewayCommand").f(void 0, void 0).ser(se_RegisterTransitGatewayCommand).de(de_RegisterTransitGatewayCommand).build() {
|
|
5071
|
+
static {
|
|
5072
|
+
__name(this, "RegisterTransitGatewayCommand");
|
|
5073
|
+
}
|
|
4903
5074
|
};
|
|
4904
|
-
__name(_RegisterTransitGatewayCommand, "RegisterTransitGatewayCommand");
|
|
4905
|
-
var RegisterTransitGatewayCommand = _RegisterTransitGatewayCommand;
|
|
4906
5075
|
|
|
4907
5076
|
// src/commands/RejectAttachmentCommand.ts
|
|
4908
5077
|
|
|
4909
5078
|
|
|
4910
5079
|
|
|
4911
|
-
var
|
|
5080
|
+
var RejectAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4912
5081
|
return [
|
|
4913
5082
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4914
5083
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4915
5084
|
];
|
|
4916
5085
|
}).s("NetworkManager", "RejectAttachment", {}).n("NetworkManagerClient", "RejectAttachmentCommand").f(void 0, void 0).ser(se_RejectAttachmentCommand).de(de_RejectAttachmentCommand).build() {
|
|
5086
|
+
static {
|
|
5087
|
+
__name(this, "RejectAttachmentCommand");
|
|
5088
|
+
}
|
|
4917
5089
|
};
|
|
4918
|
-
__name(_RejectAttachmentCommand, "RejectAttachmentCommand");
|
|
4919
|
-
var RejectAttachmentCommand = _RejectAttachmentCommand;
|
|
4920
5090
|
|
|
4921
5091
|
// src/commands/RestoreCoreNetworkPolicyVersionCommand.ts
|
|
4922
5092
|
|
|
4923
5093
|
|
|
4924
5094
|
|
|
4925
|
-
var
|
|
5095
|
+
var RestoreCoreNetworkPolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4926
5096
|
return [
|
|
4927
5097
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4928
5098
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4929
5099
|
];
|
|
4930
5100
|
}).s("NetworkManager", "RestoreCoreNetworkPolicyVersion", {}).n("NetworkManagerClient", "RestoreCoreNetworkPolicyVersionCommand").f(void 0, void 0).ser(se_RestoreCoreNetworkPolicyVersionCommand).de(de_RestoreCoreNetworkPolicyVersionCommand).build() {
|
|
5101
|
+
static {
|
|
5102
|
+
__name(this, "RestoreCoreNetworkPolicyVersionCommand");
|
|
5103
|
+
}
|
|
4931
5104
|
};
|
|
4932
|
-
__name(_RestoreCoreNetworkPolicyVersionCommand, "RestoreCoreNetworkPolicyVersionCommand");
|
|
4933
|
-
var RestoreCoreNetworkPolicyVersionCommand = _RestoreCoreNetworkPolicyVersionCommand;
|
|
4934
5105
|
|
|
4935
5106
|
// src/commands/StartOrganizationServiceAccessUpdateCommand.ts
|
|
4936
5107
|
|
|
4937
5108
|
|
|
4938
5109
|
|
|
4939
|
-
var
|
|
5110
|
+
var StartOrganizationServiceAccessUpdateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4940
5111
|
return [
|
|
4941
5112
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4942
5113
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4943
5114
|
];
|
|
4944
5115
|
}).s("NetworkManager", "StartOrganizationServiceAccessUpdate", {}).n("NetworkManagerClient", "StartOrganizationServiceAccessUpdateCommand").f(void 0, void 0).ser(se_StartOrganizationServiceAccessUpdateCommand).de(de_StartOrganizationServiceAccessUpdateCommand).build() {
|
|
5116
|
+
static {
|
|
5117
|
+
__name(this, "StartOrganizationServiceAccessUpdateCommand");
|
|
5118
|
+
}
|
|
4945
5119
|
};
|
|
4946
|
-
__name(_StartOrganizationServiceAccessUpdateCommand, "StartOrganizationServiceAccessUpdateCommand");
|
|
4947
|
-
var StartOrganizationServiceAccessUpdateCommand = _StartOrganizationServiceAccessUpdateCommand;
|
|
4948
5120
|
|
|
4949
5121
|
// src/commands/StartRouteAnalysisCommand.ts
|
|
4950
5122
|
|
|
4951
5123
|
|
|
4952
5124
|
|
|
4953
|
-
var
|
|
5125
|
+
var StartRouteAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4954
5126
|
return [
|
|
4955
5127
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4956
5128
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4957
5129
|
];
|
|
4958
5130
|
}).s("NetworkManager", "StartRouteAnalysis", {}).n("NetworkManagerClient", "StartRouteAnalysisCommand").f(void 0, void 0).ser(se_StartRouteAnalysisCommand).de(de_StartRouteAnalysisCommand).build() {
|
|
5131
|
+
static {
|
|
5132
|
+
__name(this, "StartRouteAnalysisCommand");
|
|
5133
|
+
}
|
|
4959
5134
|
};
|
|
4960
|
-
__name(_StartRouteAnalysisCommand, "StartRouteAnalysisCommand");
|
|
4961
|
-
var StartRouteAnalysisCommand = _StartRouteAnalysisCommand;
|
|
4962
5135
|
|
|
4963
5136
|
// src/commands/TagResourceCommand.ts
|
|
4964
5137
|
|
|
4965
5138
|
|
|
4966
5139
|
|
|
4967
|
-
var
|
|
5140
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4968
5141
|
return [
|
|
4969
5142
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4970
5143
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4971
5144
|
];
|
|
4972
5145
|
}).s("NetworkManager", "TagResource", {}).n("NetworkManagerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
5146
|
+
static {
|
|
5147
|
+
__name(this, "TagResourceCommand");
|
|
5148
|
+
}
|
|
4973
5149
|
};
|
|
4974
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4975
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4976
5150
|
|
|
4977
5151
|
// src/commands/UntagResourceCommand.ts
|
|
4978
5152
|
|
|
4979
5153
|
|
|
4980
5154
|
|
|
4981
|
-
var
|
|
5155
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4982
5156
|
return [
|
|
4983
5157
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4984
5158
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4985
5159
|
];
|
|
4986
5160
|
}).s("NetworkManager", "UntagResource", {}).n("NetworkManagerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
5161
|
+
static {
|
|
5162
|
+
__name(this, "UntagResourceCommand");
|
|
5163
|
+
}
|
|
4987
5164
|
};
|
|
4988
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4989
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4990
5165
|
|
|
4991
5166
|
// src/commands/UpdateConnectionCommand.ts
|
|
4992
5167
|
|
|
4993
5168
|
|
|
4994
5169
|
|
|
4995
|
-
var
|
|
5170
|
+
var UpdateConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4996
5171
|
return [
|
|
4997
5172
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4998
5173
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4999
5174
|
];
|
|
5000
5175
|
}).s("NetworkManager", "UpdateConnection", {}).n("NetworkManagerClient", "UpdateConnectionCommand").f(void 0, void 0).ser(se_UpdateConnectionCommand).de(de_UpdateConnectionCommand).build() {
|
|
5176
|
+
static {
|
|
5177
|
+
__name(this, "UpdateConnectionCommand");
|
|
5178
|
+
}
|
|
5001
5179
|
};
|
|
5002
|
-
__name(_UpdateConnectionCommand, "UpdateConnectionCommand");
|
|
5003
|
-
var UpdateConnectionCommand = _UpdateConnectionCommand;
|
|
5004
5180
|
|
|
5005
5181
|
// src/commands/UpdateCoreNetworkCommand.ts
|
|
5006
5182
|
|
|
5007
5183
|
|
|
5008
5184
|
|
|
5009
|
-
var
|
|
5185
|
+
var UpdateCoreNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5010
5186
|
return [
|
|
5011
5187
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5012
5188
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5013
5189
|
];
|
|
5014
5190
|
}).s("NetworkManager", "UpdateCoreNetwork", {}).n("NetworkManagerClient", "UpdateCoreNetworkCommand").f(void 0, void 0).ser(se_UpdateCoreNetworkCommand).de(de_UpdateCoreNetworkCommand).build() {
|
|
5191
|
+
static {
|
|
5192
|
+
__name(this, "UpdateCoreNetworkCommand");
|
|
5193
|
+
}
|
|
5015
5194
|
};
|
|
5016
|
-
__name(_UpdateCoreNetworkCommand, "UpdateCoreNetworkCommand");
|
|
5017
|
-
var UpdateCoreNetworkCommand = _UpdateCoreNetworkCommand;
|
|
5018
5195
|
|
|
5019
5196
|
// src/commands/UpdateDeviceCommand.ts
|
|
5020
5197
|
|
|
5021
5198
|
|
|
5022
5199
|
|
|
5023
|
-
var
|
|
5200
|
+
var UpdateDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5024
5201
|
return [
|
|
5025
5202
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5026
5203
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5027
5204
|
];
|
|
5028
5205
|
}).s("NetworkManager", "UpdateDevice", {}).n("NetworkManagerClient", "UpdateDeviceCommand").f(UpdateDeviceRequestFilterSensitiveLog, UpdateDeviceResponseFilterSensitiveLog).ser(se_UpdateDeviceCommand).de(de_UpdateDeviceCommand).build() {
|
|
5206
|
+
static {
|
|
5207
|
+
__name(this, "UpdateDeviceCommand");
|
|
5208
|
+
}
|
|
5029
5209
|
};
|
|
5030
|
-
__name(_UpdateDeviceCommand, "UpdateDeviceCommand");
|
|
5031
|
-
var UpdateDeviceCommand = _UpdateDeviceCommand;
|
|
5032
5210
|
|
|
5033
5211
|
// src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts
|
|
5034
5212
|
|
|
5035
5213
|
|
|
5036
5214
|
|
|
5037
|
-
var
|
|
5215
|
+
var UpdateDirectConnectGatewayAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5038
5216
|
return [
|
|
5039
5217
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5040
5218
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5041
5219
|
];
|
|
5042
5220
|
}).s("NetworkManager", "UpdateDirectConnectGatewayAttachment", {}).n("NetworkManagerClient", "UpdateDirectConnectGatewayAttachmentCommand").f(void 0, void 0).ser(se_UpdateDirectConnectGatewayAttachmentCommand).de(de_UpdateDirectConnectGatewayAttachmentCommand).build() {
|
|
5221
|
+
static {
|
|
5222
|
+
__name(this, "UpdateDirectConnectGatewayAttachmentCommand");
|
|
5223
|
+
}
|
|
5043
5224
|
};
|
|
5044
|
-
__name(_UpdateDirectConnectGatewayAttachmentCommand, "UpdateDirectConnectGatewayAttachmentCommand");
|
|
5045
|
-
var UpdateDirectConnectGatewayAttachmentCommand = _UpdateDirectConnectGatewayAttachmentCommand;
|
|
5046
5225
|
|
|
5047
5226
|
// src/commands/UpdateGlobalNetworkCommand.ts
|
|
5048
5227
|
|
|
5049
5228
|
|
|
5050
5229
|
|
|
5051
|
-
var
|
|
5230
|
+
var UpdateGlobalNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5052
5231
|
return [
|
|
5053
5232
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5054
5233
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5055
5234
|
];
|
|
5056
5235
|
}).s("NetworkManager", "UpdateGlobalNetwork", {}).n("NetworkManagerClient", "UpdateGlobalNetworkCommand").f(void 0, void 0).ser(se_UpdateGlobalNetworkCommand).de(de_UpdateGlobalNetworkCommand).build() {
|
|
5236
|
+
static {
|
|
5237
|
+
__name(this, "UpdateGlobalNetworkCommand");
|
|
5238
|
+
}
|
|
5057
5239
|
};
|
|
5058
|
-
__name(_UpdateGlobalNetworkCommand, "UpdateGlobalNetworkCommand");
|
|
5059
|
-
var UpdateGlobalNetworkCommand = _UpdateGlobalNetworkCommand;
|
|
5060
5240
|
|
|
5061
5241
|
// src/commands/UpdateLinkCommand.ts
|
|
5062
5242
|
|
|
5063
5243
|
|
|
5064
5244
|
|
|
5065
|
-
var
|
|
5245
|
+
var UpdateLinkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5066
5246
|
return [
|
|
5067
5247
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5068
5248
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5069
5249
|
];
|
|
5070
5250
|
}).s("NetworkManager", "UpdateLink", {}).n("NetworkManagerClient", "UpdateLinkCommand").f(void 0, void 0).ser(se_UpdateLinkCommand).de(de_UpdateLinkCommand).build() {
|
|
5251
|
+
static {
|
|
5252
|
+
__name(this, "UpdateLinkCommand");
|
|
5253
|
+
}
|
|
5071
5254
|
};
|
|
5072
|
-
__name(_UpdateLinkCommand, "UpdateLinkCommand");
|
|
5073
|
-
var UpdateLinkCommand = _UpdateLinkCommand;
|
|
5074
5255
|
|
|
5075
5256
|
// src/commands/UpdateNetworkResourceMetadataCommand.ts
|
|
5076
5257
|
|
|
5077
5258
|
|
|
5078
5259
|
|
|
5079
|
-
var
|
|
5260
|
+
var UpdateNetworkResourceMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5080
5261
|
return [
|
|
5081
5262
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5082
5263
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5083
5264
|
];
|
|
5084
5265
|
}).s("NetworkManager", "UpdateNetworkResourceMetadata", {}).n("NetworkManagerClient", "UpdateNetworkResourceMetadataCommand").f(void 0, void 0).ser(se_UpdateNetworkResourceMetadataCommand).de(de_UpdateNetworkResourceMetadataCommand).build() {
|
|
5266
|
+
static {
|
|
5267
|
+
__name(this, "UpdateNetworkResourceMetadataCommand");
|
|
5268
|
+
}
|
|
5085
5269
|
};
|
|
5086
|
-
__name(_UpdateNetworkResourceMetadataCommand, "UpdateNetworkResourceMetadataCommand");
|
|
5087
|
-
var UpdateNetworkResourceMetadataCommand = _UpdateNetworkResourceMetadataCommand;
|
|
5088
5270
|
|
|
5089
5271
|
// src/commands/UpdateSiteCommand.ts
|
|
5090
5272
|
|
|
5091
5273
|
|
|
5092
5274
|
|
|
5093
|
-
var
|
|
5275
|
+
var UpdateSiteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5094
5276
|
return [
|
|
5095
5277
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5096
5278
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5097
5279
|
];
|
|
5098
5280
|
}).s("NetworkManager", "UpdateSite", {}).n("NetworkManagerClient", "UpdateSiteCommand").f(UpdateSiteRequestFilterSensitiveLog, UpdateSiteResponseFilterSensitiveLog).ser(se_UpdateSiteCommand).de(de_UpdateSiteCommand).build() {
|
|
5281
|
+
static {
|
|
5282
|
+
__name(this, "UpdateSiteCommand");
|
|
5283
|
+
}
|
|
5099
5284
|
};
|
|
5100
|
-
__name(_UpdateSiteCommand, "UpdateSiteCommand");
|
|
5101
|
-
var UpdateSiteCommand = _UpdateSiteCommand;
|
|
5102
5285
|
|
|
5103
5286
|
// src/commands/UpdateVpcAttachmentCommand.ts
|
|
5104
5287
|
|
|
5105
5288
|
|
|
5106
5289
|
|
|
5107
|
-
var
|
|
5290
|
+
var UpdateVpcAttachmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5108
5291
|
return [
|
|
5109
5292
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5110
5293
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5111
5294
|
];
|
|
5112
5295
|
}).s("NetworkManager", "UpdateVpcAttachment", {}).n("NetworkManagerClient", "UpdateVpcAttachmentCommand").f(void 0, void 0).ser(se_UpdateVpcAttachmentCommand).de(de_UpdateVpcAttachmentCommand).build() {
|
|
5296
|
+
static {
|
|
5297
|
+
__name(this, "UpdateVpcAttachmentCommand");
|
|
5298
|
+
}
|
|
5113
5299
|
};
|
|
5114
|
-
__name(_UpdateVpcAttachmentCommand, "UpdateVpcAttachmentCommand");
|
|
5115
|
-
var UpdateVpcAttachmentCommand = _UpdateVpcAttachmentCommand;
|
|
5116
5300
|
|
|
5117
5301
|
// src/NetworkManager.ts
|
|
5118
5302
|
var commands = {
|
|
@@ -5205,10 +5389,11 @@ var commands = {
|
|
|
5205
5389
|
UpdateSiteCommand,
|
|
5206
5390
|
UpdateVpcAttachmentCommand
|
|
5207
5391
|
};
|
|
5208
|
-
var
|
|
5392
|
+
var NetworkManager = class extends NetworkManagerClient {
|
|
5393
|
+
static {
|
|
5394
|
+
__name(this, "NetworkManager");
|
|
5395
|
+
}
|
|
5209
5396
|
};
|
|
5210
|
-
__name(_NetworkManager, "NetworkManager");
|
|
5211
|
-
var NetworkManager = _NetworkManager;
|
|
5212
5397
|
(0, import_smithy_client.createAggregatedClient)(commands, NetworkManager);
|
|
5213
5398
|
|
|
5214
5399
|
// src/pagination/DescribeGlobalNetworksPaginator.ts
|