@aws-sdk/client-mediatailor 3.948.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 (72) hide show
  1. package/dist-cjs/index.js +648 -439
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/ConfigureLogsForChannelCommand.js +2 -2
  4. package/dist-es/commands/ConfigureLogsForPlaybackConfigurationCommand.js +2 -2
  5. package/dist-es/commands/CreateChannelCommand.js +2 -2
  6. package/dist-es/commands/CreateLiveSourceCommand.js +2 -2
  7. package/dist-es/commands/CreatePrefetchScheduleCommand.js +2 -2
  8. package/dist-es/commands/CreateProgramCommand.js +2 -2
  9. package/dist-es/commands/CreateSourceLocationCommand.js +2 -2
  10. package/dist-es/commands/CreateVodSourceCommand.js +2 -2
  11. package/dist-es/commands/DeleteChannelCommand.js +2 -2
  12. package/dist-es/commands/DeleteChannelPolicyCommand.js +2 -2
  13. package/dist-es/commands/DeleteLiveSourceCommand.js +2 -2
  14. package/dist-es/commands/DeletePlaybackConfigurationCommand.js +2 -2
  15. package/dist-es/commands/DeletePrefetchScheduleCommand.js +2 -2
  16. package/dist-es/commands/DeleteProgramCommand.js +2 -2
  17. package/dist-es/commands/DeleteSourceLocationCommand.js +2 -2
  18. package/dist-es/commands/DeleteVodSourceCommand.js +2 -2
  19. package/dist-es/commands/DescribeChannelCommand.js +2 -2
  20. package/dist-es/commands/DescribeLiveSourceCommand.js +2 -2
  21. package/dist-es/commands/DescribeProgramCommand.js +2 -2
  22. package/dist-es/commands/DescribeSourceLocationCommand.js +2 -2
  23. package/dist-es/commands/DescribeVodSourceCommand.js +2 -2
  24. package/dist-es/commands/GetChannelPolicyCommand.js +2 -2
  25. package/dist-es/commands/GetChannelScheduleCommand.js +2 -2
  26. package/dist-es/commands/GetPlaybackConfigurationCommand.js +2 -2
  27. package/dist-es/commands/GetPrefetchScheduleCommand.js +2 -2
  28. package/dist-es/commands/ListAlertsCommand.js +2 -2
  29. package/dist-es/commands/ListChannelsCommand.js +2 -2
  30. package/dist-es/commands/ListLiveSourcesCommand.js +2 -2
  31. package/dist-es/commands/ListPlaybackConfigurationsCommand.js +2 -2
  32. package/dist-es/commands/ListPrefetchSchedulesCommand.js +2 -2
  33. package/dist-es/commands/ListSourceLocationsCommand.js +2 -2
  34. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  35. package/dist-es/commands/ListVodSourcesCommand.js +2 -2
  36. package/dist-es/commands/PutChannelPolicyCommand.js +2 -2
  37. package/dist-es/commands/PutPlaybackConfigurationCommand.js +2 -2
  38. package/dist-es/commands/StartChannelCommand.js +2 -2
  39. package/dist-es/commands/StopChannelCommand.js +2 -2
  40. package/dist-es/commands/TagResourceCommand.js +2 -2
  41. package/dist-es/commands/UntagResourceCommand.js +2 -2
  42. package/dist-es/commands/UpdateChannelCommand.js +2 -2
  43. package/dist-es/commands/UpdateLiveSourceCommand.js +2 -2
  44. package/dist-es/commands/UpdateProgramCommand.js +2 -2
  45. package/dist-es/commands/UpdateSourceLocationCommand.js +2 -2
  46. package/dist-es/commands/UpdateVodSourceCommand.js +2 -2
  47. package/dist-es/index.js +1 -0
  48. package/dist-es/models/enums.js +8 -0
  49. package/dist-es/runtimeConfig.shared.js +6 -1
  50. package/dist-es/schemas/schemas_0.js +413 -403
  51. package/dist-types/MediaTailorClient.d.ts +1 -10
  52. package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +10 -0
  53. package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +10 -0
  54. package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +20 -0
  55. package/dist-types/index.d.ts +1 -0
  56. package/dist-types/models/enums.d.ts +24 -0
  57. package/dist-types/models/models_0.d.ts +66 -9
  58. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  59. package/dist-types/runtimeConfig.d.ts +6 -2
  60. package/dist-types/runtimeConfig.native.d.ts +6 -2
  61. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  62. package/dist-types/schemas/schemas_0.d.ts +191 -221
  63. package/dist-types/ts3.4/MediaTailorClient.d.ts +0 -4
  64. package/dist-types/ts3.4/index.d.ts +1 -0
  65. package/dist-types/ts3.4/models/enums.d.ts +11 -0
  66. package/dist-types/ts3.4/models/models_0.d.ts +15 -0
  67. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  68. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  69. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  70. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  71. package/dist-types/ts3.4/schemas/schemas_0.d.ts +190 -222
  72. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class MediaTailorClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let MediaTailorServiceException$1 = class MediaTailorServiceException extends smithyClient.ServiceException {
113
+ class MediaTailorServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, MediaTailorServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let BadRequestException$1 = class BadRequestException extends MediaTailorServiceException$1 {
120
+ class BadRequestException extends MediaTailorServiceException {
121
121
  name = "BadRequestException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,7 +130,7 @@ let BadRequestException$1 = class BadRequestException extends MediaTailorService
130
130
  Object.setPrototypeOf(this, BadRequestException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
133
+ }
134
134
 
135
135
  const _A = "Alert";
136
136
  const _AB = "AdBreak";
@@ -143,6 +143,7 @@ const _AC = "AccessConfiguration";
143
143
  const _ACC = "AdConditioningConfiguration";
144
144
  const _ACl = "AlertCode";
145
145
  const _ADS = "ApproximateDurationSeconds";
146
+ const _ADSC = "AdDecisionServerConfiguration";
146
147
  const _ADSU = "AdDecisionServerUrl";
147
148
  const _AE = "AvailsExpected";
148
149
  const _AIL = "AdsInteractionLog";
@@ -163,6 +164,7 @@ const _Aud = "Audiences";
163
164
  const _B = "Bumper";
164
165
  const _BRE = "BadRequestException";
165
166
  const _BU = "BaseUrl";
167
+ const _Bo = "Body";
166
168
  const _C = "Category";
167
169
  const _CA = "ConfigurationAliases";
168
170
  const _CAR = "ConfigurationAliasesResponse";
@@ -188,6 +190,7 @@ const _CPS = "CreatePrefetchSchedule";
188
190
  const _CPSR = "CreatePrefetchScheduleRequest";
189
191
  const _CPSRr = "CreatePrefetchScheduleResponse";
190
192
  const _CR = "ClipRange";
193
+ const _CRo = "CompressRequest";
191
194
  const _CS = "ChannelState";
192
195
  const _CSL = "CreateSourceLocation";
193
196
  const _CSLR = "CreateSourceLocationRequest";
@@ -267,12 +270,14 @@ const _GPCRe = "GetPlaybackConfigurationResponse";
267
270
  const _GPS = "GetPrefetchSchedule";
268
271
  const _GPSR = "GetPrefetchScheduleRequest";
269
272
  const _GPSRe = "GetPrefetchScheduleResponse";
273
+ const _H = "Headers";
270
274
  const _HC = "HttpConfiguration";
271
275
  const _HCl = "HlsConfiguration";
272
276
  const _HN = "HeaderName";
273
277
  const _HPC = "HttpPackageConfigurations";
274
278
  const _HPCt = "HttpPackageConfiguration";
275
279
  const _HPS = "HlsPlaylistSettings";
280
+ const _HR = "HttpRequest";
276
281
  const _I = "Items";
277
282
  const _IM = "InsertionMode";
278
283
  const _K = "Key";
@@ -322,6 +327,7 @@ const _MTDS = "MaxTimeDelaySeconds";
322
327
  const _MUPS = "MinUpdatePeriodSeconds";
323
328
  const _MWS = "ManifestWindowSeconds";
324
329
  const _Me = "Message";
330
+ const _Met = "Method";
325
331
  const _N = "Name";
326
332
  const _NT = "NextToken";
327
333
  const _O = "Operator";
@@ -476,43 +482,44 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.mediatailor";
476
482
  const _t = "tags";
477
483
  const _tK = "tagKeys";
478
484
  const n0 = "com.amazonaws.mediatailor";
479
- var AccessConfiguration = [
485
+ var AccessConfiguration$ = [
480
486
  3,
481
487
  n0,
482
488
  _AC,
483
489
  0,
484
490
  [_AT, _SMATC],
485
- [0, () => SecretsManagerAccessTokenConfiguration],
491
+ [0, () => SecretsManagerAccessTokenConfiguration$],
486
492
  ];
487
- var AdBreak = [
493
+ var AdBreak$ = [
488
494
  3,
489
495
  n0,
490
496
  _AB,
491
497
  0,
492
498
  [_MT, _OM, _S, _SIM, _TSM, _ABM],
493
- [0, 1, () => SlateSource, () => SpliceInsertMessage, () => TimeSignalMessage, () => AdBreakMetadataList],
499
+ [0, 1, () => SlateSource$, () => SpliceInsertMessage$, () => TimeSignalMessage$, () => AdBreakMetadataList],
494
500
  ];
495
- var AdBreakOpportunity = [3, n0, _ABO, 0, [_OM], [1]];
496
- var AdConditioningConfiguration = [3, n0, _ACC, 0, [_SMFC], [0]];
497
- var AdMarkerPassthrough = [3, n0, _AMP, 0, [_E], [2]];
498
- var AdsInteractionLog = [3, n0, _AIL, 0, [_POIET, _EET], [64 | 0, 64 | 0]];
499
- var Alert = [3, n0, _A, 0, [_ACl, _AM, _LMT, _RRA, _RA, _C], [0, 0, 7, 64 | 0, 0, 0]];
500
- var AlternateMedia = [
501
+ var AdBreakOpportunity$ = [3, n0, _ABO, 0, [_OM], [1]];
502
+ var AdConditioningConfiguration$ = [3, n0, _ACC, 0, [_SMFC], [0]];
503
+ var AdDecisionServerConfiguration$ = [3, n0, _ADSC, 0, [_HR], [() => HttpRequest$]];
504
+ var AdMarkerPassthrough$ = [3, n0, _AMP, 0, [_E], [2]];
505
+ var AdsInteractionLog$ = [3, n0, _AIL, 0, [_POIET, _EET], [64 | 0, 64 | 0]];
506
+ var Alert$ = [3, n0, _A, 0, [_ACl, _AM, _LMT, _RRA, _RA, _C], [0, 0, 7, 64 | 0, 0, 0]];
507
+ var AlternateMedia$ = [
501
508
  3,
502
509
  n0,
503
510
  _AMl,
504
511
  0,
505
512
  [_SLN, _LSN, _VSN, _CR, _SSTM, _ABd, _DM],
506
- [0, 0, 0, () => ClipRange, 1, () => __listOfAdBreak, 1],
513
+ [0, 0, 0, () => ClipRange$, 1, () => __listOfAdBreak, 1],
507
514
  ];
508
- var AudienceMedia = [3, n0, _AMu, 0, [_Au, _AMl], [0, () => __listOfAlternateMedia]];
509
- var AvailMatchingCriteria = [3, n0, _AMC, 0, [_DV, _O], [0, 0]];
510
- var AvailSuppression = [3, n0, _AS, 0, [_M, _V, _FP], [0, 0, 0]];
511
- var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_Me], [0]];
512
- schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
513
- var Bumper = [3, n0, _B, 0, [_EU, _SU], [0, 0]];
514
- var CdnConfiguration = [3, n0, _CC, 0, [_ASUP, _CSUP], [0, 0]];
515
- var Channel = [
515
+ var AudienceMedia$ = [3, n0, _AMu, 0, [_Au, _AMl], [0, () => __listOfAlternateMedia]];
516
+ var AvailMatchingCriteria$ = [3, n0, _AMC, 0, [_DV, _O], [0, 0]];
517
+ var AvailSuppression$ = [3, n0, _AS, 0, [_M, _V, _FP], [0, 0, 0]];
518
+ var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_Me], [0]];
519
+ schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
520
+ var Bumper$ = [3, n0, _B, 0, [_EU, _SU], [0, 0]];
521
+ var CdnConfiguration$ = [3, n0, _CC, 0, [_ASUP, _CSUP], [0, 0]];
522
+ var Channel$ = [
516
523
  3,
517
524
  n0,
518
525
  _Ch,
@@ -523,36 +530,36 @@ var Channel = [
523
530
  0,
524
531
  0,
525
532
  7,
526
- () => SlateSource,
533
+ () => SlateSource$,
527
534
  7,
528
535
  () => ResponseOutputs,
529
536
  0,
530
537
  [128 | 0, { [_jN]: _t }],
531
538
  0,
532
- () => LogConfigurationForChannel,
539
+ () => LogConfigurationForChannel$,
533
540
  64 | 0,
534
541
  ],
535
542
  ];
536
- var ClipRange = [3, n0, _CR, 0, [_EOM, _SOM], [1, 1]];
537
- var ConfigureLogsForChannelRequest = [3, n0, _CLFCR, 0, [_CN, _LT], [0, 64 | 0]];
538
- var ConfigureLogsForChannelResponse = [3, n0, _CLFCRo, 0, [_CN, _LT], [0, 64 | 0]];
539
- var ConfigureLogsForPlaybackConfigurationRequest = [
543
+ var ClipRange$ = [3, n0, _CR, 0, [_EOM, _SOM], [1, 1]];
544
+ var ConfigureLogsForChannelRequest$ = [3, n0, _CLFCR, 0, [_CN, _LT], [0, 64 | 0]];
545
+ var ConfigureLogsForChannelResponse$ = [3, n0, _CLFCRo, 0, [_CN, _LT], [0, 64 | 0]];
546
+ var ConfigureLogsForPlaybackConfigurationRequest$ = [
540
547
  3,
541
548
  n0,
542
549
  _CLFPCR,
543
550
  0,
544
551
  [_PE, _PCN, _ELS, _AIL, _MSIL],
545
- [1, 0, 64 | 0, () => AdsInteractionLog, () => ManifestServiceInteractionLog],
552
+ [1, 0, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$],
546
553
  ];
547
- var ConfigureLogsForPlaybackConfigurationResponse = [
554
+ var ConfigureLogsForPlaybackConfigurationResponse$ = [
548
555
  3,
549
556
  n0,
550
557
  _CLFPCRo,
551
558
  0,
552
559
  [_PE, _PCN, _ELS, _AIL, _MSIL],
553
- [1, 0, 64 | 0, () => AdsInteractionLog, () => ManifestServiceInteractionLog],
560
+ [1, 0, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$],
554
561
  ];
555
- var CreateChannelRequest = [
562
+ var CreateChannelRequest$ = [
556
563
  3,
557
564
  n0,
558
565
  _CCR,
@@ -560,16 +567,16 @@ var CreateChannelRequest = [
560
567
  [_CN, _FS, _Ou, _PM, _T, _Ti, _TSC, _Aud],
561
568
  [
562
569
  [0, 1],
563
- () => SlateSource,
570
+ () => SlateSource$,
564
571
  () => RequestOutputs,
565
572
  0,
566
573
  [128 | 0, { [_jN]: _t }],
567
574
  0,
568
- () => TimeShiftConfiguration,
575
+ () => TimeShiftConfiguration$,
569
576
  64 | 0,
570
577
  ],
571
578
  ];
572
- var CreateChannelResponse = [
579
+ var CreateChannelResponse$ = [
573
580
  3,
574
581
  n0,
575
582
  _CCRr,
@@ -580,17 +587,17 @@ var CreateChannelResponse = [
580
587
  0,
581
588
  0,
582
589
  7,
583
- () => SlateSource,
590
+ () => SlateSource$,
584
591
  7,
585
592
  () => ResponseOutputs,
586
593
  0,
587
594
  [128 | 0, { [_jN]: _t }],
588
595
  0,
589
- () => TimeShiftConfiguration,
596
+ () => TimeShiftConfiguration$,
590
597
  64 | 0,
591
598
  ],
592
599
  ];
593
- var CreateLiveSourceRequest = [
600
+ var CreateLiveSourceRequest$ = [
594
601
  3,
595
602
  n0,
596
603
  _CLSR,
@@ -598,7 +605,7 @@ var CreateLiveSourceRequest = [
598
605
  [_HPC, _LSN, _SLN, _T],
599
606
  [() => HttpPackageConfigurations, [0, 1], [0, 1], [128 | 0, { [_jN]: _t }]],
600
607
  ];
601
- var CreateLiveSourceResponse = [
608
+ var CreateLiveSourceResponse$ = [
602
609
  3,
603
610
  n0,
604
611
  _CLSRr,
@@ -606,72 +613,72 @@ var CreateLiveSourceResponse = [
606
613
  [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _T],
607
614
  [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]],
608
615
  ];
609
- var CreatePrefetchScheduleRequest = [
616
+ var CreatePrefetchScheduleRequest$ = [
610
617
  3,
611
618
  n0,
612
619
  _CPSR,
613
620
  0,
614
621
  [_Co, _N, _PCN, _R, _RPC, _ST, _SI],
615
- [() => PrefetchConsumption, [0, 1], [0, 1], () => PrefetchRetrieval, () => RecurringPrefetchConfiguration, 0, 0],
622
+ [() => PrefetchConsumption$, [0, 1], [0, 1], () => PrefetchRetrieval$, () => RecurringPrefetchConfiguration$, 0, 0],
616
623
  ];
617
- var CreatePrefetchScheduleResponse = [
624
+ var CreatePrefetchScheduleResponse$ = [
618
625
  3,
619
626
  n0,
620
627
  _CPSRr,
621
628
  0,
622
629
  [_Ar, _Co, _N, _PCN, _R, _RPC, _ST, _SI],
623
- [0, () => PrefetchConsumption, 0, 0, () => PrefetchRetrieval, () => RecurringPrefetchConfiguration, 0, 0],
630
+ [0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, () => RecurringPrefetchConfiguration$, 0, 0],
624
631
  ];
625
- var CreateProgramRequest = [
632
+ var CreateProgramRequest$ = [
626
633
  3,
627
634
  n0,
628
635
  _CPR,
629
636
  0,
630
637
  [_ABd, _CN, _LSN, _PN, _SC, _SLN, _VSN, _AMu],
631
- [() => __listOfAdBreak, [0, 1], 0, [0, 1], () => ScheduleConfiguration, 0, 0, () => __listOfAudienceMedia],
638
+ [() => __listOfAdBreak, [0, 1], 0, [0, 1], () => ScheduleConfiguration$, 0, 0, () => __listOfAudienceMedia],
632
639
  ];
633
- var CreateProgramResponse = [
640
+ var CreateProgramResponse$ = [
634
641
  3,
635
642
  n0,
636
643
  _CPRr,
637
644
  0,
638
645
  [_ABd, _Ar, _CN, _CT, _LSN, _PN, _SST, _SLN, _VSN, _CR, _DM, _AMu],
639
- [() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange, 1, () => __listOfAudienceMedia],
646
+ [() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange$, 1, () => __listOfAudienceMedia],
640
647
  ];
641
- var CreateSourceLocationRequest = [
648
+ var CreateSourceLocationRequest$ = [
642
649
  3,
643
650
  n0,
644
651
  _CSLR,
645
652
  0,
646
653
  [_AC, _DSDC, _HC, _SDC, _SLN, _T],
647
654
  [
648
- () => AccessConfiguration,
649
- () => DefaultSegmentDeliveryConfiguration,
650
- () => HttpConfiguration,
655
+ () => AccessConfiguration$,
656
+ () => DefaultSegmentDeliveryConfiguration$,
657
+ () => HttpConfiguration$,
651
658
  () => __listOfSegmentDeliveryConfiguration,
652
659
  [0, 1],
653
660
  [128 | 0, { [_jN]: _t }],
654
661
  ],
655
662
  ];
656
- var CreateSourceLocationResponse = [
663
+ var CreateSourceLocationResponse$ = [
657
664
  3,
658
665
  n0,
659
666
  _CSLRr,
660
667
  0,
661
668
  [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _T],
662
669
  [
663
- () => AccessConfiguration,
670
+ () => AccessConfiguration$,
664
671
  0,
665
672
  7,
666
- () => DefaultSegmentDeliveryConfiguration,
667
- () => HttpConfiguration,
673
+ () => DefaultSegmentDeliveryConfiguration$,
674
+ () => HttpConfiguration$,
668
675
  7,
669
676
  () => __listOfSegmentDeliveryConfiguration,
670
677
  0,
671
678
  [128 | 0, { [_jN]: _t }],
672
679
  ],
673
680
  ];
674
- var CreateVodSourceRequest = [
681
+ var CreateVodSourceRequest$ = [
675
682
  3,
676
683
  n0,
677
684
  _CVSR,
@@ -679,7 +686,7 @@ var CreateVodSourceRequest = [
679
686
  [_HPC, _SLN, _T, _VSN],
680
687
  [() => HttpPackageConfigurations, [0, 1], [128 | 0, { [_jN]: _t }], [0, 1]],
681
688
  ];
682
- var CreateVodSourceResponse = [
689
+ var CreateVodSourceResponse$ = [
683
690
  3,
684
691
  n0,
685
692
  _CVSRr,
@@ -687,15 +694,15 @@ var CreateVodSourceResponse = [
687
694
  [_Ar, _CT, _HPC, _LMT, _SLN, _T, _VSN],
688
695
  [0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0],
689
696
  ];
690
- var DashConfiguration = [3, n0, _DC, 0, [_MEP, _ML, _OMT], [0, 0, 0]];
691
- var DashConfigurationForPut = [3, n0, _DCFP, 0, [_ML, _OMT], [0, 0]];
692
- var DashPlaylistSettings = [3, n0, _DPS, 0, [_MWS, _MBTS, _MUPS, _SPDS], [1, 1, 1, 1]];
693
- var DefaultSegmentDeliveryConfiguration = [3, n0, _DSDC, 0, [_BU], [0]];
694
- var DeleteChannelPolicyRequest = [3, n0, _DCPR, 0, [_CN], [[0, 1]]];
695
- var DeleteChannelPolicyResponse = [3, n0, _DCPRe, 0, [], []];
696
- var DeleteChannelRequest = [3, n0, _DCR, 0, [_CN], [[0, 1]]];
697
- var DeleteChannelResponse = [3, n0, _DCRe, 0, [], []];
698
- var DeleteLiveSourceRequest = [
697
+ var DashConfiguration$ = [3, n0, _DC, 0, [_MEP, _ML, _OMT], [0, 0, 0]];
698
+ var DashConfigurationForPut$ = [3, n0, _DCFP, 0, [_ML, _OMT], [0, 0]];
699
+ var DashPlaylistSettings$ = [3, n0, _DPS, 0, [_MWS, _MBTS, _MUPS, _SPDS], [1, 1, 1, 1]];
700
+ var DefaultSegmentDeliveryConfiguration$ = [3, n0, _DSDC, 0, [_BU], [0]];
701
+ var DeleteChannelPolicyRequest$ = [3, n0, _DCPR, 0, [_CN], [[0, 1]]];
702
+ var DeleteChannelPolicyResponse$ = [3, n0, _DCPRe, 0, [], []];
703
+ var DeleteChannelRequest$ = [3, n0, _DCR, 0, [_CN], [[0, 1]]];
704
+ var DeleteChannelResponse$ = [3, n0, _DCRe, 0, [], []];
705
+ var DeleteLiveSourceRequest$ = [
699
706
  3,
700
707
  n0,
701
708
  _DLSR,
@@ -706,10 +713,10 @@ var DeleteLiveSourceRequest = [
706
713
  [0, 1],
707
714
  ],
708
715
  ];
709
- var DeleteLiveSourceResponse = [3, n0, _DLSRe, 0, [], []];
710
- var DeletePlaybackConfigurationRequest = [3, n0, _DPCR, 0, [_N], [[0, 1]]];
711
- var DeletePlaybackConfigurationResponse = [3, n0, _DPCRe, 0, [], []];
712
- var DeletePrefetchScheduleRequest = [
716
+ var DeleteLiveSourceResponse$ = [3, n0, _DLSRe, 0, [], []];
717
+ var DeletePlaybackConfigurationRequest$ = [3, n0, _DPCR, 0, [_N], [[0, 1]]];
718
+ var DeletePlaybackConfigurationResponse$ = [3, n0, _DPCRe, 0, [], []];
719
+ var DeletePrefetchScheduleRequest$ = [
713
720
  3,
714
721
  n0,
715
722
  _DPSR,
@@ -720,8 +727,8 @@ var DeletePrefetchScheduleRequest = [
720
727
  [0, 1],
721
728
  ],
722
729
  ];
723
- var DeletePrefetchScheduleResponse = [3, n0, _DPSRe, 0, [], []];
724
- var DeleteProgramRequest = [
730
+ var DeletePrefetchScheduleResponse$ = [3, n0, _DPSRe, 0, [], []];
731
+ var DeleteProgramRequest$ = [
725
732
  3,
726
733
  n0,
727
734
  _DPR,
@@ -732,10 +739,10 @@ var DeleteProgramRequest = [
732
739
  [0, 1],
733
740
  ],
734
741
  ];
735
- var DeleteProgramResponse = [3, n0, _DPRe, 0, [], []];
736
- var DeleteSourceLocationRequest = [3, n0, _DSLR, 0, [_SLN], [[0, 1]]];
737
- var DeleteSourceLocationResponse = [3, n0, _DSLRe, 0, [], []];
738
- var DeleteVodSourceRequest = [
742
+ var DeleteProgramResponse$ = [3, n0, _DPRe, 0, [], []];
743
+ var DeleteSourceLocationRequest$ = [3, n0, _DSLR, 0, [_SLN], [[0, 1]]];
744
+ var DeleteSourceLocationResponse$ = [3, n0, _DSLRe, 0, [], []];
745
+ var DeleteVodSourceRequest$ = [
739
746
  3,
740
747
  n0,
741
748
  _DVSR,
@@ -746,9 +753,9 @@ var DeleteVodSourceRequest = [
746
753
  [0, 1],
747
754
  ],
748
755
  ];
749
- var DeleteVodSourceResponse = [3, n0, _DVSRe, 0, [], []];
750
- var DescribeChannelRequest = [3, n0, _DCRes, 0, [_CN], [[0, 1]]];
751
- var DescribeChannelResponse = [
756
+ var DeleteVodSourceResponse$ = [3, n0, _DVSRe, 0, [], []];
757
+ var DescribeChannelRequest$ = [3, n0, _DCRes, 0, [_CN], [[0, 1]]];
758
+ var DescribeChannelResponse$ = [
752
759
  3,
753
760
  n0,
754
761
  _DCResc,
@@ -759,18 +766,18 @@ var DescribeChannelResponse = [
759
766
  0,
760
767
  0,
761
768
  7,
762
- () => SlateSource,
769
+ () => SlateSource$,
763
770
  7,
764
771
  () => ResponseOutputs,
765
772
  0,
766
773
  [128 | 0, { [_jN]: _t }],
767
774
  0,
768
- () => LogConfigurationForChannel,
769
- () => TimeShiftConfiguration,
775
+ () => LogConfigurationForChannel$,
776
+ () => TimeShiftConfiguration$,
770
777
  64 | 0,
771
778
  ],
772
779
  ];
773
- var DescribeLiveSourceRequest = [
780
+ var DescribeLiveSourceRequest$ = [
774
781
  3,
775
782
  n0,
776
783
  _DLSRes,
@@ -781,7 +788,7 @@ var DescribeLiveSourceRequest = [
781
788
  [0, 1],
782
789
  ],
783
790
  ];
784
- var DescribeLiveSourceResponse = [
791
+ var DescribeLiveSourceResponse$ = [
785
792
  3,
786
793
  n0,
787
794
  _DLSResc,
@@ -789,7 +796,7 @@ var DescribeLiveSourceResponse = [
789
796
  [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _T],
790
797
  [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]],
791
798
  ];
792
- var DescribeProgramRequest = [
799
+ var DescribeProgramRequest$ = [
793
800
  3,
794
801
  n0,
795
802
  _DPRes,
@@ -800,34 +807,34 @@ var DescribeProgramRequest = [
800
807
  [0, 1],
801
808
  ],
802
809
  ];
803
- var DescribeProgramResponse = [
810
+ var DescribeProgramResponse$ = [
804
811
  3,
805
812
  n0,
806
813
  _DPResc,
807
814
  0,
808
815
  [_ABd, _Ar, _CN, _CT, _LSN, _PN, _SST, _SLN, _VSN, _CR, _DM, _AMu],
809
- [() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange, 1, () => __listOfAudienceMedia],
816
+ [() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange$, 1, () => __listOfAudienceMedia],
810
817
  ];
811
- var DescribeSourceLocationRequest = [3, n0, _DSLRes, 0, [_SLN], [[0, 1]]];
812
- var DescribeSourceLocationResponse = [
818
+ var DescribeSourceLocationRequest$ = [3, n0, _DSLRes, 0, [_SLN], [[0, 1]]];
819
+ var DescribeSourceLocationResponse$ = [
813
820
  3,
814
821
  n0,
815
822
  _DSLResc,
816
823
  0,
817
824
  [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _T],
818
825
  [
819
- () => AccessConfiguration,
826
+ () => AccessConfiguration$,
820
827
  0,
821
828
  7,
822
- () => DefaultSegmentDeliveryConfiguration,
823
- () => HttpConfiguration,
829
+ () => DefaultSegmentDeliveryConfiguration$,
830
+ () => HttpConfiguration$,
824
831
  7,
825
832
  () => __listOfSegmentDeliveryConfiguration,
826
833
  0,
827
834
  [128 | 0, { [_jN]: _t }],
828
835
  ],
829
836
  ];
830
- var DescribeVodSourceRequest = [
837
+ var DescribeVodSourceRequest$ = [
831
838
  3,
832
839
  n0,
833
840
  _DVSRes,
@@ -838,7 +845,7 @@ var DescribeVodSourceRequest = [
838
845
  [0, 1],
839
846
  ],
840
847
  ];
841
- var DescribeVodSourceResponse = [
848
+ var DescribeVodSourceResponse$ = [
842
849
  3,
843
850
  n0,
844
851
  _DVSResc,
@@ -846,9 +853,9 @@ var DescribeVodSourceResponse = [
846
853
  [_ABOd, _Ar, _CT, _HPC, _LMT, _SLN, _T, _VSN],
847
854
  [() => AdBreakOpportunities, 0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0],
848
855
  ];
849
- var GetChannelPolicyRequest = [3, n0, _GCPR, 0, [_CN], [[0, 1]]];
850
- var GetChannelPolicyResponse = [3, n0, _GCPRe, 0, [_P], [0]];
851
- var GetChannelScheduleRequest = [
856
+ var GetChannelPolicyRequest$ = [3, n0, _GCPR, 0, [_CN], [[0, 1]]];
857
+ var GetChannelPolicyResponse$ = [3, n0, _GCPRe, 0, [_P], [0]];
858
+ var GetChannelScheduleRequest$ = [
852
859
  3,
853
860
  n0,
854
861
  _GCSR,
@@ -862,7 +869,7 @@ var GetChannelScheduleRequest = [
862
869
  [0, { [_hQ]: _a }],
863
870
  ],
864
871
  ];
865
- var GetChannelScheduleResponse = [
872
+ var GetChannelScheduleResponse$ = [
866
873
  3,
867
874
  n0,
868
875
  _GCSRe,
@@ -870,8 +877,8 @@ var GetChannelScheduleResponse = [
870
877
  [_I, _NT],
871
878
  [() => __listOfScheduleEntry, 0],
872
879
  ];
873
- var GetPlaybackConfigurationRequest = [3, n0, _GPCR, 0, [_N], [[0, 1]]];
874
- var GetPlaybackConfigurationResponse = [
880
+ var GetPlaybackConfigurationRequest$ = [3, n0, _GPCR, 0, [_N], [[0, 1]]];
881
+ var GetPlaybackConfigurationResponse$ = [
875
882
  3,
876
883
  n0,
877
884
  _GPCRe,
@@ -898,19 +905,20 @@ var GetPlaybackConfigurationResponse = [
898
905
  _TPN,
899
906
  _VCSU,
900
907
  _ACC,
908
+ _ADSC,
901
909
  ],
902
910
  [
903
911
  0,
904
- () => AvailSuppression,
905
- () => Bumper,
906
- () => CdnConfiguration,
912
+ () => AvailSuppression$,
913
+ () => Bumper$,
914
+ () => CdnConfiguration$,
907
915
  [2, n0, _CAR, 0, 0, 128 | 0],
908
- () => DashConfiguration,
909
- () => HlsConfiguration,
916
+ () => DashConfiguration$,
917
+ () => HlsConfiguration$,
910
918
  0,
911
- () => LivePreRollConfiguration,
912
- () => LogConfiguration,
913
- () => ManifestProcessingRules,
919
+ () => LivePreRollConfiguration$,
920
+ () => LogConfiguration$,
921
+ () => ManifestProcessingRules$,
914
922
  0,
915
923
  1,
916
924
  0,
@@ -920,10 +928,11 @@ var GetPlaybackConfigurationResponse = [
920
928
  [128 | 0, { [_jN]: _t }],
921
929
  0,
922
930
  0,
923
- () => AdConditioningConfiguration,
931
+ () => AdConditioningConfiguration$,
932
+ () => AdDecisionServerConfiguration$,
924
933
  ],
925
934
  ];
926
- var GetPrefetchScheduleRequest = [
935
+ var GetPrefetchScheduleRequest$ = [
927
936
  3,
928
937
  n0,
929
938
  _GPSR,
@@ -934,20 +943,21 @@ var GetPrefetchScheduleRequest = [
934
943
  [0, 1],
935
944
  ],
936
945
  ];
937
- var GetPrefetchScheduleResponse = [
946
+ var GetPrefetchScheduleResponse$ = [
938
947
  3,
939
948
  n0,
940
949
  _GPSRe,
941
950
  0,
942
951
  [_Ar, _Co, _N, _PCN, _R, _ST, _RPC, _SI],
943
- [0, () => PrefetchConsumption, 0, 0, () => PrefetchRetrieval, 0, () => RecurringPrefetchConfiguration, 0],
952
+ [0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, 0, () => RecurringPrefetchConfiguration$, 0],
944
953
  ];
945
- var HlsConfiguration = [3, n0, _HCl, 0, [_MEP], [0]];
946
- var HlsPlaylistSettings = [3, n0, _HPS, 0, [_MWS, _AMT], [1, 64 | 0]];
947
- var HttpConfiguration = [3, n0, _HC, 0, [_BU], [0]];
948
- var HttpPackageConfiguration = [3, n0, _HPCt, 0, [_Pa, _SG, _Ty], [0, 0, 0]];
949
- var KeyValuePair = [3, n0, _KVP, 0, [_K, _V], [0, 0]];
950
- var ListAlertsRequest = [
954
+ var HlsConfiguration$ = [3, n0, _HCl, 0, [_MEP], [0]];
955
+ var HlsPlaylistSettings$ = [3, n0, _HPS, 0, [_MWS, _AMT], [1, 64 | 0]];
956
+ var HttpConfiguration$ = [3, n0, _HC, 0, [_BU], [0]];
957
+ var HttpPackageConfiguration$ = [3, n0, _HPCt, 0, [_Pa, _SG, _Ty], [0, 0, 0]];
958
+ var HttpRequest$ = [3, n0, _HR, 0, [_Met, _Bo, _H, _CRo], [0, 0, 128 | 0, 0]];
959
+ var KeyValuePair$ = [3, n0, _KVP, 0, [_K, _V], [0, 0]];
960
+ var ListAlertsRequest$ = [
951
961
  3,
952
962
  n0,
953
963
  _LAR,
@@ -959,8 +969,8 @@ var ListAlertsRequest = [
959
969
  [0, { [_hQ]: _rA }],
960
970
  ],
961
971
  ];
962
- var ListAlertsResponse = [3, n0, _LARi, 0, [_I, _NT], [() => __listOfAlert, 0]];
963
- var ListChannelsRequest = [
972
+ var ListAlertsResponse$ = [3, n0, _LARi, 0, [_I, _NT], [() => __listOfAlert, 0]];
973
+ var ListChannelsRequest$ = [
964
974
  3,
965
975
  n0,
966
976
  _LCR,
@@ -971,8 +981,8 @@ var ListChannelsRequest = [
971
981
  [0, { [_hQ]: _nT }],
972
982
  ],
973
983
  ];
974
- var ListChannelsResponse = [3, n0, _LCRi, 0, [_I, _NT], [[() => __listOfChannel, 0], 0]];
975
- var ListLiveSourcesRequest = [
984
+ var ListChannelsResponse$ = [3, n0, _LCRi, 0, [_I, _NT], [[() => __listOfChannel, 0], 0]];
985
+ var ListLiveSourcesRequest$ = [
976
986
  3,
977
987
  n0,
978
988
  _LLSR,
@@ -984,7 +994,7 @@ var ListLiveSourcesRequest = [
984
994
  [0, 1],
985
995
  ],
986
996
  ];
987
- var ListLiveSourcesResponse = [
997
+ var ListLiveSourcesResponse$ = [
988
998
  3,
989
999
  n0,
990
1000
  _LLSRi,
@@ -992,7 +1002,7 @@ var ListLiveSourcesResponse = [
992
1002
  [_I, _NT],
993
1003
  [[() => __listOfLiveSource, 0], 0],
994
1004
  ];
995
- var ListPlaybackConfigurationsRequest = [
1005
+ var ListPlaybackConfigurationsRequest$ = [
996
1006
  3,
997
1007
  n0,
998
1008
  _LPCR,
@@ -1003,7 +1013,7 @@ var ListPlaybackConfigurationsRequest = [
1003
1013
  [0, { [_hQ]: _NT }],
1004
1014
  ],
1005
1015
  ];
1006
- var ListPlaybackConfigurationsResponse = [
1016
+ var ListPlaybackConfigurationsResponse$ = [
1007
1017
  3,
1008
1018
  n0,
1009
1019
  _LPCRi,
@@ -1011,7 +1021,7 @@ var ListPlaybackConfigurationsResponse = [
1011
1021
  [_I, _NT],
1012
1022
  [[() => __listOfPlaybackConfiguration, 0], 0],
1013
1023
  ];
1014
- var ListPrefetchSchedulesRequest = [
1024
+ var ListPrefetchSchedulesRequest$ = [
1015
1025
  3,
1016
1026
  n0,
1017
1027
  _LPSR,
@@ -1019,7 +1029,7 @@ var ListPrefetchSchedulesRequest = [
1019
1029
  [_MR, _NT, _PCN, _ST, _SI],
1020
1030
  [1, 0, [0, 1], 0, 0],
1021
1031
  ];
1022
- var ListPrefetchSchedulesResponse = [
1032
+ var ListPrefetchSchedulesResponse$ = [
1023
1033
  3,
1024
1034
  n0,
1025
1035
  _LPSRi,
@@ -1027,7 +1037,7 @@ var ListPrefetchSchedulesResponse = [
1027
1037
  [_I, _NT],
1028
1038
  [() => __listOfPrefetchSchedule, 0],
1029
1039
  ];
1030
- var ListSourceLocationsRequest = [
1040
+ var ListSourceLocationsRequest$ = [
1031
1041
  3,
1032
1042
  n0,
1033
1043
  _LSLR,
@@ -1038,7 +1048,7 @@ var ListSourceLocationsRequest = [
1038
1048
  [0, { [_hQ]: _nT }],
1039
1049
  ],
1040
1050
  ];
1041
- var ListSourceLocationsResponse = [
1051
+ var ListSourceLocationsResponse$ = [
1042
1052
  3,
1043
1053
  n0,
1044
1054
  _LSLRi,
@@ -1046,9 +1056,9 @@ var ListSourceLocationsResponse = [
1046
1056
  [_I, _NT],
1047
1057
  [[() => __listOfSourceLocation, 0], 0],
1048
1058
  ];
1049
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
1050
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[128 | 0, { [_jN]: _t }]]];
1051
- var ListVodSourcesRequest = [
1059
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
1060
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [[128 | 0, { [_jN]: _t }]]];
1061
+ var ListVodSourcesRequest$ = [
1052
1062
  3,
1053
1063
  n0,
1054
1064
  _LVSR,
@@ -1060,7 +1070,7 @@ var ListVodSourcesRequest = [
1060
1070
  [0, 1],
1061
1071
  ],
1062
1072
  ];
1063
- var ListVodSourcesResponse = [
1073
+ var ListVodSourcesResponse$ = [
1064
1074
  3,
1065
1075
  n0,
1066
1076
  _LVSRi,
@@ -1068,8 +1078,8 @@ var ListVodSourcesResponse = [
1068
1078
  [_I, _NT],
1069
1079
  [[() => __listOfVodSource, 0], 0],
1070
1080
  ];
1071
- var LivePreRollConfiguration = [3, n0, _LPRC, 0, [_ADSU, _MDS], [0, 1]];
1072
- var LiveSource = [
1081
+ var LivePreRollConfiguration$ = [3, n0, _LPRC, 0, [_ADSU, _MDS], [0, 1]];
1082
+ var LiveSource$ = [
1073
1083
  3,
1074
1084
  n0,
1075
1085
  _LS,
@@ -1077,18 +1087,18 @@ var LiveSource = [
1077
1087
  [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _T],
1078
1088
  [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]],
1079
1089
  ];
1080
- var LogConfiguration = [
1090
+ var LogConfiguration$ = [
1081
1091
  3,
1082
1092
  n0,
1083
1093
  _LC,
1084
1094
  0,
1085
1095
  [_PE, _ELS, _AIL, _MSIL],
1086
- [1, 64 | 0, () => AdsInteractionLog, () => ManifestServiceInteractionLog],
1096
+ [1, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$],
1087
1097
  ];
1088
- var LogConfigurationForChannel = [3, n0, _LCFC, 0, [_LT], [64 | 0]];
1089
- var ManifestProcessingRules = [3, n0, _MPR, 0, [_AMP], [() => AdMarkerPassthrough]];
1090
- var ManifestServiceInteractionLog = [3, n0, _MSIL, 0, [_EET], [64 | 0]];
1091
- var PlaybackConfiguration = [
1098
+ var LogConfigurationForChannel$ = [3, n0, _LCFC, 0, [_LT], [64 | 0]];
1099
+ var ManifestProcessingRules$ = [3, n0, _MPR, 0, [_AMP], [() => AdMarkerPassthrough$]];
1100
+ var ManifestServiceInteractionLog$ = [3, n0, _MSIL, 0, [_EET], [64 | 0]];
1101
+ var PlaybackConfiguration$ = [
1092
1102
  3,
1093
1103
  n0,
1094
1104
  _PC,
@@ -1115,19 +1125,20 @@ var PlaybackConfiguration = [
1115
1125
  _TPN,
1116
1126
  _VCSU,
1117
1127
  _ACC,
1128
+ _ADSC,
1118
1129
  ],
1119
1130
  [
1120
1131
  0,
1121
- () => AvailSuppression,
1122
- () => Bumper,
1123
- () => CdnConfiguration,
1132
+ () => AvailSuppression$,
1133
+ () => Bumper$,
1134
+ () => CdnConfiguration$,
1124
1135
  [2, n0, _CAR, 0, 0, 128 | 0],
1125
- () => DashConfiguration,
1126
- () => HlsConfiguration,
1136
+ () => DashConfiguration$,
1137
+ () => HlsConfiguration$,
1127
1138
  0,
1128
- () => LivePreRollConfiguration,
1129
- () => LogConfiguration,
1130
- () => ManifestProcessingRules,
1139
+ () => LivePreRollConfiguration$,
1140
+ () => LogConfiguration$,
1141
+ () => ManifestProcessingRules$,
1131
1142
  0,
1132
1143
  1,
1133
1144
  0,
@@ -1137,10 +1148,11 @@ var PlaybackConfiguration = [
1137
1148
  [128 | 0, { [_jN]: _t }],
1138
1149
  0,
1139
1150
  0,
1140
- () => AdConditioningConfiguration,
1151
+ () => AdConditioningConfiguration$,
1152
+ () => AdDecisionServerConfiguration$,
1141
1153
  ],
1142
1154
  ];
1143
- var PrefetchConsumption = [
1155
+ var PrefetchConsumption$ = [
1144
1156
  3,
1145
1157
  n0,
1146
1158
  _PCr,
@@ -1148,50 +1160,51 @@ var PrefetchConsumption = [
1148
1160
  [_AMC, _ET, _STt],
1149
1161
  [() => __listOfAvailMatchingCriteria, 7, 7],
1150
1162
  ];
1151
- var PrefetchRetrieval = [
1163
+ var PrefetchRetrieval$ = [
1152
1164
  3,
1153
1165
  n0,
1154
1166
  _PR,
1155
1167
  0,
1156
1168
  [_DVy, _ET, _STt, _TST, _TSRW, _TSTC],
1157
- [128 | 0, 7, 7, 0, () => TrafficShapingRetrievalWindow, () => TrafficShapingTpsConfiguration],
1169
+ [128 | 0, 7, 7, 0, () => TrafficShapingRetrievalWindow$, () => TrafficShapingTpsConfiguration$],
1158
1170
  ];
1159
- var PrefetchSchedule = [
1171
+ var PrefetchSchedule$ = [
1160
1172
  3,
1161
1173
  n0,
1162
1174
  _PS,
1163
1175
  0,
1164
1176
  [_Ar, _Co, _N, _PCN, _R, _ST, _RPC, _SI],
1165
- [0, () => PrefetchConsumption, 0, 0, () => PrefetchRetrieval, 0, () => RecurringPrefetchConfiguration, 0],
1177
+ [0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, 0, () => RecurringPrefetchConfiguration$, 0],
1166
1178
  ];
1167
- var PutChannelPolicyRequest = [3, n0, _PCPR, 0, [_CN, _P], [[0, 1], 0]];
1168
- var PutChannelPolicyResponse = [3, n0, _PCPRu, 0, [], []];
1169
- var PutPlaybackConfigurationRequest = [
1179
+ var PutChannelPolicyRequest$ = [3, n0, _PCPR, 0, [_CN, _P], [[0, 1], 0]];
1180
+ var PutChannelPolicyResponse$ = [3, n0, _PCPRu, 0, [], []];
1181
+ var PutPlaybackConfigurationRequest$ = [
1170
1182
  3,
1171
1183
  n0,
1172
1184
  _PPCR,
1173
1185
  0,
1174
- [_ADSU, _AS, _B, _CC, _CA, _DC, _IM, _LPRC, _MPR, _N, _PTS, _SAU, _T, _TPN, _VCSU, _ACC],
1186
+ [_ADSU, _AS, _B, _CC, _CA, _DC, _IM, _LPRC, _MPR, _N, _PTS, _SAU, _T, _TPN, _VCSU, _ACC, _ADSC],
1175
1187
  [
1176
1188
  0,
1177
- () => AvailSuppression,
1178
- () => Bumper,
1179
- () => CdnConfiguration,
1189
+ () => AvailSuppression$,
1190
+ () => Bumper$,
1191
+ () => CdnConfiguration$,
1180
1192
  [2, n0, _CARo, 0, 0, 128 | 0],
1181
- () => DashConfigurationForPut,
1193
+ () => DashConfigurationForPut$,
1182
1194
  0,
1183
- () => LivePreRollConfiguration,
1184
- () => ManifestProcessingRules,
1195
+ () => LivePreRollConfiguration$,
1196
+ () => ManifestProcessingRules$,
1185
1197
  0,
1186
1198
  1,
1187
1199
  0,
1188
1200
  [128 | 0, { [_jN]: _t }],
1189
1201
  0,
1190
1202
  0,
1191
- () => AdConditioningConfiguration,
1203
+ () => AdConditioningConfiguration$,
1204
+ () => AdDecisionServerConfiguration$,
1192
1205
  ],
1193
1206
  ];
1194
- var PutPlaybackConfigurationResponse = [
1207
+ var PutPlaybackConfigurationResponse$ = [
1195
1208
  3,
1196
1209
  n0,
1197
1210
  _PPCRu,
@@ -1218,19 +1231,20 @@ var PutPlaybackConfigurationResponse = [
1218
1231
  _TPN,
1219
1232
  _VCSU,
1220
1233
  _ACC,
1234
+ _ADSC,
1221
1235
  ],
1222
1236
  [
1223
1237
  0,
1224
- () => AvailSuppression,
1225
- () => Bumper,
1226
- () => CdnConfiguration,
1238
+ () => AvailSuppression$,
1239
+ () => Bumper$,
1240
+ () => CdnConfiguration$,
1227
1241
  [2, n0, _CAR, 0, 0, 128 | 0],
1228
- () => DashConfiguration,
1229
- () => HlsConfiguration,
1242
+ () => DashConfiguration$,
1243
+ () => HlsConfiguration$,
1230
1244
  0,
1231
- () => LivePreRollConfiguration,
1232
- () => LogConfiguration,
1233
- () => ManifestProcessingRules,
1245
+ () => LivePreRollConfiguration$,
1246
+ () => LogConfiguration$,
1247
+ () => ManifestProcessingRules$,
1234
1248
  0,
1235
1249
  1,
1236
1250
  0,
@@ -1240,10 +1254,11 @@ var PutPlaybackConfigurationResponse = [
1240
1254
  [128 | 0, { [_jN]: _t }],
1241
1255
  0,
1242
1256
  0,
1243
- () => AdConditioningConfiguration,
1257
+ () => AdConditioningConfiguration$,
1258
+ () => AdDecisionServerConfiguration$,
1244
1259
  ],
1245
1260
  ];
1246
- var RecurringConsumption = [
1261
+ var RecurringConsumption$ = [
1247
1262
  3,
1248
1263
  n0,
1249
1264
  _RC,
@@ -1251,48 +1266,48 @@ var RecurringConsumption = [
1251
1266
  [_RAES, _AMC],
1252
1267
  [1, () => __listOfAvailMatchingCriteria],
1253
1268
  ];
1254
- var RecurringPrefetchConfiguration = [
1269
+ var RecurringPrefetchConfiguration$ = [
1255
1270
  3,
1256
1271
  n0,
1257
1272
  _RPC,
1258
1273
  0,
1259
1274
  [_STt, _ET, _RC, _RR],
1260
- [7, 7, () => RecurringConsumption, () => RecurringRetrieval],
1275
+ [7, 7, () => RecurringConsumption$, () => RecurringRetrieval$],
1261
1276
  ];
1262
- var RecurringRetrieval = [
1277
+ var RecurringRetrieval$ = [
1263
1278
  3,
1264
1279
  n0,
1265
1280
  _RR,
1266
1281
  0,
1267
1282
  [_DVy, _DAAES, _TST, _TSRW, _TSTC],
1268
- [128 | 0, 1, 0, () => TrafficShapingRetrievalWindow, () => TrafficShapingTpsConfiguration],
1283
+ [128 | 0, 1, 0, () => TrafficShapingRetrievalWindow$, () => TrafficShapingTpsConfiguration$],
1269
1284
  ];
1270
- var RequestOutputItem = [
1285
+ var RequestOutputItem$ = [
1271
1286
  3,
1272
1287
  n0,
1273
1288
  _ROI,
1274
1289
  0,
1275
1290
  [_DPS, _HPS, _MN, _SG],
1276
- [() => DashPlaylistSettings, () => HlsPlaylistSettings, 0, 0],
1291
+ [() => DashPlaylistSettings$, () => HlsPlaylistSettings$, 0, 0],
1277
1292
  ];
1278
- var ResponseOutputItem = [
1293
+ var ResponseOutputItem$ = [
1279
1294
  3,
1280
1295
  n0,
1281
1296
  _ROIe,
1282
1297
  0,
1283
1298
  [_DPS, _HPS, _MN, _PU, _SG],
1284
- [() => DashPlaylistSettings, () => HlsPlaylistSettings, 0, 0, 0],
1299
+ [() => DashPlaylistSettings$, () => HlsPlaylistSettings$, 0, 0, 0],
1285
1300
  ];
1286
- var ScheduleAdBreak = [3, n0, _SAB, 0, [_ADS, _AST, _SLN, _VSN], [1, 7, 0, 0]];
1287
- var ScheduleConfiguration = [
1301
+ var ScheduleAdBreak$ = [3, n0, _SAB, 0, [_ADS, _AST, _SLN, _VSN], [1, 7, 0, 0]];
1302
+ var ScheduleConfiguration$ = [
1288
1303
  3,
1289
1304
  n0,
1290
1305
  _SC,
1291
1306
  0,
1292
1307
  [_Tr, _CR],
1293
- [() => Transition, () => ClipRange],
1308
+ [() => Transition$, () => ClipRange$],
1294
1309
  ];
1295
- var ScheduleEntry = [
1310
+ var ScheduleEntry$ = [
1296
1311
  3,
1297
1312
  n0,
1298
1313
  _SE,
@@ -1300,7 +1315,7 @@ var ScheduleEntry = [
1300
1315
  [_ADS, _AST, _Ar, _CN, _LSN, _PN, _SABc, _SET, _SLN, _VSN, _Aud],
1301
1316
  [1, 7, 0, 0, 0, 0, () => __listOfScheduleAdBreak, 0, 0, 0, 64 | 0],
1302
1317
  ];
1303
- var SecretsManagerAccessTokenConfiguration = [
1318
+ var SecretsManagerAccessTokenConfiguration$ = [
1304
1319
  3,
1305
1320
  n0,
1306
1321
  _SMATC,
@@ -1308,7 +1323,7 @@ var SecretsManagerAccessTokenConfiguration = [
1308
1323
  [_HN, _SA, _SSK],
1309
1324
  [0, 0, 0],
1310
1325
  ];
1311
- var SegmentationDescriptor = [
1326
+ var SegmentationDescriptor$ = [
1312
1327
  3,
1313
1328
  n0,
1314
1329
  _SD,
@@ -1316,32 +1331,32 @@ var SegmentationDescriptor = [
1316
1331
  [_SEI, _SUT, _SUe, _STI, _SN, _SEe, _SSN, _SSE],
1317
1332
  [1, 1, 0, 1, 1, 1, 1, 1],
1318
1333
  ];
1319
- var SegmentDeliveryConfiguration = [3, n0, _SDCe, 0, [_BU, _N], [0, 0]];
1320
- var SlateSource = [3, n0, _SS, 0, [_SLN, _VSN], [0, 0]];
1321
- var SourceLocation = [
1334
+ var SegmentDeliveryConfiguration$ = [3, n0, _SDCe, 0, [_BU, _N], [0, 0]];
1335
+ var SlateSource$ = [3, n0, _SS, 0, [_SLN, _VSN], [0, 0]];
1336
+ var SourceLocation$ = [
1322
1337
  3,
1323
1338
  n0,
1324
1339
  _SL,
1325
1340
  0,
1326
1341
  [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _T],
1327
1342
  [
1328
- () => AccessConfiguration,
1343
+ () => AccessConfiguration$,
1329
1344
  0,
1330
1345
  7,
1331
- () => DefaultSegmentDeliveryConfiguration,
1332
- () => HttpConfiguration,
1346
+ () => DefaultSegmentDeliveryConfiguration$,
1347
+ () => HttpConfiguration$,
1333
1348
  7,
1334
1349
  () => __listOfSegmentDeliveryConfiguration,
1335
1350
  0,
1336
1351
  [128 | 0, { [_jN]: _t }],
1337
1352
  ],
1338
1353
  ];
1339
- var SpliceInsertMessage = [3, n0, _SIM, 0, [_AN, _AE, _SEIp, _UPI], [1, 1, 1, 1]];
1340
- var StartChannelRequest = [3, n0, _SCR, 0, [_CN], [[0, 1]]];
1341
- var StartChannelResponse = [3, n0, _SCRt, 0, [], []];
1342
- var StopChannelRequest = [3, n0, _SCRto, 0, [_CN], [[0, 1]]];
1343
- var StopChannelResponse = [3, n0, _SCRtop, 0, [], []];
1344
- var TagResourceRequest = [
1354
+ var SpliceInsertMessage$ = [3, n0, _SIM, 0, [_AN, _AE, _SEIp, _UPI], [1, 1, 1, 1]];
1355
+ var StartChannelRequest$ = [3, n0, _SCR, 0, [_CN], [[0, 1]]];
1356
+ var StartChannelResponse$ = [3, n0, _SCRt, 0, [], []];
1357
+ var StopChannelRequest$ = [3, n0, _SCRto, 0, [_CN], [[0, 1]]];
1358
+ var StopChannelResponse$ = [3, n0, _SCRtop, 0, [], []];
1359
+ var TagResourceRequest$ = [
1345
1360
  3,
1346
1361
  n0,
1347
1362
  _TRR,
@@ -1352,12 +1367,12 @@ var TagResourceRequest = [
1352
1367
  [128 | 0, { [_jN]: _t }],
1353
1368
  ],
1354
1369
  ];
1355
- var TimeShiftConfiguration = [3, n0, _TSC, 0, [_MTDS], [1]];
1356
- var TimeSignalMessage = [3, n0, _TSM, 0, [_SDe], [() => SegmentationDescriptorList]];
1357
- var TrafficShapingRetrievalWindow = [3, n0, _TSRW, 0, [_RWDS], [1]];
1358
- var TrafficShapingTpsConfiguration = [3, n0, _TSTC, 0, [_PT, _PCU], [1, 1]];
1359
- var Transition = [3, n0, _Tr, 0, [_DM, _RP, _RPe, _SSTM, _Ty], [1, 0, 0, 1, 0]];
1360
- var UntagResourceRequest = [
1370
+ var TimeShiftConfiguration$ = [3, n0, _TSC, 0, [_MTDS], [1]];
1371
+ var TimeSignalMessage$ = [3, n0, _TSM, 0, [_SDe], [() => SegmentationDescriptorList]];
1372
+ var TrafficShapingRetrievalWindow$ = [3, n0, _TSRW, 0, [_RWDS], [1]];
1373
+ var TrafficShapingTpsConfiguration$ = [3, n0, _TSTC, 0, [_PT, _PCU], [1, 1]];
1374
+ var Transition$ = [3, n0, _Tr, 0, [_DM, _RP, _RPe, _SSTM, _Ty], [1, 0, 0, 1, 0]];
1375
+ var UntagResourceRequest$ = [
1361
1376
  3,
1362
1377
  n0,
1363
1378
  _URR,
@@ -1368,15 +1383,15 @@ var UntagResourceRequest = [
1368
1383
  [64 | 0, { [_hQ]: _tK }],
1369
1384
  ],
1370
1385
  ];
1371
- var UpdateChannelRequest = [
1386
+ var UpdateChannelRequest$ = [
1372
1387
  3,
1373
1388
  n0,
1374
1389
  _UCR,
1375
1390
  0,
1376
1391
  [_CN, _FS, _Ou, _TSC, _Aud],
1377
- [[0, 1], () => SlateSource, () => RequestOutputs, () => TimeShiftConfiguration, 64 | 0],
1392
+ [[0, 1], () => SlateSource$, () => RequestOutputs, () => TimeShiftConfiguration$, 64 | 0],
1378
1393
  ];
1379
- var UpdateChannelResponse = [
1394
+ var UpdateChannelResponse$ = [
1380
1395
  3,
1381
1396
  n0,
1382
1397
  _UCRp,
@@ -1387,17 +1402,17 @@ var UpdateChannelResponse = [
1387
1402
  0,
1388
1403
  0,
1389
1404
  7,
1390
- () => SlateSource,
1405
+ () => SlateSource$,
1391
1406
  7,
1392
1407
  () => ResponseOutputs,
1393
1408
  0,
1394
1409
  [128 | 0, { [_jN]: _t }],
1395
1410
  0,
1396
- () => TimeShiftConfiguration,
1411
+ () => TimeShiftConfiguration$,
1397
1412
  64 | 0,
1398
1413
  ],
1399
1414
  ];
1400
- var UpdateLiveSourceRequest = [
1415
+ var UpdateLiveSourceRequest$ = [
1401
1416
  3,
1402
1417
  n0,
1403
1418
  _ULSR,
@@ -1405,7 +1420,7 @@ var UpdateLiveSourceRequest = [
1405
1420
  [_HPC, _LSN, _SLN],
1406
1421
  [() => HttpPackageConfigurations, [0, 1], [0, 1]],
1407
1422
  ];
1408
- var UpdateLiveSourceResponse = [
1423
+ var UpdateLiveSourceResponse$ = [
1409
1424
  3,
1410
1425
  n0,
1411
1426
  _ULSRp,
@@ -1413,64 +1428,64 @@ var UpdateLiveSourceResponse = [
1413
1428
  [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _T],
1414
1429
  [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]],
1415
1430
  ];
1416
- var UpdateProgramRequest = [
1431
+ var UpdateProgramRequest$ = [
1417
1432
  3,
1418
1433
  n0,
1419
1434
  _UPR,
1420
1435
  0,
1421
1436
  [_ABd, _CN, _PN, _SC, _AMu],
1422
- [() => __listOfAdBreak, [0, 1], [0, 1], () => UpdateProgramScheduleConfiguration, () => __listOfAudienceMedia],
1437
+ [() => __listOfAdBreak, [0, 1], [0, 1], () => UpdateProgramScheduleConfiguration$, () => __listOfAudienceMedia],
1423
1438
  ];
1424
- var UpdateProgramResponse = [
1439
+ var UpdateProgramResponse$ = [
1425
1440
  3,
1426
1441
  n0,
1427
1442
  _UPRp,
1428
1443
  0,
1429
1444
  [_ABd, _Ar, _CN, _CT, _PN, _SLN, _VSN, _LSN, _CR, _DM, _SST, _AMu],
1430
- [() => __listOfAdBreak, 0, 0, 7, 0, 0, 0, 0, () => ClipRange, 1, 7, () => __listOfAudienceMedia],
1445
+ [() => __listOfAdBreak, 0, 0, 7, 0, 0, 0, 0, () => ClipRange$, 1, 7, () => __listOfAudienceMedia],
1431
1446
  ];
1432
- var UpdateProgramScheduleConfiguration = [
1447
+ var UpdateProgramScheduleConfiguration$ = [
1433
1448
  3,
1434
1449
  n0,
1435
1450
  _UPSC,
1436
1451
  0,
1437
1452
  [_Tr, _CR],
1438
- [() => UpdateProgramTransition, () => ClipRange],
1453
+ [() => UpdateProgramTransition$, () => ClipRange$],
1439
1454
  ];
1440
- var UpdateProgramTransition = [3, n0, _UPT, 0, [_SSTM, _DM], [1, 1]];
1441
- var UpdateSourceLocationRequest = [
1455
+ var UpdateProgramTransition$ = [3, n0, _UPT, 0, [_SSTM, _DM], [1, 1]];
1456
+ var UpdateSourceLocationRequest$ = [
1442
1457
  3,
1443
1458
  n0,
1444
1459
  _USLR,
1445
1460
  0,
1446
1461
  [_AC, _DSDC, _HC, _SDC, _SLN],
1447
1462
  [
1448
- () => AccessConfiguration,
1449
- () => DefaultSegmentDeliveryConfiguration,
1450
- () => HttpConfiguration,
1463
+ () => AccessConfiguration$,
1464
+ () => DefaultSegmentDeliveryConfiguration$,
1465
+ () => HttpConfiguration$,
1451
1466
  () => __listOfSegmentDeliveryConfiguration,
1452
1467
  [0, 1],
1453
1468
  ],
1454
1469
  ];
1455
- var UpdateSourceLocationResponse = [
1470
+ var UpdateSourceLocationResponse$ = [
1456
1471
  3,
1457
1472
  n0,
1458
1473
  _USLRp,
1459
1474
  0,
1460
1475
  [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _T],
1461
1476
  [
1462
- () => AccessConfiguration,
1477
+ () => AccessConfiguration$,
1463
1478
  0,
1464
1479
  7,
1465
- () => DefaultSegmentDeliveryConfiguration,
1466
- () => HttpConfiguration,
1480
+ () => DefaultSegmentDeliveryConfiguration$,
1481
+ () => HttpConfiguration$,
1467
1482
  7,
1468
1483
  () => __listOfSegmentDeliveryConfiguration,
1469
1484
  0,
1470
1485
  [128 | 0, { [_jN]: _t }],
1471
1486
  ],
1472
1487
  ];
1473
- var UpdateVodSourceRequest = [
1488
+ var UpdateVodSourceRequest$ = [
1474
1489
  3,
1475
1490
  n0,
1476
1491
  _UVSR,
@@ -1478,7 +1493,7 @@ var UpdateVodSourceRequest = [
1478
1493
  [_HPC, _SLN, _VSN],
1479
1494
  [() => HttpPackageConfigurations, [0, 1], [0, 1]],
1480
1495
  ];
1481
- var UpdateVodSourceResponse = [
1496
+ var UpdateVodSourceResponse$ = [
1482
1497
  3,
1483
1498
  n0,
1484
1499
  _UVSRp,
@@ -1486,7 +1501,7 @@ var UpdateVodSourceResponse = [
1486
1501
  [_Ar, _CT, _HPC, _LMT, _SLN, _T, _VSN],
1487
1502
  [0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0],
1488
1503
  ];
1489
- var VodSource = [
1504
+ var VodSource$ = [
1490
1505
  3,
1491
1506
  n0,
1492
1507
  _VS,
@@ -1495,385 +1510,379 @@ var VodSource = [
1495
1510
  [0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0],
1496
1511
  ];
1497
1512
  var __Unit = "unit";
1498
- var MediaTailorServiceException = [-3, _s, "MediaTailorServiceException", 0, [], []];
1499
- schema.TypeRegistry.for(_s).registerError(MediaTailorServiceException, MediaTailorServiceException$1);
1500
- var __listOfAdBreak = [1, n0, _lOAB, 0, () => AdBreak];
1501
- var __listOfAlert = [1, n0, _lOA, 0, () => Alert];
1502
- var __listOfAlternateMedia = [1, n0, _lOAM, 0, () => AlternateMedia];
1503
- var __listOfAudienceMedia = [1, n0, _lOAMi, 0, () => AudienceMedia];
1504
- var __listOfAvailMatchingCriteria = [1, n0, _lOAMC, 0, () => AvailMatchingCriteria];
1505
- var __listOfChannel = [1, n0, _lOC, 0, [() => Channel, 0]];
1506
- var __listOfLiveSource = [1, n0, _lOLS, 0, [() => LiveSource, 0]];
1507
- var __listOfPlaybackConfiguration = [1, n0, _lOPC, 0, [() => PlaybackConfiguration, 0]];
1508
- var __listOfPrefetchSchedule = [1, n0, _lOPS, 0, () => PrefetchSchedule];
1509
- var __listOfScheduleAdBreak = [1, n0, _lOSAB, 0, () => ScheduleAdBreak];
1510
- var __listOfScheduleEntry = [1, n0, _lOSE, 0, () => ScheduleEntry];
1511
- var __listOfSegmentDeliveryConfiguration = [
1512
- 1,
1513
- n0,
1514
- _lOSDC,
1515
- 0,
1516
- () => SegmentDeliveryConfiguration,
1517
- ];
1518
- var __listOfSourceLocation = [1, n0, _lOSL, 0, [() => SourceLocation, 0]];
1519
- var __listOfVodSource = [1, n0, _lOVS, 0, [() => VodSource, 0]];
1520
- var AdBreakMetadataList = [1, n0, _ABML, 0, () => KeyValuePair];
1521
- var AdBreakOpportunities = [1, n0, _ABOd, 0, () => AdBreakOpportunity];
1522
- var HttpPackageConfigurations = [1, n0, _HPC, 0, () => HttpPackageConfiguration];
1523
- var RequestOutputs = [1, n0, _RO, 0, () => RequestOutputItem];
1524
- var ResponseOutputs = [1, n0, _ROe, 0, () => ResponseOutputItem];
1525
- var SegmentationDescriptorList = [1, n0, _SDL, 0, () => SegmentationDescriptor];
1526
- var ConfigureLogsForChannel = [
1513
+ var MediaTailorServiceException$ = [-3, _s, "MediaTailorServiceException", 0, [], []];
1514
+ schema.TypeRegistry.for(_s).registerError(MediaTailorServiceException$, MediaTailorServiceException);
1515
+ var __listOfAdBreak = [1, n0, _lOAB, 0, () => AdBreak$];
1516
+ var __listOfAlert = [1, n0, _lOA, 0, () => Alert$];
1517
+ var __listOfAlternateMedia = [1, n0, _lOAM, 0, () => AlternateMedia$];
1518
+ var __listOfAudienceMedia = [1, n0, _lOAMi, 0, () => AudienceMedia$];
1519
+ var __listOfAvailMatchingCriteria = [1, n0, _lOAMC, 0, () => AvailMatchingCriteria$];
1520
+ var __listOfChannel = [1, n0, _lOC, 0, [() => Channel$, 0]];
1521
+ var __listOfLiveSource = [1, n0, _lOLS, 0, [() => LiveSource$, 0]];
1522
+ var __listOfPlaybackConfiguration = [1, n0, _lOPC, 0, [() => PlaybackConfiguration$, 0]];
1523
+ var __listOfPrefetchSchedule = [1, n0, _lOPS, 0, () => PrefetchSchedule$];
1524
+ var __listOfScheduleAdBreak = [1, n0, _lOSAB, 0, () => ScheduleAdBreak$];
1525
+ var __listOfScheduleEntry = [1, n0, _lOSE, 0, () => ScheduleEntry$];
1526
+ var __listOfSegmentDeliveryConfiguration = [1, n0, _lOSDC, 0, () => SegmentDeliveryConfiguration$];
1527
+ var __listOfSourceLocation = [1, n0, _lOSL, 0, [() => SourceLocation$, 0]];
1528
+ var __listOfVodSource = [1, n0, _lOVS, 0, [() => VodSource$, 0]];
1529
+ var AdBreakMetadataList = [1, n0, _ABML, 0, () => KeyValuePair$];
1530
+ var AdBreakOpportunities = [1, n0, _ABOd, 0, () => AdBreakOpportunity$];
1531
+ var HttpPackageConfigurations = [1, n0, _HPC, 0, () => HttpPackageConfiguration$];
1532
+ var RequestOutputs = [1, n0, _RO, 0, () => RequestOutputItem$];
1533
+ var ResponseOutputs = [1, n0, _ROe, 0, () => ResponseOutputItem$];
1534
+ var SegmentationDescriptorList = [1, n0, _SDL, 0, () => SegmentationDescriptor$];
1535
+ var ConfigureLogsForChannel$ = [
1527
1536
  9,
1528
1537
  n0,
1529
1538
  _CLFC,
1530
1539
  { [_h]: ["PUT", "/configureLogs/channel", 200] },
1531
- () => ConfigureLogsForChannelRequest,
1532
- () => ConfigureLogsForChannelResponse,
1540
+ () => ConfigureLogsForChannelRequest$,
1541
+ () => ConfigureLogsForChannelResponse$,
1533
1542
  ];
1534
- var ConfigureLogsForPlaybackConfiguration = [
1543
+ var ConfigureLogsForPlaybackConfiguration$ = [
1535
1544
  9,
1536
1545
  n0,
1537
1546
  _CLFPC,
1538
1547
  { [_h]: ["PUT", "/configureLogs/playbackConfiguration", 200] },
1539
- () => ConfigureLogsForPlaybackConfigurationRequest,
1540
- () => ConfigureLogsForPlaybackConfigurationResponse,
1548
+ () => ConfigureLogsForPlaybackConfigurationRequest$,
1549
+ () => ConfigureLogsForPlaybackConfigurationResponse$,
1541
1550
  ];
1542
- var CreateChannel = [
1551
+ var CreateChannel$ = [
1543
1552
  9,
1544
1553
  n0,
1545
1554
  _CCr,
1546
1555
  { [_h]: ["POST", "/channel/{ChannelName}", 200] },
1547
- () => CreateChannelRequest,
1548
- () => CreateChannelResponse,
1556
+ () => CreateChannelRequest$,
1557
+ () => CreateChannelResponse$,
1549
1558
  ];
1550
- var CreateLiveSource = [
1559
+ var CreateLiveSource$ = [
1551
1560
  9,
1552
1561
  n0,
1553
1562
  _CLS,
1554
1563
  { [_h]: ["POST", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] },
1555
- () => CreateLiveSourceRequest,
1556
- () => CreateLiveSourceResponse,
1564
+ () => CreateLiveSourceRequest$,
1565
+ () => CreateLiveSourceResponse$,
1557
1566
  ];
1558
- var CreatePrefetchSchedule = [
1567
+ var CreatePrefetchSchedule$ = [
1559
1568
  9,
1560
1569
  n0,
1561
1570
  _CPS,
1562
1571
  { [_h]: ["POST", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 200] },
1563
- () => CreatePrefetchScheduleRequest,
1564
- () => CreatePrefetchScheduleResponse,
1572
+ () => CreatePrefetchScheduleRequest$,
1573
+ () => CreatePrefetchScheduleResponse$,
1565
1574
  ];
1566
- var CreateProgram = [
1575
+ var CreateProgram$ = [
1567
1576
  9,
1568
1577
  n0,
1569
1578
  _CP,
1570
1579
  { [_h]: ["POST", "/channel/{ChannelName}/program/{ProgramName}", 200] },
1571
- () => CreateProgramRequest,
1572
- () => CreateProgramResponse,
1580
+ () => CreateProgramRequest$,
1581
+ () => CreateProgramResponse$,
1573
1582
  ];
1574
- var CreateSourceLocation = [
1583
+ var CreateSourceLocation$ = [
1575
1584
  9,
1576
1585
  n0,
1577
1586
  _CSL,
1578
1587
  { [_h]: ["POST", "/sourceLocation/{SourceLocationName}", 200] },
1579
- () => CreateSourceLocationRequest,
1580
- () => CreateSourceLocationResponse,
1588
+ () => CreateSourceLocationRequest$,
1589
+ () => CreateSourceLocationResponse$,
1581
1590
  ];
1582
- var CreateVodSource = [
1591
+ var CreateVodSource$ = [
1583
1592
  9,
1584
1593
  n0,
1585
1594
  _CVS,
1586
1595
  { [_h]: ["POST", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] },
1587
- () => CreateVodSourceRequest,
1588
- () => CreateVodSourceResponse,
1596
+ () => CreateVodSourceRequest$,
1597
+ () => CreateVodSourceResponse$,
1589
1598
  ];
1590
- var DeleteChannel = [
1599
+ var DeleteChannel$ = [
1591
1600
  9,
1592
1601
  n0,
1593
1602
  _DCe,
1594
1603
  { [_h]: ["DELETE", "/channel/{ChannelName}", 200] },
1595
- () => DeleteChannelRequest,
1596
- () => DeleteChannelResponse,
1604
+ () => DeleteChannelRequest$,
1605
+ () => DeleteChannelResponse$,
1597
1606
  ];
1598
- var DeleteChannelPolicy = [
1607
+ var DeleteChannelPolicy$ = [
1599
1608
  9,
1600
1609
  n0,
1601
1610
  _DCP,
1602
1611
  { [_h]: ["DELETE", "/channel/{ChannelName}/policy", 200] },
1603
- () => DeleteChannelPolicyRequest,
1604
- () => DeleteChannelPolicyResponse,
1612
+ () => DeleteChannelPolicyRequest$,
1613
+ () => DeleteChannelPolicyResponse$,
1605
1614
  ];
1606
- var DeleteLiveSource = [
1615
+ var DeleteLiveSource$ = [
1607
1616
  9,
1608
1617
  n0,
1609
1618
  _DLS,
1610
1619
  { [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] },
1611
- () => DeleteLiveSourceRequest,
1612
- () => DeleteLiveSourceResponse,
1620
+ () => DeleteLiveSourceRequest$,
1621
+ () => DeleteLiveSourceResponse$,
1613
1622
  ];
1614
- var DeletePlaybackConfiguration = [
1623
+ var DeletePlaybackConfiguration$ = [
1615
1624
  9,
1616
1625
  n0,
1617
1626
  _DPC,
1618
1627
  { [_h]: ["DELETE", "/playbackConfiguration/{Name}", 204] },
1619
- () => DeletePlaybackConfigurationRequest,
1620
- () => DeletePlaybackConfigurationResponse,
1628
+ () => DeletePlaybackConfigurationRequest$,
1629
+ () => DeletePlaybackConfigurationResponse$,
1621
1630
  ];
1622
- var DeletePrefetchSchedule = [
1631
+ var DeletePrefetchSchedule$ = [
1623
1632
  9,
1624
1633
  n0,
1625
1634
  _DPSe,
1626
1635
  { [_h]: ["DELETE", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 204] },
1627
- () => DeletePrefetchScheduleRequest,
1628
- () => DeletePrefetchScheduleResponse,
1636
+ () => DeletePrefetchScheduleRequest$,
1637
+ () => DeletePrefetchScheduleResponse$,
1629
1638
  ];
1630
- var DeleteProgram = [
1639
+ var DeleteProgram$ = [
1631
1640
  9,
1632
1641
  n0,
1633
1642
  _DP,
1634
1643
  { [_h]: ["DELETE", "/channel/{ChannelName}/program/{ProgramName}", 200] },
1635
- () => DeleteProgramRequest,
1636
- () => DeleteProgramResponse,
1644
+ () => DeleteProgramRequest$,
1645
+ () => DeleteProgramResponse$,
1637
1646
  ];
1638
- var DeleteSourceLocation = [
1647
+ var DeleteSourceLocation$ = [
1639
1648
  9,
1640
1649
  n0,
1641
1650
  _DSL,
1642
1651
  { [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}", 200] },
1643
- () => DeleteSourceLocationRequest,
1644
- () => DeleteSourceLocationResponse,
1652
+ () => DeleteSourceLocationRequest$,
1653
+ () => DeleteSourceLocationResponse$,
1645
1654
  ];
1646
- var DeleteVodSource = [
1655
+ var DeleteVodSource$ = [
1647
1656
  9,
1648
1657
  n0,
1649
1658
  _DVS,
1650
1659
  { [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] },
1651
- () => DeleteVodSourceRequest,
1652
- () => DeleteVodSourceResponse,
1660
+ () => DeleteVodSourceRequest$,
1661
+ () => DeleteVodSourceResponse$,
1653
1662
  ];
1654
- var DescribeChannel = [
1663
+ var DescribeChannel$ = [
1655
1664
  9,
1656
1665
  n0,
1657
1666
  _DCes,
1658
1667
  { [_h]: ["GET", "/channel/{ChannelName}", 200] },
1659
- () => DescribeChannelRequest,
1660
- () => DescribeChannelResponse,
1668
+ () => DescribeChannelRequest$,
1669
+ () => DescribeChannelResponse$,
1661
1670
  ];
1662
- var DescribeLiveSource = [
1671
+ var DescribeLiveSource$ = [
1663
1672
  9,
1664
1673
  n0,
1665
1674
  _DLSe,
1666
1675
  { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] },
1667
- () => DescribeLiveSourceRequest,
1668
- () => DescribeLiveSourceResponse,
1676
+ () => DescribeLiveSourceRequest$,
1677
+ () => DescribeLiveSourceResponse$,
1669
1678
  ];
1670
- var DescribeProgram = [
1679
+ var DescribeProgram$ = [
1671
1680
  9,
1672
1681
  n0,
1673
1682
  _DPe,
1674
1683
  { [_h]: ["GET", "/channel/{ChannelName}/program/{ProgramName}", 200] },
1675
- () => DescribeProgramRequest,
1676
- () => DescribeProgramResponse,
1684
+ () => DescribeProgramRequest$,
1685
+ () => DescribeProgramResponse$,
1677
1686
  ];
1678
- var DescribeSourceLocation = [
1687
+ var DescribeSourceLocation$ = [
1679
1688
  9,
1680
1689
  n0,
1681
1690
  _DSLe,
1682
1691
  { [_h]: ["GET", "/sourceLocation/{SourceLocationName}", 200] },
1683
- () => DescribeSourceLocationRequest,
1684
- () => DescribeSourceLocationResponse,
1692
+ () => DescribeSourceLocationRequest$,
1693
+ () => DescribeSourceLocationResponse$,
1685
1694
  ];
1686
- var DescribeVodSource = [
1695
+ var DescribeVodSource$ = [
1687
1696
  9,
1688
1697
  n0,
1689
1698
  _DVSe,
1690
1699
  { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] },
1691
- () => DescribeVodSourceRequest,
1692
- () => DescribeVodSourceResponse,
1700
+ () => DescribeVodSourceRequest$,
1701
+ () => DescribeVodSourceResponse$,
1693
1702
  ];
1694
- var GetChannelPolicy = [
1703
+ var GetChannelPolicy$ = [
1695
1704
  9,
1696
1705
  n0,
1697
1706
  _GCP,
1698
1707
  { [_h]: ["GET", "/channel/{ChannelName}/policy", 200] },
1699
- () => GetChannelPolicyRequest,
1700
- () => GetChannelPolicyResponse,
1708
+ () => GetChannelPolicyRequest$,
1709
+ () => GetChannelPolicyResponse$,
1701
1710
  ];
1702
- var GetChannelSchedule = [
1711
+ var GetChannelSchedule$ = [
1703
1712
  9,
1704
1713
  n0,
1705
1714
  _GCS,
1706
1715
  { [_h]: ["GET", "/channel/{ChannelName}/schedule", 200] },
1707
- () => GetChannelScheduleRequest,
1708
- () => GetChannelScheduleResponse,
1716
+ () => GetChannelScheduleRequest$,
1717
+ () => GetChannelScheduleResponse$,
1709
1718
  ];
1710
- var GetPlaybackConfiguration = [
1719
+ var GetPlaybackConfiguration$ = [
1711
1720
  9,
1712
1721
  n0,
1713
1722
  _GPC,
1714
1723
  { [_h]: ["GET", "/playbackConfiguration/{Name}", 200] },
1715
- () => GetPlaybackConfigurationRequest,
1716
- () => GetPlaybackConfigurationResponse,
1724
+ () => GetPlaybackConfigurationRequest$,
1725
+ () => GetPlaybackConfigurationResponse$,
1717
1726
  ];
1718
- var GetPrefetchSchedule = [
1727
+ var GetPrefetchSchedule$ = [
1719
1728
  9,
1720
1729
  n0,
1721
1730
  _GPS,
1722
1731
  { [_h]: ["GET", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 200] },
1723
- () => GetPrefetchScheduleRequest,
1724
- () => GetPrefetchScheduleResponse,
1732
+ () => GetPrefetchScheduleRequest$,
1733
+ () => GetPrefetchScheduleResponse$,
1725
1734
  ];
1726
- var ListAlerts = [
1735
+ var ListAlerts$ = [
1727
1736
  9,
1728
1737
  n0,
1729
1738
  _LA,
1730
1739
  { [_h]: ["GET", "/alerts", 200] },
1731
- () => ListAlertsRequest,
1732
- () => ListAlertsResponse,
1740
+ () => ListAlertsRequest$,
1741
+ () => ListAlertsResponse$,
1733
1742
  ];
1734
- var ListChannels = [
1743
+ var ListChannels$ = [
1735
1744
  9,
1736
1745
  n0,
1737
1746
  _LCi,
1738
1747
  { [_h]: ["GET", "/channels", 200] },
1739
- () => ListChannelsRequest,
1740
- () => ListChannelsResponse,
1748
+ () => ListChannelsRequest$,
1749
+ () => ListChannelsResponse$,
1741
1750
  ];
1742
- var ListLiveSources = [
1751
+ var ListLiveSources$ = [
1743
1752
  9,
1744
1753
  n0,
1745
1754
  _LLS,
1746
1755
  { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSources", 200] },
1747
- () => ListLiveSourcesRequest,
1748
- () => ListLiveSourcesResponse,
1756
+ () => ListLiveSourcesRequest$,
1757
+ () => ListLiveSourcesResponse$,
1749
1758
  ];
1750
- var ListPlaybackConfigurations = [
1759
+ var ListPlaybackConfigurations$ = [
1751
1760
  9,
1752
1761
  n0,
1753
1762
  _LPC,
1754
1763
  { [_h]: ["GET", "/playbackConfigurations", 200] },
1755
- () => ListPlaybackConfigurationsRequest,
1756
- () => ListPlaybackConfigurationsResponse,
1764
+ () => ListPlaybackConfigurationsRequest$,
1765
+ () => ListPlaybackConfigurationsResponse$,
1757
1766
  ];
1758
- var ListPrefetchSchedules = [
1767
+ var ListPrefetchSchedules$ = [
1759
1768
  9,
1760
1769
  n0,
1761
1770
  _LPS,
1762
1771
  { [_h]: ["POST", "/prefetchSchedule/{PlaybackConfigurationName}", 200] },
1763
- () => ListPrefetchSchedulesRequest,
1764
- () => ListPrefetchSchedulesResponse,
1772
+ () => ListPrefetchSchedulesRequest$,
1773
+ () => ListPrefetchSchedulesResponse$,
1765
1774
  ];
1766
- var ListSourceLocations = [
1775
+ var ListSourceLocations$ = [
1767
1776
  9,
1768
1777
  n0,
1769
1778
  _LSL,
1770
1779
  { [_h]: ["GET", "/sourceLocations", 200] },
1771
- () => ListSourceLocationsRequest,
1772
- () => ListSourceLocationsResponse,
1780
+ () => ListSourceLocationsRequest$,
1781
+ () => ListSourceLocationsResponse$,
1773
1782
  ];
1774
- var ListTagsForResource = [
1783
+ var ListTagsForResource$ = [
1775
1784
  9,
1776
1785
  n0,
1777
1786
  _LTFR,
1778
1787
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
1779
- () => ListTagsForResourceRequest,
1780
- () => ListTagsForResourceResponse,
1788
+ () => ListTagsForResourceRequest$,
1789
+ () => ListTagsForResourceResponse$,
1781
1790
  ];
1782
- var ListVodSources = [
1791
+ var ListVodSources$ = [
1783
1792
  9,
1784
1793
  n0,
1785
1794
  _LVS,
1786
1795
  { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/vodSources", 200] },
1787
- () => ListVodSourcesRequest,
1788
- () => ListVodSourcesResponse,
1796
+ () => ListVodSourcesRequest$,
1797
+ () => ListVodSourcesResponse$,
1789
1798
  ];
1790
- var PutChannelPolicy = [
1799
+ var PutChannelPolicy$ = [
1791
1800
  9,
1792
1801
  n0,
1793
1802
  _PCP,
1794
1803
  { [_h]: ["PUT", "/channel/{ChannelName}/policy", 200] },
1795
- () => PutChannelPolicyRequest,
1796
- () => PutChannelPolicyResponse,
1804
+ () => PutChannelPolicyRequest$,
1805
+ () => PutChannelPolicyResponse$,
1797
1806
  ];
1798
- var PutPlaybackConfiguration = [
1807
+ var PutPlaybackConfiguration$ = [
1799
1808
  9,
1800
1809
  n0,
1801
1810
  _PPC,
1802
1811
  { [_h]: ["PUT", "/playbackConfiguration", 200] },
1803
- () => PutPlaybackConfigurationRequest,
1804
- () => PutPlaybackConfigurationResponse,
1812
+ () => PutPlaybackConfigurationRequest$,
1813
+ () => PutPlaybackConfigurationResponse$,
1805
1814
  ];
1806
- var StartChannel = [
1815
+ var StartChannel$ = [
1807
1816
  9,
1808
1817
  n0,
1809
1818
  _SCt,
1810
1819
  { [_h]: ["PUT", "/channel/{ChannelName}/start", 200] },
1811
- () => StartChannelRequest,
1812
- () => StartChannelResponse,
1820
+ () => StartChannelRequest$,
1821
+ () => StartChannelResponse$,
1813
1822
  ];
1814
- var StopChannel = [
1823
+ var StopChannel$ = [
1815
1824
  9,
1816
1825
  n0,
1817
1826
  _SCto,
1818
1827
  { [_h]: ["PUT", "/channel/{ChannelName}/stop", 200] },
1819
- () => StopChannelRequest,
1820
- () => StopChannelResponse,
1828
+ () => StopChannelRequest$,
1829
+ () => StopChannelResponse$,
1821
1830
  ];
1822
- var TagResource = [
1831
+ var TagResource$ = [
1823
1832
  9,
1824
1833
  n0,
1825
1834
  _TR,
1826
1835
  { [_h]: ["POST", "/tags/{ResourceArn}", 204] },
1827
- () => TagResourceRequest,
1836
+ () => TagResourceRequest$,
1828
1837
  () => __Unit,
1829
1838
  ];
1830
- var UntagResource = [
1839
+ var UntagResource$ = [
1831
1840
  9,
1832
1841
  n0,
1833
1842
  _UR,
1834
1843
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] },
1835
- () => UntagResourceRequest,
1844
+ () => UntagResourceRequest$,
1836
1845
  () => __Unit,
1837
1846
  ];
1838
- var UpdateChannel = [
1847
+ var UpdateChannel$ = [
1839
1848
  9,
1840
1849
  n0,
1841
1850
  _UC,
1842
1851
  { [_h]: ["PUT", "/channel/{ChannelName}", 200] },
1843
- () => UpdateChannelRequest,
1844
- () => UpdateChannelResponse,
1852
+ () => UpdateChannelRequest$,
1853
+ () => UpdateChannelResponse$,
1845
1854
  ];
1846
- var UpdateLiveSource = [
1855
+ var UpdateLiveSource$ = [
1847
1856
  9,
1848
1857
  n0,
1849
1858
  _ULS,
1850
1859
  { [_h]: ["PUT", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] },
1851
- () => UpdateLiveSourceRequest,
1852
- () => UpdateLiveSourceResponse,
1860
+ () => UpdateLiveSourceRequest$,
1861
+ () => UpdateLiveSourceResponse$,
1853
1862
  ];
1854
- var UpdateProgram = [
1863
+ var UpdateProgram$ = [
1855
1864
  9,
1856
1865
  n0,
1857
1866
  _UP,
1858
1867
  { [_h]: ["PUT", "/channel/{ChannelName}/program/{ProgramName}", 200] },
1859
- () => UpdateProgramRequest,
1860
- () => UpdateProgramResponse,
1868
+ () => UpdateProgramRequest$,
1869
+ () => UpdateProgramResponse$,
1861
1870
  ];
1862
- var UpdateSourceLocation = [
1871
+ var UpdateSourceLocation$ = [
1863
1872
  9,
1864
1873
  n0,
1865
1874
  _USL,
1866
1875
  { [_h]: ["PUT", "/sourceLocation/{SourceLocationName}", 200] },
1867
- () => UpdateSourceLocationRequest,
1868
- () => UpdateSourceLocationResponse,
1876
+ () => UpdateSourceLocationRequest$,
1877
+ () => UpdateSourceLocationResponse$,
1869
1878
  ];
1870
- var UpdateVodSource = [
1879
+ var UpdateVodSource$ = [
1871
1880
  9,
1872
1881
  n0,
1873
1882
  _UVS,
1874
1883
  { [_h]: ["PUT", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] },
1875
- () => UpdateVodSourceRequest,
1876
- () => UpdateVodSourceResponse,
1884
+ () => UpdateVodSourceRequest$,
1885
+ () => UpdateVodSourceResponse$,
1877
1886
  ];
1878
1887
 
1879
1888
  class ConfigureLogsForChannelCommand extends smithyClient.Command
@@ -1884,7 +1893,7 @@ class ConfigureLogsForChannelCommand extends smithyClient.Command
1884
1893
  })
1885
1894
  .s("MediaTailor", "ConfigureLogsForChannel", {})
1886
1895
  .n("MediaTailorClient", "ConfigureLogsForChannelCommand")
1887
- .sc(ConfigureLogsForChannel)
1896
+ .sc(ConfigureLogsForChannel$)
1888
1897
  .build() {
1889
1898
  }
1890
1899
 
@@ -1896,7 +1905,7 @@ class ConfigureLogsForPlaybackConfigurationCommand extends smithyClient.Command
1896
1905
  })
1897
1906
  .s("MediaTailor", "ConfigureLogsForPlaybackConfiguration", {})
1898
1907
  .n("MediaTailorClient", "ConfigureLogsForPlaybackConfigurationCommand")
1899
- .sc(ConfigureLogsForPlaybackConfiguration)
1908
+ .sc(ConfigureLogsForPlaybackConfiguration$)
1900
1909
  .build() {
1901
1910
  }
1902
1911
 
@@ -1908,7 +1917,7 @@ class CreateChannelCommand extends smithyClient.Command
1908
1917
  })
1909
1918
  .s("MediaTailor", "CreateChannel", {})
1910
1919
  .n("MediaTailorClient", "CreateChannelCommand")
1911
- .sc(CreateChannel)
1920
+ .sc(CreateChannel$)
1912
1921
  .build() {
1913
1922
  }
1914
1923
 
@@ -1920,7 +1929,7 @@ class CreateLiveSourceCommand extends smithyClient.Command
1920
1929
  })
1921
1930
  .s("MediaTailor", "CreateLiveSource", {})
1922
1931
  .n("MediaTailorClient", "CreateLiveSourceCommand")
1923
- .sc(CreateLiveSource)
1932
+ .sc(CreateLiveSource$)
1924
1933
  .build() {
1925
1934
  }
1926
1935
 
@@ -1932,7 +1941,7 @@ class CreatePrefetchScheduleCommand extends smithyClient.Command
1932
1941
  })
1933
1942
  .s("MediaTailor", "CreatePrefetchSchedule", {})
1934
1943
  .n("MediaTailorClient", "CreatePrefetchScheduleCommand")
1935
- .sc(CreatePrefetchSchedule)
1944
+ .sc(CreatePrefetchSchedule$)
1936
1945
  .build() {
1937
1946
  }
1938
1947
 
@@ -1944,7 +1953,7 @@ class CreateProgramCommand extends smithyClient.Command
1944
1953
  })
1945
1954
  .s("MediaTailor", "CreateProgram", {})
1946
1955
  .n("MediaTailorClient", "CreateProgramCommand")
1947
- .sc(CreateProgram)
1956
+ .sc(CreateProgram$)
1948
1957
  .build() {
1949
1958
  }
1950
1959
 
@@ -1956,7 +1965,7 @@ class CreateSourceLocationCommand extends smithyClient.Command
1956
1965
  })
1957
1966
  .s("MediaTailor", "CreateSourceLocation", {})
1958
1967
  .n("MediaTailorClient", "CreateSourceLocationCommand")
1959
- .sc(CreateSourceLocation)
1968
+ .sc(CreateSourceLocation$)
1960
1969
  .build() {
1961
1970
  }
1962
1971
 
@@ -1968,7 +1977,7 @@ class CreateVodSourceCommand extends smithyClient.Command
1968
1977
  })
1969
1978
  .s("MediaTailor", "CreateVodSource", {})
1970
1979
  .n("MediaTailorClient", "CreateVodSourceCommand")
1971
- .sc(CreateVodSource)
1980
+ .sc(CreateVodSource$)
1972
1981
  .build() {
1973
1982
  }
1974
1983
 
@@ -1980,7 +1989,7 @@ class DeleteChannelCommand extends smithyClient.Command
1980
1989
  })
1981
1990
  .s("MediaTailor", "DeleteChannel", {})
1982
1991
  .n("MediaTailorClient", "DeleteChannelCommand")
1983
- .sc(DeleteChannel)
1992
+ .sc(DeleteChannel$)
1984
1993
  .build() {
1985
1994
  }
1986
1995
 
@@ -1992,7 +2001,7 @@ class DeleteChannelPolicyCommand extends smithyClient.Command
1992
2001
  })
1993
2002
  .s("MediaTailor", "DeleteChannelPolicy", {})
1994
2003
  .n("MediaTailorClient", "DeleteChannelPolicyCommand")
1995
- .sc(DeleteChannelPolicy)
2004
+ .sc(DeleteChannelPolicy$)
1996
2005
  .build() {
1997
2006
  }
1998
2007
 
@@ -2004,7 +2013,7 @@ class DeleteLiveSourceCommand extends smithyClient.Command
2004
2013
  })
2005
2014
  .s("MediaTailor", "DeleteLiveSource", {})
2006
2015
  .n("MediaTailorClient", "DeleteLiveSourceCommand")
2007
- .sc(DeleteLiveSource)
2016
+ .sc(DeleteLiveSource$)
2008
2017
  .build() {
2009
2018
  }
2010
2019
 
@@ -2016,7 +2025,7 @@ class DeletePlaybackConfigurationCommand extends smithyClient.Command
2016
2025
  })
2017
2026
  .s("MediaTailor", "DeletePlaybackConfiguration", {})
2018
2027
  .n("MediaTailorClient", "DeletePlaybackConfigurationCommand")
2019
- .sc(DeletePlaybackConfiguration)
2028
+ .sc(DeletePlaybackConfiguration$)
2020
2029
  .build() {
2021
2030
  }
2022
2031
 
@@ -2028,7 +2037,7 @@ class DeletePrefetchScheduleCommand extends smithyClient.Command
2028
2037
  })
2029
2038
  .s("MediaTailor", "DeletePrefetchSchedule", {})
2030
2039
  .n("MediaTailorClient", "DeletePrefetchScheduleCommand")
2031
- .sc(DeletePrefetchSchedule)
2040
+ .sc(DeletePrefetchSchedule$)
2032
2041
  .build() {
2033
2042
  }
2034
2043
 
@@ -2040,7 +2049,7 @@ class DeleteProgramCommand extends smithyClient.Command
2040
2049
  })
2041
2050
  .s("MediaTailor", "DeleteProgram", {})
2042
2051
  .n("MediaTailorClient", "DeleteProgramCommand")
2043
- .sc(DeleteProgram)
2052
+ .sc(DeleteProgram$)
2044
2053
  .build() {
2045
2054
  }
2046
2055
 
@@ -2052,7 +2061,7 @@ class DeleteSourceLocationCommand extends smithyClient.Command
2052
2061
  })
2053
2062
  .s("MediaTailor", "DeleteSourceLocation", {})
2054
2063
  .n("MediaTailorClient", "DeleteSourceLocationCommand")
2055
- .sc(DeleteSourceLocation)
2064
+ .sc(DeleteSourceLocation$)
2056
2065
  .build() {
2057
2066
  }
2058
2067
 
@@ -2064,7 +2073,7 @@ class DeleteVodSourceCommand extends smithyClient.Command
2064
2073
  })
2065
2074
  .s("MediaTailor", "DeleteVodSource", {})
2066
2075
  .n("MediaTailorClient", "DeleteVodSourceCommand")
2067
- .sc(DeleteVodSource)
2076
+ .sc(DeleteVodSource$)
2068
2077
  .build() {
2069
2078
  }
2070
2079
 
@@ -2076,7 +2085,7 @@ class DescribeChannelCommand extends smithyClient.Command
2076
2085
  })
2077
2086
  .s("MediaTailor", "DescribeChannel", {})
2078
2087
  .n("MediaTailorClient", "DescribeChannelCommand")
2079
- .sc(DescribeChannel)
2088
+ .sc(DescribeChannel$)
2080
2089
  .build() {
2081
2090
  }
2082
2091
 
@@ -2088,7 +2097,7 @@ class DescribeLiveSourceCommand extends smithyClient.Command
2088
2097
  })
2089
2098
  .s("MediaTailor", "DescribeLiveSource", {})
2090
2099
  .n("MediaTailorClient", "DescribeLiveSourceCommand")
2091
- .sc(DescribeLiveSource)
2100
+ .sc(DescribeLiveSource$)
2092
2101
  .build() {
2093
2102
  }
2094
2103
 
@@ -2100,7 +2109,7 @@ class DescribeProgramCommand extends smithyClient.Command
2100
2109
  })
2101
2110
  .s("MediaTailor", "DescribeProgram", {})
2102
2111
  .n("MediaTailorClient", "DescribeProgramCommand")
2103
- .sc(DescribeProgram)
2112
+ .sc(DescribeProgram$)
2104
2113
  .build() {
2105
2114
  }
2106
2115
 
@@ -2112,7 +2121,7 @@ class DescribeSourceLocationCommand extends smithyClient.Command
2112
2121
  })
2113
2122
  .s("MediaTailor", "DescribeSourceLocation", {})
2114
2123
  .n("MediaTailorClient", "DescribeSourceLocationCommand")
2115
- .sc(DescribeSourceLocation)
2124
+ .sc(DescribeSourceLocation$)
2116
2125
  .build() {
2117
2126
  }
2118
2127
 
@@ -2124,7 +2133,7 @@ class DescribeVodSourceCommand extends smithyClient.Command
2124
2133
  })
2125
2134
  .s("MediaTailor", "DescribeVodSource", {})
2126
2135
  .n("MediaTailorClient", "DescribeVodSourceCommand")
2127
- .sc(DescribeVodSource)
2136
+ .sc(DescribeVodSource$)
2128
2137
  .build() {
2129
2138
  }
2130
2139
 
@@ -2136,7 +2145,7 @@ class GetChannelPolicyCommand extends smithyClient.Command
2136
2145
  })
2137
2146
  .s("MediaTailor", "GetChannelPolicy", {})
2138
2147
  .n("MediaTailorClient", "GetChannelPolicyCommand")
2139
- .sc(GetChannelPolicy)
2148
+ .sc(GetChannelPolicy$)
2140
2149
  .build() {
2141
2150
  }
2142
2151
 
@@ -2148,7 +2157,7 @@ class GetChannelScheduleCommand extends smithyClient.Command
2148
2157
  })
2149
2158
  .s("MediaTailor", "GetChannelSchedule", {})
2150
2159
  .n("MediaTailorClient", "GetChannelScheduleCommand")
2151
- .sc(GetChannelSchedule)
2160
+ .sc(GetChannelSchedule$)
2152
2161
  .build() {
2153
2162
  }
2154
2163
 
@@ -2160,7 +2169,7 @@ class GetPlaybackConfigurationCommand extends smithyClient.Command
2160
2169
  })
2161
2170
  .s("MediaTailor", "GetPlaybackConfiguration", {})
2162
2171
  .n("MediaTailorClient", "GetPlaybackConfigurationCommand")
2163
- .sc(GetPlaybackConfiguration)
2172
+ .sc(GetPlaybackConfiguration$)
2164
2173
  .build() {
2165
2174
  }
2166
2175
 
@@ -2172,7 +2181,7 @@ class GetPrefetchScheduleCommand extends smithyClient.Command
2172
2181
  })
2173
2182
  .s("MediaTailor", "GetPrefetchSchedule", {})
2174
2183
  .n("MediaTailorClient", "GetPrefetchScheduleCommand")
2175
- .sc(GetPrefetchSchedule)
2184
+ .sc(GetPrefetchSchedule$)
2176
2185
  .build() {
2177
2186
  }
2178
2187
 
@@ -2184,7 +2193,7 @@ class ListAlertsCommand extends smithyClient.Command
2184
2193
  })
2185
2194
  .s("MediaTailor", "ListAlerts", {})
2186
2195
  .n("MediaTailorClient", "ListAlertsCommand")
2187
- .sc(ListAlerts)
2196
+ .sc(ListAlerts$)
2188
2197
  .build() {
2189
2198
  }
2190
2199
 
@@ -2196,7 +2205,7 @@ class ListChannelsCommand extends smithyClient.Command
2196
2205
  })
2197
2206
  .s("MediaTailor", "ListChannels", {})
2198
2207
  .n("MediaTailorClient", "ListChannelsCommand")
2199
- .sc(ListChannels)
2208
+ .sc(ListChannels$)
2200
2209
  .build() {
2201
2210
  }
2202
2211
 
@@ -2208,7 +2217,7 @@ class ListLiveSourcesCommand extends smithyClient.Command
2208
2217
  })
2209
2218
  .s("MediaTailor", "ListLiveSources", {})
2210
2219
  .n("MediaTailorClient", "ListLiveSourcesCommand")
2211
- .sc(ListLiveSources)
2220
+ .sc(ListLiveSources$)
2212
2221
  .build() {
2213
2222
  }
2214
2223
 
@@ -2220,7 +2229,7 @@ class ListPlaybackConfigurationsCommand extends smithyClient.Command
2220
2229
  })
2221
2230
  .s("MediaTailor", "ListPlaybackConfigurations", {})
2222
2231
  .n("MediaTailorClient", "ListPlaybackConfigurationsCommand")
2223
- .sc(ListPlaybackConfigurations)
2232
+ .sc(ListPlaybackConfigurations$)
2224
2233
  .build() {
2225
2234
  }
2226
2235
 
@@ -2232,7 +2241,7 @@ class ListPrefetchSchedulesCommand extends smithyClient.Command
2232
2241
  })
2233
2242
  .s("MediaTailor", "ListPrefetchSchedules", {})
2234
2243
  .n("MediaTailorClient", "ListPrefetchSchedulesCommand")
2235
- .sc(ListPrefetchSchedules)
2244
+ .sc(ListPrefetchSchedules$)
2236
2245
  .build() {
2237
2246
  }
2238
2247
 
@@ -2244,7 +2253,7 @@ class ListSourceLocationsCommand extends smithyClient.Command
2244
2253
  })
2245
2254
  .s("MediaTailor", "ListSourceLocations", {})
2246
2255
  .n("MediaTailorClient", "ListSourceLocationsCommand")
2247
- .sc(ListSourceLocations)
2256
+ .sc(ListSourceLocations$)
2248
2257
  .build() {
2249
2258
  }
2250
2259
 
@@ -2256,7 +2265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2256
2265
  })
2257
2266
  .s("MediaTailor", "ListTagsForResource", {})
2258
2267
  .n("MediaTailorClient", "ListTagsForResourceCommand")
2259
- .sc(ListTagsForResource)
2268
+ .sc(ListTagsForResource$)
2260
2269
  .build() {
2261
2270
  }
2262
2271
 
@@ -2268,7 +2277,7 @@ class ListVodSourcesCommand extends smithyClient.Command
2268
2277
  })
2269
2278
  .s("MediaTailor", "ListVodSources", {})
2270
2279
  .n("MediaTailorClient", "ListVodSourcesCommand")
2271
- .sc(ListVodSources)
2280
+ .sc(ListVodSources$)
2272
2281
  .build() {
2273
2282
  }
2274
2283
 
@@ -2280,7 +2289,7 @@ class PutChannelPolicyCommand extends smithyClient.Command
2280
2289
  })
2281
2290
  .s("MediaTailor", "PutChannelPolicy", {})
2282
2291
  .n("MediaTailorClient", "PutChannelPolicyCommand")
2283
- .sc(PutChannelPolicy)
2292
+ .sc(PutChannelPolicy$)
2284
2293
  .build() {
2285
2294
  }
2286
2295
 
@@ -2292,7 +2301,7 @@ class PutPlaybackConfigurationCommand extends smithyClient.Command
2292
2301
  })
2293
2302
  .s("MediaTailor", "PutPlaybackConfiguration", {})
2294
2303
  .n("MediaTailorClient", "PutPlaybackConfigurationCommand")
2295
- .sc(PutPlaybackConfiguration)
2304
+ .sc(PutPlaybackConfiguration$)
2296
2305
  .build() {
2297
2306
  }
2298
2307
 
@@ -2304,7 +2313,7 @@ class StartChannelCommand extends smithyClient.Command
2304
2313
  })
2305
2314
  .s("MediaTailor", "StartChannel", {})
2306
2315
  .n("MediaTailorClient", "StartChannelCommand")
2307
- .sc(StartChannel)
2316
+ .sc(StartChannel$)
2308
2317
  .build() {
2309
2318
  }
2310
2319
 
@@ -2316,7 +2325,7 @@ class StopChannelCommand extends smithyClient.Command
2316
2325
  })
2317
2326
  .s("MediaTailor", "StopChannel", {})
2318
2327
  .n("MediaTailorClient", "StopChannelCommand")
2319
- .sc(StopChannel)
2328
+ .sc(StopChannel$)
2320
2329
  .build() {
2321
2330
  }
2322
2331
 
@@ -2328,7 +2337,7 @@ class TagResourceCommand extends smithyClient.Command
2328
2337
  })
2329
2338
  .s("MediaTailor", "TagResource", {})
2330
2339
  .n("MediaTailorClient", "TagResourceCommand")
2331
- .sc(TagResource)
2340
+ .sc(TagResource$)
2332
2341
  .build() {
2333
2342
  }
2334
2343
 
@@ -2340,7 +2349,7 @@ class UntagResourceCommand extends smithyClient.Command
2340
2349
  })
2341
2350
  .s("MediaTailor", "UntagResource", {})
2342
2351
  .n("MediaTailorClient", "UntagResourceCommand")
2343
- .sc(UntagResource)
2352
+ .sc(UntagResource$)
2344
2353
  .build() {
2345
2354
  }
2346
2355
 
@@ -2352,7 +2361,7 @@ class UpdateChannelCommand extends smithyClient.Command
2352
2361
  })
2353
2362
  .s("MediaTailor", "UpdateChannel", {})
2354
2363
  .n("MediaTailorClient", "UpdateChannelCommand")
2355
- .sc(UpdateChannel)
2364
+ .sc(UpdateChannel$)
2356
2365
  .build() {
2357
2366
  }
2358
2367
 
@@ -2364,7 +2373,7 @@ class UpdateLiveSourceCommand extends smithyClient.Command
2364
2373
  })
2365
2374
  .s("MediaTailor", "UpdateLiveSource", {})
2366
2375
  .n("MediaTailorClient", "UpdateLiveSourceCommand")
2367
- .sc(UpdateLiveSource)
2376
+ .sc(UpdateLiveSource$)
2368
2377
  .build() {
2369
2378
  }
2370
2379
 
@@ -2376,7 +2385,7 @@ class UpdateProgramCommand extends smithyClient.Command
2376
2385
  })
2377
2386
  .s("MediaTailor", "UpdateProgram", {})
2378
2387
  .n("MediaTailorClient", "UpdateProgramCommand")
2379
- .sc(UpdateProgram)
2388
+ .sc(UpdateProgram$)
2380
2389
  .build() {
2381
2390
  }
2382
2391
 
@@ -2388,7 +2397,7 @@ class UpdateSourceLocationCommand extends smithyClient.Command
2388
2397
  })
2389
2398
  .s("MediaTailor", "UpdateSourceLocation", {})
2390
2399
  .n("MediaTailorClient", "UpdateSourceLocationCommand")
2391
- .sc(UpdateSourceLocation)
2400
+ .sc(UpdateSourceLocation$)
2392
2401
  .build() {
2393
2402
  }
2394
2403
 
@@ -2400,7 +2409,7 @@ class UpdateVodSourceCommand extends smithyClient.Command
2400
2409
  })
2401
2410
  .s("MediaTailor", "UpdateVodSource", {})
2402
2411
  .n("MediaTailorClient", "UpdateVodSourceCommand")
2403
- .sc(UpdateVodSource)
2412
+ .sc(UpdateVodSource$)
2404
2413
  .build() {
2405
2414
  }
2406
2415
 
@@ -2547,6 +2556,14 @@ const StreamingMediaFileConditioning = {
2547
2556
  NONE: "NONE",
2548
2557
  TRANSCODE: "TRANSCODE",
2549
2558
  };
2559
+ const CompressionMethod = {
2560
+ GZIP: "GZIP",
2561
+ NONE: "NONE",
2562
+ };
2563
+ const Method = {
2564
+ GET: "GET",
2565
+ POST: "POST",
2566
+ };
2550
2567
  const FillPolicy = {
2551
2568
  FULL_AVAIL_ONLY: "FULL_AVAIL_ONLY",
2552
2569
  PARTIAL_AVAIL: "PARTIAL_AVAIL",
@@ -2646,78 +2663,270 @@ Object.defineProperty(exports, "__Client", {
2646
2663
  enumerable: true,
2647
2664
  get: function () { return smithyClient.Client; }
2648
2665
  });
2666
+ exports.AccessConfiguration$ = AccessConfiguration$;
2649
2667
  exports.AccessType = AccessType;
2668
+ exports.AdBreak$ = AdBreak$;
2669
+ exports.AdBreakOpportunity$ = AdBreakOpportunity$;
2670
+ exports.AdConditioningConfiguration$ = AdConditioningConfiguration$;
2671
+ exports.AdDecisionServerConfiguration$ = AdDecisionServerConfiguration$;
2672
+ exports.AdMarkerPassthrough$ = AdMarkerPassthrough$;
2650
2673
  exports.AdMarkupType = AdMarkupType;
2651
2674
  exports.AdsInteractionExcludeEventType = AdsInteractionExcludeEventType;
2675
+ exports.AdsInteractionLog$ = AdsInteractionLog$;
2652
2676
  exports.AdsInteractionPublishOptInEventType = AdsInteractionPublishOptInEventType;
2677
+ exports.Alert$ = Alert$;
2653
2678
  exports.AlertCategory = AlertCategory;
2654
- exports.BadRequestException = BadRequestException$1;
2679
+ exports.AlternateMedia$ = AlternateMedia$;
2680
+ exports.AudienceMedia$ = AudienceMedia$;
2681
+ exports.AvailMatchingCriteria$ = AvailMatchingCriteria$;
2682
+ exports.AvailSuppression$ = AvailSuppression$;
2683
+ exports.BadRequestException = BadRequestException;
2684
+ exports.BadRequestException$ = BadRequestException$;
2685
+ exports.Bumper$ = Bumper$;
2686
+ exports.CdnConfiguration$ = CdnConfiguration$;
2687
+ exports.Channel$ = Channel$;
2655
2688
  exports.ChannelState = ChannelState;
2689
+ exports.ClipRange$ = ClipRange$;
2690
+ exports.CompressionMethod = CompressionMethod;
2691
+ exports.ConfigureLogsForChannel$ = ConfigureLogsForChannel$;
2656
2692
  exports.ConfigureLogsForChannelCommand = ConfigureLogsForChannelCommand;
2693
+ exports.ConfigureLogsForChannelRequest$ = ConfigureLogsForChannelRequest$;
2694
+ exports.ConfigureLogsForChannelResponse$ = ConfigureLogsForChannelResponse$;
2695
+ exports.ConfigureLogsForPlaybackConfiguration$ = ConfigureLogsForPlaybackConfiguration$;
2657
2696
  exports.ConfigureLogsForPlaybackConfigurationCommand = ConfigureLogsForPlaybackConfigurationCommand;
2697
+ exports.ConfigureLogsForPlaybackConfigurationRequest$ = ConfigureLogsForPlaybackConfigurationRequest$;
2698
+ exports.ConfigureLogsForPlaybackConfigurationResponse$ = ConfigureLogsForPlaybackConfigurationResponse$;
2699
+ exports.CreateChannel$ = CreateChannel$;
2658
2700
  exports.CreateChannelCommand = CreateChannelCommand;
2701
+ exports.CreateChannelRequest$ = CreateChannelRequest$;
2702
+ exports.CreateChannelResponse$ = CreateChannelResponse$;
2703
+ exports.CreateLiveSource$ = CreateLiveSource$;
2659
2704
  exports.CreateLiveSourceCommand = CreateLiveSourceCommand;
2705
+ exports.CreateLiveSourceRequest$ = CreateLiveSourceRequest$;
2706
+ exports.CreateLiveSourceResponse$ = CreateLiveSourceResponse$;
2707
+ exports.CreatePrefetchSchedule$ = CreatePrefetchSchedule$;
2660
2708
  exports.CreatePrefetchScheduleCommand = CreatePrefetchScheduleCommand;
2709
+ exports.CreatePrefetchScheduleRequest$ = CreatePrefetchScheduleRequest$;
2710
+ exports.CreatePrefetchScheduleResponse$ = CreatePrefetchScheduleResponse$;
2711
+ exports.CreateProgram$ = CreateProgram$;
2661
2712
  exports.CreateProgramCommand = CreateProgramCommand;
2713
+ exports.CreateProgramRequest$ = CreateProgramRequest$;
2714
+ exports.CreateProgramResponse$ = CreateProgramResponse$;
2715
+ exports.CreateSourceLocation$ = CreateSourceLocation$;
2662
2716
  exports.CreateSourceLocationCommand = CreateSourceLocationCommand;
2717
+ exports.CreateSourceLocationRequest$ = CreateSourceLocationRequest$;
2718
+ exports.CreateSourceLocationResponse$ = CreateSourceLocationResponse$;
2719
+ exports.CreateVodSource$ = CreateVodSource$;
2663
2720
  exports.CreateVodSourceCommand = CreateVodSourceCommand;
2721
+ exports.CreateVodSourceRequest$ = CreateVodSourceRequest$;
2722
+ exports.CreateVodSourceResponse$ = CreateVodSourceResponse$;
2723
+ exports.DashConfiguration$ = DashConfiguration$;
2724
+ exports.DashConfigurationForPut$ = DashConfigurationForPut$;
2725
+ exports.DashPlaylistSettings$ = DashPlaylistSettings$;
2726
+ exports.DefaultSegmentDeliveryConfiguration$ = DefaultSegmentDeliveryConfiguration$;
2727
+ exports.DeleteChannel$ = DeleteChannel$;
2664
2728
  exports.DeleteChannelCommand = DeleteChannelCommand;
2729
+ exports.DeleteChannelPolicy$ = DeleteChannelPolicy$;
2665
2730
  exports.DeleteChannelPolicyCommand = DeleteChannelPolicyCommand;
2731
+ exports.DeleteChannelPolicyRequest$ = DeleteChannelPolicyRequest$;
2732
+ exports.DeleteChannelPolicyResponse$ = DeleteChannelPolicyResponse$;
2733
+ exports.DeleteChannelRequest$ = DeleteChannelRequest$;
2734
+ exports.DeleteChannelResponse$ = DeleteChannelResponse$;
2735
+ exports.DeleteLiveSource$ = DeleteLiveSource$;
2666
2736
  exports.DeleteLiveSourceCommand = DeleteLiveSourceCommand;
2737
+ exports.DeleteLiveSourceRequest$ = DeleteLiveSourceRequest$;
2738
+ exports.DeleteLiveSourceResponse$ = DeleteLiveSourceResponse$;
2739
+ exports.DeletePlaybackConfiguration$ = DeletePlaybackConfiguration$;
2667
2740
  exports.DeletePlaybackConfigurationCommand = DeletePlaybackConfigurationCommand;
2741
+ exports.DeletePlaybackConfigurationRequest$ = DeletePlaybackConfigurationRequest$;
2742
+ exports.DeletePlaybackConfigurationResponse$ = DeletePlaybackConfigurationResponse$;
2743
+ exports.DeletePrefetchSchedule$ = DeletePrefetchSchedule$;
2668
2744
  exports.DeletePrefetchScheduleCommand = DeletePrefetchScheduleCommand;
2745
+ exports.DeletePrefetchScheduleRequest$ = DeletePrefetchScheduleRequest$;
2746
+ exports.DeletePrefetchScheduleResponse$ = DeletePrefetchScheduleResponse$;
2747
+ exports.DeleteProgram$ = DeleteProgram$;
2669
2748
  exports.DeleteProgramCommand = DeleteProgramCommand;
2749
+ exports.DeleteProgramRequest$ = DeleteProgramRequest$;
2750
+ exports.DeleteProgramResponse$ = DeleteProgramResponse$;
2751
+ exports.DeleteSourceLocation$ = DeleteSourceLocation$;
2670
2752
  exports.DeleteSourceLocationCommand = DeleteSourceLocationCommand;
2753
+ exports.DeleteSourceLocationRequest$ = DeleteSourceLocationRequest$;
2754
+ exports.DeleteSourceLocationResponse$ = DeleteSourceLocationResponse$;
2755
+ exports.DeleteVodSource$ = DeleteVodSource$;
2671
2756
  exports.DeleteVodSourceCommand = DeleteVodSourceCommand;
2757
+ exports.DeleteVodSourceRequest$ = DeleteVodSourceRequest$;
2758
+ exports.DeleteVodSourceResponse$ = DeleteVodSourceResponse$;
2759
+ exports.DescribeChannel$ = DescribeChannel$;
2672
2760
  exports.DescribeChannelCommand = DescribeChannelCommand;
2761
+ exports.DescribeChannelRequest$ = DescribeChannelRequest$;
2762
+ exports.DescribeChannelResponse$ = DescribeChannelResponse$;
2763
+ exports.DescribeLiveSource$ = DescribeLiveSource$;
2673
2764
  exports.DescribeLiveSourceCommand = DescribeLiveSourceCommand;
2765
+ exports.DescribeLiveSourceRequest$ = DescribeLiveSourceRequest$;
2766
+ exports.DescribeLiveSourceResponse$ = DescribeLiveSourceResponse$;
2767
+ exports.DescribeProgram$ = DescribeProgram$;
2674
2768
  exports.DescribeProgramCommand = DescribeProgramCommand;
2769
+ exports.DescribeProgramRequest$ = DescribeProgramRequest$;
2770
+ exports.DescribeProgramResponse$ = DescribeProgramResponse$;
2771
+ exports.DescribeSourceLocation$ = DescribeSourceLocation$;
2675
2772
  exports.DescribeSourceLocationCommand = DescribeSourceLocationCommand;
2773
+ exports.DescribeSourceLocationRequest$ = DescribeSourceLocationRequest$;
2774
+ exports.DescribeSourceLocationResponse$ = DescribeSourceLocationResponse$;
2775
+ exports.DescribeVodSource$ = DescribeVodSource$;
2676
2776
  exports.DescribeVodSourceCommand = DescribeVodSourceCommand;
2777
+ exports.DescribeVodSourceRequest$ = DescribeVodSourceRequest$;
2778
+ exports.DescribeVodSourceResponse$ = DescribeVodSourceResponse$;
2677
2779
  exports.FillPolicy = FillPolicy;
2780
+ exports.GetChannelPolicy$ = GetChannelPolicy$;
2678
2781
  exports.GetChannelPolicyCommand = GetChannelPolicyCommand;
2782
+ exports.GetChannelPolicyRequest$ = GetChannelPolicyRequest$;
2783
+ exports.GetChannelPolicyResponse$ = GetChannelPolicyResponse$;
2784
+ exports.GetChannelSchedule$ = GetChannelSchedule$;
2679
2785
  exports.GetChannelScheduleCommand = GetChannelScheduleCommand;
2786
+ exports.GetChannelScheduleRequest$ = GetChannelScheduleRequest$;
2787
+ exports.GetChannelScheduleResponse$ = GetChannelScheduleResponse$;
2788
+ exports.GetPlaybackConfiguration$ = GetPlaybackConfiguration$;
2680
2789
  exports.GetPlaybackConfigurationCommand = GetPlaybackConfigurationCommand;
2790
+ exports.GetPlaybackConfigurationRequest$ = GetPlaybackConfigurationRequest$;
2791
+ exports.GetPlaybackConfigurationResponse$ = GetPlaybackConfigurationResponse$;
2792
+ exports.GetPrefetchSchedule$ = GetPrefetchSchedule$;
2681
2793
  exports.GetPrefetchScheduleCommand = GetPrefetchScheduleCommand;
2794
+ exports.GetPrefetchScheduleRequest$ = GetPrefetchScheduleRequest$;
2795
+ exports.GetPrefetchScheduleResponse$ = GetPrefetchScheduleResponse$;
2796
+ exports.HlsConfiguration$ = HlsConfiguration$;
2797
+ exports.HlsPlaylistSettings$ = HlsPlaylistSettings$;
2798
+ exports.HttpConfiguration$ = HttpConfiguration$;
2799
+ exports.HttpPackageConfiguration$ = HttpPackageConfiguration$;
2800
+ exports.HttpRequest$ = HttpRequest$;
2682
2801
  exports.InsertionMode = InsertionMode;
2802
+ exports.KeyValuePair$ = KeyValuePair$;
2803
+ exports.ListAlerts$ = ListAlerts$;
2683
2804
  exports.ListAlertsCommand = ListAlertsCommand;
2805
+ exports.ListAlertsRequest$ = ListAlertsRequest$;
2806
+ exports.ListAlertsResponse$ = ListAlertsResponse$;
2807
+ exports.ListChannels$ = ListChannels$;
2684
2808
  exports.ListChannelsCommand = ListChannelsCommand;
2809
+ exports.ListChannelsRequest$ = ListChannelsRequest$;
2810
+ exports.ListChannelsResponse$ = ListChannelsResponse$;
2811
+ exports.ListLiveSources$ = ListLiveSources$;
2685
2812
  exports.ListLiveSourcesCommand = ListLiveSourcesCommand;
2813
+ exports.ListLiveSourcesRequest$ = ListLiveSourcesRequest$;
2814
+ exports.ListLiveSourcesResponse$ = ListLiveSourcesResponse$;
2815
+ exports.ListPlaybackConfigurations$ = ListPlaybackConfigurations$;
2686
2816
  exports.ListPlaybackConfigurationsCommand = ListPlaybackConfigurationsCommand;
2817
+ exports.ListPlaybackConfigurationsRequest$ = ListPlaybackConfigurationsRequest$;
2818
+ exports.ListPlaybackConfigurationsResponse$ = ListPlaybackConfigurationsResponse$;
2687
2819
  exports.ListPrefetchScheduleType = ListPrefetchScheduleType;
2820
+ exports.ListPrefetchSchedules$ = ListPrefetchSchedules$;
2688
2821
  exports.ListPrefetchSchedulesCommand = ListPrefetchSchedulesCommand;
2822
+ exports.ListPrefetchSchedulesRequest$ = ListPrefetchSchedulesRequest$;
2823
+ exports.ListPrefetchSchedulesResponse$ = ListPrefetchSchedulesResponse$;
2824
+ exports.ListSourceLocations$ = ListSourceLocations$;
2689
2825
  exports.ListSourceLocationsCommand = ListSourceLocationsCommand;
2826
+ exports.ListSourceLocationsRequest$ = ListSourceLocationsRequest$;
2827
+ exports.ListSourceLocationsResponse$ = ListSourceLocationsResponse$;
2828
+ exports.ListTagsForResource$ = ListTagsForResource$;
2690
2829
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2830
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2831
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2832
+ exports.ListVodSources$ = ListVodSources$;
2691
2833
  exports.ListVodSourcesCommand = ListVodSourcesCommand;
2834
+ exports.ListVodSourcesRequest$ = ListVodSourcesRequest$;
2835
+ exports.ListVodSourcesResponse$ = ListVodSourcesResponse$;
2836
+ exports.LivePreRollConfiguration$ = LivePreRollConfiguration$;
2837
+ exports.LiveSource$ = LiveSource$;
2838
+ exports.LogConfiguration$ = LogConfiguration$;
2839
+ exports.LogConfigurationForChannel$ = LogConfigurationForChannel$;
2692
2840
  exports.LogType = LogType;
2693
2841
  exports.LoggingStrategy = LoggingStrategy;
2842
+ exports.ManifestProcessingRules$ = ManifestProcessingRules$;
2694
2843
  exports.ManifestServiceExcludeEventType = ManifestServiceExcludeEventType;
2844
+ exports.ManifestServiceInteractionLog$ = ManifestServiceInteractionLog$;
2695
2845
  exports.MediaTailor = MediaTailor;
2696
2846
  exports.MediaTailorClient = MediaTailorClient;
2697
- exports.MediaTailorServiceException = MediaTailorServiceException$1;
2847
+ exports.MediaTailorServiceException = MediaTailorServiceException;
2848
+ exports.MediaTailorServiceException$ = MediaTailorServiceException$;
2698
2849
  exports.MessageType = MessageType;
2850
+ exports.Method = Method;
2699
2851
  exports.Mode = Mode;
2700
2852
  exports.Operator = Operator;
2701
2853
  exports.OriginManifestType = OriginManifestType;
2854
+ exports.PlaybackConfiguration$ = PlaybackConfiguration$;
2702
2855
  exports.PlaybackMode = PlaybackMode;
2856
+ exports.PrefetchConsumption$ = PrefetchConsumption$;
2857
+ exports.PrefetchRetrieval$ = PrefetchRetrieval$;
2858
+ exports.PrefetchSchedule$ = PrefetchSchedule$;
2703
2859
  exports.PrefetchScheduleType = PrefetchScheduleType;
2860
+ exports.PutChannelPolicy$ = PutChannelPolicy$;
2704
2861
  exports.PutChannelPolicyCommand = PutChannelPolicyCommand;
2862
+ exports.PutChannelPolicyRequest$ = PutChannelPolicyRequest$;
2863
+ exports.PutChannelPolicyResponse$ = PutChannelPolicyResponse$;
2864
+ exports.PutPlaybackConfiguration$ = PutPlaybackConfiguration$;
2705
2865
  exports.PutPlaybackConfigurationCommand = PutPlaybackConfigurationCommand;
2866
+ exports.PutPlaybackConfigurationRequest$ = PutPlaybackConfigurationRequest$;
2867
+ exports.PutPlaybackConfigurationResponse$ = PutPlaybackConfigurationResponse$;
2868
+ exports.RecurringConsumption$ = RecurringConsumption$;
2869
+ exports.RecurringPrefetchConfiguration$ = RecurringPrefetchConfiguration$;
2870
+ exports.RecurringRetrieval$ = RecurringRetrieval$;
2706
2871
  exports.RelativePosition = RelativePosition;
2872
+ exports.RequestOutputItem$ = RequestOutputItem$;
2873
+ exports.ResponseOutputItem$ = ResponseOutputItem$;
2874
+ exports.ScheduleAdBreak$ = ScheduleAdBreak$;
2875
+ exports.ScheduleConfiguration$ = ScheduleConfiguration$;
2876
+ exports.ScheduleEntry$ = ScheduleEntry$;
2707
2877
  exports.ScheduleEntryType = ScheduleEntryType;
2878
+ exports.SecretsManagerAccessTokenConfiguration$ = SecretsManagerAccessTokenConfiguration$;
2879
+ exports.SegmentDeliveryConfiguration$ = SegmentDeliveryConfiguration$;
2880
+ exports.SegmentationDescriptor$ = SegmentationDescriptor$;
2881
+ exports.SlateSource$ = SlateSource$;
2882
+ exports.SourceLocation$ = SourceLocation$;
2883
+ exports.SpliceInsertMessage$ = SpliceInsertMessage$;
2884
+ exports.StartChannel$ = StartChannel$;
2708
2885
  exports.StartChannelCommand = StartChannelCommand;
2886
+ exports.StartChannelRequest$ = StartChannelRequest$;
2887
+ exports.StartChannelResponse$ = StartChannelResponse$;
2888
+ exports.StopChannel$ = StopChannel$;
2709
2889
  exports.StopChannelCommand = StopChannelCommand;
2890
+ exports.StopChannelRequest$ = StopChannelRequest$;
2891
+ exports.StopChannelResponse$ = StopChannelResponse$;
2710
2892
  exports.StreamingMediaFileConditioning = StreamingMediaFileConditioning;
2893
+ exports.TagResource$ = TagResource$;
2711
2894
  exports.TagResourceCommand = TagResourceCommand;
2895
+ exports.TagResourceRequest$ = TagResourceRequest$;
2712
2896
  exports.Tier = Tier;
2897
+ exports.TimeShiftConfiguration$ = TimeShiftConfiguration$;
2898
+ exports.TimeSignalMessage$ = TimeSignalMessage$;
2899
+ exports.TrafficShapingRetrievalWindow$ = TrafficShapingRetrievalWindow$;
2900
+ exports.TrafficShapingTpsConfiguration$ = TrafficShapingTpsConfiguration$;
2713
2901
  exports.TrafficShapingType = TrafficShapingType;
2902
+ exports.Transition$ = Transition$;
2714
2903
  exports.Type = Type;
2904
+ exports.UntagResource$ = UntagResource$;
2715
2905
  exports.UntagResourceCommand = UntagResourceCommand;
2906
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2907
+ exports.UpdateChannel$ = UpdateChannel$;
2716
2908
  exports.UpdateChannelCommand = UpdateChannelCommand;
2909
+ exports.UpdateChannelRequest$ = UpdateChannelRequest$;
2910
+ exports.UpdateChannelResponse$ = UpdateChannelResponse$;
2911
+ exports.UpdateLiveSource$ = UpdateLiveSource$;
2717
2912
  exports.UpdateLiveSourceCommand = UpdateLiveSourceCommand;
2913
+ exports.UpdateLiveSourceRequest$ = UpdateLiveSourceRequest$;
2914
+ exports.UpdateLiveSourceResponse$ = UpdateLiveSourceResponse$;
2915
+ exports.UpdateProgram$ = UpdateProgram$;
2718
2916
  exports.UpdateProgramCommand = UpdateProgramCommand;
2917
+ exports.UpdateProgramRequest$ = UpdateProgramRequest$;
2918
+ exports.UpdateProgramResponse$ = UpdateProgramResponse$;
2919
+ exports.UpdateProgramScheduleConfiguration$ = UpdateProgramScheduleConfiguration$;
2920
+ exports.UpdateProgramTransition$ = UpdateProgramTransition$;
2921
+ exports.UpdateSourceLocation$ = UpdateSourceLocation$;
2719
2922
  exports.UpdateSourceLocationCommand = UpdateSourceLocationCommand;
2923
+ exports.UpdateSourceLocationRequest$ = UpdateSourceLocationRequest$;
2924
+ exports.UpdateSourceLocationResponse$ = UpdateSourceLocationResponse$;
2925
+ exports.UpdateVodSource$ = UpdateVodSource$;
2720
2926
  exports.UpdateVodSourceCommand = UpdateVodSourceCommand;
2927
+ exports.UpdateVodSourceRequest$ = UpdateVodSourceRequest$;
2928
+ exports.UpdateVodSourceResponse$ = UpdateVodSourceResponse$;
2929
+ exports.VodSource$ = VodSource$;
2721
2930
  exports.paginateGetChannelSchedule = paginateGetChannelSchedule;
2722
2931
  exports.paginateListAlerts = paginateListAlerts;
2723
2932
  exports.paginateListChannels = paginateListChannels;