@aws-sdk/client-mediapackagev2 3.952.0 → 3.953.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.
Files changed (50) hide show
  1. package/dist-cjs/index.js +496 -357
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelHarvestJobCommand.js +2 -2
  4. package/dist-es/commands/CreateChannelCommand.js +2 -2
  5. package/dist-es/commands/CreateChannelGroupCommand.js +2 -2
  6. package/dist-es/commands/CreateHarvestJobCommand.js +2 -2
  7. package/dist-es/commands/CreateOriginEndpointCommand.js +2 -2
  8. package/dist-es/commands/DeleteChannelCommand.js +2 -2
  9. package/dist-es/commands/DeleteChannelGroupCommand.js +2 -2
  10. package/dist-es/commands/DeleteChannelPolicyCommand.js +2 -2
  11. package/dist-es/commands/DeleteOriginEndpointCommand.js +2 -2
  12. package/dist-es/commands/DeleteOriginEndpointPolicyCommand.js +2 -2
  13. package/dist-es/commands/GetChannelCommand.js +2 -2
  14. package/dist-es/commands/GetChannelGroupCommand.js +2 -2
  15. package/dist-es/commands/GetChannelPolicyCommand.js +2 -2
  16. package/dist-es/commands/GetHarvestJobCommand.js +2 -2
  17. package/dist-es/commands/GetOriginEndpointCommand.js +2 -2
  18. package/dist-es/commands/GetOriginEndpointPolicyCommand.js +2 -2
  19. package/dist-es/commands/ListChannelGroupsCommand.js +2 -2
  20. package/dist-es/commands/ListChannelsCommand.js +2 -2
  21. package/dist-es/commands/ListHarvestJobsCommand.js +2 -2
  22. package/dist-es/commands/ListOriginEndpointsCommand.js +2 -2
  23. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  24. package/dist-es/commands/PutChannelPolicyCommand.js +2 -2
  25. package/dist-es/commands/PutOriginEndpointPolicyCommand.js +2 -2
  26. package/dist-es/commands/ResetChannelStateCommand.js +2 -2
  27. package/dist-es/commands/ResetOriginEndpointStateCommand.js +2 -2
  28. package/dist-es/commands/TagResourceCommand.js +2 -2
  29. package/dist-es/commands/UntagResourceCommand.js +2 -2
  30. package/dist-es/commands/UpdateChannelCommand.js +2 -2
  31. package/dist-es/commands/UpdateChannelGroupCommand.js +2 -2
  32. package/dist-es/commands/UpdateOriginEndpointCommand.js +2 -2
  33. package/dist-es/index.js +1 -0
  34. package/dist-es/runtimeConfig.shared.js +6 -1
  35. package/dist-es/schemas/schemas_0.js +312 -315
  36. package/dist-types/MediaPackageV2Client.d.ts +1 -10
  37. package/dist-types/index.d.ts +1 -0
  38. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  39. package/dist-types/runtimeConfig.d.ts +6 -2
  40. package/dist-types/runtimeConfig.native.d.ts +6 -2
  41. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  42. package/dist-types/schemas/schemas_0.d.ts +143 -174
  43. package/dist-types/ts3.4/MediaPackageV2Client.d.ts +0 -4
  44. package/dist-types/ts3.4/index.d.ts +1 -0
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +142 -174
  50. package/package.json +35 -35
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class MediaPackageV2Client extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let MediaPackageV2ServiceException$1 = class MediaPackageV2ServiceException extends smithyClient.ServiceException {
114
+ class MediaPackageV2ServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, MediaPackageV2ServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let AccessDeniedException$1 = class AccessDeniedException extends MediaPackageV2ServiceException$1 {
121
+ class AccessDeniedException extends MediaPackageV2ServiceException {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  Message;
@@ -131,8 +131,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends MediaPackageV2
131
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
132
  this.Message = opts.Message;
133
133
  }
134
- };
135
- let ConflictException$1 = class ConflictException extends MediaPackageV2ServiceException$1 {
134
+ }
135
+ class ConflictException extends MediaPackageV2ServiceException {
136
136
  name = "ConflictException";
137
137
  $fault = "client";
138
138
  Message;
@@ -147,8 +147,8 @@ let ConflictException$1 = class ConflictException extends MediaPackageV2ServiceE
147
147
  this.Message = opts.Message;
148
148
  this.ConflictExceptionType = opts.ConflictExceptionType;
149
149
  }
150
- };
151
- let InternalServerException$1 = class InternalServerException extends MediaPackageV2ServiceException$1 {
150
+ }
151
+ class InternalServerException extends MediaPackageV2ServiceException {
152
152
  name = "InternalServerException";
153
153
  $fault = "server";
154
154
  Message;
@@ -161,8 +161,8 @@ let InternalServerException$1 = class InternalServerException extends MediaPacka
161
161
  Object.setPrototypeOf(this, InternalServerException.prototype);
162
162
  this.Message = opts.Message;
163
163
  }
164
- };
165
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends MediaPackageV2ServiceException$1 {
164
+ }
165
+ class ResourceNotFoundException extends MediaPackageV2ServiceException {
166
166
  name = "ResourceNotFoundException";
167
167
  $fault = "client";
168
168
  Message;
@@ -177,8 +177,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends MediaP
177
177
  this.Message = opts.Message;
178
178
  this.ResourceTypeNotFound = opts.ResourceTypeNotFound;
179
179
  }
180
- };
181
- let ThrottlingException$1 = class ThrottlingException extends MediaPackageV2ServiceException$1 {
180
+ }
181
+ class ThrottlingException extends MediaPackageV2ServiceException {
182
182
  name = "ThrottlingException";
183
183
  $fault = "client";
184
184
  Message;
@@ -191,8 +191,8 @@ let ThrottlingException$1 = class ThrottlingException extends MediaPackageV2Serv
191
191
  Object.setPrototypeOf(this, ThrottlingException.prototype);
192
192
  this.Message = opts.Message;
193
193
  }
194
- };
195
- let ValidationException$1 = class ValidationException extends MediaPackageV2ServiceException$1 {
194
+ }
195
+ class ValidationException extends MediaPackageV2ServiceException {
196
196
  name = "ValidationException";
197
197
  $fault = "client";
198
198
  Message;
@@ -207,8 +207,8 @@ let ValidationException$1 = class ValidationException extends MediaPackageV2Serv
207
207
  this.Message = opts.Message;
208
208
  this.ValidationExceptionType = opts.ValidationExceptionType;
209
209
  }
210
- };
211
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends MediaPackageV2ServiceException$1 {
210
+ }
211
+ class ServiceQuotaExceededException extends MediaPackageV2ServiceException {
212
212
  name = "ServiceQuotaExceededException";
213
213
  $fault = "client";
214
214
  Message;
@@ -221,7 +221,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
221
221
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
222
222
  this.Message = opts.Message;
223
223
  }
224
- };
224
+ }
225
225
 
226
226
  const _A = "Arn";
227
227
  const _ADE = "AccessDeniedException";
@@ -518,9 +518,9 @@ const _tK = "tagKeys";
518
518
  const _xact = "x-amzn-client-token";
519
519
  const _xauim = "x-amzn-update-if-match";
520
520
  const n0 = "com.amazonaws.mediapackagev2";
521
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
522
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
523
- var CancelHarvestJobRequest = [
521
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
522
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
523
+ var CancelHarvestJobRequest$ = [
524
524
  3,
525
525
  n0,
526
526
  _CHJR,
@@ -534,9 +534,9 @@ var CancelHarvestJobRequest = [
534
534
  [0, { [_hH]: _xauim }],
535
535
  ],
536
536
  ];
537
- var CancelHarvestJobResponse = [3, n0, _CHJRa, 0, [], []];
538
- var CdnAuthConfiguration = [3, n0, _CAC, 0, [_CISA, _SRA], [64 | 0, 0]];
539
- var ChannelGroupListConfiguration = [
537
+ var CancelHarvestJobResponse$ = [3, n0, _CHJRa, 0, [], []];
538
+ var CdnAuthConfiguration$ = [3, n0, _CAC, 0, [_CISA, _SRA], [64 | 0, 0]];
539
+ var ChannelGroupListConfiguration$ = [
540
540
  3,
541
541
  n0,
542
542
  _CGLC,
@@ -544,7 +544,7 @@ var ChannelGroupListConfiguration = [
544
544
  [_CGN, _A, _CA, _MA, _D],
545
545
  [0, 0, 4, 4, 0],
546
546
  ];
547
- var ChannelListConfiguration = [
547
+ var ChannelListConfiguration$ = [
548
548
  3,
549
549
  n0,
550
550
  _CLC,
@@ -552,9 +552,9 @@ var ChannelListConfiguration = [
552
552
  [_A, _CN, _CGN, _CA, _MA, _D, _IT],
553
553
  [0, 0, 0, 4, 4, 0, 0],
554
554
  ];
555
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _CET], [0, 0]];
556
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
557
- var CreateChannelGroupRequest = [
555
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _CET], [0, 0]];
556
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
557
+ var CreateChannelGroupRequest$ = [
558
558
  3,
559
559
  n0,
560
560
  _CCGR,
@@ -562,7 +562,7 @@ var CreateChannelGroupRequest = [
562
562
  [_CGN, _CT, _D, _T],
563
563
  [0, [0, { [_hH]: _xact, [_iT]: 1 }], 0, [128 | 0, { [_jN]: _t }]],
564
564
  ];
565
- var CreateChannelGroupResponse = [
565
+ var CreateChannelGroupResponse$ = [
566
566
  3,
567
567
  n0,
568
568
  _CCGRr,
@@ -570,7 +570,7 @@ var CreateChannelGroupResponse = [
570
570
  [_CGN, _A, _ED, _CA, _MA, _ET, _D, _T],
571
571
  [0, 0, 0, 4, 4, 0, 0, 128 | 0],
572
572
  ];
573
- var CreateChannelRequest = [
573
+ var CreateChannelRequest$ = [
574
574
  3,
575
575
  n0,
576
576
  _CCR,
@@ -582,12 +582,12 @@ var CreateChannelRequest = [
582
582
  [0, { [_hH]: _xact, [_iT]: 1 }],
583
583
  0,
584
584
  0,
585
- () => InputSwitchConfiguration,
586
- () => OutputHeaderConfiguration,
585
+ () => InputSwitchConfiguration$,
586
+ () => OutputHeaderConfiguration$,
587
587
  [128 | 0, { [_jN]: _t }],
588
588
  ],
589
589
  ];
590
- var CreateChannelResponse = [
590
+ var CreateChannelResponse$ = [
591
591
  3,
592
592
  n0,
593
593
  _CCRr,
@@ -604,11 +604,11 @@ var CreateChannelResponse = [
604
604
  0,
605
605
  0,
606
606
  128 | 0,
607
- () => InputSwitchConfiguration,
608
- () => OutputHeaderConfiguration,
607
+ () => InputSwitchConfiguration$,
608
+ () => OutputHeaderConfiguration$,
609
609
  ],
610
610
  ];
611
- var CreateDashManifestConfiguration = [
611
+ var CreateDashManifestConfiguration$ = [
612
612
  3,
613
613
  n0,
614
614
  _CDMC,
@@ -617,24 +617,24 @@ var CreateDashManifestConfiguration = [
617
617
  [
618
618
  0,
619
619
  1,
620
- () => FilterConfiguration,
620
+ () => FilterConfiguration$,
621
621
  1,
622
622
  1,
623
623
  1,
624
624
  0,
625
625
  64 | 0,
626
- () => ScteDash,
626
+ () => ScteDash$,
627
627
  0,
628
- () => DashUtcTiming,
628
+ () => DashUtcTiming$,
629
629
  64 | 0,
630
630
  () => DashBaseUrls,
631
- () => DashProgramInformation,
632
- () => DashDvbSettings,
631
+ () => DashProgramInformation$,
632
+ () => DashDvbSettings$,
633
633
  0,
634
- () => DashSubtitleConfiguration,
634
+ () => DashSubtitleConfiguration$,
635
635
  ],
636
636
  ];
637
- var CreateHarvestJobRequest = [
637
+ var CreateHarvestJobRequest$ = [
638
638
  3,
639
639
  n0,
640
640
  _CHJRr,
@@ -645,15 +645,15 @@ var CreateHarvestJobRequest = [
645
645
  [0, 1],
646
646
  [0, 1],
647
647
  0,
648
- () => HarvestedManifests,
649
- () => HarvesterScheduleConfiguration,
650
- () => Destination,
648
+ () => HarvestedManifests$,
649
+ () => HarvesterScheduleConfiguration$,
650
+ () => Destination$,
651
651
  [0, { [_hH]: _xact, [_iT]: 1 }],
652
652
  0,
653
653
  128 | 0,
654
654
  ],
655
655
  ];
656
- var CreateHarvestJobResponse = [
656
+ var CreateHarvestJobResponse$ = [
657
657
  3,
658
658
  n0,
659
659
  _CHJRre,
@@ -663,11 +663,11 @@ var CreateHarvestJobResponse = [
663
663
  0,
664
664
  0,
665
665
  0,
666
- () => Destination,
666
+ () => Destination$,
667
667
  0,
668
- () => HarvestedManifests,
668
+ () => HarvestedManifests$,
669
669
  0,
670
- () => HarvesterScheduleConfiguration,
670
+ () => HarvesterScheduleConfiguration$,
671
671
  0,
672
672
  4,
673
673
  4,
@@ -677,31 +677,31 @@ var CreateHarvestJobResponse = [
677
677
  128 | 0,
678
678
  ],
679
679
  ];
680
- var CreateHlsManifestConfiguration = [
680
+ var CreateHlsManifestConfiguration$ = [
681
681
  3,
682
682
  n0,
683
683
  _CHMC,
684
684
  0,
685
685
  [_MN, _CMN, _SH, _ST, _MWS, _PDTIS, _FC, _UECM],
686
- [0, 0, () => ScteHls, () => StartTag, 1, 1, () => FilterConfiguration, 2],
686
+ [0, 0, () => ScteHls$, () => StartTag$, 1, 1, () => FilterConfiguration$, 2],
687
687
  ];
688
- var CreateLowLatencyHlsManifestConfiguration = [
688
+ var CreateLowLatencyHlsManifestConfiguration$ = [
689
689
  3,
690
690
  n0,
691
691
  _CLLHMC,
692
692
  0,
693
693
  [_MN, _CMN, _SH, _ST, _MWS, _PDTIS, _FC, _UECM],
694
- [0, 0, () => ScteHls, () => StartTag, 1, 1, () => FilterConfiguration, 2],
694
+ [0, 0, () => ScteHls$, () => StartTag$, 1, 1, () => FilterConfiguration$, 2],
695
695
  ];
696
- var CreateMssManifestConfiguration = [
696
+ var CreateMssManifestConfiguration$ = [
697
697
  3,
698
698
  n0,
699
699
  _CMMC,
700
700
  0,
701
701
  [_MN, _MWS, _FC, _ML],
702
- [0, 1, () => FilterConfiguration, 0],
702
+ [0, 1, () => FilterConfiguration$, 0],
703
703
  ];
704
- var CreateOriginEndpointRequest = [
704
+ var CreateOriginEndpointRequest$ = [
705
705
  3,
706
706
  n0,
707
707
  _COER,
@@ -712,7 +712,7 @@ var CreateOriginEndpointRequest = [
712
712
  [0, 1],
713
713
  0,
714
714
  0,
715
- () => Segment,
715
+ () => Segment$,
716
716
  [0, { [_hH]: _xact, [_iT]: 1 }],
717
717
  0,
718
718
  1,
@@ -720,11 +720,11 @@ var CreateOriginEndpointRequest = [
720
720
  () => CreateLowLatencyHlsManifests,
721
721
  () => CreateDashManifests,
722
722
  () => CreateMssManifests,
723
- () => ForceEndpointErrorConfiguration,
723
+ () => ForceEndpointErrorConfiguration$,
724
724
  128 | 0,
725
725
  ],
726
726
  ];
727
- var CreateOriginEndpointResponse = [
727
+ var CreateOriginEndpointResponse$ = [
728
728
  3,
729
729
  n0,
730
730
  _COERr,
@@ -736,7 +736,7 @@ var CreateOriginEndpointResponse = [
736
736
  0,
737
737
  0,
738
738
  0,
739
- () => Segment,
739
+ () => Segment$,
740
740
  4,
741
741
  4,
742
742
  0,
@@ -745,23 +745,23 @@ var CreateOriginEndpointResponse = [
745
745
  () => GetLowLatencyHlsManifests,
746
746
  () => GetDashManifests,
747
747
  () => GetMssManifests,
748
- () => ForceEndpointErrorConfiguration,
748
+ () => ForceEndpointErrorConfiguration$,
749
749
  0,
750
750
  128 | 0,
751
751
  ],
752
752
  ];
753
- var DashBaseUrl = [3, n0, _DBU, 0, [_U, _SL, _DP, _DW], [0, 0, 1, 1]];
754
- var DashDvbFontDownload = [3, n0, _DDFD, 0, [_U, _MT, _FF], [0, 0, 0]];
755
- var DashDvbMetricsReporting = [3, n0, _DDMR, 0, [_RU, _Pr], [0, 1]];
756
- var DashDvbSettings = [
753
+ var DashBaseUrl$ = [3, n0, _DBU, 0, [_U, _SL, _DP, _DW], [0, 0, 1, 1]];
754
+ var DashDvbFontDownload$ = [3, n0, _DDFD, 0, [_U, _MT, _FF], [0, 0, 0]];
755
+ var DashDvbMetricsReporting$ = [3, n0, _DDMR, 0, [_RU, _Pr], [0, 1]];
756
+ var DashDvbSettings$ = [
757
757
  3,
758
758
  n0,
759
759
  _DDS,
760
760
  0,
761
761
  [_FD, _EMr],
762
- [() => DashDvbFontDownload, () => DashDvbErrorMetrics],
762
+ [() => DashDvbFontDownload$, () => DashDvbErrorMetrics],
763
763
  ];
764
- var DashProgramInformation = [
764
+ var DashProgramInformation$ = [
765
765
  3,
766
766
  n0,
767
767
  _DPI,
@@ -769,12 +769,12 @@ var DashProgramInformation = [
769
769
  [_Ti, _So, _Co, _LC, _MIU],
770
770
  [0, 0, 0, 0, 0],
771
771
  ];
772
- var DashSubtitleConfiguration = [3, n0, _DSC, 0, [_TC], [() => DashTtmlConfiguration]];
773
- var DashTtmlConfiguration = [3, n0, _DTC, 0, [_TP], [0]];
774
- var DashUtcTiming = [3, n0, _DUT, 0, [_TM, _TS], [0, 0]];
775
- var DeleteChannelGroupRequest = [3, n0, _DCGR, 0, [_CGN], [[0, 1]]];
776
- var DeleteChannelGroupResponse = [3, n0, _DCGRe, 0, [], []];
777
- var DeleteChannelPolicyRequest = [
772
+ var DashSubtitleConfiguration$ = [3, n0, _DSC, 0, [_TC], [() => DashTtmlConfiguration$]];
773
+ var DashTtmlConfiguration$ = [3, n0, _DTC, 0, [_TP], [0]];
774
+ var DashUtcTiming$ = [3, n0, _DUT, 0, [_TM, _TS], [0, 0]];
775
+ var DeleteChannelGroupRequest$ = [3, n0, _DCGR, 0, [_CGN], [[0, 1]]];
776
+ var DeleteChannelGroupResponse$ = [3, n0, _DCGRe, 0, [], []];
777
+ var DeleteChannelPolicyRequest$ = [
778
778
  3,
779
779
  n0,
780
780
  _DCPR,
@@ -785,8 +785,8 @@ var DeleteChannelPolicyRequest = [
785
785
  [0, 1],
786
786
  ],
787
787
  ];
788
- var DeleteChannelPolicyResponse = [3, n0, _DCPRe, 0, [], []];
789
- var DeleteChannelRequest = [
788
+ var DeleteChannelPolicyResponse$ = [3, n0, _DCPRe, 0, [], []];
789
+ var DeleteChannelRequest$ = [
790
790
  3,
791
791
  n0,
792
792
  _DCR,
@@ -797,8 +797,8 @@ var DeleteChannelRequest = [
797
797
  [0, 1],
798
798
  ],
799
799
  ];
800
- var DeleteChannelResponse = [3, n0, _DCRe, 0, [], []];
801
- var DeleteOriginEndpointPolicyRequest = [
800
+ var DeleteChannelResponse$ = [3, n0, _DCRe, 0, [], []];
801
+ var DeleteOriginEndpointPolicyRequest$ = [
802
802
  3,
803
803
  n0,
804
804
  _DOEPR,
@@ -810,8 +810,8 @@ var DeleteOriginEndpointPolicyRequest = [
810
810
  [0, 1],
811
811
  ],
812
812
  ];
813
- var DeleteOriginEndpointPolicyResponse = [3, n0, _DOEPRe, 0, [], []];
814
- var DeleteOriginEndpointRequest = [
813
+ var DeleteOriginEndpointPolicyResponse$ = [3, n0, _DOEPRe, 0, [], []];
814
+ var DeleteOriginEndpointRequest$ = [
815
815
  3,
816
816
  n0,
817
817
  _DOER,
@@ -823,19 +823,19 @@ var DeleteOriginEndpointRequest = [
823
823
  [0, 1],
824
824
  ],
825
825
  ];
826
- var DeleteOriginEndpointResponse = [3, n0, _DOERe, 0, [], []];
827
- var Destination = [3, n0, _De, 0, [_SDe], [() => S3DestinationConfig]];
828
- var Encryption = [
826
+ var DeleteOriginEndpointResponse$ = [3, n0, _DOERe, 0, [], []];
827
+ var Destination$ = [3, n0, _De, 0, [_SDe], [() => S3DestinationConfig$]];
828
+ var Encryption$ = [
829
829
  3,
830
830
  n0,
831
831
  _E,
832
832
  0,
833
833
  [_CIV, _EMn, _KRIS, _CESDM, _SKP],
834
- [0, () => EncryptionMethod, 1, 2, () => SpekeKeyProvider],
834
+ [0, () => EncryptionMethod$, 1, 2, () => SpekeKeyProvider$],
835
835
  ];
836
- var EncryptionContractConfiguration = [3, n0, _ECC, 0, [_PSA, _PSV], [0, 0]];
837
- var EncryptionMethod = [3, n0, _EMn, 0, [_TEM, _CEM, _IEM], [0, 0, 0]];
838
- var FilterConfiguration = [
836
+ var EncryptionContractConfiguration$ = [3, n0, _ECC, 0, [_PSA, _PSV], [0, 0]];
837
+ var EncryptionMethod$ = [3, n0, _EMn, 0, [_TEM, _CEM, _IEM], [0, 0, 0]];
838
+ var FilterConfiguration$ = [
839
839
  3,
840
840
  n0,
841
841
  _FC,
@@ -843,9 +843,9 @@ var FilterConfiguration = [
843
843
  [_MF, _DSr, _St, _En, _TDS, _CST],
844
844
  [0, 0, 4, 4, 1, 4],
845
845
  ];
846
- var ForceEndpointErrorConfiguration = [3, n0, _FEEC, 0, [_EEC], [64 | 0]];
847
- var GetChannelGroupRequest = [3, n0, _GCGR, 0, [_CGN], [[0, 1]]];
848
- var GetChannelGroupResponse = [
846
+ var ForceEndpointErrorConfiguration$ = [3, n0, _FEEC, 0, [_EEC], [64 | 0]];
847
+ var GetChannelGroupRequest$ = [3, n0, _GCGR, 0, [_CGN], [[0, 1]]];
848
+ var GetChannelGroupResponse$ = [
849
849
  3,
850
850
  n0,
851
851
  _GCGRe,
@@ -853,7 +853,7 @@ var GetChannelGroupResponse = [
853
853
  [_CGN, _A, _ED, _CA, _MA, _D, _ET, _T],
854
854
  [0, 0, 0, 4, 4, 0, 0, [128 | 0, { [_jN]: _t }]],
855
855
  ];
856
- var GetChannelPolicyRequest = [
856
+ var GetChannelPolicyRequest$ = [
857
857
  3,
858
858
  n0,
859
859
  _GCPR,
@@ -864,8 +864,8 @@ var GetChannelPolicyRequest = [
864
864
  [0, 1],
865
865
  ],
866
866
  ];
867
- var GetChannelPolicyResponse = [3, n0, _GCPRe, 0, [_CGN, _CN, _Po], [0, 0, 0]];
868
- var GetChannelRequest = [
867
+ var GetChannelPolicyResponse$ = [3, n0, _GCPRe, 0, [_CGN, _CN, _Po], [0, 0, 0]];
868
+ var GetChannelRequest$ = [
869
869
  3,
870
870
  n0,
871
871
  _GCR,
@@ -876,7 +876,7 @@ var GetChannelRequest = [
876
876
  [0, 1],
877
877
  ],
878
878
  ];
879
- var GetChannelResponse = [
879
+ var GetChannelResponse$ = [
880
880
  3,
881
881
  n0,
882
882
  _GCRe,
@@ -894,11 +894,11 @@ var GetChannelResponse = [
894
894
  0,
895
895
  0,
896
896
  128 | 0,
897
- () => InputSwitchConfiguration,
898
- () => OutputHeaderConfiguration,
897
+ () => InputSwitchConfiguration$,
898
+ () => OutputHeaderConfiguration$,
899
899
  ],
900
900
  ];
901
- var GetDashManifestConfiguration = [
901
+ var GetDashManifestConfiguration$ = [
902
902
  3,
903
903
  n0,
904
904
  _GDMC,
@@ -908,24 +908,24 @@ var GetDashManifestConfiguration = [
908
908
  0,
909
909
  0,
910
910
  1,
911
- () => FilterConfiguration,
911
+ () => FilterConfiguration$,
912
912
  1,
913
913
  1,
914
914
  1,
915
915
  0,
916
916
  64 | 0,
917
- () => ScteDash,
917
+ () => ScteDash$,
918
918
  0,
919
- () => DashUtcTiming,
919
+ () => DashUtcTiming$,
920
920
  64 | 0,
921
921
  () => DashBaseUrls,
922
- () => DashProgramInformation,
923
- () => DashDvbSettings,
922
+ () => DashProgramInformation$,
923
+ () => DashDvbSettings$,
924
924
  0,
925
- () => DashSubtitleConfiguration,
925
+ () => DashSubtitleConfiguration$,
926
926
  ],
927
927
  ];
928
- var GetHarvestJobRequest = [
928
+ var GetHarvestJobRequest$ = [
929
929
  3,
930
930
  n0,
931
931
  _GHJR,
@@ -938,7 +938,7 @@ var GetHarvestJobRequest = [
938
938
  [0, 1],
939
939
  ],
940
940
  ];
941
- var GetHarvestJobResponse = [
941
+ var GetHarvestJobResponse$ = [
942
942
  3,
943
943
  n0,
944
944
  _GHJRe,
@@ -948,11 +948,11 @@ var GetHarvestJobResponse = [
948
948
  0,
949
949
  0,
950
950
  0,
951
- () => Destination,
951
+ () => Destination$,
952
952
  0,
953
- () => HarvestedManifests,
953
+ () => HarvestedManifests$,
954
954
  0,
955
- () => HarvesterScheduleConfiguration,
955
+ () => HarvesterScheduleConfiguration$,
956
956
  0,
957
957
  4,
958
958
  4,
@@ -962,31 +962,31 @@ var GetHarvestJobResponse = [
962
962
  128 | 0,
963
963
  ],
964
964
  ];
965
- var GetHlsManifestConfiguration = [
965
+ var GetHlsManifestConfiguration$ = [
966
966
  3,
967
967
  n0,
968
968
  _GHMC,
969
969
  0,
970
970
  [_MN, _U, _CMN, _MWS, _PDTIS, _SH, _FC, _ST, _UECM],
971
- [0, 0, 0, 1, 1, () => ScteHls, () => FilterConfiguration, () => StartTag, 2],
971
+ [0, 0, 0, 1, 1, () => ScteHls$, () => FilterConfiguration$, () => StartTag$, 2],
972
972
  ];
973
- var GetLowLatencyHlsManifestConfiguration = [
973
+ var GetLowLatencyHlsManifestConfiguration$ = [
974
974
  3,
975
975
  n0,
976
976
  _GLLHMC,
977
977
  0,
978
978
  [_MN, _U, _CMN, _MWS, _PDTIS, _SH, _FC, _ST, _UECM],
979
- [0, 0, 0, 1, 1, () => ScteHls, () => FilterConfiguration, () => StartTag, 2],
979
+ [0, 0, 0, 1, 1, () => ScteHls$, () => FilterConfiguration$, () => StartTag$, 2],
980
980
  ];
981
- var GetMssManifestConfiguration = [
981
+ var GetMssManifestConfiguration$ = [
982
982
  3,
983
983
  n0,
984
984
  _GMMC,
985
985
  0,
986
986
  [_MN, _U, _FC, _MWS, _ML],
987
- [0, 0, () => FilterConfiguration, 1, 0],
987
+ [0, 0, () => FilterConfiguration$, 1, 0],
988
988
  ];
989
- var GetOriginEndpointPolicyRequest = [
989
+ var GetOriginEndpointPolicyRequest$ = [
990
990
  3,
991
991
  n0,
992
992
  _GOEPR,
@@ -998,15 +998,15 @@ var GetOriginEndpointPolicyRequest = [
998
998
  [0, 1],
999
999
  ],
1000
1000
  ];
1001
- var GetOriginEndpointPolicyResponse = [
1001
+ var GetOriginEndpointPolicyResponse$ = [
1002
1002
  3,
1003
1003
  n0,
1004
1004
  _GOEPRe,
1005
1005
  0,
1006
1006
  [_CGN, _CN, _OEN, _Po, _CAC],
1007
- [0, 0, 0, 0, () => CdnAuthConfiguration],
1007
+ [0, 0, 0, 0, () => CdnAuthConfiguration$],
1008
1008
  ];
1009
- var GetOriginEndpointRequest = [
1009
+ var GetOriginEndpointRequest$ = [
1010
1010
  3,
1011
1011
  n0,
1012
1012
  _GOER,
@@ -1018,7 +1018,7 @@ var GetOriginEndpointRequest = [
1018
1018
  [0, 1],
1019
1019
  ],
1020
1020
  ];
1021
- var GetOriginEndpointResponse = [
1021
+ var GetOriginEndpointResponse$ = [
1022
1022
  3,
1023
1023
  n0,
1024
1024
  _GOERe,
@@ -1030,7 +1030,7 @@ var GetOriginEndpointResponse = [
1030
1030
  0,
1031
1031
  0,
1032
1032
  0,
1033
- () => Segment,
1033
+ () => Segment$,
1034
1034
  4,
1035
1035
  4,
1036
1036
  4,
@@ -1040,15 +1040,15 @@ var GetOriginEndpointResponse = [
1040
1040
  () => GetLowLatencyHlsManifests,
1041
1041
  () => GetDashManifests,
1042
1042
  () => GetMssManifests,
1043
- () => ForceEndpointErrorConfiguration,
1043
+ () => ForceEndpointErrorConfiguration$,
1044
1044
  0,
1045
1045
  128 | 0,
1046
1046
  ],
1047
1047
  ];
1048
- var HarvestedDashManifest = [3, n0, _HDM, 0, [_MN], [0]];
1049
- var HarvestedHlsManifest = [3, n0, _HHM, 0, [_MN], [0]];
1050
- var HarvestedLowLatencyHlsManifest = [3, n0, _HLLHM, 0, [_MN], [0]];
1051
- var HarvestedManifests = [
1048
+ var HarvestedDashManifest$ = [3, n0, _HDM, 0, [_MN], [0]];
1049
+ var HarvestedHlsManifest$ = [3, n0, _HHM, 0, [_MN], [0]];
1050
+ var HarvestedLowLatencyHlsManifest$ = [3, n0, _HLLHM, 0, [_MN], [0]];
1051
+ var HarvestedManifests$ = [
1052
1052
  3,
1053
1053
  n0,
1054
1054
  _HM,
@@ -1056,20 +1056,35 @@ var HarvestedManifests = [
1056
1056
  [_HMl, _DM, _LLHM],
1057
1057
  [() => HarvestedHlsManifestsList, () => HarvestedDashManifestsList, () => HarvestedLowLatencyHlsManifestsList],
1058
1058
  ];
1059
- var HarvesterScheduleConfiguration = [3, n0, _HSC, 0, [_STt, _ETn], [4, 4]];
1060
- var HarvestJob = [
1059
+ var HarvesterScheduleConfiguration$ = [3, n0, _HSC, 0, [_STt, _ETn], [4, 4]];
1060
+ var HarvestJob$ = [
1061
1061
  3,
1062
1062
  n0,
1063
1063
  _HJ,
1064
1064
  0,
1065
1065
  [_CGN, _CN, _OEN, _De, _HJN, _HM, _D, _SCc, _A, _CA, _MA, _S, _EM, _ET],
1066
- [0, 0, 0, () => Destination, 0, () => HarvestedManifests, 0, () => HarvesterScheduleConfiguration, 0, 4, 4, 0, 0, 0],
1066
+ [
1067
+ 0,
1068
+ 0,
1069
+ 0,
1070
+ () => Destination$,
1071
+ 0,
1072
+ () => HarvestedManifests$,
1073
+ 0,
1074
+ () => HarvesterScheduleConfiguration$,
1075
+ 0,
1076
+ 4,
1077
+ 4,
1078
+ 0,
1079
+ 0,
1080
+ 0,
1081
+ ],
1067
1082
  ];
1068
- var IngestEndpoint = [3, n0, _IEn, 0, [_I, _U], [0, 0]];
1069
- var InputSwitchConfiguration = [3, n0, _ISC, 0, [_MQCSIS, _PIr], [2, 1]];
1070
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1071
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1072
- var ListChannelGroupsRequest = [
1083
+ var IngestEndpoint$ = [3, n0, _IEn, 0, [_I, _U], [0, 0]];
1084
+ var InputSwitchConfiguration$ = [3, n0, _ISC, 0, [_MQCSIS, _PIr], [2, 1]];
1085
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1086
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
1087
+ var ListChannelGroupsRequest$ = [
1073
1088
  3,
1074
1089
  n0,
1075
1090
  _LCGR,
@@ -1080,7 +1095,7 @@ var ListChannelGroupsRequest = [
1080
1095
  [0, { [_hQ]: _nT }],
1081
1096
  ],
1082
1097
  ];
1083
- var ListChannelGroupsResponse = [
1098
+ var ListChannelGroupsResponse$ = [
1084
1099
  3,
1085
1100
  n0,
1086
1101
  _LCGRi,
@@ -1088,7 +1103,7 @@ var ListChannelGroupsResponse = [
1088
1103
  [_It, _NT],
1089
1104
  [() => ChannelGroupsList, 0],
1090
1105
  ];
1091
- var ListChannelsRequest = [
1106
+ var ListChannelsRequest$ = [
1092
1107
  3,
1093
1108
  n0,
1094
1109
  _LCR,
@@ -1100,9 +1115,9 @@ var ListChannelsRequest = [
1100
1115
  [0, { [_hQ]: _nT }],
1101
1116
  ],
1102
1117
  ];
1103
- var ListChannelsResponse = [3, n0, _LCRi, 0, [_It, _NT], [() => ChannelList, 0]];
1104
- var ListDashManifestConfiguration = [3, n0, _LDMC, 0, [_MN, _U], [0, 0]];
1105
- var ListHarvestJobsRequest = [
1118
+ var ListChannelsResponse$ = [3, n0, _LCRi, 0, [_It, _NT], [() => ChannelList, 0]];
1119
+ var ListDashManifestConfiguration$ = [3, n0, _LDMC, 0, [_MN, _U], [0, 0]];
1120
+ var ListHarvestJobsRequest$ = [
1106
1121
  3,
1107
1122
  n0,
1108
1123
  _LHJR,
@@ -1117,9 +1132,9 @@ var ListHarvestJobsRequest = [
1117
1132
  [0, { [_hQ]: _nT }],
1118
1133
  ],
1119
1134
  ];
1120
- var ListHarvestJobsResponse = [3, n0, _LHJRi, 0, [_It, _NT], [() => HarvestJobsList, 0]];
1121
- var ListHlsManifestConfiguration = [3, n0, _LHMC, 0, [_MN, _CMN, _U], [0, 0, 0]];
1122
- var ListLowLatencyHlsManifestConfiguration = [
1135
+ var ListHarvestJobsResponse$ = [3, n0, _LHJRi, 0, [_It, _NT], [() => HarvestJobsList, 0]];
1136
+ var ListHlsManifestConfiguration$ = [3, n0, _LHMC, 0, [_MN, _CMN, _U], [0, 0, 0]];
1137
+ var ListLowLatencyHlsManifestConfiguration$ = [
1123
1138
  3,
1124
1139
  n0,
1125
1140
  _LLLHMC,
@@ -1127,8 +1142,8 @@ var ListLowLatencyHlsManifestConfiguration = [
1127
1142
  [_MN, _CMN, _U],
1128
1143
  [0, 0, 0],
1129
1144
  ];
1130
- var ListMssManifestConfiguration = [3, n0, _LMMC, 0, [_MN, _U], [0, 0]];
1131
- var ListOriginEndpointsRequest = [
1145
+ var ListMssManifestConfiguration$ = [3, n0, _LMMC, 0, [_MN, _U], [0, 0]];
1146
+ var ListOriginEndpointsRequest$ = [
1132
1147
  3,
1133
1148
  n0,
1134
1149
  _LOER,
@@ -1141,7 +1156,7 @@ var ListOriginEndpointsRequest = [
1141
1156
  [0, { [_hQ]: _nT }],
1142
1157
  ],
1143
1158
  ];
1144
- var ListOriginEndpointsResponse = [
1159
+ var ListOriginEndpointsResponse$ = [
1145
1160
  3,
1146
1161
  n0,
1147
1162
  _LOERi,
@@ -1149,9 +1164,9 @@ var ListOriginEndpointsResponse = [
1149
1164
  [_It, _NT],
1150
1165
  [() => OriginEndpointsList, 0],
1151
1166
  ];
1152
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
1153
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[128 | 0, { [_jN]: _t }]]];
1154
- var OriginEndpointListConfiguration = [
1167
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
1168
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [[128 | 0, { [_jN]: _t }]]];
1169
+ var OriginEndpointListConfiguration$ = [
1155
1170
  3,
1156
1171
  n0,
1157
1172
  _OELC,
@@ -1170,22 +1185,22 @@ var OriginEndpointListConfiguration = [
1170
1185
  () => ListLowLatencyHlsManifests,
1171
1186
  () => ListDashManifests,
1172
1187
  () => ListMssManifests,
1173
- () => ForceEndpointErrorConfiguration,
1188
+ () => ForceEndpointErrorConfiguration$,
1174
1189
  ],
1175
1190
  ];
1176
- var OutputHeaderConfiguration = [3, n0, _OHC, 0, [_PMQCS], [2]];
1177
- var PutChannelPolicyRequest = [3, n0, _PCPR, 0, [_CGN, _CN, _Po], [[0, 1], [0, 1], 0]];
1178
- var PutChannelPolicyResponse = [3, n0, _PCPRu, 0, [], []];
1179
- var PutOriginEndpointPolicyRequest = [
1191
+ var OutputHeaderConfiguration$ = [3, n0, _OHC, 0, [_PMQCS], [2]];
1192
+ var PutChannelPolicyRequest$ = [3, n0, _PCPR, 0, [_CGN, _CN, _Po], [[0, 1], [0, 1], 0]];
1193
+ var PutChannelPolicyResponse$ = [3, n0, _PCPRu, 0, [], []];
1194
+ var PutOriginEndpointPolicyRequest$ = [
1180
1195
  3,
1181
1196
  n0,
1182
1197
  _POEPR,
1183
1198
  0,
1184
1199
  [_CGN, _CN, _OEN, _Po, _CAC],
1185
- [[0, 1], [0, 1], [0, 1], 0, () => CdnAuthConfiguration],
1200
+ [[0, 1], [0, 1], [0, 1], 0, () => CdnAuthConfiguration$],
1186
1201
  ];
1187
- var PutOriginEndpointPolicyResponse = [3, n0, _POEPRu, 0, [], []];
1188
- var ResetChannelStateRequest = [
1202
+ var PutOriginEndpointPolicyResponse$ = [3, n0, _POEPRu, 0, [], []];
1203
+ var ResetChannelStateRequest$ = [
1189
1204
  3,
1190
1205
  n0,
1191
1206
  _RCSR,
@@ -1196,8 +1211,8 @@ var ResetChannelStateRequest = [
1196
1211
  [0, 1],
1197
1212
  ],
1198
1213
  ];
1199
- var ResetChannelStateResponse = [3, n0, _RCSRe, 0, [_CGN, _CN, _A, _RA], [0, 0, 0, 4]];
1200
- var ResetOriginEndpointStateRequest = [
1214
+ var ResetChannelStateResponse$ = [3, n0, _RCSRe, 0, [_CGN, _CN, _A, _RA], [0, 0, 0, 4]];
1215
+ var ResetOriginEndpointStateRequest$ = [
1201
1216
  3,
1202
1217
  n0,
1203
1218
  _ROESR,
@@ -1209,7 +1224,7 @@ var ResetOriginEndpointStateRequest = [
1209
1224
  [0, 1],
1210
1225
  ],
1211
1226
  ];
1212
- var ResetOriginEndpointStateResponse = [
1227
+ var ResetOriginEndpointStateResponse$ = [
1213
1228
  3,
1214
1229
  n0,
1215
1230
  _ROESRe,
@@ -1217,7 +1232,7 @@ var ResetOriginEndpointStateResponse = [
1217
1232
  [_CGN, _CN, _OEN, _A, _RA],
1218
1233
  [0, 0, 0, 0, 4],
1219
1234
  ];
1220
- var ResourceNotFoundException = [
1235
+ var ResourceNotFoundException$ = [
1221
1236
  -3,
1222
1237
  n0,
1223
1238
  _RNFE,
@@ -1225,31 +1240,31 @@ var ResourceNotFoundException = [
1225
1240
  [_M, _RTNF],
1226
1241
  [0, 0],
1227
1242
  ];
1228
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1229
- var S3DestinationConfig = [3, n0, _SDC, 0, [_BN, _DPe], [0, 0]];
1230
- var Scte = [3, n0, _Sc, 0, [_SF, _SIS], [64 | 0, 0]];
1231
- var ScteDash = [3, n0, _SD, 0, [_AMD], [0]];
1232
- var ScteHls = [3, n0, _SH, 0, [_AMH], [0]];
1233
- var Segment = [
1243
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1244
+ var S3DestinationConfig$ = [3, n0, _SDC, 0, [_BN, _DPe], [0, 0]];
1245
+ var Scte$ = [3, n0, _Sc, 0, [_SF, _SIS], [64 | 0, 0]];
1246
+ var ScteDash$ = [3, n0, _SD, 0, [_AMD], [0]];
1247
+ var ScteHls$ = [3, n0, _SH, 0, [_AMH], [0]];
1248
+ var Segment$ = [
1234
1249
  3,
1235
1250
  n0,
1236
1251
  _Se,
1237
1252
  0,
1238
1253
  [_SDS, _SN, _TUARG, _IIOS, _TIDS, _Sc, _E],
1239
- [1, 0, 2, 2, 2, () => Scte, () => Encryption],
1254
+ [1, 0, 2, 2, 2, () => Scte$, () => Encryption$],
1240
1255
  ];
1241
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
1242
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1243
- var SpekeKeyProvider = [
1256
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
1257
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1258
+ var SpekeKeyProvider$ = [
1244
1259
  3,
1245
1260
  n0,
1246
1261
  _SKP,
1247
1262
  0,
1248
1263
  [_ECC, _RI, _DSrm, _RAo, _U],
1249
- [() => EncryptionContractConfiguration, 0, 64 | 0, 0, 0],
1264
+ [() => EncryptionContractConfiguration$, 0, 64 | 0, 0, 0],
1250
1265
  ];
1251
- var StartTag = [3, n0, _ST, 0, [_TO, _Pre], [1, 2]];
1252
- var TagResourceRequest = [
1266
+ var StartTag$ = [3, n0, _ST, 0, [_TO, _Pre], [1, 2]];
1267
+ var TagResourceRequest$ = [
1253
1268
  3,
1254
1269
  n0,
1255
1270
  _TRR,
@@ -1260,9 +1275,9 @@ var TagResourceRequest = [
1260
1275
  [128 | 0, { [_jN]: _t }],
1261
1276
  ],
1262
1277
  ];
1263
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1264
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1265
- var UntagResourceRequest = [
1278
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1279
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1280
+ var UntagResourceRequest$ = [
1266
1281
  3,
1267
1282
  n0,
1268
1283
  _URR,
@@ -1273,7 +1288,7 @@ var UntagResourceRequest = [
1273
1288
  [64 | 0, { [_hQ]: _tK }],
1274
1289
  ],
1275
1290
  ];
1276
- var UpdateChannelGroupRequest = [
1291
+ var UpdateChannelGroupRequest$ = [
1277
1292
  3,
1278
1293
  n0,
1279
1294
  _UCGR,
@@ -1281,7 +1296,7 @@ var UpdateChannelGroupRequest = [
1281
1296
  [_CGN, _ET, _D],
1282
1297
  [[0, 1], [0, { [_hH]: _xauim }], 0],
1283
1298
  ];
1284
- var UpdateChannelGroupResponse = [
1299
+ var UpdateChannelGroupResponse$ = [
1285
1300
  3,
1286
1301
  n0,
1287
1302
  _UCGRp,
@@ -1289,15 +1304,15 @@ var UpdateChannelGroupResponse = [
1289
1304
  [_CGN, _A, _ED, _CA, _MA, _D, _ET, _T],
1290
1305
  [0, 0, 0, 4, 4, 0, 0, [128 | 0, { [_jN]: _t }]],
1291
1306
  ];
1292
- var UpdateChannelRequest = [
1307
+ var UpdateChannelRequest$ = [
1293
1308
  3,
1294
1309
  n0,
1295
1310
  _UCR,
1296
1311
  0,
1297
1312
  [_CGN, _CN, _ET, _D, _ISC, _OHC],
1298
- [[0, 1], [0, 1], [0, { [_hH]: _xauim }], 0, () => InputSwitchConfiguration, () => OutputHeaderConfiguration],
1313
+ [[0, 1], [0, 1], [0, { [_hH]: _xauim }], 0, () => InputSwitchConfiguration$, () => OutputHeaderConfiguration$],
1299
1314
  ];
1300
- var UpdateChannelResponse = [
1315
+ var UpdateChannelResponse$ = [
1301
1316
  3,
1302
1317
  n0,
1303
1318
  _UCRp,
@@ -1314,11 +1329,11 @@ var UpdateChannelResponse = [
1314
1329
  0,
1315
1330
  0,
1316
1331
  [128 | 0, { [_jN]: _t }],
1317
- () => InputSwitchConfiguration,
1318
- () => OutputHeaderConfiguration,
1332
+ () => InputSwitchConfiguration$,
1333
+ () => OutputHeaderConfiguration$,
1319
1334
  ],
1320
1335
  ];
1321
- var UpdateOriginEndpointRequest = [
1336
+ var UpdateOriginEndpointRequest$ = [
1322
1337
  3,
1323
1338
  n0,
1324
1339
  _UOER,
@@ -1329,18 +1344,18 @@ var UpdateOriginEndpointRequest = [
1329
1344
  [0, 1],
1330
1345
  [0, 1],
1331
1346
  0,
1332
- () => Segment,
1347
+ () => Segment$,
1333
1348
  0,
1334
1349
  1,
1335
1350
  () => CreateHlsManifests,
1336
1351
  () => CreateLowLatencyHlsManifests,
1337
1352
  () => CreateDashManifests,
1338
1353
  () => CreateMssManifests,
1339
- () => ForceEndpointErrorConfiguration,
1354
+ () => ForceEndpointErrorConfiguration$,
1340
1355
  [0, { [_hH]: _xauim }],
1341
1356
  ],
1342
1357
  ];
1343
- var UpdateOriginEndpointResponse = [
1358
+ var UpdateOriginEndpointResponse$ = [
1344
1359
  3,
1345
1360
  n0,
1346
1361
  _UOERp,
@@ -1352,7 +1367,7 @@ var UpdateOriginEndpointResponse = [
1352
1367
  0,
1353
1368
  0,
1354
1369
  0,
1355
- () => Segment,
1370
+ () => Segment$,
1356
1371
  4,
1357
1372
  4,
1358
1373
  0,
@@ -1360,64 +1375,46 @@ var UpdateOriginEndpointResponse = [
1360
1375
  () => GetHlsManifests,
1361
1376
  () => GetLowLatencyHlsManifests,
1362
1377
  () => GetMssManifests,
1363
- () => ForceEndpointErrorConfiguration,
1378
+ () => ForceEndpointErrorConfiguration$,
1364
1379
  0,
1365
1380
  [128 | 0, { [_jN]: _t }],
1366
1381
  () => GetDashManifests,
1367
1382
  ],
1368
1383
  ];
1369
- var ValidationException = [-3, n0, _VE, { [_e]: _c }, [_M, _VET], [0, 0]];
1370
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1384
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c }, [_M, _VET], [0, 0]];
1385
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1371
1386
  var __Unit = "unit";
1372
- var MediaPackageV2ServiceException = [-3, _sm, "MediaPackageV2ServiceException", 0, [], []];
1373
- schema.TypeRegistry.for(_sm).registerError(MediaPackageV2ServiceException, MediaPackageV2ServiceException$1);
1374
- var ChannelGroupsList = [1, n0, _CGL, 0, () => ChannelGroupListConfiguration];
1375
- var ChannelList = [1, n0, _CL, 0, () => ChannelListConfiguration];
1376
- var CreateDashManifests = [1, n0, _CDM, 0, () => CreateDashManifestConfiguration];
1377
- var CreateHlsManifests = [1, n0, _CHM, 0, () => CreateHlsManifestConfiguration];
1387
+ var MediaPackageV2ServiceException$ = [-3, _sm, "MediaPackageV2ServiceException", 0, [], []];
1388
+ schema.TypeRegistry.for(_sm).registerError(MediaPackageV2ServiceException$, MediaPackageV2ServiceException);
1389
+ var ChannelGroupsList = [1, n0, _CGL, 0, () => ChannelGroupListConfiguration$];
1390
+ var ChannelList = [1, n0, _CL, 0, () => ChannelListConfiguration$];
1391
+ var CreateDashManifests = [1, n0, _CDM, 0, () => CreateDashManifestConfiguration$];
1392
+ var CreateHlsManifests = [1, n0, _CHM, 0, () => CreateHlsManifestConfiguration$];
1378
1393
  var CreateLowLatencyHlsManifests = [
1379
1394
  1,
1380
1395
  n0,
1381
1396
  _CLLHM,
1382
1397
  0,
1383
- () => CreateLowLatencyHlsManifestConfiguration,
1384
- ];
1385
- var CreateMssManifests = [1, n0, _CMM, 0, () => CreateMssManifestConfiguration];
1386
- var DashBaseUrls = [1, n0, _DBUa, 0, () => DashBaseUrl];
1387
- var DashDvbErrorMetrics = [1, n0, _DDEM, 0, () => DashDvbMetricsReporting];
1388
- var GetDashManifests = [1, n0, _GDM, 0, () => GetDashManifestConfiguration];
1389
- var GetHlsManifests = [1, n0, _GHM, 0, () => GetHlsManifestConfiguration];
1390
- var GetLowLatencyHlsManifests = [
1391
- 1,
1392
- n0,
1393
- _GLLHM,
1394
- 0,
1395
- () => GetLowLatencyHlsManifestConfiguration,
1396
- ];
1397
- var GetMssManifests = [1, n0, _GMM, 0, () => GetMssManifestConfiguration];
1398
- var HarvestedDashManifestsList = [1, n0, _HDML, 0, () => HarvestedDashManifest];
1399
- var HarvestedHlsManifestsList = [1, n0, _HHML, 0, () => HarvestedHlsManifest];
1400
- var HarvestedLowLatencyHlsManifestsList = [
1401
- 1,
1402
- n0,
1403
- _HLLHML,
1404
- 0,
1405
- () => HarvestedLowLatencyHlsManifest,
1406
- ];
1407
- var HarvestJobsList = [1, n0, _HJL, 0, () => HarvestJob];
1408
- var IngestEndpointList = [1, n0, _IEL, 0, () => IngestEndpoint];
1409
- var ListDashManifests = [1, n0, _LDM, 0, () => ListDashManifestConfiguration];
1410
- var ListHlsManifests = [1, n0, _LHM, 0, () => ListHlsManifestConfiguration];
1411
- var ListLowLatencyHlsManifests = [
1412
- 1,
1413
- n0,
1414
- _LLLHM,
1415
- 0,
1416
- () => ListLowLatencyHlsManifestConfiguration,
1417
- ];
1418
- var ListMssManifests = [1, n0, _LMM, 0, () => ListMssManifestConfiguration];
1419
- var OriginEndpointsList = [1, n0, _OEL, 0, () => OriginEndpointListConfiguration];
1420
- var CancelHarvestJob = [
1398
+ () => CreateLowLatencyHlsManifestConfiguration$,
1399
+ ];
1400
+ var CreateMssManifests = [1, n0, _CMM, 0, () => CreateMssManifestConfiguration$];
1401
+ var DashBaseUrls = [1, n0, _DBUa, 0, () => DashBaseUrl$];
1402
+ var DashDvbErrorMetrics = [1, n0, _DDEM, 0, () => DashDvbMetricsReporting$];
1403
+ var GetDashManifests = [1, n0, _GDM, 0, () => GetDashManifestConfiguration$];
1404
+ var GetHlsManifests = [1, n0, _GHM, 0, () => GetHlsManifestConfiguration$];
1405
+ var GetLowLatencyHlsManifests = [1, n0, _GLLHM, 0, () => GetLowLatencyHlsManifestConfiguration$];
1406
+ var GetMssManifests = [1, n0, _GMM, 0, () => GetMssManifestConfiguration$];
1407
+ var HarvestedDashManifestsList = [1, n0, _HDML, 0, () => HarvestedDashManifest$];
1408
+ var HarvestedHlsManifestsList = [1, n0, _HHML, 0, () => HarvestedHlsManifest$];
1409
+ var HarvestedLowLatencyHlsManifestsList = [1, n0, _HLLHML, 0, () => HarvestedLowLatencyHlsManifest$];
1410
+ var HarvestJobsList = [1, n0, _HJL, 0, () => HarvestJob$];
1411
+ var IngestEndpointList = [1, n0, _IEL, 0, () => IngestEndpoint$];
1412
+ var ListDashManifests = [1, n0, _LDM, 0, () => ListDashManifestConfiguration$];
1413
+ var ListHlsManifests = [1, n0, _LHM, 0, () => ListHlsManifestConfiguration$];
1414
+ var ListLowLatencyHlsManifests = [1, n0, _LLLHM, 0, () => ListLowLatencyHlsManifestConfiguration$];
1415
+ var ListMssManifests = [1, n0, _LMM, 0, () => ListMssManifestConfiguration$];
1416
+ var OriginEndpointsList = [1, n0, _OEL, 0, () => OriginEndpointListConfiguration$];
1417
+ var CancelHarvestJob$ = [
1421
1418
  9,
1422
1419
  n0,
1423
1420
  _CHJ,
@@ -1428,26 +1425,26 @@ var CancelHarvestJob = [
1428
1425
  200,
1429
1426
  ],
1430
1427
  },
1431
- () => CancelHarvestJobRequest,
1432
- () => CancelHarvestJobResponse,
1428
+ () => CancelHarvestJobRequest$,
1429
+ () => CancelHarvestJobResponse$,
1433
1430
  ];
1434
- var CreateChannel = [
1431
+ var CreateChannel$ = [
1435
1432
  9,
1436
1433
  n0,
1437
1434
  _CC,
1438
1435
  { [_h]: ["POST", "/channelGroup/{ChannelGroupName}/channel", 200] },
1439
- () => CreateChannelRequest,
1440
- () => CreateChannelResponse,
1436
+ () => CreateChannelRequest$,
1437
+ () => CreateChannelResponse$,
1441
1438
  ];
1442
- var CreateChannelGroup = [
1439
+ var CreateChannelGroup$ = [
1443
1440
  9,
1444
1441
  n0,
1445
1442
  _CCG,
1446
1443
  { [_h]: ["POST", "/channelGroup", 200] },
1447
- () => CreateChannelGroupRequest,
1448
- () => CreateChannelGroupResponse,
1444
+ () => CreateChannelGroupRequest$,
1445
+ () => CreateChannelGroupResponse$,
1449
1446
  ];
1450
- var CreateHarvestJob = [
1447
+ var CreateHarvestJob$ = [
1451
1448
  9,
1452
1449
  n0,
1453
1450
  _CHJr,
@@ -1458,52 +1455,52 @@ var CreateHarvestJob = [
1458
1455
  200,
1459
1456
  ],
1460
1457
  },
1461
- () => CreateHarvestJobRequest,
1462
- () => CreateHarvestJobResponse,
1458
+ () => CreateHarvestJobRequest$,
1459
+ () => CreateHarvestJobResponse$,
1463
1460
  ];
1464
- var CreateOriginEndpoint = [
1461
+ var CreateOriginEndpoint$ = [
1465
1462
  9,
1466
1463
  n0,
1467
1464
  _COE,
1468
1465
  { [_h]: ["POST", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint", 200] },
1469
- () => CreateOriginEndpointRequest,
1470
- () => CreateOriginEndpointResponse,
1466
+ () => CreateOriginEndpointRequest$,
1467
+ () => CreateOriginEndpointResponse$,
1471
1468
  ];
1472
- var DeleteChannel = [
1469
+ var DeleteChannel$ = [
1473
1470
  9,
1474
1471
  n0,
1475
1472
  _DC,
1476
1473
  { [_h]: ["DELETE", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/", 200] },
1477
- () => DeleteChannelRequest,
1478
- () => DeleteChannelResponse,
1474
+ () => DeleteChannelRequest$,
1475
+ () => DeleteChannelResponse$,
1479
1476
  ];
1480
- var DeleteChannelGroup = [
1477
+ var DeleteChannelGroup$ = [
1481
1478
  9,
1482
1479
  n0,
1483
1480
  _DCG,
1484
1481
  { [_h]: ["DELETE", "/channelGroup/{ChannelGroupName}", 200] },
1485
- () => DeleteChannelGroupRequest,
1486
- () => DeleteChannelGroupResponse,
1482
+ () => DeleteChannelGroupRequest$,
1483
+ () => DeleteChannelGroupResponse$,
1487
1484
  ];
1488
- var DeleteChannelPolicy = [
1485
+ var DeleteChannelPolicy$ = [
1489
1486
  9,
1490
1487
  n0,
1491
1488
  _DCP,
1492
1489
  { [_h]: ["DELETE", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy", 200] },
1493
- () => DeleteChannelPolicyRequest,
1494
- () => DeleteChannelPolicyResponse,
1490
+ () => DeleteChannelPolicyRequest$,
1491
+ () => DeleteChannelPolicyResponse$,
1495
1492
  ];
1496
- var DeleteOriginEndpoint = [
1493
+ var DeleteOriginEndpoint$ = [
1497
1494
  9,
1498
1495
  n0,
1499
1496
  _DOE,
1500
1497
  {
1501
1498
  [_h]: ["DELETE", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}", 200],
1502
1499
  },
1503
- () => DeleteOriginEndpointRequest,
1504
- () => DeleteOriginEndpointResponse,
1500
+ () => DeleteOriginEndpointRequest$,
1501
+ () => DeleteOriginEndpointResponse$,
1505
1502
  ];
1506
- var DeleteOriginEndpointPolicy = [
1503
+ var DeleteOriginEndpointPolicy$ = [
1507
1504
  9,
1508
1505
  n0,
1509
1506
  _DOEP,
@@ -1514,34 +1511,34 @@ var DeleteOriginEndpointPolicy = [
1514
1511
  200,
1515
1512
  ],
1516
1513
  },
1517
- () => DeleteOriginEndpointPolicyRequest,
1518
- () => DeleteOriginEndpointPolicyResponse,
1514
+ () => DeleteOriginEndpointPolicyRequest$,
1515
+ () => DeleteOriginEndpointPolicyResponse$,
1519
1516
  ];
1520
- var GetChannel = [
1517
+ var GetChannel$ = [
1521
1518
  9,
1522
1519
  n0,
1523
1520
  _GC,
1524
1521
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/", 200] },
1525
- () => GetChannelRequest,
1526
- () => GetChannelResponse,
1522
+ () => GetChannelRequest$,
1523
+ () => GetChannelResponse$,
1527
1524
  ];
1528
- var GetChannelGroup = [
1525
+ var GetChannelGroup$ = [
1529
1526
  9,
1530
1527
  n0,
1531
1528
  _GCG,
1532
1529
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}", 200] },
1533
- () => GetChannelGroupRequest,
1534
- () => GetChannelGroupResponse,
1530
+ () => GetChannelGroupRequest$,
1531
+ () => GetChannelGroupResponse$,
1535
1532
  ];
1536
- var GetChannelPolicy = [
1533
+ var GetChannelPolicy$ = [
1537
1534
  9,
1538
1535
  n0,
1539
1536
  _GCP,
1540
1537
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy", 200] },
1541
- () => GetChannelPolicyRequest,
1542
- () => GetChannelPolicyResponse,
1538
+ () => GetChannelPolicyRequest$,
1539
+ () => GetChannelPolicyResponse$,
1543
1540
  ];
1544
- var GetHarvestJob = [
1541
+ var GetHarvestJob$ = [
1545
1542
  9,
1546
1543
  n0,
1547
1544
  _GHJ,
@@ -1552,18 +1549,18 @@ var GetHarvestJob = [
1552
1549
  200,
1553
1550
  ],
1554
1551
  },
1555
- () => GetHarvestJobRequest,
1556
- () => GetHarvestJobResponse,
1552
+ () => GetHarvestJobRequest$,
1553
+ () => GetHarvestJobResponse$,
1557
1554
  ];
1558
- var GetOriginEndpoint = [
1555
+ var GetOriginEndpoint$ = [
1559
1556
  9,
1560
1557
  n0,
1561
1558
  _GOE,
1562
1559
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}", 200] },
1563
- () => GetOriginEndpointRequest,
1564
- () => GetOriginEndpointResponse,
1560
+ () => GetOriginEndpointRequest$,
1561
+ () => GetOriginEndpointResponse$,
1565
1562
  ];
1566
- var GetOriginEndpointPolicy = [
1563
+ var GetOriginEndpointPolicy$ = [
1567
1564
  9,
1568
1565
  n0,
1569
1566
  _GOEP,
@@ -1574,58 +1571,58 @@ var GetOriginEndpointPolicy = [
1574
1571
  200,
1575
1572
  ],
1576
1573
  },
1577
- () => GetOriginEndpointPolicyRequest,
1578
- () => GetOriginEndpointPolicyResponse,
1574
+ () => GetOriginEndpointPolicyRequest$,
1575
+ () => GetOriginEndpointPolicyResponse$,
1579
1576
  ];
1580
- var ListChannelGroups = [
1577
+ var ListChannelGroups$ = [
1581
1578
  9,
1582
1579
  n0,
1583
1580
  _LCG,
1584
1581
  { [_h]: ["GET", "/channelGroup", 200] },
1585
- () => ListChannelGroupsRequest,
1586
- () => ListChannelGroupsResponse,
1582
+ () => ListChannelGroupsRequest$,
1583
+ () => ListChannelGroupsResponse$,
1587
1584
  ];
1588
- var ListChannels = [
1585
+ var ListChannels$ = [
1589
1586
  9,
1590
1587
  n0,
1591
1588
  _LCi,
1592
1589
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}/channel", 200] },
1593
- () => ListChannelsRequest,
1594
- () => ListChannelsResponse,
1590
+ () => ListChannelsRequest$,
1591
+ () => ListChannelsResponse$,
1595
1592
  ];
1596
- var ListHarvestJobs = [
1593
+ var ListHarvestJobs$ = [
1597
1594
  9,
1598
1595
  n0,
1599
1596
  _LHJ,
1600
1597
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}/harvestJob", 200] },
1601
- () => ListHarvestJobsRequest,
1602
- () => ListHarvestJobsResponse,
1598
+ () => ListHarvestJobsRequest$,
1599
+ () => ListHarvestJobsResponse$,
1603
1600
  ];
1604
- var ListOriginEndpoints = [
1601
+ var ListOriginEndpoints$ = [
1605
1602
  9,
1606
1603
  n0,
1607
1604
  _LOE,
1608
1605
  { [_h]: ["GET", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint", 200] },
1609
- () => ListOriginEndpointsRequest,
1610
- () => ListOriginEndpointsResponse,
1606
+ () => ListOriginEndpointsRequest$,
1607
+ () => ListOriginEndpointsResponse$,
1611
1608
  ];
1612
- var ListTagsForResource = [
1609
+ var ListTagsForResource$ = [
1613
1610
  9,
1614
1611
  n0,
1615
1612
  _LTFR,
1616
1613
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
1617
- () => ListTagsForResourceRequest,
1618
- () => ListTagsForResourceResponse,
1614
+ () => ListTagsForResourceRequest$,
1615
+ () => ListTagsForResourceResponse$,
1619
1616
  ];
1620
- var PutChannelPolicy = [
1617
+ var PutChannelPolicy$ = [
1621
1618
  9,
1622
1619
  n0,
1623
1620
  _PCP,
1624
1621
  { [_h]: ["PUT", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy", 200] },
1625
- () => PutChannelPolicyRequest,
1626
- () => PutChannelPolicyResponse,
1622
+ () => PutChannelPolicyRequest$,
1623
+ () => PutChannelPolicyResponse$,
1627
1624
  ];
1628
- var PutOriginEndpointPolicy = [
1625
+ var PutOriginEndpointPolicy$ = [
1629
1626
  9,
1630
1627
  n0,
1631
1628
  _POEP,
@@ -1636,18 +1633,18 @@ var PutOriginEndpointPolicy = [
1636
1633
  200,
1637
1634
  ],
1638
1635
  },
1639
- () => PutOriginEndpointPolicyRequest,
1640
- () => PutOriginEndpointPolicyResponse,
1636
+ () => PutOriginEndpointPolicyRequest$,
1637
+ () => PutOriginEndpointPolicyResponse$,
1641
1638
  ];
1642
- var ResetChannelState = [
1639
+ var ResetChannelState$ = [
1643
1640
  9,
1644
1641
  n0,
1645
1642
  _RCS,
1646
1643
  { [_h]: ["POST", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/reset", 200] },
1647
- () => ResetChannelStateRequest,
1648
- () => ResetChannelStateResponse,
1644
+ () => ResetChannelStateRequest$,
1645
+ () => ResetChannelStateResponse$,
1649
1646
  ];
1650
- var ResetOriginEndpointState = [
1647
+ var ResetOriginEndpointState$ = [
1651
1648
  9,
1652
1649
  n0,
1653
1650
  _ROES,
@@ -1658,48 +1655,48 @@ var ResetOriginEndpointState = [
1658
1655
  200,
1659
1656
  ],
1660
1657
  },
1661
- () => ResetOriginEndpointStateRequest,
1662
- () => ResetOriginEndpointStateResponse,
1658
+ () => ResetOriginEndpointStateRequest$,
1659
+ () => ResetOriginEndpointStateResponse$,
1663
1660
  ];
1664
- var TagResource = [
1661
+ var TagResource$ = [
1665
1662
  9,
1666
1663
  n0,
1667
1664
  _TR,
1668
1665
  { [_h]: ["POST", "/tags/{ResourceArn}", 204] },
1669
- () => TagResourceRequest,
1666
+ () => TagResourceRequest$,
1670
1667
  () => __Unit,
1671
1668
  ];
1672
- var UntagResource = [
1669
+ var UntagResource$ = [
1673
1670
  9,
1674
1671
  n0,
1675
1672
  _UR,
1676
1673
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] },
1677
- () => UntagResourceRequest,
1674
+ () => UntagResourceRequest$,
1678
1675
  () => __Unit,
1679
1676
  ];
1680
- var UpdateChannel = [
1677
+ var UpdateChannel$ = [
1681
1678
  9,
1682
1679
  n0,
1683
1680
  _UC,
1684
1681
  { [_h]: ["PUT", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/", 200] },
1685
- () => UpdateChannelRequest,
1686
- () => UpdateChannelResponse,
1682
+ () => UpdateChannelRequest$,
1683
+ () => UpdateChannelResponse$,
1687
1684
  ];
1688
- var UpdateChannelGroup = [
1685
+ var UpdateChannelGroup$ = [
1689
1686
  9,
1690
1687
  n0,
1691
1688
  _UCG,
1692
1689
  { [_h]: ["PUT", "/channelGroup/{ChannelGroupName}", 200] },
1693
- () => UpdateChannelGroupRequest,
1694
- () => UpdateChannelGroupResponse,
1690
+ () => UpdateChannelGroupRequest$,
1691
+ () => UpdateChannelGroupResponse$,
1695
1692
  ];
1696
- var UpdateOriginEndpoint = [
1693
+ var UpdateOriginEndpoint$ = [
1697
1694
  9,
1698
1695
  n0,
1699
1696
  _UOE,
1700
1697
  { [_h]: ["PUT", "/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}", 200] },
1701
- () => UpdateOriginEndpointRequest,
1702
- () => UpdateOriginEndpointResponse,
1698
+ () => UpdateOriginEndpointRequest$,
1699
+ () => UpdateOriginEndpointResponse$,
1703
1700
  ];
1704
1701
 
1705
1702
  class CancelHarvestJobCommand extends smithyClient.Command
@@ -1710,7 +1707,7 @@ class CancelHarvestJobCommand extends smithyClient.Command
1710
1707
  })
1711
1708
  .s("mediapackagev2", "CancelHarvestJob", {})
1712
1709
  .n("MediaPackageV2Client", "CancelHarvestJobCommand")
1713
- .sc(CancelHarvestJob)
1710
+ .sc(CancelHarvestJob$)
1714
1711
  .build() {
1715
1712
  }
1716
1713
 
@@ -1722,7 +1719,7 @@ class CreateChannelCommand extends smithyClient.Command
1722
1719
  })
1723
1720
  .s("mediapackagev2", "CreateChannel", {})
1724
1721
  .n("MediaPackageV2Client", "CreateChannelCommand")
1725
- .sc(CreateChannel)
1722
+ .sc(CreateChannel$)
1726
1723
  .build() {
1727
1724
  }
1728
1725
 
@@ -1734,7 +1731,7 @@ class CreateChannelGroupCommand extends smithyClient.Command
1734
1731
  })
1735
1732
  .s("mediapackagev2", "CreateChannelGroup", {})
1736
1733
  .n("MediaPackageV2Client", "CreateChannelGroupCommand")
1737
- .sc(CreateChannelGroup)
1734
+ .sc(CreateChannelGroup$)
1738
1735
  .build() {
1739
1736
  }
1740
1737
 
@@ -1746,7 +1743,7 @@ class CreateHarvestJobCommand extends smithyClient.Command
1746
1743
  })
1747
1744
  .s("mediapackagev2", "CreateHarvestJob", {})
1748
1745
  .n("MediaPackageV2Client", "CreateHarvestJobCommand")
1749
- .sc(CreateHarvestJob)
1746
+ .sc(CreateHarvestJob$)
1750
1747
  .build() {
1751
1748
  }
1752
1749
 
@@ -1758,7 +1755,7 @@ class CreateOriginEndpointCommand extends smithyClient.Command
1758
1755
  })
1759
1756
  .s("mediapackagev2", "CreateOriginEndpoint", {})
1760
1757
  .n("MediaPackageV2Client", "CreateOriginEndpointCommand")
1761
- .sc(CreateOriginEndpoint)
1758
+ .sc(CreateOriginEndpoint$)
1762
1759
  .build() {
1763
1760
  }
1764
1761
 
@@ -1770,7 +1767,7 @@ class DeleteChannelCommand extends smithyClient.Command
1770
1767
  })
1771
1768
  .s("mediapackagev2", "DeleteChannel", {})
1772
1769
  .n("MediaPackageV2Client", "DeleteChannelCommand")
1773
- .sc(DeleteChannel)
1770
+ .sc(DeleteChannel$)
1774
1771
  .build() {
1775
1772
  }
1776
1773
 
@@ -1782,7 +1779,7 @@ class DeleteChannelGroupCommand extends smithyClient.Command
1782
1779
  })
1783
1780
  .s("mediapackagev2", "DeleteChannelGroup", {})
1784
1781
  .n("MediaPackageV2Client", "DeleteChannelGroupCommand")
1785
- .sc(DeleteChannelGroup)
1782
+ .sc(DeleteChannelGroup$)
1786
1783
  .build() {
1787
1784
  }
1788
1785
 
@@ -1794,7 +1791,7 @@ class DeleteChannelPolicyCommand extends smithyClient.Command
1794
1791
  })
1795
1792
  .s("mediapackagev2", "DeleteChannelPolicy", {})
1796
1793
  .n("MediaPackageV2Client", "DeleteChannelPolicyCommand")
1797
- .sc(DeleteChannelPolicy)
1794
+ .sc(DeleteChannelPolicy$)
1798
1795
  .build() {
1799
1796
  }
1800
1797
 
@@ -1806,7 +1803,7 @@ class DeleteOriginEndpointCommand extends smithyClient.Command
1806
1803
  })
1807
1804
  .s("mediapackagev2", "DeleteOriginEndpoint", {})
1808
1805
  .n("MediaPackageV2Client", "DeleteOriginEndpointCommand")
1809
- .sc(DeleteOriginEndpoint)
1806
+ .sc(DeleteOriginEndpoint$)
1810
1807
  .build() {
1811
1808
  }
1812
1809
 
@@ -1818,7 +1815,7 @@ class DeleteOriginEndpointPolicyCommand extends smithyClient.Command
1818
1815
  })
1819
1816
  .s("mediapackagev2", "DeleteOriginEndpointPolicy", {})
1820
1817
  .n("MediaPackageV2Client", "DeleteOriginEndpointPolicyCommand")
1821
- .sc(DeleteOriginEndpointPolicy)
1818
+ .sc(DeleteOriginEndpointPolicy$)
1822
1819
  .build() {
1823
1820
  }
1824
1821
 
@@ -1830,7 +1827,7 @@ class GetChannelCommand extends smithyClient.Command
1830
1827
  })
1831
1828
  .s("mediapackagev2", "GetChannel", {})
1832
1829
  .n("MediaPackageV2Client", "GetChannelCommand")
1833
- .sc(GetChannel)
1830
+ .sc(GetChannel$)
1834
1831
  .build() {
1835
1832
  }
1836
1833
 
@@ -1842,7 +1839,7 @@ class GetChannelGroupCommand extends smithyClient.Command
1842
1839
  })
1843
1840
  .s("mediapackagev2", "GetChannelGroup", {})
1844
1841
  .n("MediaPackageV2Client", "GetChannelGroupCommand")
1845
- .sc(GetChannelGroup)
1842
+ .sc(GetChannelGroup$)
1846
1843
  .build() {
1847
1844
  }
1848
1845
 
@@ -1854,7 +1851,7 @@ class GetChannelPolicyCommand extends smithyClient.Command
1854
1851
  })
1855
1852
  .s("mediapackagev2", "GetChannelPolicy", {})
1856
1853
  .n("MediaPackageV2Client", "GetChannelPolicyCommand")
1857
- .sc(GetChannelPolicy)
1854
+ .sc(GetChannelPolicy$)
1858
1855
  .build() {
1859
1856
  }
1860
1857
 
@@ -1866,7 +1863,7 @@ class GetHarvestJobCommand extends smithyClient.Command
1866
1863
  })
1867
1864
  .s("mediapackagev2", "GetHarvestJob", {})
1868
1865
  .n("MediaPackageV2Client", "GetHarvestJobCommand")
1869
- .sc(GetHarvestJob)
1866
+ .sc(GetHarvestJob$)
1870
1867
  .build() {
1871
1868
  }
1872
1869
 
@@ -1878,7 +1875,7 @@ class GetOriginEndpointCommand extends smithyClient.Command
1878
1875
  })
1879
1876
  .s("mediapackagev2", "GetOriginEndpoint", {})
1880
1877
  .n("MediaPackageV2Client", "GetOriginEndpointCommand")
1881
- .sc(GetOriginEndpoint)
1878
+ .sc(GetOriginEndpoint$)
1882
1879
  .build() {
1883
1880
  }
1884
1881
 
@@ -1890,7 +1887,7 @@ class GetOriginEndpointPolicyCommand extends smithyClient.Command
1890
1887
  })
1891
1888
  .s("mediapackagev2", "GetOriginEndpointPolicy", {})
1892
1889
  .n("MediaPackageV2Client", "GetOriginEndpointPolicyCommand")
1893
- .sc(GetOriginEndpointPolicy)
1890
+ .sc(GetOriginEndpointPolicy$)
1894
1891
  .build() {
1895
1892
  }
1896
1893
 
@@ -1902,7 +1899,7 @@ class ListChannelGroupsCommand extends smithyClient.Command
1902
1899
  })
1903
1900
  .s("mediapackagev2", "ListChannelGroups", {})
1904
1901
  .n("MediaPackageV2Client", "ListChannelGroupsCommand")
1905
- .sc(ListChannelGroups)
1902
+ .sc(ListChannelGroups$)
1906
1903
  .build() {
1907
1904
  }
1908
1905
 
@@ -1914,7 +1911,7 @@ class ListChannelsCommand extends smithyClient.Command
1914
1911
  })
1915
1912
  .s("mediapackagev2", "ListChannels", {})
1916
1913
  .n("MediaPackageV2Client", "ListChannelsCommand")
1917
- .sc(ListChannels)
1914
+ .sc(ListChannels$)
1918
1915
  .build() {
1919
1916
  }
1920
1917
 
@@ -1926,7 +1923,7 @@ class ListHarvestJobsCommand extends smithyClient.Command
1926
1923
  })
1927
1924
  .s("mediapackagev2", "ListHarvestJobs", {})
1928
1925
  .n("MediaPackageV2Client", "ListHarvestJobsCommand")
1929
- .sc(ListHarvestJobs)
1926
+ .sc(ListHarvestJobs$)
1930
1927
  .build() {
1931
1928
  }
1932
1929
 
@@ -1938,7 +1935,7 @@ class ListOriginEndpointsCommand extends smithyClient.Command
1938
1935
  })
1939
1936
  .s("mediapackagev2", "ListOriginEndpoints", {})
1940
1937
  .n("MediaPackageV2Client", "ListOriginEndpointsCommand")
1941
- .sc(ListOriginEndpoints)
1938
+ .sc(ListOriginEndpoints$)
1942
1939
  .build() {
1943
1940
  }
1944
1941
 
@@ -1950,7 +1947,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1950
1947
  })
1951
1948
  .s("mediapackagev2", "ListTagsForResource", {})
1952
1949
  .n("MediaPackageV2Client", "ListTagsForResourceCommand")
1953
- .sc(ListTagsForResource)
1950
+ .sc(ListTagsForResource$)
1954
1951
  .build() {
1955
1952
  }
1956
1953
 
@@ -1962,7 +1959,7 @@ class PutChannelPolicyCommand extends smithyClient.Command
1962
1959
  })
1963
1960
  .s("mediapackagev2", "PutChannelPolicy", {})
1964
1961
  .n("MediaPackageV2Client", "PutChannelPolicyCommand")
1965
- .sc(PutChannelPolicy)
1962
+ .sc(PutChannelPolicy$)
1966
1963
  .build() {
1967
1964
  }
1968
1965
 
@@ -1974,7 +1971,7 @@ class PutOriginEndpointPolicyCommand extends smithyClient.Command
1974
1971
  })
1975
1972
  .s("mediapackagev2", "PutOriginEndpointPolicy", {})
1976
1973
  .n("MediaPackageV2Client", "PutOriginEndpointPolicyCommand")
1977
- .sc(PutOriginEndpointPolicy)
1974
+ .sc(PutOriginEndpointPolicy$)
1978
1975
  .build() {
1979
1976
  }
1980
1977
 
@@ -1986,7 +1983,7 @@ class ResetChannelStateCommand extends smithyClient.Command
1986
1983
  })
1987
1984
  .s("mediapackagev2", "ResetChannelState", {})
1988
1985
  .n("MediaPackageV2Client", "ResetChannelStateCommand")
1989
- .sc(ResetChannelState)
1986
+ .sc(ResetChannelState$)
1990
1987
  .build() {
1991
1988
  }
1992
1989
 
@@ -1998,7 +1995,7 @@ class ResetOriginEndpointStateCommand extends smithyClient.Command
1998
1995
  })
1999
1996
  .s("mediapackagev2", "ResetOriginEndpointState", {})
2000
1997
  .n("MediaPackageV2Client", "ResetOriginEndpointStateCommand")
2001
- .sc(ResetOriginEndpointState)
1998
+ .sc(ResetOriginEndpointState$)
2002
1999
  .build() {
2003
2000
  }
2004
2001
 
@@ -2010,7 +2007,7 @@ class TagResourceCommand extends smithyClient.Command
2010
2007
  })
2011
2008
  .s("mediapackagev2", "TagResource", {})
2012
2009
  .n("MediaPackageV2Client", "TagResourceCommand")
2013
- .sc(TagResource)
2010
+ .sc(TagResource$)
2014
2011
  .build() {
2015
2012
  }
2016
2013
 
@@ -2022,7 +2019,7 @@ class UntagResourceCommand extends smithyClient.Command
2022
2019
  })
2023
2020
  .s("mediapackagev2", "UntagResource", {})
2024
2021
  .n("MediaPackageV2Client", "UntagResourceCommand")
2025
- .sc(UntagResource)
2022
+ .sc(UntagResource$)
2026
2023
  .build() {
2027
2024
  }
2028
2025
 
@@ -2034,7 +2031,7 @@ class UpdateChannelCommand extends smithyClient.Command
2034
2031
  })
2035
2032
  .s("mediapackagev2", "UpdateChannel", {})
2036
2033
  .n("MediaPackageV2Client", "UpdateChannelCommand")
2037
- .sc(UpdateChannel)
2034
+ .sc(UpdateChannel$)
2038
2035
  .build() {
2039
2036
  }
2040
2037
 
@@ -2046,7 +2043,7 @@ class UpdateChannelGroupCommand extends smithyClient.Command
2046
2043
  })
2047
2044
  .s("mediapackagev2", "UpdateChannelGroup", {})
2048
2045
  .n("MediaPackageV2Client", "UpdateChannelGroupCommand")
2049
- .sc(UpdateChannelGroup)
2046
+ .sc(UpdateChannelGroup$)
2050
2047
  .build() {
2051
2048
  }
2052
2049
 
@@ -2058,7 +2055,7 @@ class UpdateOriginEndpointCommand extends smithyClient.Command
2058
2055
  })
2059
2056
  .s("mediapackagev2", "UpdateOriginEndpoint", {})
2060
2057
  .n("MediaPackageV2Client", "UpdateOriginEndpointCommand")
2061
- .sc(UpdateOriginEndpoint)
2058
+ .sc(UpdateOriginEndpoint$)
2062
2059
  .build() {
2063
2060
  }
2064
2061
 
@@ -2401,70 +2398,212 @@ Object.defineProperty(exports, "__Client", {
2401
2398
  enumerable: true,
2402
2399
  get: function () { return smithyClient.Client; }
2403
2400
  });
2404
- exports.AccessDeniedException = AccessDeniedException$1;
2401
+ exports.AccessDeniedException = AccessDeniedException;
2402
+ exports.AccessDeniedException$ = AccessDeniedException$;
2405
2403
  exports.AdMarkerDash = AdMarkerDash;
2406
2404
  exports.AdMarkerHls = AdMarkerHls;
2405
+ exports.CancelHarvestJob$ = CancelHarvestJob$;
2407
2406
  exports.CancelHarvestJobCommand = CancelHarvestJobCommand;
2407
+ exports.CancelHarvestJobRequest$ = CancelHarvestJobRequest$;
2408
+ exports.CancelHarvestJobResponse$ = CancelHarvestJobResponse$;
2409
+ exports.CdnAuthConfiguration$ = CdnAuthConfiguration$;
2410
+ exports.ChannelGroupListConfiguration$ = ChannelGroupListConfiguration$;
2411
+ exports.ChannelListConfiguration$ = ChannelListConfiguration$;
2408
2412
  exports.CmafEncryptionMethod = CmafEncryptionMethod;
2409
- exports.ConflictException = ConflictException$1;
2413
+ exports.ConflictException = ConflictException;
2414
+ exports.ConflictException$ = ConflictException$;
2410
2415
  exports.ConflictExceptionType = ConflictExceptionType;
2411
2416
  exports.ContainerType = ContainerType;
2417
+ exports.CreateChannel$ = CreateChannel$;
2412
2418
  exports.CreateChannelCommand = CreateChannelCommand;
2419
+ exports.CreateChannelGroup$ = CreateChannelGroup$;
2413
2420
  exports.CreateChannelGroupCommand = CreateChannelGroupCommand;
2421
+ exports.CreateChannelGroupRequest$ = CreateChannelGroupRequest$;
2422
+ exports.CreateChannelGroupResponse$ = CreateChannelGroupResponse$;
2423
+ exports.CreateChannelRequest$ = CreateChannelRequest$;
2424
+ exports.CreateChannelResponse$ = CreateChannelResponse$;
2425
+ exports.CreateDashManifestConfiguration$ = CreateDashManifestConfiguration$;
2426
+ exports.CreateHarvestJob$ = CreateHarvestJob$;
2414
2427
  exports.CreateHarvestJobCommand = CreateHarvestJobCommand;
2428
+ exports.CreateHarvestJobRequest$ = CreateHarvestJobRequest$;
2429
+ exports.CreateHarvestJobResponse$ = CreateHarvestJobResponse$;
2430
+ exports.CreateHlsManifestConfiguration$ = CreateHlsManifestConfiguration$;
2431
+ exports.CreateLowLatencyHlsManifestConfiguration$ = CreateLowLatencyHlsManifestConfiguration$;
2432
+ exports.CreateMssManifestConfiguration$ = CreateMssManifestConfiguration$;
2433
+ exports.CreateOriginEndpoint$ = CreateOriginEndpoint$;
2415
2434
  exports.CreateOriginEndpointCommand = CreateOriginEndpointCommand;
2435
+ exports.CreateOriginEndpointRequest$ = CreateOriginEndpointRequest$;
2436
+ exports.CreateOriginEndpointResponse$ = CreateOriginEndpointResponse$;
2437
+ exports.DashBaseUrl$ = DashBaseUrl$;
2416
2438
  exports.DashCompactness = DashCompactness;
2417
2439
  exports.DashDrmSignaling = DashDrmSignaling;
2440
+ exports.DashDvbFontDownload$ = DashDvbFontDownload$;
2441
+ exports.DashDvbMetricsReporting$ = DashDvbMetricsReporting$;
2442
+ exports.DashDvbSettings$ = DashDvbSettings$;
2418
2443
  exports.DashPeriodTrigger = DashPeriodTrigger;
2419
2444
  exports.DashProfile = DashProfile;
2445
+ exports.DashProgramInformation$ = DashProgramInformation$;
2420
2446
  exports.DashSegmentTemplateFormat = DashSegmentTemplateFormat;
2447
+ exports.DashSubtitleConfiguration$ = DashSubtitleConfiguration$;
2448
+ exports.DashTtmlConfiguration$ = DashTtmlConfiguration$;
2421
2449
  exports.DashTtmlProfile = DashTtmlProfile;
2450
+ exports.DashUtcTiming$ = DashUtcTiming$;
2422
2451
  exports.DashUtcTimingMode = DashUtcTimingMode;
2452
+ exports.DeleteChannel$ = DeleteChannel$;
2423
2453
  exports.DeleteChannelCommand = DeleteChannelCommand;
2454
+ exports.DeleteChannelGroup$ = DeleteChannelGroup$;
2424
2455
  exports.DeleteChannelGroupCommand = DeleteChannelGroupCommand;
2456
+ exports.DeleteChannelGroupRequest$ = DeleteChannelGroupRequest$;
2457
+ exports.DeleteChannelGroupResponse$ = DeleteChannelGroupResponse$;
2458
+ exports.DeleteChannelPolicy$ = DeleteChannelPolicy$;
2425
2459
  exports.DeleteChannelPolicyCommand = DeleteChannelPolicyCommand;
2460
+ exports.DeleteChannelPolicyRequest$ = DeleteChannelPolicyRequest$;
2461
+ exports.DeleteChannelPolicyResponse$ = DeleteChannelPolicyResponse$;
2462
+ exports.DeleteChannelRequest$ = DeleteChannelRequest$;
2463
+ exports.DeleteChannelResponse$ = DeleteChannelResponse$;
2464
+ exports.DeleteOriginEndpoint$ = DeleteOriginEndpoint$;
2426
2465
  exports.DeleteOriginEndpointCommand = DeleteOriginEndpointCommand;
2466
+ exports.DeleteOriginEndpointPolicy$ = DeleteOriginEndpointPolicy$;
2427
2467
  exports.DeleteOriginEndpointPolicyCommand = DeleteOriginEndpointPolicyCommand;
2468
+ exports.DeleteOriginEndpointPolicyRequest$ = DeleteOriginEndpointPolicyRequest$;
2469
+ exports.DeleteOriginEndpointPolicyResponse$ = DeleteOriginEndpointPolicyResponse$;
2470
+ exports.DeleteOriginEndpointRequest$ = DeleteOriginEndpointRequest$;
2471
+ exports.DeleteOriginEndpointResponse$ = DeleteOriginEndpointResponse$;
2472
+ exports.Destination$ = Destination$;
2428
2473
  exports.DrmSystem = DrmSystem;
2474
+ exports.Encryption$ = Encryption$;
2475
+ exports.EncryptionContractConfiguration$ = EncryptionContractConfiguration$;
2476
+ exports.EncryptionMethod$ = EncryptionMethod$;
2429
2477
  exports.EndpointErrorCondition = EndpointErrorCondition;
2478
+ exports.FilterConfiguration$ = FilterConfiguration$;
2479
+ exports.ForceEndpointErrorConfiguration$ = ForceEndpointErrorConfiguration$;
2480
+ exports.GetChannel$ = GetChannel$;
2430
2481
  exports.GetChannelCommand = GetChannelCommand;
2482
+ exports.GetChannelGroup$ = GetChannelGroup$;
2431
2483
  exports.GetChannelGroupCommand = GetChannelGroupCommand;
2484
+ exports.GetChannelGroupRequest$ = GetChannelGroupRequest$;
2485
+ exports.GetChannelGroupResponse$ = GetChannelGroupResponse$;
2486
+ exports.GetChannelPolicy$ = GetChannelPolicy$;
2432
2487
  exports.GetChannelPolicyCommand = GetChannelPolicyCommand;
2488
+ exports.GetChannelPolicyRequest$ = GetChannelPolicyRequest$;
2489
+ exports.GetChannelPolicyResponse$ = GetChannelPolicyResponse$;
2490
+ exports.GetChannelRequest$ = GetChannelRequest$;
2491
+ exports.GetChannelResponse$ = GetChannelResponse$;
2492
+ exports.GetDashManifestConfiguration$ = GetDashManifestConfiguration$;
2493
+ exports.GetHarvestJob$ = GetHarvestJob$;
2433
2494
  exports.GetHarvestJobCommand = GetHarvestJobCommand;
2495
+ exports.GetHarvestJobRequest$ = GetHarvestJobRequest$;
2496
+ exports.GetHarvestJobResponse$ = GetHarvestJobResponse$;
2497
+ exports.GetHlsManifestConfiguration$ = GetHlsManifestConfiguration$;
2498
+ exports.GetLowLatencyHlsManifestConfiguration$ = GetLowLatencyHlsManifestConfiguration$;
2499
+ exports.GetMssManifestConfiguration$ = GetMssManifestConfiguration$;
2500
+ exports.GetOriginEndpoint$ = GetOriginEndpoint$;
2434
2501
  exports.GetOriginEndpointCommand = GetOriginEndpointCommand;
2502
+ exports.GetOriginEndpointPolicy$ = GetOriginEndpointPolicy$;
2435
2503
  exports.GetOriginEndpointPolicyCommand = GetOriginEndpointPolicyCommand;
2504
+ exports.GetOriginEndpointPolicyRequest$ = GetOriginEndpointPolicyRequest$;
2505
+ exports.GetOriginEndpointPolicyResponse$ = GetOriginEndpointPolicyResponse$;
2506
+ exports.GetOriginEndpointRequest$ = GetOriginEndpointRequest$;
2507
+ exports.GetOriginEndpointResponse$ = GetOriginEndpointResponse$;
2508
+ exports.HarvestJob$ = HarvestJob$;
2436
2509
  exports.HarvestJobStatus = HarvestJobStatus;
2510
+ exports.HarvestedDashManifest$ = HarvestedDashManifest$;
2511
+ exports.HarvestedHlsManifest$ = HarvestedHlsManifest$;
2512
+ exports.HarvestedLowLatencyHlsManifest$ = HarvestedLowLatencyHlsManifest$;
2513
+ exports.HarvestedManifests$ = HarvestedManifests$;
2514
+ exports.HarvesterScheduleConfiguration$ = HarvesterScheduleConfiguration$;
2515
+ exports.IngestEndpoint$ = IngestEndpoint$;
2516
+ exports.InputSwitchConfiguration$ = InputSwitchConfiguration$;
2437
2517
  exports.InputType = InputType;
2438
- exports.InternalServerException = InternalServerException$1;
2518
+ exports.InternalServerException = InternalServerException;
2519
+ exports.InternalServerException$ = InternalServerException$;
2439
2520
  exports.IsmEncryptionMethod = IsmEncryptionMethod;
2521
+ exports.ListChannelGroups$ = ListChannelGroups$;
2440
2522
  exports.ListChannelGroupsCommand = ListChannelGroupsCommand;
2523
+ exports.ListChannelGroupsRequest$ = ListChannelGroupsRequest$;
2524
+ exports.ListChannelGroupsResponse$ = ListChannelGroupsResponse$;
2525
+ exports.ListChannels$ = ListChannels$;
2441
2526
  exports.ListChannelsCommand = ListChannelsCommand;
2527
+ exports.ListChannelsRequest$ = ListChannelsRequest$;
2528
+ exports.ListChannelsResponse$ = ListChannelsResponse$;
2529
+ exports.ListDashManifestConfiguration$ = ListDashManifestConfiguration$;
2530
+ exports.ListHarvestJobs$ = ListHarvestJobs$;
2442
2531
  exports.ListHarvestJobsCommand = ListHarvestJobsCommand;
2532
+ exports.ListHarvestJobsRequest$ = ListHarvestJobsRequest$;
2533
+ exports.ListHarvestJobsResponse$ = ListHarvestJobsResponse$;
2534
+ exports.ListHlsManifestConfiguration$ = ListHlsManifestConfiguration$;
2535
+ exports.ListLowLatencyHlsManifestConfiguration$ = ListLowLatencyHlsManifestConfiguration$;
2536
+ exports.ListMssManifestConfiguration$ = ListMssManifestConfiguration$;
2537
+ exports.ListOriginEndpoints$ = ListOriginEndpoints$;
2443
2538
  exports.ListOriginEndpointsCommand = ListOriginEndpointsCommand;
2539
+ exports.ListOriginEndpointsRequest$ = ListOriginEndpointsRequest$;
2540
+ exports.ListOriginEndpointsResponse$ = ListOriginEndpointsResponse$;
2541
+ exports.ListTagsForResource$ = ListTagsForResource$;
2444
2542
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2543
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2544
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2445
2545
  exports.MediaPackageV2 = MediaPackageV2;
2446
2546
  exports.MediaPackageV2Client = MediaPackageV2Client;
2447
- exports.MediaPackageV2ServiceException = MediaPackageV2ServiceException$1;
2547
+ exports.MediaPackageV2ServiceException = MediaPackageV2ServiceException;
2548
+ exports.MediaPackageV2ServiceException$ = MediaPackageV2ServiceException$;
2448
2549
  exports.MssManifestLayout = MssManifestLayout;
2550
+ exports.OriginEndpointListConfiguration$ = OriginEndpointListConfiguration$;
2551
+ exports.OutputHeaderConfiguration$ = OutputHeaderConfiguration$;
2449
2552
  exports.PresetSpeke20Audio = PresetSpeke20Audio;
2450
2553
  exports.PresetSpeke20Video = PresetSpeke20Video;
2554
+ exports.PutChannelPolicy$ = PutChannelPolicy$;
2451
2555
  exports.PutChannelPolicyCommand = PutChannelPolicyCommand;
2556
+ exports.PutChannelPolicyRequest$ = PutChannelPolicyRequest$;
2557
+ exports.PutChannelPolicyResponse$ = PutChannelPolicyResponse$;
2558
+ exports.PutOriginEndpointPolicy$ = PutOriginEndpointPolicy$;
2452
2559
  exports.PutOriginEndpointPolicyCommand = PutOriginEndpointPolicyCommand;
2560
+ exports.PutOriginEndpointPolicyRequest$ = PutOriginEndpointPolicyRequest$;
2561
+ exports.PutOriginEndpointPolicyResponse$ = PutOriginEndpointPolicyResponse$;
2562
+ exports.ResetChannelState$ = ResetChannelState$;
2453
2563
  exports.ResetChannelStateCommand = ResetChannelStateCommand;
2564
+ exports.ResetChannelStateRequest$ = ResetChannelStateRequest$;
2565
+ exports.ResetChannelStateResponse$ = ResetChannelStateResponse$;
2566
+ exports.ResetOriginEndpointState$ = ResetOriginEndpointState$;
2454
2567
  exports.ResetOriginEndpointStateCommand = ResetOriginEndpointStateCommand;
2455
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2568
+ exports.ResetOriginEndpointStateRequest$ = ResetOriginEndpointStateRequest$;
2569
+ exports.ResetOriginEndpointStateResponse$ = ResetOriginEndpointStateResponse$;
2570
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2571
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2456
2572
  exports.ResourceTypeNotFound = ResourceTypeNotFound;
2573
+ exports.S3DestinationConfig$ = S3DestinationConfig$;
2574
+ exports.Scte$ = Scte$;
2575
+ exports.ScteDash$ = ScteDash$;
2457
2576
  exports.ScteFilter = ScteFilter;
2577
+ exports.ScteHls$ = ScteHls$;
2458
2578
  exports.ScteInSegments = ScteInSegments;
2459
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2579
+ exports.Segment$ = Segment$;
2580
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2581
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2582
+ exports.SpekeKeyProvider$ = SpekeKeyProvider$;
2583
+ exports.StartTag$ = StartTag$;
2584
+ exports.TagResource$ = TagResource$;
2460
2585
  exports.TagResourceCommand = TagResourceCommand;
2461
- exports.ThrottlingException = ThrottlingException$1;
2586
+ exports.TagResourceRequest$ = TagResourceRequest$;
2587
+ exports.ThrottlingException = ThrottlingException;
2588
+ exports.ThrottlingException$ = ThrottlingException$;
2462
2589
  exports.TsEncryptionMethod = TsEncryptionMethod;
2590
+ exports.UntagResource$ = UntagResource$;
2463
2591
  exports.UntagResourceCommand = UntagResourceCommand;
2592
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2593
+ exports.UpdateChannel$ = UpdateChannel$;
2464
2594
  exports.UpdateChannelCommand = UpdateChannelCommand;
2595
+ exports.UpdateChannelGroup$ = UpdateChannelGroup$;
2465
2596
  exports.UpdateChannelGroupCommand = UpdateChannelGroupCommand;
2597
+ exports.UpdateChannelGroupRequest$ = UpdateChannelGroupRequest$;
2598
+ exports.UpdateChannelGroupResponse$ = UpdateChannelGroupResponse$;
2599
+ exports.UpdateChannelRequest$ = UpdateChannelRequest$;
2600
+ exports.UpdateChannelResponse$ = UpdateChannelResponse$;
2601
+ exports.UpdateOriginEndpoint$ = UpdateOriginEndpoint$;
2466
2602
  exports.UpdateOriginEndpointCommand = UpdateOriginEndpointCommand;
2467
- exports.ValidationException = ValidationException$1;
2603
+ exports.UpdateOriginEndpointRequest$ = UpdateOriginEndpointRequest$;
2604
+ exports.UpdateOriginEndpointResponse$ = UpdateOriginEndpointResponse$;
2605
+ exports.ValidationException = ValidationException;
2606
+ exports.ValidationException$ = ValidationException$;
2468
2607
  exports.ValidationExceptionType = ValidationExceptionType;
2469
2608
  exports.paginateListChannelGroups = paginateListChannelGroups;
2470
2609
  exports.paginateListChannels = paginateListChannels;