@aws-sdk/client-mediaconnect 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 +456 -233
- package/dist-es/MediaConnectClient.js +1 -0
- package/dist-es/models/models_0.js +44 -28
- package/dist-es/protocols/Aws_restJson1.js +94 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +42 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +21 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +42 -0
- package/dist-types/models/models_0.d.ts +114 -12
- 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/models/models_0.d.ts +33 -5
- 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
|
@@ -35,6 +35,7 @@ __export(src_exports, {
|
|
|
35
35
|
Colorimetry: () => Colorimetry,
|
|
36
36
|
ConflictException: () => ConflictException,
|
|
37
37
|
ConnectionStatus: () => ConnectionStatus,
|
|
38
|
+
ContentQualityAnalysisState: () => ContentQualityAnalysisState,
|
|
38
39
|
CreateBridge420Exception: () => CreateBridge420Exception,
|
|
39
40
|
CreateBridgeCommand: () => CreateBridgeCommand,
|
|
40
41
|
CreateFlow420Exception: () => CreateFlow420Exception,
|
|
@@ -230,7 +231,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
230
231
|
}, "resolveRuntimeExtensions");
|
|
231
232
|
|
|
232
233
|
// src/MediaConnectClient.ts
|
|
233
|
-
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;
|
|
234
242
|
constructor(...[configuration]) {
|
|
235
243
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
236
244
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -240,7 +248,7 @@ var _MediaConnectClient = class _MediaConnectClient extends import_smithy_client
|
|
|
240
248
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
241
249
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
242
250
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
243
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
251
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
244
252
|
super(_config_8);
|
|
245
253
|
this.config = _config_8;
|
|
246
254
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -268,8 +276,6 @@ var _MediaConnectClient = class _MediaConnectClient extends import_smithy_client
|
|
|
268
276
|
super.destroy();
|
|
269
277
|
}
|
|
270
278
|
};
|
|
271
|
-
__name(_MediaConnectClient, "MediaConnectClient");
|
|
272
|
-
var MediaConnectClient = _MediaConnectClient;
|
|
273
279
|
|
|
274
280
|
// src/MediaConnect.ts
|
|
275
281
|
|
|
@@ -286,7 +292,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
286
292
|
|
|
287
293
|
// src/models/MediaConnectServiceException.ts
|
|
288
294
|
|
|
289
|
-
var
|
|
295
|
+
var MediaConnectServiceException = class _MediaConnectServiceException extends import_smithy_client.ServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "MediaConnectServiceException");
|
|
298
|
+
}
|
|
290
299
|
/**
|
|
291
300
|
* @internal
|
|
292
301
|
*/
|
|
@@ -295,8 +304,6 @@ var _MediaConnectServiceException = class _MediaConnectServiceException extends
|
|
|
295
304
|
Object.setPrototypeOf(this, _MediaConnectServiceException.prototype);
|
|
296
305
|
}
|
|
297
306
|
};
|
|
298
|
-
__name(_MediaConnectServiceException, "MediaConnectServiceException");
|
|
299
|
-
var MediaConnectServiceException = _MediaConnectServiceException;
|
|
300
307
|
|
|
301
308
|
// src/models/models_0.ts
|
|
302
309
|
var Protocol = {
|
|
@@ -371,6 +378,10 @@ var OutputStatus = {
|
|
|
371
378
|
DISABLED: "DISABLED",
|
|
372
379
|
ENABLED: "ENABLED"
|
|
373
380
|
};
|
|
381
|
+
var State = {
|
|
382
|
+
DISABLED: "DISABLED",
|
|
383
|
+
ENABLED: "ENABLED"
|
|
384
|
+
};
|
|
374
385
|
var EntitlementStatus = {
|
|
375
386
|
DISABLED: "DISABLED",
|
|
376
387
|
ENABLED: "ENABLED"
|
|
@@ -446,7 +457,17 @@ var NetworkInterfaceType = {
|
|
|
446
457
|
efa: "efa",
|
|
447
458
|
ena: "ena"
|
|
448
459
|
};
|
|
449
|
-
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;
|
|
450
471
|
/**
|
|
451
472
|
* @internal
|
|
452
473
|
*/
|
|
@@ -456,15 +477,21 @@ var _BadRequestException = class _BadRequestException extends MediaConnectServic
|
|
|
456
477
|
$fault: "client",
|
|
457
478
|
...opts
|
|
458
479
|
});
|
|
459
|
-
this.name = "BadRequestException";
|
|
460
|
-
this.$fault = "client";
|
|
461
480
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
462
481
|
this.Message = opts.Message;
|
|
463
482
|
}
|
|
464
483
|
};
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
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;
|
|
468
495
|
/**
|
|
469
496
|
* @internal
|
|
470
497
|
*/
|
|
@@ -474,15 +501,21 @@ var _ConflictException = class _ConflictException extends MediaConnectServiceExc
|
|
|
474
501
|
$fault: "client",
|
|
475
502
|
...opts
|
|
476
503
|
});
|
|
477
|
-
this.name = "ConflictException";
|
|
478
|
-
this.$fault = "client";
|
|
479
504
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
480
505
|
this.Message = opts.Message;
|
|
481
506
|
}
|
|
482
507
|
};
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
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;
|
|
486
519
|
/**
|
|
487
520
|
* @internal
|
|
488
521
|
*/
|
|
@@ -492,15 +525,21 @@ var _ForbiddenException = class _ForbiddenException extends MediaConnectServiceE
|
|
|
492
525
|
$fault: "client",
|
|
493
526
|
...opts
|
|
494
527
|
});
|
|
495
|
-
this.name = "ForbiddenException";
|
|
496
|
-
this.$fault = "client";
|
|
497
528
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
498
529
|
this.Message = opts.Message;
|
|
499
530
|
}
|
|
500
531
|
};
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
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;
|
|
504
543
|
/**
|
|
505
544
|
* @internal
|
|
506
545
|
*/
|
|
@@ -510,15 +549,21 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
510
549
|
$fault: "server",
|
|
511
550
|
...opts
|
|
512
551
|
});
|
|
513
|
-
this.name = "InternalServerErrorException";
|
|
514
|
-
this.$fault = "server";
|
|
515
552
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
516
553
|
this.Message = opts.Message;
|
|
517
554
|
}
|
|
518
555
|
};
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
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;
|
|
522
567
|
/**
|
|
523
568
|
* @internal
|
|
524
569
|
*/
|
|
@@ -528,15 +573,21 @@ var _NotFoundException = class _NotFoundException extends MediaConnectServiceExc
|
|
|
528
573
|
$fault: "client",
|
|
529
574
|
...opts
|
|
530
575
|
});
|
|
531
|
-
this.name = "NotFoundException";
|
|
532
|
-
this.$fault = "client";
|
|
533
576
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
534
577
|
this.Message = opts.Message;
|
|
535
578
|
}
|
|
536
579
|
};
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
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;
|
|
540
591
|
/**
|
|
541
592
|
* @internal
|
|
542
593
|
*/
|
|
@@ -546,15 +597,21 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Me
|
|
|
546
597
|
$fault: "server",
|
|
547
598
|
...opts
|
|
548
599
|
});
|
|
549
|
-
this.name = "ServiceUnavailableException";
|
|
550
|
-
this.$fault = "server";
|
|
551
600
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
552
601
|
this.Message = opts.Message;
|
|
553
602
|
}
|
|
554
603
|
};
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
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;
|
|
558
615
|
/**
|
|
559
616
|
* @internal
|
|
560
617
|
*/
|
|
@@ -564,15 +621,21 @@ var _TooManyRequestsException = class _TooManyRequestsException extends MediaCon
|
|
|
564
621
|
$fault: "client",
|
|
565
622
|
...opts
|
|
566
623
|
});
|
|
567
|
-
this.name = "TooManyRequestsException";
|
|
568
|
-
this.$fault = "client";
|
|
569
624
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
570
625
|
this.Message = opts.Message;
|
|
571
626
|
}
|
|
572
627
|
};
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
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;
|
|
576
639
|
/**
|
|
577
640
|
* @internal
|
|
578
641
|
*/
|
|
@@ -582,22 +645,14 @@ var _AddFlowOutputs420Exception = class _AddFlowOutputs420Exception extends Medi
|
|
|
582
645
|
$fault: "client",
|
|
583
646
|
...opts
|
|
584
647
|
});
|
|
585
|
-
this.name = "AddFlowOutputs420Exception";
|
|
586
|
-
this.$fault = "client";
|
|
587
648
|
Object.setPrototypeOf(this, _AddFlowOutputs420Exception.prototype);
|
|
588
649
|
this.Message = opts.Message;
|
|
589
650
|
}
|
|
590
651
|
};
|
|
591
|
-
__name(_AddFlowOutputs420Exception, "AddFlowOutputs420Exception");
|
|
592
|
-
var AddFlowOutputs420Exception = _AddFlowOutputs420Exception;
|
|
593
652
|
var FailoverMode = {
|
|
594
653
|
FAILOVER: "FAILOVER",
|
|
595
654
|
MERGE: "MERGE"
|
|
596
655
|
};
|
|
597
|
-
var State = {
|
|
598
|
-
DISABLED: "DISABLED",
|
|
599
|
-
ENABLED: "ENABLED"
|
|
600
|
-
};
|
|
601
656
|
var BridgePlacement = {
|
|
602
657
|
AVAILABLE: "AVAILABLE",
|
|
603
658
|
LOCKED: "LOCKED"
|
|
@@ -606,7 +661,21 @@ var ConnectionStatus = {
|
|
|
606
661
|
CONNECTED: "CONNECTED",
|
|
607
662
|
DISCONNECTED: "DISCONNECTED"
|
|
608
663
|
};
|
|
609
|
-
var
|
|
664
|
+
var ContentQualityAnalysisState = {
|
|
665
|
+
DISABLED: "DISABLED",
|
|
666
|
+
ENABLED: "ENABLED"
|
|
667
|
+
};
|
|
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;
|
|
610
679
|
/**
|
|
611
680
|
* @internal
|
|
612
681
|
*/
|
|
@@ -616,15 +685,21 @@ var _CreateBridge420Exception = class _CreateBridge420Exception extends MediaCon
|
|
|
616
685
|
$fault: "client",
|
|
617
686
|
...opts
|
|
618
687
|
});
|
|
619
|
-
this.name = "CreateBridge420Exception";
|
|
620
|
-
this.$fault = "client";
|
|
621
688
|
Object.setPrototypeOf(this, _CreateBridge420Exception.prototype);
|
|
622
689
|
this.Message = opts.Message;
|
|
623
690
|
}
|
|
624
691
|
};
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
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;
|
|
628
703
|
/**
|
|
629
704
|
* @internal
|
|
630
705
|
*/
|
|
@@ -634,19 +709,25 @@ var _CreateFlow420Exception = class _CreateFlow420Exception extends MediaConnect
|
|
|
634
709
|
$fault: "client",
|
|
635
710
|
...opts
|
|
636
711
|
});
|
|
637
|
-
this.name = "CreateFlow420Exception";
|
|
638
|
-
this.$fault = "client";
|
|
639
712
|
Object.setPrototypeOf(this, _CreateFlow420Exception.prototype);
|
|
640
713
|
this.Message = opts.Message;
|
|
641
714
|
}
|
|
642
715
|
};
|
|
643
|
-
__name(_CreateFlow420Exception, "CreateFlow420Exception");
|
|
644
|
-
var CreateFlow420Exception = _CreateFlow420Exception;
|
|
645
716
|
var ThumbnailState = {
|
|
646
717
|
DISABLED: "DISABLED",
|
|
647
718
|
ENABLED: "ENABLED"
|
|
648
719
|
};
|
|
649
|
-
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;
|
|
650
731
|
/**
|
|
651
732
|
* @internal
|
|
652
733
|
*/
|
|
@@ -656,20 +737,26 @@ var _CreateGateway420Exception = class _CreateGateway420Exception extends MediaC
|
|
|
656
737
|
$fault: "client",
|
|
657
738
|
...opts
|
|
658
739
|
});
|
|
659
|
-
this.name = "CreateGateway420Exception";
|
|
660
|
-
this.$fault = "client";
|
|
661
740
|
Object.setPrototypeOf(this, _CreateGateway420Exception.prototype);
|
|
662
741
|
this.Message = opts.Message;
|
|
663
742
|
}
|
|
664
743
|
};
|
|
665
|
-
__name(_CreateGateway420Exception, "CreateGateway420Exception");
|
|
666
|
-
var CreateGateway420Exception = _CreateGateway420Exception;
|
|
667
744
|
var DesiredState = {
|
|
668
745
|
ACTIVE: "ACTIVE",
|
|
669
746
|
DELETED: "DELETED",
|
|
670
747
|
STANDBY: "STANDBY"
|
|
671
748
|
};
|
|
672
|
-
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;
|
|
673
760
|
/**
|
|
674
761
|
* @internal
|
|
675
762
|
*/
|
|
@@ -679,14 +766,10 @@ var _GrantFlowEntitlements420Exception = class _GrantFlowEntitlements420Exceptio
|
|
|
679
766
|
$fault: "client",
|
|
680
767
|
...opts
|
|
681
768
|
});
|
|
682
|
-
this.name = "GrantFlowEntitlements420Exception";
|
|
683
|
-
this.$fault = "client";
|
|
684
769
|
Object.setPrototypeOf(this, _GrantFlowEntitlements420Exception.prototype);
|
|
685
770
|
this.Message = opts.Message;
|
|
686
771
|
}
|
|
687
772
|
};
|
|
688
|
-
__name(_GrantFlowEntitlements420Exception, "GrantFlowEntitlements420Exception");
|
|
689
|
-
var GrantFlowEntitlements420Exception = _GrantFlowEntitlements420Exception;
|
|
690
773
|
|
|
691
774
|
// src/protocols/Aws_restJson1.ts
|
|
692
775
|
var se_AddBridgeOutputsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -2408,6 +2491,11 @@ var se___listOfAddOutputRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2408
2491
|
return se_AddOutputRequest(entry, context);
|
|
2409
2492
|
});
|
|
2410
2493
|
}, "se___listOfAddOutputRequest");
|
|
2494
|
+
var se___listOfAudioMonitoringSetting = /* @__PURE__ */ __name((input, context) => {
|
|
2495
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
2496
|
+
return se_AudioMonitoringSetting(entry, context);
|
|
2497
|
+
});
|
|
2498
|
+
}, "se___listOfAudioMonitoringSetting");
|
|
2411
2499
|
var se___listOfDestinationConfigurationRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2412
2500
|
return input.filter((e) => e != null).map((entry) => {
|
|
2413
2501
|
return se_DestinationConfigurationRequest(entry, context);
|
|
@@ -2443,6 +2531,11 @@ var se___listOfSetSourceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2443
2531
|
return se_SetSourceRequest(entry, context);
|
|
2444
2532
|
});
|
|
2445
2533
|
}, "se___listOfSetSourceRequest");
|
|
2534
|
+
var se___listOfVideoMonitoringSetting = /* @__PURE__ */ __name((input, context) => {
|
|
2535
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
2536
|
+
return se_VideoMonitoringSetting(entry, context);
|
|
2537
|
+
});
|
|
2538
|
+
}, "se___listOfVideoMonitoringSetting");
|
|
2446
2539
|
var se___listOfVpcInterfaceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2447
2540
|
return input.filter((e) => e != null).map((entry) => {
|
|
2448
2541
|
return se_VpcInterfaceRequest(entry, context);
|
|
@@ -2538,6 +2631,17 @@ var se_AddOutputRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2538
2631
|
vpcInterfaceAttachment: [, (_) => se_VpcInterfaceAttachment(_, context), `VpcInterfaceAttachment`]
|
|
2539
2632
|
});
|
|
2540
2633
|
}, "se_AddOutputRequest");
|
|
2634
|
+
var se_AudioMonitoringSetting = /* @__PURE__ */ __name((input, context) => {
|
|
2635
|
+
return (0, import_smithy_client.take)(input, {
|
|
2636
|
+
silentAudio: [, (_) => se_SilentAudio(_, context), `SilentAudio`]
|
|
2637
|
+
});
|
|
2638
|
+
}, "se_AudioMonitoringSetting");
|
|
2639
|
+
var se_BlackFrames = /* @__PURE__ */ __name((input, context) => {
|
|
2640
|
+
return (0, import_smithy_client.take)(input, {
|
|
2641
|
+
state: [, , `State`],
|
|
2642
|
+
thresholdSeconds: [, , `ThresholdSeconds`]
|
|
2643
|
+
});
|
|
2644
|
+
}, "se_BlackFrames");
|
|
2541
2645
|
var se_DestinationConfigurationRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2542
2646
|
return (0, import_smithy_client.take)(input, {
|
|
2543
2647
|
destinationIp: [, , `DestinationIp`],
|
|
@@ -2583,6 +2687,12 @@ var se_FmtpRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2583
2687
|
tcs: [, , `Tcs`]
|
|
2584
2688
|
});
|
|
2585
2689
|
}, "se_FmtpRequest");
|
|
2690
|
+
var se_FrozenFrames = /* @__PURE__ */ __name((input, context) => {
|
|
2691
|
+
return (0, import_smithy_client.take)(input, {
|
|
2692
|
+
state: [, , `State`],
|
|
2693
|
+
thresholdSeconds: [, , `ThresholdSeconds`]
|
|
2694
|
+
});
|
|
2695
|
+
}, "se_FrozenFrames");
|
|
2586
2696
|
var se_GatewayNetwork = /* @__PURE__ */ __name((input, context) => {
|
|
2587
2697
|
return (0, import_smithy_client.take)(input, {
|
|
2588
2698
|
cidrBlock: [, , `CidrBlock`],
|
|
@@ -2637,7 +2747,10 @@ var se_MediaStreamSourceConfigurationRequest = /* @__PURE__ */ __name((input, co
|
|
|
2637
2747
|
}, "se_MediaStreamSourceConfigurationRequest");
|
|
2638
2748
|
var se_MonitoringConfig = /* @__PURE__ */ __name((input, context) => {
|
|
2639
2749
|
return (0, import_smithy_client.take)(input, {
|
|
2640
|
-
|
|
2750
|
+
audioMonitoringSettings: [, (_) => se___listOfAudioMonitoringSetting(_, context), `AudioMonitoringSettings`],
|
|
2751
|
+
contentQualityAnalysisState: [, , `ContentQualityAnalysisState`],
|
|
2752
|
+
thumbnailState: [, , `ThumbnailState`],
|
|
2753
|
+
videoMonitoringSettings: [, (_) => se___listOfVideoMonitoringSetting(_, context), `VideoMonitoringSettings`]
|
|
2641
2754
|
});
|
|
2642
2755
|
}, "se_MonitoringConfig");
|
|
2643
2756
|
var se_MulticastSourceSettings = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -2678,6 +2791,12 @@ var se_SetSourceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2678
2791
|
whitelistCidr: [, , `WhitelistCidr`]
|
|
2679
2792
|
});
|
|
2680
2793
|
}, "se_SetSourceRequest");
|
|
2794
|
+
var se_SilentAudio = /* @__PURE__ */ __name((input, context) => {
|
|
2795
|
+
return (0, import_smithy_client.take)(input, {
|
|
2796
|
+
state: [, , `State`],
|
|
2797
|
+
thresholdSeconds: [, , `ThresholdSeconds`]
|
|
2798
|
+
});
|
|
2799
|
+
}, "se_SilentAudio");
|
|
2681
2800
|
var se_SourcePriority = /* @__PURE__ */ __name((input, context) => {
|
|
2682
2801
|
return (0, import_smithy_client.take)(input, {
|
|
2683
2802
|
primarySource: [, , `PrimarySource`]
|
|
@@ -2752,6 +2871,12 @@ var se_UpdateMaintenance = /* @__PURE__ */ __name((input, context) => {
|
|
|
2752
2871
|
maintenanceStartHour: [, , `MaintenanceStartHour`]
|
|
2753
2872
|
});
|
|
2754
2873
|
}, "se_UpdateMaintenance");
|
|
2874
|
+
var se_VideoMonitoringSetting = /* @__PURE__ */ __name((input, context) => {
|
|
2875
|
+
return (0, import_smithy_client.take)(input, {
|
|
2876
|
+
blackFrames: [, (_) => se_BlackFrames(_, context), `BlackFrames`],
|
|
2877
|
+
frozenFrames: [, (_) => se_FrozenFrames(_, context), `FrozenFrames`]
|
|
2878
|
+
});
|
|
2879
|
+
}, "se_VideoMonitoringSetting");
|
|
2755
2880
|
var se_VpcInterfaceAttachment = /* @__PURE__ */ __name((input, context) => {
|
|
2756
2881
|
return (0, import_smithy_client.take)(input, {
|
|
2757
2882
|
vpcInterfaceName: [, , `VpcInterfaceName`]
|
|
@@ -2766,6 +2891,12 @@ var se_VpcInterfaceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
2766
2891
|
subnetId: [, , `SubnetId`]
|
|
2767
2892
|
});
|
|
2768
2893
|
}, "se_VpcInterfaceRequest");
|
|
2894
|
+
var de___listOfAudioMonitoringSetting = /* @__PURE__ */ __name((output, context) => {
|
|
2895
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2896
|
+
return de_AudioMonitoringSetting(entry, context);
|
|
2897
|
+
});
|
|
2898
|
+
return retVal;
|
|
2899
|
+
}, "de___listOfAudioMonitoringSetting");
|
|
2769
2900
|
var de___listOfBridgeOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2770
2901
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2771
2902
|
return de_BridgeOutput(entry, context);
|
|
@@ -2892,12 +3023,29 @@ var de___listOfTransportStreamProgram = /* @__PURE__ */ __name((output, context)
|
|
|
2892
3023
|
});
|
|
2893
3024
|
return retVal;
|
|
2894
3025
|
}, "de___listOfTransportStreamProgram");
|
|
3026
|
+
var de___listOfVideoMonitoringSetting = /* @__PURE__ */ __name((output, context) => {
|
|
3027
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3028
|
+
return de_VideoMonitoringSetting(entry, context);
|
|
3029
|
+
});
|
|
3030
|
+
return retVal;
|
|
3031
|
+
}, "de___listOfVideoMonitoringSetting");
|
|
2895
3032
|
var de___listOfVpcInterface = /* @__PURE__ */ __name((output, context) => {
|
|
2896
3033
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2897
3034
|
return de_VpcInterface(entry, context);
|
|
2898
3035
|
});
|
|
2899
3036
|
return retVal;
|
|
2900
3037
|
}, "de___listOfVpcInterface");
|
|
3038
|
+
var de_AudioMonitoringSetting = /* @__PURE__ */ __name((output, context) => {
|
|
3039
|
+
return (0, import_smithy_client.take)(output, {
|
|
3040
|
+
SilentAudio: [, (_) => de_SilentAudio(_, context), `silentAudio`]
|
|
3041
|
+
});
|
|
3042
|
+
}, "de_AudioMonitoringSetting");
|
|
3043
|
+
var de_BlackFrames = /* @__PURE__ */ __name((output, context) => {
|
|
3044
|
+
return (0, import_smithy_client.take)(output, {
|
|
3045
|
+
State: [, import_smithy_client.expectString, `state`],
|
|
3046
|
+
ThresholdSeconds: [, import_smithy_client.expectInt32, `thresholdSeconds`]
|
|
3047
|
+
});
|
|
3048
|
+
}, "de_BlackFrames");
|
|
2901
3049
|
var de_Bridge = /* @__PURE__ */ __name((output, context) => {
|
|
2902
3050
|
return (0, import_smithy_client.take)(output, {
|
|
2903
3051
|
BridgeArn: [, import_smithy_client.expectString, `bridgeArn`],
|
|
@@ -3047,6 +3195,12 @@ var de_FrameResolution = /* @__PURE__ */ __name((output, context) => {
|
|
|
3047
3195
|
FrameWidth: [, import_smithy_client.expectInt32, `frameWidth`]
|
|
3048
3196
|
});
|
|
3049
3197
|
}, "de_FrameResolution");
|
|
3198
|
+
var de_FrozenFrames = /* @__PURE__ */ __name((output, context) => {
|
|
3199
|
+
return (0, import_smithy_client.take)(output, {
|
|
3200
|
+
State: [, import_smithy_client.expectString, `state`],
|
|
3201
|
+
ThresholdSeconds: [, import_smithy_client.expectInt32, `thresholdSeconds`]
|
|
3202
|
+
});
|
|
3203
|
+
}, "de_FrozenFrames");
|
|
3050
3204
|
var de_Gateway = /* @__PURE__ */ __name((output, context) => {
|
|
3051
3205
|
return (0, import_smithy_client.take)(output, {
|
|
3052
3206
|
EgressCidrBlocks: [, import_smithy_client._json, `egressCidrBlocks`],
|
|
@@ -3201,7 +3355,10 @@ var de_Messages = /* @__PURE__ */ __name((output, context) => {
|
|
|
3201
3355
|
}, "de_Messages");
|
|
3202
3356
|
var de_MonitoringConfig = /* @__PURE__ */ __name((output, context) => {
|
|
3203
3357
|
return (0, import_smithy_client.take)(output, {
|
|
3204
|
-
|
|
3358
|
+
AudioMonitoringSettings: [, (_) => de___listOfAudioMonitoringSetting(_, context), `audioMonitoringSettings`],
|
|
3359
|
+
ContentQualityAnalysisState: [, import_smithy_client.expectString, `contentQualityAnalysisState`],
|
|
3360
|
+
ThumbnailState: [, import_smithy_client.expectString, `thumbnailState`],
|
|
3361
|
+
VideoMonitoringSettings: [, (_) => de___listOfVideoMonitoringSetting(_, context), `videoMonitoringSettings`]
|
|
3205
3362
|
});
|
|
3206
3363
|
}, "de_MonitoringConfig");
|
|
3207
3364
|
var de_MulticastSourceSettings = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -3268,6 +3425,12 @@ var de_ResourceSpecification = /* @__PURE__ */ __name((output, context) => {
|
|
|
3268
3425
|
ResourceType: [, import_smithy_client.expectString, `resourceType`]
|
|
3269
3426
|
});
|
|
3270
3427
|
}, "de_ResourceSpecification");
|
|
3428
|
+
var de_SilentAudio = /* @__PURE__ */ __name((output, context) => {
|
|
3429
|
+
return (0, import_smithy_client.take)(output, {
|
|
3430
|
+
State: [, import_smithy_client.expectString, `state`],
|
|
3431
|
+
ThresholdSeconds: [, import_smithy_client.expectInt32, `thresholdSeconds`]
|
|
3432
|
+
});
|
|
3433
|
+
}, "de_SilentAudio");
|
|
3271
3434
|
var de_Source = /* @__PURE__ */ __name((output, context) => {
|
|
3272
3435
|
return (0, import_smithy_client.take)(output, {
|
|
3273
3436
|
DataTransferSubscriberFeePercent: [, import_smithy_client.expectInt32, `dataTransferSubscriberFeePercent`],
|
|
@@ -3348,6 +3511,12 @@ var de_TransportStreamProgram = /* @__PURE__ */ __name((output, context) => {
|
|
|
3348
3511
|
Streams: [, (_) => de___listOfTransportStream(_, context), `streams`]
|
|
3349
3512
|
});
|
|
3350
3513
|
}, "de_TransportStreamProgram");
|
|
3514
|
+
var de_VideoMonitoringSetting = /* @__PURE__ */ __name((output, context) => {
|
|
3515
|
+
return (0, import_smithy_client.take)(output, {
|
|
3516
|
+
BlackFrames: [, (_) => de_BlackFrames(_, context), `blackFrames`],
|
|
3517
|
+
FrozenFrames: [, (_) => de_FrozenFrames(_, context), `frozenFrames`]
|
|
3518
|
+
});
|
|
3519
|
+
}, "de_VideoMonitoringSetting");
|
|
3351
3520
|
var de_VpcInterface = /* @__PURE__ */ __name((output, context) => {
|
|
3352
3521
|
return (0, import_smithy_client.take)(output, {
|
|
3353
3522
|
Name: [, import_smithy_client.expectString, `name`],
|
|
@@ -3381,729 +3550,781 @@ var _nT = "nextToken";
|
|
|
3381
3550
|
var _tK = "tagKeys";
|
|
3382
3551
|
|
|
3383
3552
|
// src/commands/AddBridgeOutputsCommand.ts
|
|
3384
|
-
var
|
|
3553
|
+
var AddBridgeOutputsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3385
3554
|
return [
|
|
3386
3555
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3387
3556
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3388
3557
|
];
|
|
3389
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
|
+
}
|
|
3390
3562
|
};
|
|
3391
|
-
__name(_AddBridgeOutputsCommand, "AddBridgeOutputsCommand");
|
|
3392
|
-
var AddBridgeOutputsCommand = _AddBridgeOutputsCommand;
|
|
3393
3563
|
|
|
3394
3564
|
// src/commands/AddBridgeSourcesCommand.ts
|
|
3395
3565
|
|
|
3396
3566
|
|
|
3397
3567
|
|
|
3398
|
-
var
|
|
3568
|
+
var AddBridgeSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3399
3569
|
return [
|
|
3400
3570
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3401
3571
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3402
3572
|
];
|
|
3403
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
|
+
}
|
|
3404
3577
|
};
|
|
3405
|
-
__name(_AddBridgeSourcesCommand, "AddBridgeSourcesCommand");
|
|
3406
|
-
var AddBridgeSourcesCommand = _AddBridgeSourcesCommand;
|
|
3407
3578
|
|
|
3408
3579
|
// src/commands/AddFlowMediaStreamsCommand.ts
|
|
3409
3580
|
|
|
3410
3581
|
|
|
3411
3582
|
|
|
3412
|
-
var
|
|
3583
|
+
var AddFlowMediaStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3413
3584
|
return [
|
|
3414
3585
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3415
3586
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3416
3587
|
];
|
|
3417
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
|
+
}
|
|
3418
3592
|
};
|
|
3419
|
-
__name(_AddFlowMediaStreamsCommand, "AddFlowMediaStreamsCommand");
|
|
3420
|
-
var AddFlowMediaStreamsCommand = _AddFlowMediaStreamsCommand;
|
|
3421
3593
|
|
|
3422
3594
|
// src/commands/AddFlowOutputsCommand.ts
|
|
3423
3595
|
|
|
3424
3596
|
|
|
3425
3597
|
|
|
3426
|
-
var
|
|
3598
|
+
var AddFlowOutputsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3427
3599
|
return [
|
|
3428
3600
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3429
3601
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3430
3602
|
];
|
|
3431
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
|
+
}
|
|
3432
3607
|
};
|
|
3433
|
-
__name(_AddFlowOutputsCommand, "AddFlowOutputsCommand");
|
|
3434
|
-
var AddFlowOutputsCommand = _AddFlowOutputsCommand;
|
|
3435
3608
|
|
|
3436
3609
|
// src/commands/AddFlowSourcesCommand.ts
|
|
3437
3610
|
|
|
3438
3611
|
|
|
3439
3612
|
|
|
3440
|
-
var
|
|
3613
|
+
var AddFlowSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3441
3614
|
return [
|
|
3442
3615
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3443
3616
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3444
3617
|
];
|
|
3445
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
|
+
}
|
|
3446
3622
|
};
|
|
3447
|
-
__name(_AddFlowSourcesCommand, "AddFlowSourcesCommand");
|
|
3448
|
-
var AddFlowSourcesCommand = _AddFlowSourcesCommand;
|
|
3449
3623
|
|
|
3450
3624
|
// src/commands/AddFlowVpcInterfacesCommand.ts
|
|
3451
3625
|
|
|
3452
3626
|
|
|
3453
3627
|
|
|
3454
|
-
var
|
|
3628
|
+
var AddFlowVpcInterfacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3455
3629
|
return [
|
|
3456
3630
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3457
3631
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3458
3632
|
];
|
|
3459
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
|
+
}
|
|
3460
3637
|
};
|
|
3461
|
-
__name(_AddFlowVpcInterfacesCommand, "AddFlowVpcInterfacesCommand");
|
|
3462
|
-
var AddFlowVpcInterfacesCommand = _AddFlowVpcInterfacesCommand;
|
|
3463
3638
|
|
|
3464
3639
|
// src/commands/CreateBridgeCommand.ts
|
|
3465
3640
|
|
|
3466
3641
|
|
|
3467
3642
|
|
|
3468
|
-
var
|
|
3643
|
+
var CreateBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3469
3644
|
return [
|
|
3470
3645
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3471
3646
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3472
3647
|
];
|
|
3473
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
|
+
}
|
|
3474
3652
|
};
|
|
3475
|
-
__name(_CreateBridgeCommand, "CreateBridgeCommand");
|
|
3476
|
-
var CreateBridgeCommand = _CreateBridgeCommand;
|
|
3477
3653
|
|
|
3478
3654
|
// src/commands/CreateFlowCommand.ts
|
|
3479
3655
|
|
|
3480
3656
|
|
|
3481
3657
|
|
|
3482
|
-
var
|
|
3658
|
+
var CreateFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3483
3659
|
return [
|
|
3484
3660
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3485
3661
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3486
3662
|
];
|
|
3487
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
|
+
}
|
|
3488
3667
|
};
|
|
3489
|
-
__name(_CreateFlowCommand, "CreateFlowCommand");
|
|
3490
|
-
var CreateFlowCommand = _CreateFlowCommand;
|
|
3491
3668
|
|
|
3492
3669
|
// src/commands/CreateGatewayCommand.ts
|
|
3493
3670
|
|
|
3494
3671
|
|
|
3495
3672
|
|
|
3496
|
-
var
|
|
3673
|
+
var CreateGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3497
3674
|
return [
|
|
3498
3675
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3499
3676
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3500
3677
|
];
|
|
3501
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
|
+
}
|
|
3502
3682
|
};
|
|
3503
|
-
__name(_CreateGatewayCommand, "CreateGatewayCommand");
|
|
3504
|
-
var CreateGatewayCommand = _CreateGatewayCommand;
|
|
3505
3683
|
|
|
3506
3684
|
// src/commands/DeleteBridgeCommand.ts
|
|
3507
3685
|
|
|
3508
3686
|
|
|
3509
3687
|
|
|
3510
|
-
var
|
|
3688
|
+
var DeleteBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3511
3689
|
return [
|
|
3512
3690
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3513
3691
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3514
3692
|
];
|
|
3515
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
|
+
}
|
|
3516
3697
|
};
|
|
3517
|
-
__name(_DeleteBridgeCommand, "DeleteBridgeCommand");
|
|
3518
|
-
var DeleteBridgeCommand = _DeleteBridgeCommand;
|
|
3519
3698
|
|
|
3520
3699
|
// src/commands/DeleteFlowCommand.ts
|
|
3521
3700
|
|
|
3522
3701
|
|
|
3523
3702
|
|
|
3524
|
-
var
|
|
3703
|
+
var DeleteFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3525
3704
|
return [
|
|
3526
3705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3527
3706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3528
3707
|
];
|
|
3529
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
|
+
}
|
|
3530
3712
|
};
|
|
3531
|
-
__name(_DeleteFlowCommand, "DeleteFlowCommand");
|
|
3532
|
-
var DeleteFlowCommand = _DeleteFlowCommand;
|
|
3533
3713
|
|
|
3534
3714
|
// src/commands/DeleteGatewayCommand.ts
|
|
3535
3715
|
|
|
3536
3716
|
|
|
3537
3717
|
|
|
3538
|
-
var
|
|
3718
|
+
var DeleteGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3539
3719
|
return [
|
|
3540
3720
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3541
3721
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3542
3722
|
];
|
|
3543
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
|
+
}
|
|
3544
3727
|
};
|
|
3545
|
-
__name(_DeleteGatewayCommand, "DeleteGatewayCommand");
|
|
3546
|
-
var DeleteGatewayCommand = _DeleteGatewayCommand;
|
|
3547
3728
|
|
|
3548
3729
|
// src/commands/DeregisterGatewayInstanceCommand.ts
|
|
3549
3730
|
|
|
3550
3731
|
|
|
3551
3732
|
|
|
3552
|
-
var
|
|
3733
|
+
var DeregisterGatewayInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3553
3734
|
return [
|
|
3554
3735
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3555
3736
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3556
3737
|
];
|
|
3557
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
|
+
}
|
|
3558
3742
|
};
|
|
3559
|
-
__name(_DeregisterGatewayInstanceCommand, "DeregisterGatewayInstanceCommand");
|
|
3560
|
-
var DeregisterGatewayInstanceCommand = _DeregisterGatewayInstanceCommand;
|
|
3561
3743
|
|
|
3562
3744
|
// src/commands/DescribeBridgeCommand.ts
|
|
3563
3745
|
|
|
3564
3746
|
|
|
3565
3747
|
|
|
3566
|
-
var
|
|
3748
|
+
var DescribeBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3567
3749
|
return [
|
|
3568
3750
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3569
3751
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3570
3752
|
];
|
|
3571
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
|
+
}
|
|
3572
3757
|
};
|
|
3573
|
-
__name(_DescribeBridgeCommand, "DescribeBridgeCommand");
|
|
3574
|
-
var DescribeBridgeCommand = _DescribeBridgeCommand;
|
|
3575
3758
|
|
|
3576
3759
|
// src/commands/DescribeFlowCommand.ts
|
|
3577
3760
|
|
|
3578
3761
|
|
|
3579
3762
|
|
|
3580
|
-
var
|
|
3763
|
+
var DescribeFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3581
3764
|
return [
|
|
3582
3765
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3583
3766
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3584
3767
|
];
|
|
3585
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
|
+
}
|
|
3586
3772
|
};
|
|
3587
|
-
__name(_DescribeFlowCommand, "DescribeFlowCommand");
|
|
3588
|
-
var DescribeFlowCommand = _DescribeFlowCommand;
|
|
3589
3773
|
|
|
3590
3774
|
// src/commands/DescribeFlowSourceMetadataCommand.ts
|
|
3591
3775
|
|
|
3592
3776
|
|
|
3593
3777
|
|
|
3594
|
-
var
|
|
3778
|
+
var DescribeFlowSourceMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3595
3779
|
return [
|
|
3596
3780
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3597
3781
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3598
3782
|
];
|
|
3599
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
|
+
}
|
|
3600
3787
|
};
|
|
3601
|
-
__name(_DescribeFlowSourceMetadataCommand, "DescribeFlowSourceMetadataCommand");
|
|
3602
|
-
var DescribeFlowSourceMetadataCommand = _DescribeFlowSourceMetadataCommand;
|
|
3603
3788
|
|
|
3604
3789
|
// src/commands/DescribeFlowSourceThumbnailCommand.ts
|
|
3605
3790
|
|
|
3606
3791
|
|
|
3607
3792
|
|
|
3608
|
-
var
|
|
3793
|
+
var DescribeFlowSourceThumbnailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3609
3794
|
return [
|
|
3610
3795
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3611
3796
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3612
3797
|
];
|
|
3613
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
|
+
}
|
|
3614
3802
|
};
|
|
3615
|
-
__name(_DescribeFlowSourceThumbnailCommand, "DescribeFlowSourceThumbnailCommand");
|
|
3616
|
-
var DescribeFlowSourceThumbnailCommand = _DescribeFlowSourceThumbnailCommand;
|
|
3617
3803
|
|
|
3618
3804
|
// src/commands/DescribeGatewayCommand.ts
|
|
3619
3805
|
|
|
3620
3806
|
|
|
3621
3807
|
|
|
3622
|
-
var
|
|
3808
|
+
var DescribeGatewayCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3623
3809
|
return [
|
|
3624
3810
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3625
3811
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3626
3812
|
];
|
|
3627
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
|
+
}
|
|
3628
3817
|
};
|
|
3629
|
-
__name(_DescribeGatewayCommand, "DescribeGatewayCommand");
|
|
3630
|
-
var DescribeGatewayCommand = _DescribeGatewayCommand;
|
|
3631
3818
|
|
|
3632
3819
|
// src/commands/DescribeGatewayInstanceCommand.ts
|
|
3633
3820
|
|
|
3634
3821
|
|
|
3635
3822
|
|
|
3636
|
-
var
|
|
3823
|
+
var DescribeGatewayInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3637
3824
|
return [
|
|
3638
3825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3639
3826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3640
3827
|
];
|
|
3641
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
|
+
}
|
|
3642
3832
|
};
|
|
3643
|
-
__name(_DescribeGatewayInstanceCommand, "DescribeGatewayInstanceCommand");
|
|
3644
|
-
var DescribeGatewayInstanceCommand = _DescribeGatewayInstanceCommand;
|
|
3645
3833
|
|
|
3646
3834
|
// src/commands/DescribeOfferingCommand.ts
|
|
3647
3835
|
|
|
3648
3836
|
|
|
3649
3837
|
|
|
3650
|
-
var
|
|
3838
|
+
var DescribeOfferingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3651
3839
|
return [
|
|
3652
3840
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3653
3841
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3654
3842
|
];
|
|
3655
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
|
+
}
|
|
3656
3847
|
};
|
|
3657
|
-
__name(_DescribeOfferingCommand, "DescribeOfferingCommand");
|
|
3658
|
-
var DescribeOfferingCommand = _DescribeOfferingCommand;
|
|
3659
3848
|
|
|
3660
3849
|
// src/commands/DescribeReservationCommand.ts
|
|
3661
3850
|
|
|
3662
3851
|
|
|
3663
3852
|
|
|
3664
|
-
var
|
|
3853
|
+
var DescribeReservationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3665
3854
|
return [
|
|
3666
3855
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3667
3856
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3668
3857
|
];
|
|
3669
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
|
+
}
|
|
3670
3862
|
};
|
|
3671
|
-
__name(_DescribeReservationCommand, "DescribeReservationCommand");
|
|
3672
|
-
var DescribeReservationCommand = _DescribeReservationCommand;
|
|
3673
3863
|
|
|
3674
3864
|
// src/commands/GrantFlowEntitlementsCommand.ts
|
|
3675
3865
|
|
|
3676
3866
|
|
|
3677
3867
|
|
|
3678
|
-
var
|
|
3868
|
+
var GrantFlowEntitlementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3679
3869
|
return [
|
|
3680
3870
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3681
3871
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3682
3872
|
];
|
|
3683
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
|
+
}
|
|
3684
3877
|
};
|
|
3685
|
-
__name(_GrantFlowEntitlementsCommand, "GrantFlowEntitlementsCommand");
|
|
3686
|
-
var GrantFlowEntitlementsCommand = _GrantFlowEntitlementsCommand;
|
|
3687
3878
|
|
|
3688
3879
|
// src/commands/ListBridgesCommand.ts
|
|
3689
3880
|
|
|
3690
3881
|
|
|
3691
3882
|
|
|
3692
|
-
var
|
|
3883
|
+
var ListBridgesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3693
3884
|
return [
|
|
3694
3885
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3695
3886
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3696
3887
|
];
|
|
3697
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
|
+
}
|
|
3698
3892
|
};
|
|
3699
|
-
__name(_ListBridgesCommand, "ListBridgesCommand");
|
|
3700
|
-
var ListBridgesCommand = _ListBridgesCommand;
|
|
3701
3893
|
|
|
3702
3894
|
// src/commands/ListEntitlementsCommand.ts
|
|
3703
3895
|
|
|
3704
3896
|
|
|
3705
3897
|
|
|
3706
|
-
var
|
|
3898
|
+
var ListEntitlementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3707
3899
|
return [
|
|
3708
3900
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3709
3901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3710
3902
|
];
|
|
3711
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
|
+
}
|
|
3712
3907
|
};
|
|
3713
|
-
__name(_ListEntitlementsCommand, "ListEntitlementsCommand");
|
|
3714
|
-
var ListEntitlementsCommand = _ListEntitlementsCommand;
|
|
3715
3908
|
|
|
3716
3909
|
// src/commands/ListFlowsCommand.ts
|
|
3717
3910
|
|
|
3718
3911
|
|
|
3719
3912
|
|
|
3720
|
-
var
|
|
3913
|
+
var ListFlowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3721
3914
|
return [
|
|
3722
3915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3723
3916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3724
3917
|
];
|
|
3725
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
|
+
}
|
|
3726
3922
|
};
|
|
3727
|
-
__name(_ListFlowsCommand, "ListFlowsCommand");
|
|
3728
|
-
var ListFlowsCommand = _ListFlowsCommand;
|
|
3729
3923
|
|
|
3730
3924
|
// src/commands/ListGatewayInstancesCommand.ts
|
|
3731
3925
|
|
|
3732
3926
|
|
|
3733
3927
|
|
|
3734
|
-
var
|
|
3928
|
+
var ListGatewayInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3735
3929
|
return [
|
|
3736
3930
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3737
3931
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3738
3932
|
];
|
|
3739
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
|
+
}
|
|
3740
3937
|
};
|
|
3741
|
-
__name(_ListGatewayInstancesCommand, "ListGatewayInstancesCommand");
|
|
3742
|
-
var ListGatewayInstancesCommand = _ListGatewayInstancesCommand;
|
|
3743
3938
|
|
|
3744
3939
|
// src/commands/ListGatewaysCommand.ts
|
|
3745
3940
|
|
|
3746
3941
|
|
|
3747
3942
|
|
|
3748
|
-
var
|
|
3943
|
+
var ListGatewaysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3749
3944
|
return [
|
|
3750
3945
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3751
3946
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3752
3947
|
];
|
|
3753
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
|
+
}
|
|
3754
3952
|
};
|
|
3755
|
-
__name(_ListGatewaysCommand, "ListGatewaysCommand");
|
|
3756
|
-
var ListGatewaysCommand = _ListGatewaysCommand;
|
|
3757
3953
|
|
|
3758
3954
|
// src/commands/ListOfferingsCommand.ts
|
|
3759
3955
|
|
|
3760
3956
|
|
|
3761
3957
|
|
|
3762
|
-
var
|
|
3958
|
+
var ListOfferingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3763
3959
|
return [
|
|
3764
3960
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3765
3961
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3766
3962
|
];
|
|
3767
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
|
+
}
|
|
3768
3967
|
};
|
|
3769
|
-
__name(_ListOfferingsCommand, "ListOfferingsCommand");
|
|
3770
|
-
var ListOfferingsCommand = _ListOfferingsCommand;
|
|
3771
3968
|
|
|
3772
3969
|
// src/commands/ListReservationsCommand.ts
|
|
3773
3970
|
|
|
3774
3971
|
|
|
3775
3972
|
|
|
3776
|
-
var
|
|
3973
|
+
var ListReservationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3777
3974
|
return [
|
|
3778
3975
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3779
3976
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3780
3977
|
];
|
|
3781
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
|
+
}
|
|
3782
3982
|
};
|
|
3783
|
-
__name(_ListReservationsCommand, "ListReservationsCommand");
|
|
3784
|
-
var ListReservationsCommand = _ListReservationsCommand;
|
|
3785
3983
|
|
|
3786
3984
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3787
3985
|
|
|
3788
3986
|
|
|
3789
3987
|
|
|
3790
|
-
var
|
|
3988
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3791
3989
|
return [
|
|
3792
3990
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3793
3991
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3794
3992
|
];
|
|
3795
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
|
+
}
|
|
3796
3997
|
};
|
|
3797
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3798
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3799
3998
|
|
|
3800
3999
|
// src/commands/PurchaseOfferingCommand.ts
|
|
3801
4000
|
|
|
3802
4001
|
|
|
3803
4002
|
|
|
3804
|
-
var
|
|
4003
|
+
var PurchaseOfferingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3805
4004
|
return [
|
|
3806
4005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3807
4006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3808
4007
|
];
|
|
3809
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
|
+
}
|
|
3810
4012
|
};
|
|
3811
|
-
__name(_PurchaseOfferingCommand, "PurchaseOfferingCommand");
|
|
3812
|
-
var PurchaseOfferingCommand = _PurchaseOfferingCommand;
|
|
3813
4013
|
|
|
3814
4014
|
// src/commands/RemoveBridgeOutputCommand.ts
|
|
3815
4015
|
|
|
3816
4016
|
|
|
3817
4017
|
|
|
3818
|
-
var
|
|
4018
|
+
var RemoveBridgeOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3819
4019
|
return [
|
|
3820
4020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3821
4021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3822
4022
|
];
|
|
3823
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
|
+
}
|
|
3824
4027
|
};
|
|
3825
|
-
__name(_RemoveBridgeOutputCommand, "RemoveBridgeOutputCommand");
|
|
3826
|
-
var RemoveBridgeOutputCommand = _RemoveBridgeOutputCommand;
|
|
3827
4028
|
|
|
3828
4029
|
// src/commands/RemoveBridgeSourceCommand.ts
|
|
3829
4030
|
|
|
3830
4031
|
|
|
3831
4032
|
|
|
3832
|
-
var
|
|
4033
|
+
var RemoveBridgeSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3833
4034
|
return [
|
|
3834
4035
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3835
4036
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3836
4037
|
];
|
|
3837
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
|
+
}
|
|
3838
4042
|
};
|
|
3839
|
-
__name(_RemoveBridgeSourceCommand, "RemoveBridgeSourceCommand");
|
|
3840
|
-
var RemoveBridgeSourceCommand = _RemoveBridgeSourceCommand;
|
|
3841
4043
|
|
|
3842
4044
|
// src/commands/RemoveFlowMediaStreamCommand.ts
|
|
3843
4045
|
|
|
3844
4046
|
|
|
3845
4047
|
|
|
3846
|
-
var
|
|
4048
|
+
var RemoveFlowMediaStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3847
4049
|
return [
|
|
3848
4050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3849
4051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3850
4052
|
];
|
|
3851
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
|
+
}
|
|
3852
4057
|
};
|
|
3853
|
-
__name(_RemoveFlowMediaStreamCommand, "RemoveFlowMediaStreamCommand");
|
|
3854
|
-
var RemoveFlowMediaStreamCommand = _RemoveFlowMediaStreamCommand;
|
|
3855
4058
|
|
|
3856
4059
|
// src/commands/RemoveFlowOutputCommand.ts
|
|
3857
4060
|
|
|
3858
4061
|
|
|
3859
4062
|
|
|
3860
|
-
var
|
|
4063
|
+
var RemoveFlowOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3861
4064
|
return [
|
|
3862
4065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3863
4066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3864
4067
|
];
|
|
3865
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
|
+
}
|
|
3866
4072
|
};
|
|
3867
|
-
__name(_RemoveFlowOutputCommand, "RemoveFlowOutputCommand");
|
|
3868
|
-
var RemoveFlowOutputCommand = _RemoveFlowOutputCommand;
|
|
3869
4073
|
|
|
3870
4074
|
// src/commands/RemoveFlowSourceCommand.ts
|
|
3871
4075
|
|
|
3872
4076
|
|
|
3873
4077
|
|
|
3874
|
-
var
|
|
4078
|
+
var RemoveFlowSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3875
4079
|
return [
|
|
3876
4080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3877
4081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3878
4082
|
];
|
|
3879
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
|
+
}
|
|
3880
4087
|
};
|
|
3881
|
-
__name(_RemoveFlowSourceCommand, "RemoveFlowSourceCommand");
|
|
3882
|
-
var RemoveFlowSourceCommand = _RemoveFlowSourceCommand;
|
|
3883
4088
|
|
|
3884
4089
|
// src/commands/RemoveFlowVpcInterfaceCommand.ts
|
|
3885
4090
|
|
|
3886
4091
|
|
|
3887
4092
|
|
|
3888
|
-
var
|
|
4093
|
+
var RemoveFlowVpcInterfaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3889
4094
|
return [
|
|
3890
4095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3891
4096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3892
4097
|
];
|
|
3893
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
|
+
}
|
|
3894
4102
|
};
|
|
3895
|
-
__name(_RemoveFlowVpcInterfaceCommand, "RemoveFlowVpcInterfaceCommand");
|
|
3896
|
-
var RemoveFlowVpcInterfaceCommand = _RemoveFlowVpcInterfaceCommand;
|
|
3897
4103
|
|
|
3898
4104
|
// src/commands/RevokeFlowEntitlementCommand.ts
|
|
3899
4105
|
|
|
3900
4106
|
|
|
3901
4107
|
|
|
3902
|
-
var
|
|
4108
|
+
var RevokeFlowEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3903
4109
|
return [
|
|
3904
4110
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3905
4111
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3906
4112
|
];
|
|
3907
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
|
+
}
|
|
3908
4117
|
};
|
|
3909
|
-
__name(_RevokeFlowEntitlementCommand, "RevokeFlowEntitlementCommand");
|
|
3910
|
-
var RevokeFlowEntitlementCommand = _RevokeFlowEntitlementCommand;
|
|
3911
4118
|
|
|
3912
4119
|
// src/commands/StartFlowCommand.ts
|
|
3913
4120
|
|
|
3914
4121
|
|
|
3915
4122
|
|
|
3916
|
-
var
|
|
4123
|
+
var StartFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3917
4124
|
return [
|
|
3918
4125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3919
4126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3920
4127
|
];
|
|
3921
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
|
+
}
|
|
3922
4132
|
};
|
|
3923
|
-
__name(_StartFlowCommand, "StartFlowCommand");
|
|
3924
|
-
var StartFlowCommand = _StartFlowCommand;
|
|
3925
4133
|
|
|
3926
4134
|
// src/commands/StopFlowCommand.ts
|
|
3927
4135
|
|
|
3928
4136
|
|
|
3929
4137
|
|
|
3930
|
-
var
|
|
4138
|
+
var StopFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3931
4139
|
return [
|
|
3932
4140
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3933
4141
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3934
4142
|
];
|
|
3935
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
|
+
}
|
|
3936
4147
|
};
|
|
3937
|
-
__name(_StopFlowCommand, "StopFlowCommand");
|
|
3938
|
-
var StopFlowCommand = _StopFlowCommand;
|
|
3939
4148
|
|
|
3940
4149
|
// src/commands/TagResourceCommand.ts
|
|
3941
4150
|
|
|
3942
4151
|
|
|
3943
4152
|
|
|
3944
|
-
var
|
|
4153
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3945
4154
|
return [
|
|
3946
4155
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3947
4156
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3948
4157
|
];
|
|
3949
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
|
+
}
|
|
3950
4162
|
};
|
|
3951
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3952
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3953
4163
|
|
|
3954
4164
|
// src/commands/UntagResourceCommand.ts
|
|
3955
4165
|
|
|
3956
4166
|
|
|
3957
4167
|
|
|
3958
|
-
var
|
|
4168
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3959
4169
|
return [
|
|
3960
4170
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3961
4171
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3962
4172
|
];
|
|
3963
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
|
+
}
|
|
3964
4177
|
};
|
|
3965
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3966
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3967
4178
|
|
|
3968
4179
|
// src/commands/UpdateBridgeCommand.ts
|
|
3969
4180
|
|
|
3970
4181
|
|
|
3971
4182
|
|
|
3972
|
-
var
|
|
4183
|
+
var UpdateBridgeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3973
4184
|
return [
|
|
3974
4185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3975
4186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3976
4187
|
];
|
|
3977
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
|
+
}
|
|
3978
4192
|
};
|
|
3979
|
-
__name(_UpdateBridgeCommand, "UpdateBridgeCommand");
|
|
3980
|
-
var UpdateBridgeCommand = _UpdateBridgeCommand;
|
|
3981
4193
|
|
|
3982
4194
|
// src/commands/UpdateBridgeOutputCommand.ts
|
|
3983
4195
|
|
|
3984
4196
|
|
|
3985
4197
|
|
|
3986
|
-
var
|
|
4198
|
+
var UpdateBridgeOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3987
4199
|
return [
|
|
3988
4200
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3989
4201
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3990
4202
|
];
|
|
3991
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
|
+
}
|
|
3992
4207
|
};
|
|
3993
|
-
__name(_UpdateBridgeOutputCommand, "UpdateBridgeOutputCommand");
|
|
3994
|
-
var UpdateBridgeOutputCommand = _UpdateBridgeOutputCommand;
|
|
3995
4208
|
|
|
3996
4209
|
// src/commands/UpdateBridgeSourceCommand.ts
|
|
3997
4210
|
|
|
3998
4211
|
|
|
3999
4212
|
|
|
4000
|
-
var
|
|
4213
|
+
var UpdateBridgeSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4001
4214
|
return [
|
|
4002
4215
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4003
4216
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4004
4217
|
];
|
|
4005
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
|
+
}
|
|
4006
4222
|
};
|
|
4007
|
-
__name(_UpdateBridgeSourceCommand, "UpdateBridgeSourceCommand");
|
|
4008
|
-
var UpdateBridgeSourceCommand = _UpdateBridgeSourceCommand;
|
|
4009
4223
|
|
|
4010
4224
|
// src/commands/UpdateBridgeStateCommand.ts
|
|
4011
4225
|
|
|
4012
4226
|
|
|
4013
4227
|
|
|
4014
|
-
var
|
|
4228
|
+
var UpdateBridgeStateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4015
4229
|
return [
|
|
4016
4230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4017
4231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4018
4232
|
];
|
|
4019
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
|
+
}
|
|
4020
4237
|
};
|
|
4021
|
-
__name(_UpdateBridgeStateCommand, "UpdateBridgeStateCommand");
|
|
4022
|
-
var UpdateBridgeStateCommand = _UpdateBridgeStateCommand;
|
|
4023
4238
|
|
|
4024
4239
|
// src/commands/UpdateFlowCommand.ts
|
|
4025
4240
|
|
|
4026
4241
|
|
|
4027
4242
|
|
|
4028
|
-
var
|
|
4243
|
+
var UpdateFlowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4029
4244
|
return [
|
|
4030
4245
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4031
4246
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4032
4247
|
];
|
|
4033
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
|
+
}
|
|
4034
4252
|
};
|
|
4035
|
-
__name(_UpdateFlowCommand, "UpdateFlowCommand");
|
|
4036
|
-
var UpdateFlowCommand = _UpdateFlowCommand;
|
|
4037
4253
|
|
|
4038
4254
|
// src/commands/UpdateFlowEntitlementCommand.ts
|
|
4039
4255
|
|
|
4040
4256
|
|
|
4041
4257
|
|
|
4042
|
-
var
|
|
4258
|
+
var UpdateFlowEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4043
4259
|
return [
|
|
4044
4260
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4045
4261
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4046
4262
|
];
|
|
4047
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
|
+
}
|
|
4048
4267
|
};
|
|
4049
|
-
__name(_UpdateFlowEntitlementCommand, "UpdateFlowEntitlementCommand");
|
|
4050
|
-
var UpdateFlowEntitlementCommand = _UpdateFlowEntitlementCommand;
|
|
4051
4268
|
|
|
4052
4269
|
// src/commands/UpdateFlowMediaStreamCommand.ts
|
|
4053
4270
|
|
|
4054
4271
|
|
|
4055
4272
|
|
|
4056
|
-
var
|
|
4273
|
+
var UpdateFlowMediaStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4057
4274
|
return [
|
|
4058
4275
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4059
4276
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4060
4277
|
];
|
|
4061
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
|
+
}
|
|
4062
4282
|
};
|
|
4063
|
-
__name(_UpdateFlowMediaStreamCommand, "UpdateFlowMediaStreamCommand");
|
|
4064
|
-
var UpdateFlowMediaStreamCommand = _UpdateFlowMediaStreamCommand;
|
|
4065
4283
|
|
|
4066
4284
|
// src/commands/UpdateFlowOutputCommand.ts
|
|
4067
4285
|
|
|
4068
4286
|
|
|
4069
4287
|
|
|
4070
|
-
var
|
|
4288
|
+
var UpdateFlowOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4071
4289
|
return [
|
|
4072
4290
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4073
4291
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4074
4292
|
];
|
|
4075
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
|
+
}
|
|
4076
4297
|
};
|
|
4077
|
-
__name(_UpdateFlowOutputCommand, "UpdateFlowOutputCommand");
|
|
4078
|
-
var UpdateFlowOutputCommand = _UpdateFlowOutputCommand;
|
|
4079
4298
|
|
|
4080
4299
|
// src/commands/UpdateFlowSourceCommand.ts
|
|
4081
4300
|
|
|
4082
4301
|
|
|
4083
4302
|
|
|
4084
|
-
var
|
|
4303
|
+
var UpdateFlowSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4085
4304
|
return [
|
|
4086
4305
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4087
4306
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4088
4307
|
];
|
|
4089
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
|
+
}
|
|
4090
4312
|
};
|
|
4091
|
-
__name(_UpdateFlowSourceCommand, "UpdateFlowSourceCommand");
|
|
4092
|
-
var UpdateFlowSourceCommand = _UpdateFlowSourceCommand;
|
|
4093
4313
|
|
|
4094
4314
|
// src/commands/UpdateGatewayInstanceCommand.ts
|
|
4095
4315
|
|
|
4096
4316
|
|
|
4097
4317
|
|
|
4098
|
-
var
|
|
4318
|
+
var UpdateGatewayInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4099
4319
|
return [
|
|
4100
4320
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4101
4321
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4102
4322
|
];
|
|
4103
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
|
+
}
|
|
4104
4327
|
};
|
|
4105
|
-
__name(_UpdateGatewayInstanceCommand, "UpdateGatewayInstanceCommand");
|
|
4106
|
-
var UpdateGatewayInstanceCommand = _UpdateGatewayInstanceCommand;
|
|
4107
4328
|
|
|
4108
4329
|
// src/MediaConnect.ts
|
|
4109
4330
|
var commands = {
|
|
@@ -4160,10 +4381,11 @@ var commands = {
|
|
|
4160
4381
|
UpdateFlowSourceCommand,
|
|
4161
4382
|
UpdateGatewayInstanceCommand
|
|
4162
4383
|
};
|
|
4163
|
-
var
|
|
4384
|
+
var MediaConnect = class extends MediaConnectClient {
|
|
4385
|
+
static {
|
|
4386
|
+
__name(this, "MediaConnect");
|
|
4387
|
+
}
|
|
4164
4388
|
};
|
|
4165
|
-
__name(_MediaConnect, "MediaConnect");
|
|
4166
|
-
var MediaConnect = _MediaConnect;
|
|
4167
4389
|
(0, import_smithy_client.createAggregatedClient)(commands, MediaConnect);
|
|
4168
4390
|
|
|
4169
4391
|
// src/pagination/ListBridgesPaginator.ts
|
|
@@ -4445,6 +4667,7 @@ var waitUntilFlowStandby = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
4445
4667
|
EncodingName,
|
|
4446
4668
|
EncoderProfile,
|
|
4447
4669
|
OutputStatus,
|
|
4670
|
+
State,
|
|
4448
4671
|
EntitlementStatus,
|
|
4449
4672
|
BridgeState,
|
|
4450
4673
|
MaintenanceDay,
|
|
@@ -4466,9 +4689,9 @@ var waitUntilFlowStandby = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
4466
4689
|
TooManyRequestsException,
|
|
4467
4690
|
AddFlowOutputs420Exception,
|
|
4468
4691
|
FailoverMode,
|
|
4469
|
-
State,
|
|
4470
4692
|
BridgePlacement,
|
|
4471
4693
|
ConnectionStatus,
|
|
4694
|
+
ContentQualityAnalysisState,
|
|
4472
4695
|
CreateBridge420Exception,
|
|
4473
4696
|
CreateFlow420Exception,
|
|
4474
4697
|
ThumbnailState,
|