@aws-sdk/client-mediaconnect 3.721.0 → 3.726.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +357 -226
- package/dist-es/MediaConnectClient.js +1 -0
- package/dist-es/models/models_0.js +36 -24
- 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 +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -231,7 +231,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
231
231
|
}, "resolveRuntimeExtensions");
|
|
232
232
|
|
|
233
233
|
// src/MediaConnectClient.ts
|
|
234
|
-
var
|
|
234
|
+
var MediaConnectClient = class extends import_smithy_client.Client {
|
|
235
|
+
static {
|
|
236
|
+
__name(this, "MediaConnectClient");
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* The resolved configuration of MediaConnectClient class. This is resolved and normalized from the {@link MediaConnectClientConfig | constructor configuration interface}.
|
|
240
|
+
*/
|
|
241
|
+
config;
|
|
235
242
|
constructor(...[configuration]) {
|
|
236
243
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
237
244
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -241,7 +248,7 @@ var _MediaConnectClient = class _MediaConnectClient extends import_smithy_client
|
|
|
241
248
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
242
249
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
243
250
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
244
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
251
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
245
252
|
super(_config_8);
|
|
246
253
|
this.config = _config_8;
|
|
247
254
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -269,8 +276,6 @@ var _MediaConnectClient = class _MediaConnectClient extends import_smithy_client
|
|
|
269
276
|
super.destroy();
|
|
270
277
|
}
|
|
271
278
|
};
|
|
272
|
-
__name(_MediaConnectClient, "MediaConnectClient");
|
|
273
|
-
var MediaConnectClient = _MediaConnectClient;
|
|
274
279
|
|
|
275
280
|
// src/MediaConnect.ts
|
|
276
281
|
|
|
@@ -287,7 +292,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
287
292
|
|
|
288
293
|
// src/models/MediaConnectServiceException.ts
|
|
289
294
|
|
|
290
|
-
var
|
|
295
|
+
var MediaConnectServiceException = class _MediaConnectServiceException extends import_smithy_client.ServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "MediaConnectServiceException");
|
|
298
|
+
}
|
|
291
299
|
/**
|
|
292
300
|
* @internal
|
|
293
301
|
*/
|
|
@@ -296,8 +304,6 @@ var _MediaConnectServiceException = class _MediaConnectServiceException extends
|
|
|
296
304
|
Object.setPrototypeOf(this, _MediaConnectServiceException.prototype);
|
|
297
305
|
}
|
|
298
306
|
};
|
|
299
|
-
__name(_MediaConnectServiceException, "MediaConnectServiceException");
|
|
300
|
-
var MediaConnectServiceException = _MediaConnectServiceException;
|
|
301
307
|
|
|
302
308
|
// src/models/models_0.ts
|
|
303
309
|
var Protocol = {
|
|
@@ -451,7 +457,17 @@ var NetworkInterfaceType = {
|
|
|
451
457
|
efa: "efa",
|
|
452
458
|
ena: "ena"
|
|
453
459
|
};
|
|
454
|
-
var
|
|
460
|
+
var BadRequestException = class _BadRequestException extends MediaConnectServiceException {
|
|
461
|
+
static {
|
|
462
|
+
__name(this, "BadRequestException");
|
|
463
|
+
}
|
|
464
|
+
name = "BadRequestException";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
/**
|
|
467
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
Message;
|
|
455
471
|
/**
|
|
456
472
|
* @internal
|
|
457
473
|
*/
|
|
@@ -461,15 +477,21 @@ var _BadRequestException = class _BadRequestException extends MediaConnectServic
|
|
|
461
477
|
$fault: "client",
|
|
462
478
|
...opts
|
|
463
479
|
});
|
|
464
|
-
this.name = "BadRequestException";
|
|
465
|
-
this.$fault = "client";
|
|
466
480
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
467
481
|
this.Message = opts.Message;
|
|
468
482
|
}
|
|
469
483
|
};
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
484
|
+
var ConflictException = class _ConflictException extends MediaConnectServiceException {
|
|
485
|
+
static {
|
|
486
|
+
__name(this, "ConflictException");
|
|
487
|
+
}
|
|
488
|
+
name = "ConflictException";
|
|
489
|
+
$fault = "client";
|
|
490
|
+
/**
|
|
491
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
492
|
+
* @public
|
|
493
|
+
*/
|
|
494
|
+
Message;
|
|
473
495
|
/**
|
|
474
496
|
* @internal
|
|
475
497
|
*/
|
|
@@ -479,15 +501,21 @@ var _ConflictException = class _ConflictException extends MediaConnectServiceExc
|
|
|
479
501
|
$fault: "client",
|
|
480
502
|
...opts
|
|
481
503
|
});
|
|
482
|
-
this.name = "ConflictException";
|
|
483
|
-
this.$fault = "client";
|
|
484
504
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
485
505
|
this.Message = opts.Message;
|
|
486
506
|
}
|
|
487
507
|
};
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
508
|
+
var ForbiddenException = class _ForbiddenException extends MediaConnectServiceException {
|
|
509
|
+
static {
|
|
510
|
+
__name(this, "ForbiddenException");
|
|
511
|
+
}
|
|
512
|
+
name = "ForbiddenException";
|
|
513
|
+
$fault = "client";
|
|
514
|
+
/**
|
|
515
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
Message;
|
|
491
519
|
/**
|
|
492
520
|
* @internal
|
|
493
521
|
*/
|
|
@@ -497,15 +525,21 @@ var _ForbiddenException = class _ForbiddenException extends MediaConnectServiceE
|
|
|
497
525
|
$fault: "client",
|
|
498
526
|
...opts
|
|
499
527
|
});
|
|
500
|
-
this.name = "ForbiddenException";
|
|
501
|
-
this.$fault = "client";
|
|
502
528
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
503
529
|
this.Message = opts.Message;
|
|
504
530
|
}
|
|
505
531
|
};
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
532
|
+
var InternalServerErrorException = class _InternalServerErrorException extends MediaConnectServiceException {
|
|
533
|
+
static {
|
|
534
|
+
__name(this, "InternalServerErrorException");
|
|
535
|
+
}
|
|
536
|
+
name = "InternalServerErrorException";
|
|
537
|
+
$fault = "server";
|
|
538
|
+
/**
|
|
539
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
542
|
+
Message;
|
|
509
543
|
/**
|
|
510
544
|
* @internal
|
|
511
545
|
*/
|
|
@@ -515,15 +549,21 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
515
549
|
$fault: "server",
|
|
516
550
|
...opts
|
|
517
551
|
});
|
|
518
|
-
this.name = "InternalServerErrorException";
|
|
519
|
-
this.$fault = "server";
|
|
520
552
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
521
553
|
this.Message = opts.Message;
|
|
522
554
|
}
|
|
523
555
|
};
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
556
|
+
var NotFoundException = class _NotFoundException extends MediaConnectServiceException {
|
|
557
|
+
static {
|
|
558
|
+
__name(this, "NotFoundException");
|
|
559
|
+
}
|
|
560
|
+
name = "NotFoundException";
|
|
561
|
+
$fault = "client";
|
|
562
|
+
/**
|
|
563
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
Message;
|
|
527
567
|
/**
|
|
528
568
|
* @internal
|
|
529
569
|
*/
|
|
@@ -533,15 +573,21 @@ var _NotFoundException = class _NotFoundException extends MediaConnectServiceExc
|
|
|
533
573
|
$fault: "client",
|
|
534
574
|
...opts
|
|
535
575
|
});
|
|
536
|
-
this.name = "NotFoundException";
|
|
537
|
-
this.$fault = "client";
|
|
538
576
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
539
577
|
this.Message = opts.Message;
|
|
540
578
|
}
|
|
541
579
|
};
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
580
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends MediaConnectServiceException {
|
|
581
|
+
static {
|
|
582
|
+
__name(this, "ServiceUnavailableException");
|
|
583
|
+
}
|
|
584
|
+
name = "ServiceUnavailableException";
|
|
585
|
+
$fault = "server";
|
|
586
|
+
/**
|
|
587
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
Message;
|
|
545
591
|
/**
|
|
546
592
|
* @internal
|
|
547
593
|
*/
|
|
@@ -551,15 +597,21 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Me
|
|
|
551
597
|
$fault: "server",
|
|
552
598
|
...opts
|
|
553
599
|
});
|
|
554
|
-
this.name = "ServiceUnavailableException";
|
|
555
|
-
this.$fault = "server";
|
|
556
600
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
557
601
|
this.Message = opts.Message;
|
|
558
602
|
}
|
|
559
603
|
};
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
604
|
+
var TooManyRequestsException = class _TooManyRequestsException extends MediaConnectServiceException {
|
|
605
|
+
static {
|
|
606
|
+
__name(this, "TooManyRequestsException");
|
|
607
|
+
}
|
|
608
|
+
name = "TooManyRequestsException";
|
|
609
|
+
$fault = "client";
|
|
610
|
+
/**
|
|
611
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
612
|
+
* @public
|
|
613
|
+
*/
|
|
614
|
+
Message;
|
|
563
615
|
/**
|
|
564
616
|
* @internal
|
|
565
617
|
*/
|
|
@@ -569,15 +621,21 @@ var _TooManyRequestsException = class _TooManyRequestsException extends MediaCon
|
|
|
569
621
|
$fault: "client",
|
|
570
622
|
...opts
|
|
571
623
|
});
|
|
572
|
-
this.name = "TooManyRequestsException";
|
|
573
|
-
this.$fault = "client";
|
|
574
624
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
575
625
|
this.Message = opts.Message;
|
|
576
626
|
}
|
|
577
627
|
};
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
628
|
+
var AddFlowOutputs420Exception = class _AddFlowOutputs420Exception extends MediaConnectServiceException {
|
|
629
|
+
static {
|
|
630
|
+
__name(this, "AddFlowOutputs420Exception");
|
|
631
|
+
}
|
|
632
|
+
name = "AddFlowOutputs420Exception";
|
|
633
|
+
$fault = "client";
|
|
634
|
+
/**
|
|
635
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
638
|
+
Message;
|
|
581
639
|
/**
|
|
582
640
|
* @internal
|
|
583
641
|
*/
|
|
@@ -587,14 +645,10 @@ var _AddFlowOutputs420Exception = class _AddFlowOutputs420Exception extends Medi
|
|
|
587
645
|
$fault: "client",
|
|
588
646
|
...opts
|
|
589
647
|
});
|
|
590
|
-
this.name = "AddFlowOutputs420Exception";
|
|
591
|
-
this.$fault = "client";
|
|
592
648
|
Object.setPrototypeOf(this, _AddFlowOutputs420Exception.prototype);
|
|
593
649
|
this.Message = opts.Message;
|
|
594
650
|
}
|
|
595
651
|
};
|
|
596
|
-
__name(_AddFlowOutputs420Exception, "AddFlowOutputs420Exception");
|
|
597
|
-
var AddFlowOutputs420Exception = _AddFlowOutputs420Exception;
|
|
598
652
|
var FailoverMode = {
|
|
599
653
|
FAILOVER: "FAILOVER",
|
|
600
654
|
MERGE: "MERGE"
|
|
@@ -611,7 +665,17 @@ var ContentQualityAnalysisState = {
|
|
|
611
665
|
DISABLED: "DISABLED",
|
|
612
666
|
ENABLED: "ENABLED"
|
|
613
667
|
};
|
|
614
|
-
var
|
|
668
|
+
var CreateBridge420Exception = class _CreateBridge420Exception extends MediaConnectServiceException {
|
|
669
|
+
static {
|
|
670
|
+
__name(this, "CreateBridge420Exception");
|
|
671
|
+
}
|
|
672
|
+
name = "CreateBridge420Exception";
|
|
673
|
+
$fault = "client";
|
|
674
|
+
/**
|
|
675
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
678
|
+
Message;
|
|
615
679
|
/**
|
|
616
680
|
* @internal
|
|
617
681
|
*/
|
|
@@ -621,15 +685,21 @@ var _CreateBridge420Exception = class _CreateBridge420Exception extends MediaCon
|
|
|
621
685
|
$fault: "client",
|
|
622
686
|
...opts
|
|
623
687
|
});
|
|
624
|
-
this.name = "CreateBridge420Exception";
|
|
625
|
-
this.$fault = "client";
|
|
626
688
|
Object.setPrototypeOf(this, _CreateBridge420Exception.prototype);
|
|
627
689
|
this.Message = opts.Message;
|
|
628
690
|
}
|
|
629
691
|
};
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
692
|
+
var CreateFlow420Exception = class _CreateFlow420Exception extends MediaConnectServiceException {
|
|
693
|
+
static {
|
|
694
|
+
__name(this, "CreateFlow420Exception");
|
|
695
|
+
}
|
|
696
|
+
name = "CreateFlow420Exception";
|
|
697
|
+
$fault = "client";
|
|
698
|
+
/**
|
|
699
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
702
|
+
Message;
|
|
633
703
|
/**
|
|
634
704
|
* @internal
|
|
635
705
|
*/
|
|
@@ -639,19 +709,25 @@ var _CreateFlow420Exception = class _CreateFlow420Exception extends MediaConnect
|
|
|
639
709
|
$fault: "client",
|
|
640
710
|
...opts
|
|
641
711
|
});
|
|
642
|
-
this.name = "CreateFlow420Exception";
|
|
643
|
-
this.$fault = "client";
|
|
644
712
|
Object.setPrototypeOf(this, _CreateFlow420Exception.prototype);
|
|
645
713
|
this.Message = opts.Message;
|
|
646
714
|
}
|
|
647
715
|
};
|
|
648
|
-
__name(_CreateFlow420Exception, "CreateFlow420Exception");
|
|
649
|
-
var CreateFlow420Exception = _CreateFlow420Exception;
|
|
650
716
|
var ThumbnailState = {
|
|
651
717
|
DISABLED: "DISABLED",
|
|
652
718
|
ENABLED: "ENABLED"
|
|
653
719
|
};
|
|
654
|
-
var
|
|
720
|
+
var CreateGateway420Exception = class _CreateGateway420Exception extends MediaConnectServiceException {
|
|
721
|
+
static {
|
|
722
|
+
__name(this, "CreateGateway420Exception");
|
|
723
|
+
}
|
|
724
|
+
name = "CreateGateway420Exception";
|
|
725
|
+
$fault = "client";
|
|
726
|
+
/**
|
|
727
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
728
|
+
* @public
|
|
729
|
+
*/
|
|
730
|
+
Message;
|
|
655
731
|
/**
|
|
656
732
|
* @internal
|
|
657
733
|
*/
|
|
@@ -661,20 +737,26 @@ var _CreateGateway420Exception = class _CreateGateway420Exception extends MediaC
|
|
|
661
737
|
$fault: "client",
|
|
662
738
|
...opts
|
|
663
739
|
});
|
|
664
|
-
this.name = "CreateGateway420Exception";
|
|
665
|
-
this.$fault = "client";
|
|
666
740
|
Object.setPrototypeOf(this, _CreateGateway420Exception.prototype);
|
|
667
741
|
this.Message = opts.Message;
|
|
668
742
|
}
|
|
669
743
|
};
|
|
670
|
-
__name(_CreateGateway420Exception, "CreateGateway420Exception");
|
|
671
|
-
var CreateGateway420Exception = _CreateGateway420Exception;
|
|
672
744
|
var DesiredState = {
|
|
673
745
|
ACTIVE: "ACTIVE",
|
|
674
746
|
DELETED: "DELETED",
|
|
675
747
|
STANDBY: "STANDBY"
|
|
676
748
|
};
|
|
677
|
-
var
|
|
749
|
+
var GrantFlowEntitlements420Exception = class _GrantFlowEntitlements420Exception extends MediaConnectServiceException {
|
|
750
|
+
static {
|
|
751
|
+
__name(this, "GrantFlowEntitlements420Exception");
|
|
752
|
+
}
|
|
753
|
+
name = "GrantFlowEntitlements420Exception";
|
|
754
|
+
$fault = "client";
|
|
755
|
+
/**
|
|
756
|
+
* The error message returned by AWS Elemental MediaConnect.
|
|
757
|
+
* @public
|
|
758
|
+
*/
|
|
759
|
+
Message;
|
|
678
760
|
/**
|
|
679
761
|
* @internal
|
|
680
762
|
*/
|
|
@@ -684,14 +766,10 @@ var _GrantFlowEntitlements420Exception = class _GrantFlowEntitlements420Exceptio
|
|
|
684
766
|
$fault: "client",
|
|
685
767
|
...opts
|
|
686
768
|
});
|
|
687
|
-
this.name = "GrantFlowEntitlements420Exception";
|
|
688
|
-
this.$fault = "client";
|
|
689
769
|
Object.setPrototypeOf(this, _GrantFlowEntitlements420Exception.prototype);
|
|
690
770
|
this.Message = opts.Message;
|
|
691
771
|
}
|
|
692
772
|
};
|
|
693
|
-
__name(_GrantFlowEntitlements420Exception, "GrantFlowEntitlements420Exception");
|
|
694
|
-
var GrantFlowEntitlements420Exception = _GrantFlowEntitlements420Exception;
|
|
695
773
|
|
|
696
774
|
// src/protocols/Aws_restJson1.ts
|
|
697
775
|
var se_AddBridgeOutputsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -3472,729 +3550,781 @@ var _nT = "nextToken";
|
|
|
3472
3550
|
var _tK = "tagKeys";
|
|
3473
3551
|
|
|
3474
3552
|
// src/commands/AddBridgeOutputsCommand.ts
|
|
3475
|
-
var
|
|
3553
|
+
var AddBridgeOutputsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3476
3554
|
return [
|
|
3477
3555
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3478
3556
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3479
3557
|
];
|
|
3480
3558
|
}).s("MediaConnect", "AddBridgeOutputs", {}).n("MediaConnectClient", "AddBridgeOutputsCommand").f(void 0, void 0).ser(se_AddBridgeOutputsCommand).de(de_AddBridgeOutputsCommand).build() {
|
|
3559
|
+
static {
|
|
3560
|
+
__name(this, "AddBridgeOutputsCommand");
|
|
3561
|
+
}
|
|
3481
3562
|
};
|
|
3482
|
-
__name(_AddBridgeOutputsCommand, "AddBridgeOutputsCommand");
|
|
3483
|
-
var AddBridgeOutputsCommand = _AddBridgeOutputsCommand;
|
|
3484
3563
|
|
|
3485
3564
|
// src/commands/AddBridgeSourcesCommand.ts
|
|
3486
3565
|
|
|
3487
3566
|
|
|
3488
3567
|
|
|
3489
|
-
var
|
|
3568
|
+
var AddBridgeSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3490
3569
|
return [
|
|
3491
3570
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3492
3571
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3493
3572
|
];
|
|
3494
3573
|
}).s("MediaConnect", "AddBridgeSources", {}).n("MediaConnectClient", "AddBridgeSourcesCommand").f(void 0, void 0).ser(se_AddBridgeSourcesCommand).de(de_AddBridgeSourcesCommand).build() {
|
|
3574
|
+
static {
|
|
3575
|
+
__name(this, "AddBridgeSourcesCommand");
|
|
3576
|
+
}
|
|
3495
3577
|
};
|
|
3496
|
-
__name(_AddBridgeSourcesCommand, "AddBridgeSourcesCommand");
|
|
3497
|
-
var AddBridgeSourcesCommand = _AddBridgeSourcesCommand;
|
|
3498
3578
|
|
|
3499
3579
|
// src/commands/AddFlowMediaStreamsCommand.ts
|
|
3500
3580
|
|
|
3501
3581
|
|
|
3502
3582
|
|
|
3503
|
-
var
|
|
3583
|
+
var AddFlowMediaStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3504
3584
|
return [
|
|
3505
3585
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3506
3586
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3507
3587
|
];
|
|
3508
3588
|
}).s("MediaConnect", "AddFlowMediaStreams", {}).n("MediaConnectClient", "AddFlowMediaStreamsCommand").f(void 0, void 0).ser(se_AddFlowMediaStreamsCommand).de(de_AddFlowMediaStreamsCommand).build() {
|
|
3589
|
+
static {
|
|
3590
|
+
__name(this, "AddFlowMediaStreamsCommand");
|
|
3591
|
+
}
|
|
3509
3592
|
};
|
|
3510
|
-
__name(_AddFlowMediaStreamsCommand, "AddFlowMediaStreamsCommand");
|
|
3511
|
-
var AddFlowMediaStreamsCommand = _AddFlowMediaStreamsCommand;
|
|
3512
3593
|
|
|
3513
3594
|
// src/commands/AddFlowOutputsCommand.ts
|
|
3514
3595
|
|
|
3515
3596
|
|
|
3516
3597
|
|
|
3517
|
-
var
|
|
3598
|
+
var AddFlowOutputsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3518
3599
|
return [
|
|
3519
3600
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3520
3601
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3521
3602
|
];
|
|
3522
3603
|
}).s("MediaConnect", "AddFlowOutputs", {}).n("MediaConnectClient", "AddFlowOutputsCommand").f(void 0, void 0).ser(se_AddFlowOutputsCommand).de(de_AddFlowOutputsCommand).build() {
|
|
3604
|
+
static {
|
|
3605
|
+
__name(this, "AddFlowOutputsCommand");
|
|
3606
|
+
}
|
|
3523
3607
|
};
|
|
3524
|
-
__name(_AddFlowOutputsCommand, "AddFlowOutputsCommand");
|
|
3525
|
-
var AddFlowOutputsCommand = _AddFlowOutputsCommand;
|
|
3526
3608
|
|
|
3527
3609
|
// src/commands/AddFlowSourcesCommand.ts
|
|
3528
3610
|
|
|
3529
3611
|
|
|
3530
3612
|
|
|
3531
|
-
var
|
|
3613
|
+
var AddFlowSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3532
3614
|
return [
|
|
3533
3615
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3534
3616
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3535
3617
|
];
|
|
3536
3618
|
}).s("MediaConnect", "AddFlowSources", {}).n("MediaConnectClient", "AddFlowSourcesCommand").f(void 0, void 0).ser(se_AddFlowSourcesCommand).de(de_AddFlowSourcesCommand).build() {
|
|
3619
|
+
static {
|
|
3620
|
+
__name(this, "AddFlowSourcesCommand");
|
|
3621
|
+
}
|
|
3537
3622
|
};
|
|
3538
|
-
__name(_AddFlowSourcesCommand, "AddFlowSourcesCommand");
|
|
3539
|
-
var AddFlowSourcesCommand = _AddFlowSourcesCommand;
|
|
3540
3623
|
|
|
3541
3624
|
// src/commands/AddFlowVpcInterfacesCommand.ts
|
|
3542
3625
|
|
|
3543
3626
|
|
|
3544
3627
|
|
|
3545
|
-
var
|
|
3628
|
+
var AddFlowVpcInterfacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3546
3629
|
return [
|
|
3547
3630
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3548
3631
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3549
3632
|
];
|
|
3550
3633
|
}).s("MediaConnect", "AddFlowVpcInterfaces", {}).n("MediaConnectClient", "AddFlowVpcInterfacesCommand").f(void 0, void 0).ser(se_AddFlowVpcInterfacesCommand).de(de_AddFlowVpcInterfacesCommand).build() {
|
|
3634
|
+
static {
|
|
3635
|
+
__name(this, "AddFlowVpcInterfacesCommand");
|
|
3636
|
+
}
|
|
3551
3637
|
};
|
|
3552
|
-
__name(_AddFlowVpcInterfacesCommand, "AddFlowVpcInterfacesCommand");
|
|
3553
|
-
var AddFlowVpcInterfacesCommand = _AddFlowVpcInterfacesCommand;
|
|
3554
3638
|
|
|
3555
3639
|
// src/commands/CreateBridgeCommand.ts
|
|
3556
3640
|
|
|
3557
3641
|
|
|
3558
3642
|
|
|
3559
|
-
var
|
|
3643
|
+
var CreateBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3560
3644
|
return [
|
|
3561
3645
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3562
3646
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3563
3647
|
];
|
|
3564
3648
|
}).s("MediaConnect", "CreateBridge", {}).n("MediaConnectClient", "CreateBridgeCommand").f(void 0, void 0).ser(se_CreateBridgeCommand).de(de_CreateBridgeCommand).build() {
|
|
3649
|
+
static {
|
|
3650
|
+
__name(this, "CreateBridgeCommand");
|
|
3651
|
+
}
|
|
3565
3652
|
};
|
|
3566
|
-
__name(_CreateBridgeCommand, "CreateBridgeCommand");
|
|
3567
|
-
var CreateBridgeCommand = _CreateBridgeCommand;
|
|
3568
3653
|
|
|
3569
3654
|
// src/commands/CreateFlowCommand.ts
|
|
3570
3655
|
|
|
3571
3656
|
|
|
3572
3657
|
|
|
3573
|
-
var
|
|
3658
|
+
var CreateFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3574
3659
|
return [
|
|
3575
3660
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3576
3661
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3577
3662
|
];
|
|
3578
3663
|
}).s("MediaConnect", "CreateFlow", {}).n("MediaConnectClient", "CreateFlowCommand").f(void 0, void 0).ser(se_CreateFlowCommand).de(de_CreateFlowCommand).build() {
|
|
3664
|
+
static {
|
|
3665
|
+
__name(this, "CreateFlowCommand");
|
|
3666
|
+
}
|
|
3579
3667
|
};
|
|
3580
|
-
__name(_CreateFlowCommand, "CreateFlowCommand");
|
|
3581
|
-
var CreateFlowCommand = _CreateFlowCommand;
|
|
3582
3668
|
|
|
3583
3669
|
// src/commands/CreateGatewayCommand.ts
|
|
3584
3670
|
|
|
3585
3671
|
|
|
3586
3672
|
|
|
3587
|
-
var
|
|
3673
|
+
var CreateGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3588
3674
|
return [
|
|
3589
3675
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3590
3676
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3591
3677
|
];
|
|
3592
3678
|
}).s("MediaConnect", "CreateGateway", {}).n("MediaConnectClient", "CreateGatewayCommand").f(void 0, void 0).ser(se_CreateGatewayCommand).de(de_CreateGatewayCommand).build() {
|
|
3679
|
+
static {
|
|
3680
|
+
__name(this, "CreateGatewayCommand");
|
|
3681
|
+
}
|
|
3593
3682
|
};
|
|
3594
|
-
__name(_CreateGatewayCommand, "CreateGatewayCommand");
|
|
3595
|
-
var CreateGatewayCommand = _CreateGatewayCommand;
|
|
3596
3683
|
|
|
3597
3684
|
// src/commands/DeleteBridgeCommand.ts
|
|
3598
3685
|
|
|
3599
3686
|
|
|
3600
3687
|
|
|
3601
|
-
var
|
|
3688
|
+
var DeleteBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3602
3689
|
return [
|
|
3603
3690
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3604
3691
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3605
3692
|
];
|
|
3606
3693
|
}).s("MediaConnect", "DeleteBridge", {}).n("MediaConnectClient", "DeleteBridgeCommand").f(void 0, void 0).ser(se_DeleteBridgeCommand).de(de_DeleteBridgeCommand).build() {
|
|
3694
|
+
static {
|
|
3695
|
+
__name(this, "DeleteBridgeCommand");
|
|
3696
|
+
}
|
|
3607
3697
|
};
|
|
3608
|
-
__name(_DeleteBridgeCommand, "DeleteBridgeCommand");
|
|
3609
|
-
var DeleteBridgeCommand = _DeleteBridgeCommand;
|
|
3610
3698
|
|
|
3611
3699
|
// src/commands/DeleteFlowCommand.ts
|
|
3612
3700
|
|
|
3613
3701
|
|
|
3614
3702
|
|
|
3615
|
-
var
|
|
3703
|
+
var DeleteFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3616
3704
|
return [
|
|
3617
3705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3618
3706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3619
3707
|
];
|
|
3620
3708
|
}).s("MediaConnect", "DeleteFlow", {}).n("MediaConnectClient", "DeleteFlowCommand").f(void 0, void 0).ser(se_DeleteFlowCommand).de(de_DeleteFlowCommand).build() {
|
|
3709
|
+
static {
|
|
3710
|
+
__name(this, "DeleteFlowCommand");
|
|
3711
|
+
}
|
|
3621
3712
|
};
|
|
3622
|
-
__name(_DeleteFlowCommand, "DeleteFlowCommand");
|
|
3623
|
-
var DeleteFlowCommand = _DeleteFlowCommand;
|
|
3624
3713
|
|
|
3625
3714
|
// src/commands/DeleteGatewayCommand.ts
|
|
3626
3715
|
|
|
3627
3716
|
|
|
3628
3717
|
|
|
3629
|
-
var
|
|
3718
|
+
var DeleteGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3630
3719
|
return [
|
|
3631
3720
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3632
3721
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3633
3722
|
];
|
|
3634
3723
|
}).s("MediaConnect", "DeleteGateway", {}).n("MediaConnectClient", "DeleteGatewayCommand").f(void 0, void 0).ser(se_DeleteGatewayCommand).de(de_DeleteGatewayCommand).build() {
|
|
3724
|
+
static {
|
|
3725
|
+
__name(this, "DeleteGatewayCommand");
|
|
3726
|
+
}
|
|
3635
3727
|
};
|
|
3636
|
-
__name(_DeleteGatewayCommand, "DeleteGatewayCommand");
|
|
3637
|
-
var DeleteGatewayCommand = _DeleteGatewayCommand;
|
|
3638
3728
|
|
|
3639
3729
|
// src/commands/DeregisterGatewayInstanceCommand.ts
|
|
3640
3730
|
|
|
3641
3731
|
|
|
3642
3732
|
|
|
3643
|
-
var
|
|
3733
|
+
var DeregisterGatewayInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3644
3734
|
return [
|
|
3645
3735
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3646
3736
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3647
3737
|
];
|
|
3648
3738
|
}).s("MediaConnect", "DeregisterGatewayInstance", {}).n("MediaConnectClient", "DeregisterGatewayInstanceCommand").f(void 0, void 0).ser(se_DeregisterGatewayInstanceCommand).de(de_DeregisterGatewayInstanceCommand).build() {
|
|
3739
|
+
static {
|
|
3740
|
+
__name(this, "DeregisterGatewayInstanceCommand");
|
|
3741
|
+
}
|
|
3649
3742
|
};
|
|
3650
|
-
__name(_DeregisterGatewayInstanceCommand, "DeregisterGatewayInstanceCommand");
|
|
3651
|
-
var DeregisterGatewayInstanceCommand = _DeregisterGatewayInstanceCommand;
|
|
3652
3743
|
|
|
3653
3744
|
// src/commands/DescribeBridgeCommand.ts
|
|
3654
3745
|
|
|
3655
3746
|
|
|
3656
3747
|
|
|
3657
|
-
var
|
|
3748
|
+
var DescribeBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3658
3749
|
return [
|
|
3659
3750
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3660
3751
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3661
3752
|
];
|
|
3662
3753
|
}).s("MediaConnect", "DescribeBridge", {}).n("MediaConnectClient", "DescribeBridgeCommand").f(void 0, void 0).ser(se_DescribeBridgeCommand).de(de_DescribeBridgeCommand).build() {
|
|
3754
|
+
static {
|
|
3755
|
+
__name(this, "DescribeBridgeCommand");
|
|
3756
|
+
}
|
|
3663
3757
|
};
|
|
3664
|
-
__name(_DescribeBridgeCommand, "DescribeBridgeCommand");
|
|
3665
|
-
var DescribeBridgeCommand = _DescribeBridgeCommand;
|
|
3666
3758
|
|
|
3667
3759
|
// src/commands/DescribeFlowCommand.ts
|
|
3668
3760
|
|
|
3669
3761
|
|
|
3670
3762
|
|
|
3671
|
-
var
|
|
3763
|
+
var DescribeFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3672
3764
|
return [
|
|
3673
3765
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3674
3766
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3675
3767
|
];
|
|
3676
3768
|
}).s("MediaConnect", "DescribeFlow", {}).n("MediaConnectClient", "DescribeFlowCommand").f(void 0, void 0).ser(se_DescribeFlowCommand).de(de_DescribeFlowCommand).build() {
|
|
3769
|
+
static {
|
|
3770
|
+
__name(this, "DescribeFlowCommand");
|
|
3771
|
+
}
|
|
3677
3772
|
};
|
|
3678
|
-
__name(_DescribeFlowCommand, "DescribeFlowCommand");
|
|
3679
|
-
var DescribeFlowCommand = _DescribeFlowCommand;
|
|
3680
3773
|
|
|
3681
3774
|
// src/commands/DescribeFlowSourceMetadataCommand.ts
|
|
3682
3775
|
|
|
3683
3776
|
|
|
3684
3777
|
|
|
3685
|
-
var
|
|
3778
|
+
var DescribeFlowSourceMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3686
3779
|
return [
|
|
3687
3780
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3688
3781
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3689
3782
|
];
|
|
3690
3783
|
}).s("MediaConnect", "DescribeFlowSourceMetadata", {}).n("MediaConnectClient", "DescribeFlowSourceMetadataCommand").f(void 0, void 0).ser(se_DescribeFlowSourceMetadataCommand).de(de_DescribeFlowSourceMetadataCommand).build() {
|
|
3784
|
+
static {
|
|
3785
|
+
__name(this, "DescribeFlowSourceMetadataCommand");
|
|
3786
|
+
}
|
|
3691
3787
|
};
|
|
3692
|
-
__name(_DescribeFlowSourceMetadataCommand, "DescribeFlowSourceMetadataCommand");
|
|
3693
|
-
var DescribeFlowSourceMetadataCommand = _DescribeFlowSourceMetadataCommand;
|
|
3694
3788
|
|
|
3695
3789
|
// src/commands/DescribeFlowSourceThumbnailCommand.ts
|
|
3696
3790
|
|
|
3697
3791
|
|
|
3698
3792
|
|
|
3699
|
-
var
|
|
3793
|
+
var DescribeFlowSourceThumbnailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3700
3794
|
return [
|
|
3701
3795
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3702
3796
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3703
3797
|
];
|
|
3704
3798
|
}).s("MediaConnect", "DescribeFlowSourceThumbnail", {}).n("MediaConnectClient", "DescribeFlowSourceThumbnailCommand").f(void 0, void 0).ser(se_DescribeFlowSourceThumbnailCommand).de(de_DescribeFlowSourceThumbnailCommand).build() {
|
|
3799
|
+
static {
|
|
3800
|
+
__name(this, "DescribeFlowSourceThumbnailCommand");
|
|
3801
|
+
}
|
|
3705
3802
|
};
|
|
3706
|
-
__name(_DescribeFlowSourceThumbnailCommand, "DescribeFlowSourceThumbnailCommand");
|
|
3707
|
-
var DescribeFlowSourceThumbnailCommand = _DescribeFlowSourceThumbnailCommand;
|
|
3708
3803
|
|
|
3709
3804
|
// src/commands/DescribeGatewayCommand.ts
|
|
3710
3805
|
|
|
3711
3806
|
|
|
3712
3807
|
|
|
3713
|
-
var
|
|
3808
|
+
var DescribeGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3714
3809
|
return [
|
|
3715
3810
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3716
3811
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3717
3812
|
];
|
|
3718
3813
|
}).s("MediaConnect", "DescribeGateway", {}).n("MediaConnectClient", "DescribeGatewayCommand").f(void 0, void 0).ser(se_DescribeGatewayCommand).de(de_DescribeGatewayCommand).build() {
|
|
3814
|
+
static {
|
|
3815
|
+
__name(this, "DescribeGatewayCommand");
|
|
3816
|
+
}
|
|
3719
3817
|
};
|
|
3720
|
-
__name(_DescribeGatewayCommand, "DescribeGatewayCommand");
|
|
3721
|
-
var DescribeGatewayCommand = _DescribeGatewayCommand;
|
|
3722
3818
|
|
|
3723
3819
|
// src/commands/DescribeGatewayInstanceCommand.ts
|
|
3724
3820
|
|
|
3725
3821
|
|
|
3726
3822
|
|
|
3727
|
-
var
|
|
3823
|
+
var DescribeGatewayInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3728
3824
|
return [
|
|
3729
3825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3730
3826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3731
3827
|
];
|
|
3732
3828
|
}).s("MediaConnect", "DescribeGatewayInstance", {}).n("MediaConnectClient", "DescribeGatewayInstanceCommand").f(void 0, void 0).ser(se_DescribeGatewayInstanceCommand).de(de_DescribeGatewayInstanceCommand).build() {
|
|
3829
|
+
static {
|
|
3830
|
+
__name(this, "DescribeGatewayInstanceCommand");
|
|
3831
|
+
}
|
|
3733
3832
|
};
|
|
3734
|
-
__name(_DescribeGatewayInstanceCommand, "DescribeGatewayInstanceCommand");
|
|
3735
|
-
var DescribeGatewayInstanceCommand = _DescribeGatewayInstanceCommand;
|
|
3736
3833
|
|
|
3737
3834
|
// src/commands/DescribeOfferingCommand.ts
|
|
3738
3835
|
|
|
3739
3836
|
|
|
3740
3837
|
|
|
3741
|
-
var
|
|
3838
|
+
var DescribeOfferingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3742
3839
|
return [
|
|
3743
3840
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3744
3841
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3745
3842
|
];
|
|
3746
3843
|
}).s("MediaConnect", "DescribeOffering", {}).n("MediaConnectClient", "DescribeOfferingCommand").f(void 0, void 0).ser(se_DescribeOfferingCommand).de(de_DescribeOfferingCommand).build() {
|
|
3844
|
+
static {
|
|
3845
|
+
__name(this, "DescribeOfferingCommand");
|
|
3846
|
+
}
|
|
3747
3847
|
};
|
|
3748
|
-
__name(_DescribeOfferingCommand, "DescribeOfferingCommand");
|
|
3749
|
-
var DescribeOfferingCommand = _DescribeOfferingCommand;
|
|
3750
3848
|
|
|
3751
3849
|
// src/commands/DescribeReservationCommand.ts
|
|
3752
3850
|
|
|
3753
3851
|
|
|
3754
3852
|
|
|
3755
|
-
var
|
|
3853
|
+
var DescribeReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3756
3854
|
return [
|
|
3757
3855
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3758
3856
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3759
3857
|
];
|
|
3760
3858
|
}).s("MediaConnect", "DescribeReservation", {}).n("MediaConnectClient", "DescribeReservationCommand").f(void 0, void 0).ser(se_DescribeReservationCommand).de(de_DescribeReservationCommand).build() {
|
|
3859
|
+
static {
|
|
3860
|
+
__name(this, "DescribeReservationCommand");
|
|
3861
|
+
}
|
|
3761
3862
|
};
|
|
3762
|
-
__name(_DescribeReservationCommand, "DescribeReservationCommand");
|
|
3763
|
-
var DescribeReservationCommand = _DescribeReservationCommand;
|
|
3764
3863
|
|
|
3765
3864
|
// src/commands/GrantFlowEntitlementsCommand.ts
|
|
3766
3865
|
|
|
3767
3866
|
|
|
3768
3867
|
|
|
3769
|
-
var
|
|
3868
|
+
var GrantFlowEntitlementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3770
3869
|
return [
|
|
3771
3870
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3772
3871
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3773
3872
|
];
|
|
3774
3873
|
}).s("MediaConnect", "GrantFlowEntitlements", {}).n("MediaConnectClient", "GrantFlowEntitlementsCommand").f(void 0, void 0).ser(se_GrantFlowEntitlementsCommand).de(de_GrantFlowEntitlementsCommand).build() {
|
|
3874
|
+
static {
|
|
3875
|
+
__name(this, "GrantFlowEntitlementsCommand");
|
|
3876
|
+
}
|
|
3775
3877
|
};
|
|
3776
|
-
__name(_GrantFlowEntitlementsCommand, "GrantFlowEntitlementsCommand");
|
|
3777
|
-
var GrantFlowEntitlementsCommand = _GrantFlowEntitlementsCommand;
|
|
3778
3878
|
|
|
3779
3879
|
// src/commands/ListBridgesCommand.ts
|
|
3780
3880
|
|
|
3781
3881
|
|
|
3782
3882
|
|
|
3783
|
-
var
|
|
3883
|
+
var ListBridgesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3784
3884
|
return [
|
|
3785
3885
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3786
3886
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3787
3887
|
];
|
|
3788
3888
|
}).s("MediaConnect", "ListBridges", {}).n("MediaConnectClient", "ListBridgesCommand").f(void 0, void 0).ser(se_ListBridgesCommand).de(de_ListBridgesCommand).build() {
|
|
3889
|
+
static {
|
|
3890
|
+
__name(this, "ListBridgesCommand");
|
|
3891
|
+
}
|
|
3789
3892
|
};
|
|
3790
|
-
__name(_ListBridgesCommand, "ListBridgesCommand");
|
|
3791
|
-
var ListBridgesCommand = _ListBridgesCommand;
|
|
3792
3893
|
|
|
3793
3894
|
// src/commands/ListEntitlementsCommand.ts
|
|
3794
3895
|
|
|
3795
3896
|
|
|
3796
3897
|
|
|
3797
|
-
var
|
|
3898
|
+
var ListEntitlementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3798
3899
|
return [
|
|
3799
3900
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3800
3901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3801
3902
|
];
|
|
3802
3903
|
}).s("MediaConnect", "ListEntitlements", {}).n("MediaConnectClient", "ListEntitlementsCommand").f(void 0, void 0).ser(se_ListEntitlementsCommand).de(de_ListEntitlementsCommand).build() {
|
|
3904
|
+
static {
|
|
3905
|
+
__name(this, "ListEntitlementsCommand");
|
|
3906
|
+
}
|
|
3803
3907
|
};
|
|
3804
|
-
__name(_ListEntitlementsCommand, "ListEntitlementsCommand");
|
|
3805
|
-
var ListEntitlementsCommand = _ListEntitlementsCommand;
|
|
3806
3908
|
|
|
3807
3909
|
// src/commands/ListFlowsCommand.ts
|
|
3808
3910
|
|
|
3809
3911
|
|
|
3810
3912
|
|
|
3811
|
-
var
|
|
3913
|
+
var ListFlowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3812
3914
|
return [
|
|
3813
3915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3814
3916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3815
3917
|
];
|
|
3816
3918
|
}).s("MediaConnect", "ListFlows", {}).n("MediaConnectClient", "ListFlowsCommand").f(void 0, void 0).ser(se_ListFlowsCommand).de(de_ListFlowsCommand).build() {
|
|
3919
|
+
static {
|
|
3920
|
+
__name(this, "ListFlowsCommand");
|
|
3921
|
+
}
|
|
3817
3922
|
};
|
|
3818
|
-
__name(_ListFlowsCommand, "ListFlowsCommand");
|
|
3819
|
-
var ListFlowsCommand = _ListFlowsCommand;
|
|
3820
3923
|
|
|
3821
3924
|
// src/commands/ListGatewayInstancesCommand.ts
|
|
3822
3925
|
|
|
3823
3926
|
|
|
3824
3927
|
|
|
3825
|
-
var
|
|
3928
|
+
var ListGatewayInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3826
3929
|
return [
|
|
3827
3930
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3828
3931
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3829
3932
|
];
|
|
3830
3933
|
}).s("MediaConnect", "ListGatewayInstances", {}).n("MediaConnectClient", "ListGatewayInstancesCommand").f(void 0, void 0).ser(se_ListGatewayInstancesCommand).de(de_ListGatewayInstancesCommand).build() {
|
|
3934
|
+
static {
|
|
3935
|
+
__name(this, "ListGatewayInstancesCommand");
|
|
3936
|
+
}
|
|
3831
3937
|
};
|
|
3832
|
-
__name(_ListGatewayInstancesCommand, "ListGatewayInstancesCommand");
|
|
3833
|
-
var ListGatewayInstancesCommand = _ListGatewayInstancesCommand;
|
|
3834
3938
|
|
|
3835
3939
|
// src/commands/ListGatewaysCommand.ts
|
|
3836
3940
|
|
|
3837
3941
|
|
|
3838
3942
|
|
|
3839
|
-
var
|
|
3943
|
+
var ListGatewaysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3840
3944
|
return [
|
|
3841
3945
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3842
3946
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3843
3947
|
];
|
|
3844
3948
|
}).s("MediaConnect", "ListGateways", {}).n("MediaConnectClient", "ListGatewaysCommand").f(void 0, void 0).ser(se_ListGatewaysCommand).de(de_ListGatewaysCommand).build() {
|
|
3949
|
+
static {
|
|
3950
|
+
__name(this, "ListGatewaysCommand");
|
|
3951
|
+
}
|
|
3845
3952
|
};
|
|
3846
|
-
__name(_ListGatewaysCommand, "ListGatewaysCommand");
|
|
3847
|
-
var ListGatewaysCommand = _ListGatewaysCommand;
|
|
3848
3953
|
|
|
3849
3954
|
// src/commands/ListOfferingsCommand.ts
|
|
3850
3955
|
|
|
3851
3956
|
|
|
3852
3957
|
|
|
3853
|
-
var
|
|
3958
|
+
var ListOfferingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3854
3959
|
return [
|
|
3855
3960
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3856
3961
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3857
3962
|
];
|
|
3858
3963
|
}).s("MediaConnect", "ListOfferings", {}).n("MediaConnectClient", "ListOfferingsCommand").f(void 0, void 0).ser(se_ListOfferingsCommand).de(de_ListOfferingsCommand).build() {
|
|
3964
|
+
static {
|
|
3965
|
+
__name(this, "ListOfferingsCommand");
|
|
3966
|
+
}
|
|
3859
3967
|
};
|
|
3860
|
-
__name(_ListOfferingsCommand, "ListOfferingsCommand");
|
|
3861
|
-
var ListOfferingsCommand = _ListOfferingsCommand;
|
|
3862
3968
|
|
|
3863
3969
|
// src/commands/ListReservationsCommand.ts
|
|
3864
3970
|
|
|
3865
3971
|
|
|
3866
3972
|
|
|
3867
|
-
var
|
|
3973
|
+
var ListReservationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3868
3974
|
return [
|
|
3869
3975
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3870
3976
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3871
3977
|
];
|
|
3872
3978
|
}).s("MediaConnect", "ListReservations", {}).n("MediaConnectClient", "ListReservationsCommand").f(void 0, void 0).ser(se_ListReservationsCommand).de(de_ListReservationsCommand).build() {
|
|
3979
|
+
static {
|
|
3980
|
+
__name(this, "ListReservationsCommand");
|
|
3981
|
+
}
|
|
3873
3982
|
};
|
|
3874
|
-
__name(_ListReservationsCommand, "ListReservationsCommand");
|
|
3875
|
-
var ListReservationsCommand = _ListReservationsCommand;
|
|
3876
3983
|
|
|
3877
3984
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3878
3985
|
|
|
3879
3986
|
|
|
3880
3987
|
|
|
3881
|
-
var
|
|
3988
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3882
3989
|
return [
|
|
3883
3990
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3884
3991
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3885
3992
|
];
|
|
3886
3993
|
}).s("MediaConnect", "ListTagsForResource", {}).n("MediaConnectClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3994
|
+
static {
|
|
3995
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3996
|
+
}
|
|
3887
3997
|
};
|
|
3888
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3889
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3890
3998
|
|
|
3891
3999
|
// src/commands/PurchaseOfferingCommand.ts
|
|
3892
4000
|
|
|
3893
4001
|
|
|
3894
4002
|
|
|
3895
|
-
var
|
|
4003
|
+
var PurchaseOfferingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3896
4004
|
return [
|
|
3897
4005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3898
4006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3899
4007
|
];
|
|
3900
4008
|
}).s("MediaConnect", "PurchaseOffering", {}).n("MediaConnectClient", "PurchaseOfferingCommand").f(void 0, void 0).ser(se_PurchaseOfferingCommand).de(de_PurchaseOfferingCommand).build() {
|
|
4009
|
+
static {
|
|
4010
|
+
__name(this, "PurchaseOfferingCommand");
|
|
4011
|
+
}
|
|
3901
4012
|
};
|
|
3902
|
-
__name(_PurchaseOfferingCommand, "PurchaseOfferingCommand");
|
|
3903
|
-
var PurchaseOfferingCommand = _PurchaseOfferingCommand;
|
|
3904
4013
|
|
|
3905
4014
|
// src/commands/RemoveBridgeOutputCommand.ts
|
|
3906
4015
|
|
|
3907
4016
|
|
|
3908
4017
|
|
|
3909
|
-
var
|
|
4018
|
+
var RemoveBridgeOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3910
4019
|
return [
|
|
3911
4020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3912
4021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3913
4022
|
];
|
|
3914
4023
|
}).s("MediaConnect", "RemoveBridgeOutput", {}).n("MediaConnectClient", "RemoveBridgeOutputCommand").f(void 0, void 0).ser(se_RemoveBridgeOutputCommand).de(de_RemoveBridgeOutputCommand).build() {
|
|
4024
|
+
static {
|
|
4025
|
+
__name(this, "RemoveBridgeOutputCommand");
|
|
4026
|
+
}
|
|
3915
4027
|
};
|
|
3916
|
-
__name(_RemoveBridgeOutputCommand, "RemoveBridgeOutputCommand");
|
|
3917
|
-
var RemoveBridgeOutputCommand = _RemoveBridgeOutputCommand;
|
|
3918
4028
|
|
|
3919
4029
|
// src/commands/RemoveBridgeSourceCommand.ts
|
|
3920
4030
|
|
|
3921
4031
|
|
|
3922
4032
|
|
|
3923
|
-
var
|
|
4033
|
+
var RemoveBridgeSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3924
4034
|
return [
|
|
3925
4035
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3926
4036
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3927
4037
|
];
|
|
3928
4038
|
}).s("MediaConnect", "RemoveBridgeSource", {}).n("MediaConnectClient", "RemoveBridgeSourceCommand").f(void 0, void 0).ser(se_RemoveBridgeSourceCommand).de(de_RemoveBridgeSourceCommand).build() {
|
|
4039
|
+
static {
|
|
4040
|
+
__name(this, "RemoveBridgeSourceCommand");
|
|
4041
|
+
}
|
|
3929
4042
|
};
|
|
3930
|
-
__name(_RemoveBridgeSourceCommand, "RemoveBridgeSourceCommand");
|
|
3931
|
-
var RemoveBridgeSourceCommand = _RemoveBridgeSourceCommand;
|
|
3932
4043
|
|
|
3933
4044
|
// src/commands/RemoveFlowMediaStreamCommand.ts
|
|
3934
4045
|
|
|
3935
4046
|
|
|
3936
4047
|
|
|
3937
|
-
var
|
|
4048
|
+
var RemoveFlowMediaStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3938
4049
|
return [
|
|
3939
4050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3940
4051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3941
4052
|
];
|
|
3942
4053
|
}).s("MediaConnect", "RemoveFlowMediaStream", {}).n("MediaConnectClient", "RemoveFlowMediaStreamCommand").f(void 0, void 0).ser(se_RemoveFlowMediaStreamCommand).de(de_RemoveFlowMediaStreamCommand).build() {
|
|
4054
|
+
static {
|
|
4055
|
+
__name(this, "RemoveFlowMediaStreamCommand");
|
|
4056
|
+
}
|
|
3943
4057
|
};
|
|
3944
|
-
__name(_RemoveFlowMediaStreamCommand, "RemoveFlowMediaStreamCommand");
|
|
3945
|
-
var RemoveFlowMediaStreamCommand = _RemoveFlowMediaStreamCommand;
|
|
3946
4058
|
|
|
3947
4059
|
// src/commands/RemoveFlowOutputCommand.ts
|
|
3948
4060
|
|
|
3949
4061
|
|
|
3950
4062
|
|
|
3951
|
-
var
|
|
4063
|
+
var RemoveFlowOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3952
4064
|
return [
|
|
3953
4065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3954
4066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3955
4067
|
];
|
|
3956
4068
|
}).s("MediaConnect", "RemoveFlowOutput", {}).n("MediaConnectClient", "RemoveFlowOutputCommand").f(void 0, void 0).ser(se_RemoveFlowOutputCommand).de(de_RemoveFlowOutputCommand).build() {
|
|
4069
|
+
static {
|
|
4070
|
+
__name(this, "RemoveFlowOutputCommand");
|
|
4071
|
+
}
|
|
3957
4072
|
};
|
|
3958
|
-
__name(_RemoveFlowOutputCommand, "RemoveFlowOutputCommand");
|
|
3959
|
-
var RemoveFlowOutputCommand = _RemoveFlowOutputCommand;
|
|
3960
4073
|
|
|
3961
4074
|
// src/commands/RemoveFlowSourceCommand.ts
|
|
3962
4075
|
|
|
3963
4076
|
|
|
3964
4077
|
|
|
3965
|
-
var
|
|
4078
|
+
var RemoveFlowSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3966
4079
|
return [
|
|
3967
4080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3968
4081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3969
4082
|
];
|
|
3970
4083
|
}).s("MediaConnect", "RemoveFlowSource", {}).n("MediaConnectClient", "RemoveFlowSourceCommand").f(void 0, void 0).ser(se_RemoveFlowSourceCommand).de(de_RemoveFlowSourceCommand).build() {
|
|
4084
|
+
static {
|
|
4085
|
+
__name(this, "RemoveFlowSourceCommand");
|
|
4086
|
+
}
|
|
3971
4087
|
};
|
|
3972
|
-
__name(_RemoveFlowSourceCommand, "RemoveFlowSourceCommand");
|
|
3973
|
-
var RemoveFlowSourceCommand = _RemoveFlowSourceCommand;
|
|
3974
4088
|
|
|
3975
4089
|
// src/commands/RemoveFlowVpcInterfaceCommand.ts
|
|
3976
4090
|
|
|
3977
4091
|
|
|
3978
4092
|
|
|
3979
|
-
var
|
|
4093
|
+
var RemoveFlowVpcInterfaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3980
4094
|
return [
|
|
3981
4095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3982
4096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3983
4097
|
];
|
|
3984
4098
|
}).s("MediaConnect", "RemoveFlowVpcInterface", {}).n("MediaConnectClient", "RemoveFlowVpcInterfaceCommand").f(void 0, void 0).ser(se_RemoveFlowVpcInterfaceCommand).de(de_RemoveFlowVpcInterfaceCommand).build() {
|
|
4099
|
+
static {
|
|
4100
|
+
__name(this, "RemoveFlowVpcInterfaceCommand");
|
|
4101
|
+
}
|
|
3985
4102
|
};
|
|
3986
|
-
__name(_RemoveFlowVpcInterfaceCommand, "RemoveFlowVpcInterfaceCommand");
|
|
3987
|
-
var RemoveFlowVpcInterfaceCommand = _RemoveFlowVpcInterfaceCommand;
|
|
3988
4103
|
|
|
3989
4104
|
// src/commands/RevokeFlowEntitlementCommand.ts
|
|
3990
4105
|
|
|
3991
4106
|
|
|
3992
4107
|
|
|
3993
|
-
var
|
|
4108
|
+
var RevokeFlowEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3994
4109
|
return [
|
|
3995
4110
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3996
4111
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3997
4112
|
];
|
|
3998
4113
|
}).s("MediaConnect", "RevokeFlowEntitlement", {}).n("MediaConnectClient", "RevokeFlowEntitlementCommand").f(void 0, void 0).ser(se_RevokeFlowEntitlementCommand).de(de_RevokeFlowEntitlementCommand).build() {
|
|
4114
|
+
static {
|
|
4115
|
+
__name(this, "RevokeFlowEntitlementCommand");
|
|
4116
|
+
}
|
|
3999
4117
|
};
|
|
4000
|
-
__name(_RevokeFlowEntitlementCommand, "RevokeFlowEntitlementCommand");
|
|
4001
|
-
var RevokeFlowEntitlementCommand = _RevokeFlowEntitlementCommand;
|
|
4002
4118
|
|
|
4003
4119
|
// src/commands/StartFlowCommand.ts
|
|
4004
4120
|
|
|
4005
4121
|
|
|
4006
4122
|
|
|
4007
|
-
var
|
|
4123
|
+
var StartFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4008
4124
|
return [
|
|
4009
4125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4010
4126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4011
4127
|
];
|
|
4012
4128
|
}).s("MediaConnect", "StartFlow", {}).n("MediaConnectClient", "StartFlowCommand").f(void 0, void 0).ser(se_StartFlowCommand).de(de_StartFlowCommand).build() {
|
|
4129
|
+
static {
|
|
4130
|
+
__name(this, "StartFlowCommand");
|
|
4131
|
+
}
|
|
4013
4132
|
};
|
|
4014
|
-
__name(_StartFlowCommand, "StartFlowCommand");
|
|
4015
|
-
var StartFlowCommand = _StartFlowCommand;
|
|
4016
4133
|
|
|
4017
4134
|
// src/commands/StopFlowCommand.ts
|
|
4018
4135
|
|
|
4019
4136
|
|
|
4020
4137
|
|
|
4021
|
-
var
|
|
4138
|
+
var StopFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4022
4139
|
return [
|
|
4023
4140
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4024
4141
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4025
4142
|
];
|
|
4026
4143
|
}).s("MediaConnect", "StopFlow", {}).n("MediaConnectClient", "StopFlowCommand").f(void 0, void 0).ser(se_StopFlowCommand).de(de_StopFlowCommand).build() {
|
|
4144
|
+
static {
|
|
4145
|
+
__name(this, "StopFlowCommand");
|
|
4146
|
+
}
|
|
4027
4147
|
};
|
|
4028
|
-
__name(_StopFlowCommand, "StopFlowCommand");
|
|
4029
|
-
var StopFlowCommand = _StopFlowCommand;
|
|
4030
4148
|
|
|
4031
4149
|
// src/commands/TagResourceCommand.ts
|
|
4032
4150
|
|
|
4033
4151
|
|
|
4034
4152
|
|
|
4035
|
-
var
|
|
4153
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4036
4154
|
return [
|
|
4037
4155
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4038
4156
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4039
4157
|
];
|
|
4040
4158
|
}).s("MediaConnect", "TagResource", {}).n("MediaConnectClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4159
|
+
static {
|
|
4160
|
+
__name(this, "TagResourceCommand");
|
|
4161
|
+
}
|
|
4041
4162
|
};
|
|
4042
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4043
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4044
4163
|
|
|
4045
4164
|
// src/commands/UntagResourceCommand.ts
|
|
4046
4165
|
|
|
4047
4166
|
|
|
4048
4167
|
|
|
4049
|
-
var
|
|
4168
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4050
4169
|
return [
|
|
4051
4170
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4052
4171
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4053
4172
|
];
|
|
4054
4173
|
}).s("MediaConnect", "UntagResource", {}).n("MediaConnectClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4174
|
+
static {
|
|
4175
|
+
__name(this, "UntagResourceCommand");
|
|
4176
|
+
}
|
|
4055
4177
|
};
|
|
4056
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4057
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4058
4178
|
|
|
4059
4179
|
// src/commands/UpdateBridgeCommand.ts
|
|
4060
4180
|
|
|
4061
4181
|
|
|
4062
4182
|
|
|
4063
|
-
var
|
|
4183
|
+
var UpdateBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4064
4184
|
return [
|
|
4065
4185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4066
4186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4067
4187
|
];
|
|
4068
4188
|
}).s("MediaConnect", "UpdateBridge", {}).n("MediaConnectClient", "UpdateBridgeCommand").f(void 0, void 0).ser(se_UpdateBridgeCommand).de(de_UpdateBridgeCommand).build() {
|
|
4189
|
+
static {
|
|
4190
|
+
__name(this, "UpdateBridgeCommand");
|
|
4191
|
+
}
|
|
4069
4192
|
};
|
|
4070
|
-
__name(_UpdateBridgeCommand, "UpdateBridgeCommand");
|
|
4071
|
-
var UpdateBridgeCommand = _UpdateBridgeCommand;
|
|
4072
4193
|
|
|
4073
4194
|
// src/commands/UpdateBridgeOutputCommand.ts
|
|
4074
4195
|
|
|
4075
4196
|
|
|
4076
4197
|
|
|
4077
|
-
var
|
|
4198
|
+
var UpdateBridgeOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4078
4199
|
return [
|
|
4079
4200
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4080
4201
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4081
4202
|
];
|
|
4082
4203
|
}).s("MediaConnect", "UpdateBridgeOutput", {}).n("MediaConnectClient", "UpdateBridgeOutputCommand").f(void 0, void 0).ser(se_UpdateBridgeOutputCommand).de(de_UpdateBridgeOutputCommand).build() {
|
|
4204
|
+
static {
|
|
4205
|
+
__name(this, "UpdateBridgeOutputCommand");
|
|
4206
|
+
}
|
|
4083
4207
|
};
|
|
4084
|
-
__name(_UpdateBridgeOutputCommand, "UpdateBridgeOutputCommand");
|
|
4085
|
-
var UpdateBridgeOutputCommand = _UpdateBridgeOutputCommand;
|
|
4086
4208
|
|
|
4087
4209
|
// src/commands/UpdateBridgeSourceCommand.ts
|
|
4088
4210
|
|
|
4089
4211
|
|
|
4090
4212
|
|
|
4091
|
-
var
|
|
4213
|
+
var UpdateBridgeSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4092
4214
|
return [
|
|
4093
4215
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4094
4216
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4095
4217
|
];
|
|
4096
4218
|
}).s("MediaConnect", "UpdateBridgeSource", {}).n("MediaConnectClient", "UpdateBridgeSourceCommand").f(void 0, void 0).ser(se_UpdateBridgeSourceCommand).de(de_UpdateBridgeSourceCommand).build() {
|
|
4219
|
+
static {
|
|
4220
|
+
__name(this, "UpdateBridgeSourceCommand");
|
|
4221
|
+
}
|
|
4097
4222
|
};
|
|
4098
|
-
__name(_UpdateBridgeSourceCommand, "UpdateBridgeSourceCommand");
|
|
4099
|
-
var UpdateBridgeSourceCommand = _UpdateBridgeSourceCommand;
|
|
4100
4223
|
|
|
4101
4224
|
// src/commands/UpdateBridgeStateCommand.ts
|
|
4102
4225
|
|
|
4103
4226
|
|
|
4104
4227
|
|
|
4105
|
-
var
|
|
4228
|
+
var UpdateBridgeStateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4106
4229
|
return [
|
|
4107
4230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4108
4231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4109
4232
|
];
|
|
4110
4233
|
}).s("MediaConnect", "UpdateBridgeState", {}).n("MediaConnectClient", "UpdateBridgeStateCommand").f(void 0, void 0).ser(se_UpdateBridgeStateCommand).de(de_UpdateBridgeStateCommand).build() {
|
|
4234
|
+
static {
|
|
4235
|
+
__name(this, "UpdateBridgeStateCommand");
|
|
4236
|
+
}
|
|
4111
4237
|
};
|
|
4112
|
-
__name(_UpdateBridgeStateCommand, "UpdateBridgeStateCommand");
|
|
4113
|
-
var UpdateBridgeStateCommand = _UpdateBridgeStateCommand;
|
|
4114
4238
|
|
|
4115
4239
|
// src/commands/UpdateFlowCommand.ts
|
|
4116
4240
|
|
|
4117
4241
|
|
|
4118
4242
|
|
|
4119
|
-
var
|
|
4243
|
+
var UpdateFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4120
4244
|
return [
|
|
4121
4245
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4122
4246
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4123
4247
|
];
|
|
4124
4248
|
}).s("MediaConnect", "UpdateFlow", {}).n("MediaConnectClient", "UpdateFlowCommand").f(void 0, void 0).ser(se_UpdateFlowCommand).de(de_UpdateFlowCommand).build() {
|
|
4249
|
+
static {
|
|
4250
|
+
__name(this, "UpdateFlowCommand");
|
|
4251
|
+
}
|
|
4125
4252
|
};
|
|
4126
|
-
__name(_UpdateFlowCommand, "UpdateFlowCommand");
|
|
4127
|
-
var UpdateFlowCommand = _UpdateFlowCommand;
|
|
4128
4253
|
|
|
4129
4254
|
// src/commands/UpdateFlowEntitlementCommand.ts
|
|
4130
4255
|
|
|
4131
4256
|
|
|
4132
4257
|
|
|
4133
|
-
var
|
|
4258
|
+
var UpdateFlowEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4134
4259
|
return [
|
|
4135
4260
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4136
4261
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4137
4262
|
];
|
|
4138
4263
|
}).s("MediaConnect", "UpdateFlowEntitlement", {}).n("MediaConnectClient", "UpdateFlowEntitlementCommand").f(void 0, void 0).ser(se_UpdateFlowEntitlementCommand).de(de_UpdateFlowEntitlementCommand).build() {
|
|
4264
|
+
static {
|
|
4265
|
+
__name(this, "UpdateFlowEntitlementCommand");
|
|
4266
|
+
}
|
|
4139
4267
|
};
|
|
4140
|
-
__name(_UpdateFlowEntitlementCommand, "UpdateFlowEntitlementCommand");
|
|
4141
|
-
var UpdateFlowEntitlementCommand = _UpdateFlowEntitlementCommand;
|
|
4142
4268
|
|
|
4143
4269
|
// src/commands/UpdateFlowMediaStreamCommand.ts
|
|
4144
4270
|
|
|
4145
4271
|
|
|
4146
4272
|
|
|
4147
|
-
var
|
|
4273
|
+
var UpdateFlowMediaStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4148
4274
|
return [
|
|
4149
4275
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4150
4276
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4151
4277
|
];
|
|
4152
4278
|
}).s("MediaConnect", "UpdateFlowMediaStream", {}).n("MediaConnectClient", "UpdateFlowMediaStreamCommand").f(void 0, void 0).ser(se_UpdateFlowMediaStreamCommand).de(de_UpdateFlowMediaStreamCommand).build() {
|
|
4279
|
+
static {
|
|
4280
|
+
__name(this, "UpdateFlowMediaStreamCommand");
|
|
4281
|
+
}
|
|
4153
4282
|
};
|
|
4154
|
-
__name(_UpdateFlowMediaStreamCommand, "UpdateFlowMediaStreamCommand");
|
|
4155
|
-
var UpdateFlowMediaStreamCommand = _UpdateFlowMediaStreamCommand;
|
|
4156
4283
|
|
|
4157
4284
|
// src/commands/UpdateFlowOutputCommand.ts
|
|
4158
4285
|
|
|
4159
4286
|
|
|
4160
4287
|
|
|
4161
|
-
var
|
|
4288
|
+
var UpdateFlowOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4162
4289
|
return [
|
|
4163
4290
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4164
4291
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4165
4292
|
];
|
|
4166
4293
|
}).s("MediaConnect", "UpdateFlowOutput", {}).n("MediaConnectClient", "UpdateFlowOutputCommand").f(void 0, void 0).ser(se_UpdateFlowOutputCommand).de(de_UpdateFlowOutputCommand).build() {
|
|
4294
|
+
static {
|
|
4295
|
+
__name(this, "UpdateFlowOutputCommand");
|
|
4296
|
+
}
|
|
4167
4297
|
};
|
|
4168
|
-
__name(_UpdateFlowOutputCommand, "UpdateFlowOutputCommand");
|
|
4169
|
-
var UpdateFlowOutputCommand = _UpdateFlowOutputCommand;
|
|
4170
4298
|
|
|
4171
4299
|
// src/commands/UpdateFlowSourceCommand.ts
|
|
4172
4300
|
|
|
4173
4301
|
|
|
4174
4302
|
|
|
4175
|
-
var
|
|
4303
|
+
var UpdateFlowSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4176
4304
|
return [
|
|
4177
4305
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4178
4306
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4179
4307
|
];
|
|
4180
4308
|
}).s("MediaConnect", "UpdateFlowSource", {}).n("MediaConnectClient", "UpdateFlowSourceCommand").f(void 0, void 0).ser(se_UpdateFlowSourceCommand).de(de_UpdateFlowSourceCommand).build() {
|
|
4309
|
+
static {
|
|
4310
|
+
__name(this, "UpdateFlowSourceCommand");
|
|
4311
|
+
}
|
|
4181
4312
|
};
|
|
4182
|
-
__name(_UpdateFlowSourceCommand, "UpdateFlowSourceCommand");
|
|
4183
|
-
var UpdateFlowSourceCommand = _UpdateFlowSourceCommand;
|
|
4184
4313
|
|
|
4185
4314
|
// src/commands/UpdateGatewayInstanceCommand.ts
|
|
4186
4315
|
|
|
4187
4316
|
|
|
4188
4317
|
|
|
4189
|
-
var
|
|
4318
|
+
var UpdateGatewayInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4190
4319
|
return [
|
|
4191
4320
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4192
4321
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4193
4322
|
];
|
|
4194
4323
|
}).s("MediaConnect", "UpdateGatewayInstance", {}).n("MediaConnectClient", "UpdateGatewayInstanceCommand").f(void 0, void 0).ser(se_UpdateGatewayInstanceCommand).de(de_UpdateGatewayInstanceCommand).build() {
|
|
4324
|
+
static {
|
|
4325
|
+
__name(this, "UpdateGatewayInstanceCommand");
|
|
4326
|
+
}
|
|
4195
4327
|
};
|
|
4196
|
-
__name(_UpdateGatewayInstanceCommand, "UpdateGatewayInstanceCommand");
|
|
4197
|
-
var UpdateGatewayInstanceCommand = _UpdateGatewayInstanceCommand;
|
|
4198
4328
|
|
|
4199
4329
|
// src/MediaConnect.ts
|
|
4200
4330
|
var commands = {
|
|
@@ -4251,10 +4381,11 @@ var commands = {
|
|
|
4251
4381
|
UpdateFlowSourceCommand,
|
|
4252
4382
|
UpdateGatewayInstanceCommand
|
|
4253
4383
|
};
|
|
4254
|
-
var
|
|
4384
|
+
var MediaConnect = class extends MediaConnectClient {
|
|
4385
|
+
static {
|
|
4386
|
+
__name(this, "MediaConnect");
|
|
4387
|
+
}
|
|
4255
4388
|
};
|
|
4256
|
-
__name(_MediaConnect, "MediaConnect");
|
|
4257
|
-
var MediaConnect = _MediaConnect;
|
|
4258
4389
|
(0, import_smithy_client.createAggregatedClient)(commands, MediaConnect);
|
|
4259
4390
|
|
|
4260
4391
|
// src/pagination/ListBridgesPaginator.ts
|