@aws-sdk/client-mediatailor 3.74.0 → 3.78.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 (62) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/MediaTailor.js +75 -0
  3. package/dist-cjs/commands/CreateLiveSourceCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteLiveSourceCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeLiveSourceCommand.js +36 -0
  6. package/dist-cjs/commands/ListLiveSourcesCommand.js +36 -0
  7. package/dist-cjs/commands/UpdateLiveSourceCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +85 -14
  10. package/dist-cjs/pagination/GetChannelSchedulePaginator.js +2 -1
  11. package/dist-cjs/pagination/ListAlertsPaginator.js +2 -1
  12. package/dist-cjs/pagination/ListChannelsPaginator.js +2 -1
  13. package/dist-cjs/pagination/ListLiveSourcesPaginator.js +36 -0
  14. package/dist-cjs/pagination/ListPlaybackConfigurationsPaginator.js +2 -1
  15. package/dist-cjs/pagination/ListPrefetchSchedulesPaginator.js +2 -1
  16. package/dist-cjs/pagination/ListSourceLocationsPaginator.js +2 -1
  17. package/dist-cjs/pagination/ListVodSourcesPaginator.js +2 -1
  18. package/dist-cjs/pagination/index.js +1 -0
  19. package/dist-cjs/protocols/Aws_restJson1.js +499 -2
  20. package/dist-es/MediaTailor.js +75 -0
  21. package/dist-es/commands/CreateLiveSourceCommand.js +39 -0
  22. package/dist-es/commands/DeleteLiveSourceCommand.js +39 -0
  23. package/dist-es/commands/DescribeLiveSourceCommand.js +39 -0
  24. package/dist-es/commands/ListLiveSourcesCommand.js +39 -0
  25. package/dist-es/commands/UpdateLiveSourceCommand.js +39 -0
  26. package/dist-es/commands/index.js +5 -0
  27. package/dist-es/models/models_0.js +58 -9
  28. package/dist-es/pagination/GetChannelSchedulePaginator.js +3 -2
  29. package/dist-es/pagination/ListAlertsPaginator.js +3 -2
  30. package/dist-es/pagination/ListChannelsPaginator.js +3 -2
  31. package/dist-es/pagination/ListLiveSourcesPaginator.js +75 -0
  32. package/dist-es/pagination/ListPlaybackConfigurationsPaginator.js +3 -2
  33. package/dist-es/pagination/ListPrefetchSchedulesPaginator.js +3 -2
  34. package/dist-es/pagination/ListSourceLocationsPaginator.js +3 -2
  35. package/dist-es/pagination/ListVodSourcesPaginator.js +3 -2
  36. package/dist-es/pagination/index.js +1 -0
  37. package/dist-es/protocols/Aws_restJson1.js +607 -13
  38. package/dist-types/MediaTailor.d.ts +35 -0
  39. package/dist-types/MediaTailorClient.d.ts +7 -2
  40. package/dist-types/commands/CreateLiveSourceCommand.d.ts +35 -0
  41. package/dist-types/commands/DeleteLiveSourceCommand.d.ts +35 -0
  42. package/dist-types/commands/DescribeLiveSourceCommand.d.ts +35 -0
  43. package/dist-types/commands/ListLiveSourcesCommand.d.ts +35 -0
  44. package/dist-types/commands/UpdateLiveSourceCommand.d.ts +35 -0
  45. package/dist-types/commands/index.d.ts +5 -0
  46. package/dist-types/models/models_0.d.ts +387 -39
  47. package/dist-types/pagination/ListLiveSourcesPaginator.d.ts +4 -0
  48. package/dist-types/pagination/index.d.ts +1 -0
  49. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  50. package/dist-types/ts3.4/MediaTailor.d.ts +25 -0
  51. package/dist-types/ts3.4/MediaTailorClient.d.ts +7 -2
  52. package/dist-types/ts3.4/commands/CreateLiveSourceCommand.d.ts +17 -0
  53. package/dist-types/ts3.4/commands/DeleteLiveSourceCommand.d.ts +17 -0
  54. package/dist-types/ts3.4/commands/DescribeLiveSourceCommand.d.ts +17 -0
  55. package/dist-types/ts3.4/commands/ListLiveSourcesCommand.d.ts +17 -0
  56. package/dist-types/ts3.4/commands/UpdateLiveSourceCommand.d.ts +17 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  58. package/dist-types/ts3.4/models/models_0.d.ts +217 -19
  59. package/dist-types/ts3.4/pagination/ListLiveSourcesPaginator.d.ts +4 -0
  60. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  61. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  62. package/package.json +25 -25
@@ -138,11 +138,53 @@ export interface Channel {
138
138
  Tags?: {
139
139
  [key: string]: string;
140
140
  };
141
+
142
+ Tier: string | undefined;
141
143
  }
142
144
  export declare namespace Channel {
143
145
 
144
146
  const filterSensitiveLog: (obj: Channel) => any;
145
147
  }
148
+ export declare enum Type {
149
+ DASH = "DASH",
150
+ HLS = "HLS"
151
+ }
152
+
153
+ export interface HttpPackageConfiguration {
154
+
155
+ Path: string | undefined;
156
+
157
+ SourceGroup: string | undefined;
158
+
159
+ Type: Type | string | undefined;
160
+ }
161
+ export declare namespace HttpPackageConfiguration {
162
+
163
+ const filterSensitiveLog: (obj: HttpPackageConfiguration) => any;
164
+ }
165
+
166
+ export interface LiveSource {
167
+
168
+ Arn: string | undefined;
169
+
170
+ CreationTime?: Date;
171
+
172
+ HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
173
+
174
+ LastModifiedTime?: Date;
175
+
176
+ LiveSourceName: string | undefined;
177
+
178
+ SourceLocationName: string | undefined;
179
+
180
+ Tags?: {
181
+ [key: string]: string;
182
+ };
183
+ }
184
+ export declare namespace LiveSource {
185
+
186
+ const filterSensitiveLog: (obj: LiveSource) => any;
187
+ }
146
188
  export declare enum Mode {
147
189
  BEHIND_LIVE_EDGE = "BEHIND_LIVE_EDGE",
148
190
  OFF = "OFF"
@@ -372,6 +414,8 @@ export interface ScheduleEntry {
372
414
 
373
415
  ChannelName: string | undefined;
374
416
 
417
+ LiveSourceName?: string;
418
+
375
419
  ProgramName: string | undefined;
376
420
 
377
421
  ScheduleAdBreaks?: ScheduleAdBreak[];
@@ -380,14 +424,17 @@ export interface ScheduleEntry {
380
424
 
381
425
  SourceLocationName: string | undefined;
382
426
 
383
- VodSourceName: string | undefined;
427
+ VodSourceName?: string;
384
428
  }
385
429
  export declare namespace ScheduleEntry {
386
430
 
387
431
  const filterSensitiveLog: (obj: ScheduleEntry) => any;
388
432
  }
433
+
389
434
  export interface SegmentDeliveryConfiguration {
435
+
390
436
  BaseUrl?: string;
437
+
391
438
  Name?: string;
392
439
  }
393
440
  export declare namespace SegmentDeliveryConfiguration {
@@ -454,6 +501,7 @@ export interface SourceLocation {
454
501
  HttpConfiguration: HttpConfiguration | undefined;
455
502
 
456
503
  LastModifiedTime?: Date;
504
+
457
505
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
458
506
 
459
507
  SourceLocationName: string | undefined;
@@ -466,23 +514,6 @@ export declare namespace SourceLocation {
466
514
 
467
515
  const filterSensitiveLog: (obj: SourceLocation) => any;
468
516
  }
469
- export declare enum Type {
470
- DASH = "DASH",
471
- HLS = "HLS"
472
- }
473
-
474
- export interface HttpPackageConfiguration {
475
-
476
- Path: string | undefined;
477
-
478
- SourceGroup: string | undefined;
479
-
480
- Type: Type | string | undefined;
481
- }
482
- export declare namespace HttpPackageConfiguration {
483
-
484
- const filterSensitiveLog: (obj: HttpPackageConfiguration) => any;
485
- }
486
517
 
487
518
  export interface VodSource {
488
519
 
@@ -558,6 +589,10 @@ export declare enum PlaybackMode {
558
589
  LINEAR = "LINEAR",
559
590
  LOOP = "LOOP"
560
591
  }
592
+ export declare enum Tier {
593
+ BASIC = "BASIC",
594
+ STANDARD = "STANDARD"
595
+ }
561
596
  export interface CreateChannelRequest {
562
597
 
563
598
  ChannelName: string | undefined;
@@ -571,6 +606,8 @@ export interface CreateChannelRequest {
571
606
  Tags?: {
572
607
  [key: string]: string;
573
608
  };
609
+
610
+ Tier?: Tier | string;
574
611
  }
575
612
  export declare namespace CreateChannelRequest {
576
613
 
@@ -597,11 +634,51 @@ export interface CreateChannelResponse {
597
634
  Tags?: {
598
635
  [key: string]: string;
599
636
  };
637
+
638
+ Tier?: string;
600
639
  }
601
640
  export declare namespace CreateChannelResponse {
602
641
 
603
642
  const filterSensitiveLog: (obj: CreateChannelResponse) => any;
604
643
  }
644
+ export interface CreateLiveSourceRequest {
645
+
646
+ HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
647
+
648
+ LiveSourceName: string | undefined;
649
+
650
+ SourceLocationName: string | undefined;
651
+
652
+ Tags?: {
653
+ [key: string]: string;
654
+ };
655
+ }
656
+ export declare namespace CreateLiveSourceRequest {
657
+
658
+ const filterSensitiveLog: (obj: CreateLiveSourceRequest) => any;
659
+ }
660
+ export interface CreateLiveSourceResponse {
661
+
662
+ Arn?: string;
663
+
664
+ CreationTime?: Date;
665
+
666
+ HttpPackageConfigurations?: HttpPackageConfiguration[];
667
+
668
+ LastModifiedTime?: Date;
669
+
670
+ LiveSourceName?: string;
671
+
672
+ SourceLocationName?: string;
673
+
674
+ Tags?: {
675
+ [key: string]: string;
676
+ };
677
+ }
678
+ export declare namespace CreateLiveSourceResponse {
679
+
680
+ const filterSensitiveLog: (obj: CreateLiveSourceResponse) => any;
681
+ }
605
682
  export interface CreatePrefetchScheduleRequest {
606
683
 
607
684
  Consumption: PrefetchConsumption | undefined;
@@ -643,6 +720,8 @@ export declare enum RelativePosition {
643
720
 
644
721
  export interface Transition {
645
722
 
723
+ DurationMillis?: number;
724
+
646
725
  RelativePosition: RelativePosition | string | undefined;
647
726
 
648
727
  RelativeProgram?: string;
@@ -670,13 +749,15 @@ export interface CreateProgramRequest {
670
749
 
671
750
  ChannelName: string | undefined;
672
751
 
752
+ LiveSourceName?: string;
753
+
673
754
  ProgramName: string | undefined;
674
755
 
675
756
  ScheduleConfiguration: ScheduleConfiguration | undefined;
676
757
 
677
758
  SourceLocationName: string | undefined;
678
759
 
679
- VodSourceName: string | undefined;
760
+ VodSourceName?: string;
680
761
  }
681
762
  export declare namespace CreateProgramRequest {
682
763
 
@@ -692,6 +773,8 @@ export interface CreateProgramResponse {
692
773
 
693
774
  CreationTime?: Date;
694
775
 
776
+ LiveSourceName?: string;
777
+
695
778
  ProgramName?: string;
696
779
 
697
780
  ScheduledStartTime?: Date;
@@ -711,6 +794,7 @@ export interface CreateSourceLocationRequest {
711
794
  DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
712
795
 
713
796
  HttpConfiguration: HttpConfiguration | undefined;
797
+
714
798
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
715
799
 
716
800
  SourceLocationName: string | undefined;
@@ -736,6 +820,7 @@ export interface CreateSourceLocationResponse {
736
820
  HttpConfiguration?: HttpConfiguration;
737
821
 
738
822
  LastModifiedTime?: Date;
823
+
739
824
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
740
825
 
741
826
  SourceLocationName?: string;
@@ -825,6 +910,22 @@ export declare namespace DeleteChannelPolicyResponse {
825
910
 
826
911
  const filterSensitiveLog: (obj: DeleteChannelPolicyResponse) => any;
827
912
  }
913
+ export interface DeleteLiveSourceRequest {
914
+
915
+ LiveSourceName: string | undefined;
916
+
917
+ SourceLocationName: string | undefined;
918
+ }
919
+ export declare namespace DeleteLiveSourceRequest {
920
+
921
+ const filterSensitiveLog: (obj: DeleteLiveSourceRequest) => any;
922
+ }
923
+ export interface DeleteLiveSourceResponse {
924
+ }
925
+ export declare namespace DeleteLiveSourceResponse {
926
+
927
+ const filterSensitiveLog: (obj: DeleteLiveSourceResponse) => any;
928
+ }
828
929
  export interface DeletePlaybackConfigurationRequest {
829
930
 
830
931
  Name: string | undefined;
@@ -930,11 +1031,45 @@ export interface DescribeChannelResponse {
930
1031
  Tags?: {
931
1032
  [key: string]: string;
932
1033
  };
1034
+
1035
+ Tier?: string;
933
1036
  }
934
1037
  export declare namespace DescribeChannelResponse {
935
1038
 
936
1039
  const filterSensitiveLog: (obj: DescribeChannelResponse) => any;
937
1040
  }
1041
+ export interface DescribeLiveSourceRequest {
1042
+
1043
+ LiveSourceName: string | undefined;
1044
+
1045
+ SourceLocationName: string | undefined;
1046
+ }
1047
+ export declare namespace DescribeLiveSourceRequest {
1048
+
1049
+ const filterSensitiveLog: (obj: DescribeLiveSourceRequest) => any;
1050
+ }
1051
+ export interface DescribeLiveSourceResponse {
1052
+
1053
+ Arn?: string;
1054
+
1055
+ CreationTime?: Date;
1056
+
1057
+ HttpPackageConfigurations?: HttpPackageConfiguration[];
1058
+
1059
+ LastModifiedTime?: Date;
1060
+
1061
+ LiveSourceName?: string;
1062
+
1063
+ SourceLocationName?: string;
1064
+
1065
+ Tags?: {
1066
+ [key: string]: string;
1067
+ };
1068
+ }
1069
+ export declare namespace DescribeLiveSourceResponse {
1070
+
1071
+ const filterSensitiveLog: (obj: DescribeLiveSourceResponse) => any;
1072
+ }
938
1073
  export interface DescribeProgramRequest {
939
1074
 
940
1075
  ChannelName: string | undefined;
@@ -955,6 +1090,8 @@ export interface DescribeProgramResponse {
955
1090
 
956
1091
  CreationTime?: Date;
957
1092
 
1093
+ LiveSourceName?: string;
1094
+
958
1095
  ProgramName?: string;
959
1096
 
960
1097
  ScheduledStartTime?: Date;
@@ -988,6 +1125,7 @@ export interface DescribeSourceLocationResponse {
988
1125
  HttpConfiguration?: HttpConfiguration;
989
1126
 
990
1127
  LastModifiedTime?: Date;
1128
+
991
1129
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
992
1130
 
993
1131
  SourceLocationName?: string;
@@ -1200,6 +1338,28 @@ export declare namespace ListChannelsResponse {
1200
1338
 
1201
1339
  const filterSensitiveLog: (obj: ListChannelsResponse) => any;
1202
1340
  }
1341
+ export interface ListLiveSourcesRequest {
1342
+
1343
+ MaxResults?: number;
1344
+
1345
+ NextToken?: string;
1346
+
1347
+ SourceLocationName: string | undefined;
1348
+ }
1349
+ export declare namespace ListLiveSourcesRequest {
1350
+
1351
+ const filterSensitiveLog: (obj: ListLiveSourcesRequest) => any;
1352
+ }
1353
+ export interface ListLiveSourcesResponse {
1354
+
1355
+ Items?: LiveSource[];
1356
+
1357
+ NextToken?: string;
1358
+ }
1359
+ export declare namespace ListLiveSourcesResponse {
1360
+
1361
+ const filterSensitiveLog: (obj: ListLiveSourcesResponse) => any;
1362
+ }
1203
1363
  export interface ListPlaybackConfigurationsRequest {
1204
1364
 
1205
1365
  MaxResults?: number;
@@ -1493,11 +1653,47 @@ export interface UpdateChannelResponse {
1493
1653
  Tags?: {
1494
1654
  [key: string]: string;
1495
1655
  };
1656
+
1657
+ Tier?: string;
1496
1658
  }
1497
1659
  export declare namespace UpdateChannelResponse {
1498
1660
 
1499
1661
  const filterSensitiveLog: (obj: UpdateChannelResponse) => any;
1500
1662
  }
1663
+ export interface UpdateLiveSourceRequest {
1664
+
1665
+ HttpPackageConfigurations: HttpPackageConfiguration[] | undefined;
1666
+
1667
+ LiveSourceName: string | undefined;
1668
+
1669
+ SourceLocationName: string | undefined;
1670
+ }
1671
+ export declare namespace UpdateLiveSourceRequest {
1672
+
1673
+ const filterSensitiveLog: (obj: UpdateLiveSourceRequest) => any;
1674
+ }
1675
+ export interface UpdateLiveSourceResponse {
1676
+
1677
+ Arn?: string;
1678
+
1679
+ CreationTime?: Date;
1680
+
1681
+ HttpPackageConfigurations?: HttpPackageConfiguration[];
1682
+
1683
+ LastModifiedTime?: Date;
1684
+
1685
+ LiveSourceName?: string;
1686
+
1687
+ SourceLocationName?: string;
1688
+
1689
+ Tags?: {
1690
+ [key: string]: string;
1691
+ };
1692
+ }
1693
+ export declare namespace UpdateLiveSourceResponse {
1694
+
1695
+ const filterSensitiveLog: (obj: UpdateLiveSourceResponse) => any;
1696
+ }
1501
1697
  export interface UpdateSourceLocationRequest {
1502
1698
 
1503
1699
  AccessConfiguration?: AccessConfiguration;
@@ -1505,6 +1701,7 @@ export interface UpdateSourceLocationRequest {
1505
1701
  DefaultSegmentDeliveryConfiguration?: DefaultSegmentDeliveryConfiguration;
1506
1702
 
1507
1703
  HttpConfiguration: HttpConfiguration | undefined;
1704
+
1508
1705
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
1509
1706
 
1510
1707
  SourceLocationName: string | undefined;
@@ -1526,6 +1723,7 @@ export interface UpdateSourceLocationResponse {
1526
1723
  HttpConfiguration?: HttpConfiguration;
1527
1724
 
1528
1725
  LastModifiedTime?: Date;
1726
+
1529
1727
  SegmentDeliveryConfigurations?: SegmentDeliveryConfiguration[];
1530
1728
 
1531
1729
  SourceLocationName?: string;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput } from "../commands/ListLiveSourcesCommand";
3
+ import { MediaTailorPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListLiveSources(config: MediaTailorPaginationConfiguration, input: ListLiveSourcesCommandInput, ...additionalArguments: any): Paginator<ListLiveSourcesCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./GetChannelSchedulePaginator";
2
2
  export * from "./Interfaces";
3
3
  export * from "./ListAlertsPaginator";
4
4
  export * from "./ListChannelsPaginator";
5
+ export * from "./ListLiveSourcesPaginator";
5
6
  export * from "./ListPlaybackConfigurationsPaginator";
6
7
  export * from "./ListPrefetchSchedulesPaginator";
7
8
  export * from "./ListSourceLocationsPaginator";
@@ -2,18 +2,21 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { ConfigureLogsForPlaybackConfigurationCommandInput, ConfigureLogsForPlaybackConfigurationCommandOutput } from "../commands/ConfigureLogsForPlaybackConfigurationCommand";
4
4
  import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
5
+ import { CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput } from "../commands/CreateLiveSourceCommand";
5
6
  import { CreatePrefetchScheduleCommandInput, CreatePrefetchScheduleCommandOutput } from "../commands/CreatePrefetchScheduleCommand";
6
7
  import { CreateProgramCommandInput, CreateProgramCommandOutput } from "../commands/CreateProgramCommand";
7
8
  import { CreateSourceLocationCommandInput, CreateSourceLocationCommandOutput } from "../commands/CreateSourceLocationCommand";
8
9
  import { CreateVodSourceCommandInput, CreateVodSourceCommandOutput } from "../commands/CreateVodSourceCommand";
9
10
  import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
10
11
  import { DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput } from "../commands/DeleteChannelPolicyCommand";
12
+ import { DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput } from "../commands/DeleteLiveSourceCommand";
11
13
  import { DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput } from "../commands/DeletePlaybackConfigurationCommand";
12
14
  import { DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput } from "../commands/DeletePrefetchScheduleCommand";
13
15
  import { DeleteProgramCommandInput, DeleteProgramCommandOutput } from "../commands/DeleteProgramCommand";
14
16
  import { DeleteSourceLocationCommandInput, DeleteSourceLocationCommandOutput } from "../commands/DeleteSourceLocationCommand";
15
17
  import { DeleteVodSourceCommandInput, DeleteVodSourceCommandOutput } from "../commands/DeleteVodSourceCommand";
16
18
  import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "../commands/DescribeChannelCommand";
19
+ import { DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput } from "../commands/DescribeLiveSourceCommand";
17
20
  import { DescribeProgramCommandInput, DescribeProgramCommandOutput } from "../commands/DescribeProgramCommand";
18
21
  import { DescribeSourceLocationCommandInput, DescribeSourceLocationCommandOutput } from "../commands/DescribeSourceLocationCommand";
19
22
  import { DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput } from "../commands/DescribeVodSourceCommand";
@@ -23,6 +26,7 @@ import { GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOu
23
26
  import { GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput } from "../commands/GetPrefetchScheduleCommand";
24
27
  import { ListAlertsCommandInput, ListAlertsCommandOutput } from "../commands/ListAlertsCommand";
25
28
  import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
29
+ import { ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput } from "../commands/ListLiveSourcesCommand";
26
30
  import { ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput } from "../commands/ListPlaybackConfigurationsCommand";
27
31
  import { ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput } from "../commands/ListPrefetchSchedulesCommand";
28
32
  import { ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput } from "../commands/ListSourceLocationsCommand";
@@ -35,22 +39,26 @@ import { StopChannelCommandInput, StopChannelCommandOutput } from "../commands/S
35
39
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
36
40
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
37
41
  import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
42
+ import { UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput } from "../commands/UpdateLiveSourceCommand";
38
43
  import { UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput } from "../commands/UpdateSourceLocationCommand";
39
44
  import { UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput } from "../commands/UpdateVodSourceCommand";
40
45
  export declare const serializeAws_restJson1ConfigureLogsForPlaybackConfigurationCommand: (input: ConfigureLogsForPlaybackConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
46
  export declare const serializeAws_restJson1CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ export declare const serializeAws_restJson1CreateLiveSourceCommand: (input: CreateLiveSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
48
  export declare const serializeAws_restJson1CreatePrefetchScheduleCommand: (input: CreatePrefetchScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
49
  export declare const serializeAws_restJson1CreateProgramCommand: (input: CreateProgramCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
50
  export declare const serializeAws_restJson1CreateSourceLocationCommand: (input: CreateSourceLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
51
  export declare const serializeAws_restJson1CreateVodSourceCommand: (input: CreateVodSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
52
  export declare const serializeAws_restJson1DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
53
  export declare const serializeAws_restJson1DeleteChannelPolicyCommand: (input: DeleteChannelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ export declare const serializeAws_restJson1DeleteLiveSourceCommand: (input: DeleteLiveSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
55
  export declare const serializeAws_restJson1DeletePlaybackConfigurationCommand: (input: DeletePlaybackConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
56
  export declare const serializeAws_restJson1DeletePrefetchScheduleCommand: (input: DeletePrefetchScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
57
  export declare const serializeAws_restJson1DeleteProgramCommand: (input: DeleteProgramCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
58
  export declare const serializeAws_restJson1DeleteSourceLocationCommand: (input: DeleteSourceLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
59
  export declare const serializeAws_restJson1DeleteVodSourceCommand: (input: DeleteVodSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
60
  export declare const serializeAws_restJson1DescribeChannelCommand: (input: DescribeChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ export declare const serializeAws_restJson1DescribeLiveSourceCommand: (input: DescribeLiveSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
62
  export declare const serializeAws_restJson1DescribeProgramCommand: (input: DescribeProgramCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
63
  export declare const serializeAws_restJson1DescribeSourceLocationCommand: (input: DescribeSourceLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
64
  export declare const serializeAws_restJson1DescribeVodSourceCommand: (input: DescribeVodSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -60,6 +68,7 @@ export declare const serializeAws_restJson1GetPlaybackConfigurationCommand: (inp
60
68
  export declare const serializeAws_restJson1GetPrefetchScheduleCommand: (input: GetPrefetchScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
69
  export declare const serializeAws_restJson1ListAlertsCommand: (input: ListAlertsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
70
  export declare const serializeAws_restJson1ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ export declare const serializeAws_restJson1ListLiveSourcesCommand: (input: ListLiveSourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
72
  export declare const serializeAws_restJson1ListPlaybackConfigurationsCommand: (input: ListPlaybackConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
73
  export declare const serializeAws_restJson1ListPrefetchSchedulesCommand: (input: ListPrefetchSchedulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
74
  export declare const serializeAws_restJson1ListSourceLocationsCommand: (input: ListSourceLocationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -72,22 +81,26 @@ export declare const serializeAws_restJson1StopChannelCommand: (input: StopChann
72
81
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
82
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
83
  export declare const serializeAws_restJson1UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
+ export declare const serializeAws_restJson1UpdateLiveSourceCommand: (input: UpdateLiveSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
85
  export declare const serializeAws_restJson1UpdateSourceLocationCommand: (input: UpdateSourceLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
86
  export declare const serializeAws_restJson1UpdateVodSourceCommand: (input: UpdateVodSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
87
  export declare const deserializeAws_restJson1ConfigureLogsForPlaybackConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConfigureLogsForPlaybackConfigurationCommandOutput>;
78
88
  export declare const deserializeAws_restJson1CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
89
+ export declare const deserializeAws_restJson1CreateLiveSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLiveSourceCommandOutput>;
79
90
  export declare const deserializeAws_restJson1CreatePrefetchScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePrefetchScheduleCommandOutput>;
80
91
  export declare const deserializeAws_restJson1CreateProgramCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProgramCommandOutput>;
81
92
  export declare const deserializeAws_restJson1CreateSourceLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSourceLocationCommandOutput>;
82
93
  export declare const deserializeAws_restJson1CreateVodSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVodSourceCommandOutput>;
83
94
  export declare const deserializeAws_restJson1DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
84
95
  export declare const deserializeAws_restJson1DeleteChannelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelPolicyCommandOutput>;
96
+ export declare const deserializeAws_restJson1DeleteLiveSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLiveSourceCommandOutput>;
85
97
  export declare const deserializeAws_restJson1DeletePlaybackConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePlaybackConfigurationCommandOutput>;
86
98
  export declare const deserializeAws_restJson1DeletePrefetchScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePrefetchScheduleCommandOutput>;
87
99
  export declare const deserializeAws_restJson1DeleteProgramCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProgramCommandOutput>;
88
100
  export declare const deserializeAws_restJson1DeleteSourceLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSourceLocationCommandOutput>;
89
101
  export declare const deserializeAws_restJson1DeleteVodSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVodSourceCommandOutput>;
90
102
  export declare const deserializeAws_restJson1DescribeChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelCommandOutput>;
103
+ export declare const deserializeAws_restJson1DescribeLiveSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLiveSourceCommandOutput>;
91
104
  export declare const deserializeAws_restJson1DescribeProgramCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProgramCommandOutput>;
92
105
  export declare const deserializeAws_restJson1DescribeSourceLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSourceLocationCommandOutput>;
93
106
  export declare const deserializeAws_restJson1DescribeVodSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVodSourceCommandOutput>;
@@ -97,6 +110,7 @@ export declare const deserializeAws_restJson1GetPlaybackConfigurationCommand: (o
97
110
  export declare const deserializeAws_restJson1GetPrefetchScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPrefetchScheduleCommandOutput>;
98
111
  export declare const deserializeAws_restJson1ListAlertsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAlertsCommandOutput>;
99
112
  export declare const deserializeAws_restJson1ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
113
+ export declare const deserializeAws_restJson1ListLiveSourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLiveSourcesCommandOutput>;
100
114
  export declare const deserializeAws_restJson1ListPlaybackConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPlaybackConfigurationsCommandOutput>;
101
115
  export declare const deserializeAws_restJson1ListPrefetchSchedulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPrefetchSchedulesCommandOutput>;
102
116
  export declare const deserializeAws_restJson1ListSourceLocationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSourceLocationsCommandOutput>;
@@ -109,5 +123,6 @@ export declare const deserializeAws_restJson1StopChannelCommand: (output: __Http
109
123
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
110
124
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
111
125
  export declare const deserializeAws_restJson1UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
126
+ export declare const deserializeAws_restJson1UpdateLiveSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLiveSourceCommandOutput>;
112
127
  export declare const deserializeAws_restJson1UpdateSourceLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSourceLocationCommandOutput>;
113
128
  export declare const deserializeAws_restJson1UpdateVodSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateVodSourceCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediatailor",
3
3
  "description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native",
4
- "version": "3.74.0",
4
+ "version": "3.78.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.74.0",
22
- "@aws-sdk/config-resolver": "3.58.0",
23
- "@aws-sdk/credential-provider-node": "3.74.0",
24
- "@aws-sdk/fetch-http-handler": "3.58.0",
25
- "@aws-sdk/hash-node": "3.55.0",
26
- "@aws-sdk/invalid-dependency": "3.55.0",
27
- "@aws-sdk/middleware-content-length": "3.58.0",
28
- "@aws-sdk/middleware-host-header": "3.58.0",
29
- "@aws-sdk/middleware-logger": "3.55.0",
30
- "@aws-sdk/middleware-retry": "3.58.0",
31
- "@aws-sdk/middleware-serde": "3.55.0",
32
- "@aws-sdk/middleware-signing": "3.58.0",
33
- "@aws-sdk/middleware-stack": "3.55.0",
34
- "@aws-sdk/middleware-user-agent": "3.58.0",
35
- "@aws-sdk/node-config-provider": "3.58.0",
36
- "@aws-sdk/node-http-handler": "3.74.0",
37
- "@aws-sdk/protocol-http": "3.58.0",
38
- "@aws-sdk/smithy-client": "3.72.0",
39
- "@aws-sdk/types": "3.55.0",
40
- "@aws-sdk/url-parser": "3.55.0",
21
+ "@aws-sdk/client-sts": "3.78.0",
22
+ "@aws-sdk/config-resolver": "3.78.0",
23
+ "@aws-sdk/credential-provider-node": "3.78.0",
24
+ "@aws-sdk/fetch-http-handler": "3.78.0",
25
+ "@aws-sdk/hash-node": "3.78.0",
26
+ "@aws-sdk/invalid-dependency": "3.78.0",
27
+ "@aws-sdk/middleware-content-length": "3.78.0",
28
+ "@aws-sdk/middleware-host-header": "3.78.0",
29
+ "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-retry": "3.78.0",
31
+ "@aws-sdk/middleware-serde": "3.78.0",
32
+ "@aws-sdk/middleware-signing": "3.78.0",
33
+ "@aws-sdk/middleware-stack": "3.78.0",
34
+ "@aws-sdk/middleware-user-agent": "3.78.0",
35
+ "@aws-sdk/node-config-provider": "3.78.0",
36
+ "@aws-sdk/node-http-handler": "3.78.0",
37
+ "@aws-sdk/protocol-http": "3.78.0",
38
+ "@aws-sdk/smithy-client": "3.78.0",
39
+ "@aws-sdk/types": "3.78.0",
40
+ "@aws-sdk/url-parser": "3.78.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.72.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.72.0",
47
- "@aws-sdk/util-user-agent-browser": "3.58.0",
48
- "@aws-sdk/util-user-agent-node": "3.58.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.78.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.78.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.78.0",
48
+ "@aws-sdk/util-user-agent-node": "3.78.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",
50
50
  "@aws-sdk/util-utf8-node": "3.55.0",
51
51
  "tslib": "^2.3.1"