@aws-sdk/client-mediatailor 3.1042.0 → 3.1044.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/dist-cjs/index.js +91 -0
- package/dist-cjs/schemas/schemas_0.js +135 -17
- package/dist-es/MediaTailor.js +10 -0
- package/dist-es/commands/DeleteFunctionCommand.js +16 -0
- package/dist-es/commands/GetFunctionCommand.js +16 -0
- package/dist-es/commands/ListFunctionsCommand.js +16 -0
- package/dist-es/commands/PutFunctionCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +26 -0
- package/dist-es/pagination/ListFunctionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +130 -13
- package/dist-types/MediaTailor.d.ts +36 -0
- package/dist-types/MediaTailorClient.d.ts +6 -2
- package/dist-types/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +12 -6
- package/dist-types/commands/DeleteFunctionCommand.d.ts +72 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +112 -0
- package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +9 -3
- package/dist-types/commands/ListFunctionsCommand.d.ts +118 -0
- package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +9 -3
- package/dist-types/commands/PutFunctionCommand.d.ts +149 -0
- package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +12 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +66 -0
- package/dist-types/models/models_0.d.ts +362 -3
- package/dist-types/pagination/ListFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/MediaTailor.d.ts +76 -0
- package/dist-types/ts3.4/MediaTailorClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutFunctionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -0
- package/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +1 -1
package/dist-es/models/enums.js
CHANGED
|
@@ -31,6 +31,8 @@ export const AdsInteractionExcludeEventType = {
|
|
|
31
31
|
MAKING_ADS_REQUEST: "MAKING_ADS_REQUEST",
|
|
32
32
|
MODIFIED_TARGET_URL: "MODIFIED_TARGET_URL",
|
|
33
33
|
NON_AD_MARKER_FOUND: "NON_AD_MARKER_FOUND",
|
|
34
|
+
PRE_ADS_REQUEST_FUNCTION_ERROR: "PRE_ADS_REQUEST_FUNCTION_ERROR",
|
|
35
|
+
PRE_ADS_REQUEST_HOOK_ERROR: "PRE_ADS_REQUEST_HOOK_ERROR",
|
|
34
36
|
REDIRECTED_VAST_RESPONSE: "REDIRECTED_VAST_RESPONSE",
|
|
35
37
|
VAST_REDIRECT: "VAST_REDIRECT",
|
|
36
38
|
VAST_RESPONSE: "VAST_RESPONSE",
|
|
@@ -42,6 +44,8 @@ export const AdsInteractionExcludeEventType = {
|
|
|
42
44
|
WARNING_VPAID_AD_DROPPED: "WARNING_VPAID_AD_DROPPED",
|
|
43
45
|
};
|
|
44
46
|
export const AdsInteractionPublishOptInEventType = {
|
|
47
|
+
PRE_ADS_REQUEST_FUNCTION_COMPLETED: "PRE_ADS_REQUEST_FUNCTION_COMPLETED",
|
|
48
|
+
PRE_ADS_REQUEST_HOOK_SUMMARY: "PRE_ADS_REQUEST_HOOK_SUMMARY",
|
|
45
49
|
RAW_ADS_REQUEST: "RAW_ADS_REQUEST",
|
|
46
50
|
RAW_ADS_RESPONSE: "RAW_ADS_RESPONSE",
|
|
47
51
|
};
|
|
@@ -64,6 +68,18 @@ export const AdMarkupType = {
|
|
|
64
68
|
DATERANGE: "DATERANGE",
|
|
65
69
|
SCTE35_ENHANCED: "SCTE35_ENHANCED",
|
|
66
70
|
};
|
|
71
|
+
export const RuntimeType = {
|
|
72
|
+
JSONATA: "JSONATA",
|
|
73
|
+
};
|
|
74
|
+
export const FunctionType = {
|
|
75
|
+
CUSTOM_OUTPUT: "CUSTOM_OUTPUT",
|
|
76
|
+
HTTP_REQUEST: "HTTP_REQUEST",
|
|
77
|
+
SEQUENTIAL_EXECUTOR: "SEQUENTIAL_EXECUTOR",
|
|
78
|
+
};
|
|
79
|
+
export const MethodType = {
|
|
80
|
+
GET: "GET",
|
|
81
|
+
POST: "POST",
|
|
82
|
+
};
|
|
67
83
|
export const Type = {
|
|
68
84
|
DASH: "DASH",
|
|
69
85
|
HLS: "HLS",
|
|
@@ -97,6 +113,10 @@ export const OriginManifestType = {
|
|
|
97
113
|
MULTI_PERIOD: "MULTI_PERIOD",
|
|
98
114
|
SINGLE_PERIOD: "SINGLE_PERIOD",
|
|
99
115
|
};
|
|
116
|
+
export const EventName = {
|
|
117
|
+
PRE_ADS_REQUEST: "PRE_ADS_REQUEST",
|
|
118
|
+
PRE_SESSION_INITIALIZATION: "PRE_SESSION_INITIALIZATION",
|
|
119
|
+
};
|
|
100
120
|
export const InsertionMode = {
|
|
101
121
|
PLAYER_SELECT: "PLAYER_SELECT",
|
|
102
122
|
STITCHED_ONLY: "STITCHED_ONLY",
|
|
@@ -127,6 +147,8 @@ export const ManifestServiceExcludeEventType = {
|
|
|
127
147
|
NO_MEDIA_PLAYLIST: "NO_MEDIA_PLAYLIST",
|
|
128
148
|
ORIGIN_MANIFEST: "ORIGIN_MANIFEST",
|
|
129
149
|
PARSING_ERROR: "PARSING_ERROR",
|
|
150
|
+
PRE_SESSION_INIT_FUNCTION_ERROR: "PRE_SESSION_INIT_FUNCTION_ERROR",
|
|
151
|
+
PRE_SESSION_INIT_HOOK_ERROR: "PRE_SESSION_INIT_HOOK_ERROR",
|
|
130
152
|
SCTE35_PARSING_ERROR: "SCTE35_PARSING_ERROR",
|
|
131
153
|
SESSION_INITIALIZED: "SESSION_INITIALIZED",
|
|
132
154
|
TIMEOUT_ERROR: "TIMEOUT_ERROR",
|
|
@@ -135,6 +157,10 @@ export const ManifestServiceExcludeEventType = {
|
|
|
135
157
|
UNKNOWN_HOST: "UNKNOWN_HOST",
|
|
136
158
|
UNSUPPORTED_SINGLE_PERIOD_DASH_MANIFEST: "UNSUPPORTED_SINGLE_PERIOD_DASH_MANIFEST",
|
|
137
159
|
};
|
|
160
|
+
export const ManifestServicePublishOptInEventType = {
|
|
161
|
+
PRE_SESSION_INIT_FUNCTION_COMPLETED: "PRE_SESSION_INIT_FUNCTION_COMPLETED",
|
|
162
|
+
PRE_SESSION_INIT_HOOK_SUMMARY: "PRE_SESSION_INIT_HOOK_SUMMARY",
|
|
163
|
+
};
|
|
138
164
|
export const TrafficShapingType = {
|
|
139
165
|
RETRIEVAL_WINDOW: "RETRIEVAL_WINDOW",
|
|
140
166
|
TPS: "TPS",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListFunctionsCommand, } from "../commands/ListFunctionsCommand";
|
|
3
|
+
import { MediaTailorClient } from "../MediaTailorClient";
|
|
4
|
+
export const paginateListFunctions = createPaginator(MediaTailorClient, ListFunctionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -2,6 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./GetChannelSchedulePaginator";
|
|
3
3
|
export * from "./ListAlertsPaginator";
|
|
4
4
|
export * from "./ListChannelsPaginator";
|
|
5
|
+
export * from "./ListFunctionsPaginator";
|
|
5
6
|
export * from "./ListLiveSourcesPaginator";
|
|
6
7
|
export * from "./ListPlaybackConfigurationsPaginator";
|
|
7
8
|
export * from "./ListPrefetchSchedulesPaginator";
|
|
@@ -49,6 +49,7 @@ const _CLS = "CreateLiveSource";
|
|
|
49
49
|
const _CLSR = "CreateLiveSourceRequest";
|
|
50
50
|
const _CLSRr = "CreateLiveSourceResponse";
|
|
51
51
|
const _CN = "ChannelName";
|
|
52
|
+
const _COC = "CustomOutputConfiguration";
|
|
52
53
|
const _CP = "CreateProgram";
|
|
53
54
|
const _CPR = "CreateProgramRequest";
|
|
54
55
|
const _CPRr = "CreateProgramResponse";
|
|
@@ -68,6 +69,7 @@ const _CVSR = "CreateVodSourceRequest";
|
|
|
68
69
|
const _CVSRr = "CreateVodSourceResponse";
|
|
69
70
|
const _Ch = "Channel";
|
|
70
71
|
const _Co = "Consumption";
|
|
72
|
+
const _D = "Description";
|
|
71
73
|
const _DAAES = "DelayAfterAvailEndSeconds";
|
|
72
74
|
const _DC = "DashConfiguration";
|
|
73
75
|
const _DCFP = "DashConfigurationForPut";
|
|
@@ -80,6 +82,9 @@ const _DCRes = "DescribeChannelRequest";
|
|
|
80
82
|
const _DCResc = "DescribeChannelResponse";
|
|
81
83
|
const _DCe = "DeleteChannel";
|
|
82
84
|
const _DCes = "DescribeChannel";
|
|
85
|
+
const _DF = "DeleteFunction";
|
|
86
|
+
const _DFR = "DeleteFunctionRequest";
|
|
87
|
+
const _DFRe = "DeleteFunctionResponse";
|
|
83
88
|
const _DLS = "DeleteLiveSource";
|
|
84
89
|
const _DLSR = "DeleteLiveSourceRequest";
|
|
85
90
|
const _DLSRe = "DeleteLiveSourceResponse";
|
|
@@ -122,14 +127,23 @@ const _ELS = "EnabledLoggingStrategies";
|
|
|
122
127
|
const _EOM = "EndOffsetMillis";
|
|
123
128
|
const _ET = "EndTime";
|
|
124
129
|
const _EU = "EndUrl";
|
|
130
|
+
const _F = "Function";
|
|
131
|
+
const _FI = "FunctionId";
|
|
132
|
+
const _FL = "FunctionList";
|
|
133
|
+
const _FM = "FunctionMapping";
|
|
125
134
|
const _FP = "FillPolicy";
|
|
135
|
+
const _FR = "FunctionRef";
|
|
126
136
|
const _FS = "FillerSlate";
|
|
137
|
+
const _FT = "FunctionType";
|
|
127
138
|
const _GCP = "GetChannelPolicy";
|
|
128
139
|
const _GCPR = "GetChannelPolicyRequest";
|
|
129
140
|
const _GCPRe = "GetChannelPolicyResponse";
|
|
130
141
|
const _GCS = "GetChannelSchedule";
|
|
131
142
|
const _GCSR = "GetChannelScheduleRequest";
|
|
132
143
|
const _GCSRe = "GetChannelScheduleResponse";
|
|
144
|
+
const _GF = "GetFunction";
|
|
145
|
+
const _GFR = "GetFunctionRequest";
|
|
146
|
+
const _GFRe = "GetFunctionResponse";
|
|
133
147
|
const _GPC = "GetPlaybackConfiguration";
|
|
134
148
|
const _GPCR = "GetPlaybackConfigurationRequest";
|
|
135
149
|
const _GPCRe = "GetPlaybackConfigurationResponse";
|
|
@@ -144,6 +158,7 @@ const _HPC = "HttpPackageConfigurations";
|
|
|
144
158
|
const _HPCt = "HttpPackageConfiguration";
|
|
145
159
|
const _HPS = "HlsPlaylistSettings";
|
|
146
160
|
const _HR = "HttpRequest";
|
|
161
|
+
const _HRC = "HttpRequestConfiguration";
|
|
147
162
|
const _I = "Items";
|
|
148
163
|
const _IM = "InsertionMode";
|
|
149
164
|
const _K = "Key";
|
|
@@ -156,6 +171,9 @@ const _LCFC = "LogConfigurationForChannel";
|
|
|
156
171
|
const _LCR = "ListChannelsRequest";
|
|
157
172
|
const _LCRi = "ListChannelsResponse";
|
|
158
173
|
const _LCi = "ListChannels";
|
|
174
|
+
const _LF = "ListFunctions";
|
|
175
|
+
const _LFR = "ListFunctionsRequest";
|
|
176
|
+
const _LFRi = "ListFunctionsResponse";
|
|
159
177
|
const _LLS = "ListLiveSources";
|
|
160
178
|
const _LLSR = "ListLiveSourcesRequest";
|
|
161
179
|
const _LLSRi = "ListLiveSourcesResponse";
|
|
@@ -190,6 +208,7 @@ const _MR = "MaxResults";
|
|
|
190
208
|
const _MSIL = "ManifestServiceInteractionLog";
|
|
191
209
|
const _MT = "MessageType";
|
|
192
210
|
const _MTDS = "MaxTimeDelaySeconds";
|
|
211
|
+
const _MTe = "MethodType";
|
|
193
212
|
const _MUPS = "MinUpdatePeriodSeconds";
|
|
194
213
|
const _MWS = "ManifestWindowSeconds";
|
|
195
214
|
const _Me = "Method";
|
|
@@ -200,6 +219,7 @@ const _O = "Operator";
|
|
|
200
219
|
const _OM = "OffsetMillis";
|
|
201
220
|
const _OMT = "OriginManifestType";
|
|
202
221
|
const _Ou = "Outputs";
|
|
222
|
+
const _Out = "Output";
|
|
203
223
|
const _P = "Policy";
|
|
204
224
|
const _PC = "PlaybackConfiguration";
|
|
205
225
|
const _PCA = "PlaybackConfigurationArn";
|
|
@@ -211,6 +231,9 @@ const _PCU = "PeakConcurrentUsers";
|
|
|
211
231
|
const _PCr = "PrefetchConsumption";
|
|
212
232
|
const _PE = "PercentEnabled";
|
|
213
233
|
const _PEP = "PlaybackEndpointPrefix";
|
|
234
|
+
const _PF = "PutFunction";
|
|
235
|
+
const _PFR = "PutFunctionRequest";
|
|
236
|
+
const _PFRu = "PutFunctionResponse";
|
|
214
237
|
const _PM = "PlaybackMode";
|
|
215
238
|
const _PN = "ProgramName";
|
|
216
239
|
const _POIET = "PublishOptInEventTypes";
|
|
@@ -226,7 +249,8 @@ const _Pa = "Path";
|
|
|
226
249
|
const _R = "Retrieval";
|
|
227
250
|
const _RA = "ResourceArn";
|
|
228
251
|
const _RAES = "RetrievedAdExpirationSeconds";
|
|
229
|
-
const _RC = "
|
|
252
|
+
const _RC = "RunCondition";
|
|
253
|
+
const _RCe = "RecurringConsumption";
|
|
230
254
|
const _RO = "RequestOutputs";
|
|
231
255
|
const _ROI = "RequestOutputItem";
|
|
232
256
|
const _ROIe = "ResponseOutputItem";
|
|
@@ -236,7 +260,9 @@ const _RPC = "RecurringPrefetchConfiguration";
|
|
|
236
260
|
const _RPe = "RelativeProgram";
|
|
237
261
|
const _RR = "RecurringRetrieval";
|
|
238
262
|
const _RRA = "RelatedResourceArns";
|
|
263
|
+
const _RTM = "RequestTimeoutMilliseconds";
|
|
239
264
|
const _RWDS = "RetrievalWindowDurationSeconds";
|
|
265
|
+
const _Ru = "Runtime";
|
|
240
266
|
const _S = "Slate";
|
|
241
267
|
const _SA = "SecretArn";
|
|
242
268
|
const _SAB = "ScheduleAdBreak";
|
|
@@ -255,6 +281,7 @@ const _SDCe = "SegmentDeliveryConfiguration";
|
|
|
255
281
|
const _SDL = "SegmentationDescriptorList";
|
|
256
282
|
const _SDe = "SegmentationDescriptors";
|
|
257
283
|
const _SE = "ScheduleEntry";
|
|
284
|
+
const _SEC = "SequentialExecutorConfiguration";
|
|
258
285
|
const _SEI = "SegmentationEventId";
|
|
259
286
|
const _SEIp = "SpliceEventId";
|
|
260
287
|
const _SET = "ScheduleEntryType";
|
|
@@ -284,6 +311,7 @@ const _SUT = "SegmentationUpidType";
|
|
|
284
311
|
const _SUe = "SegmentationUpid";
|
|
285
312
|
const _T = "Tier";
|
|
286
313
|
const _TK = "TagKeys";
|
|
314
|
+
const _TM = "TimeoutMilliseconds";
|
|
287
315
|
const _TPN = "TranscodeProfileName";
|
|
288
316
|
const _TR = "TagResource";
|
|
289
317
|
const _TRR = "TagResourceRequest";
|
|
@@ -295,6 +323,7 @@ const _TSTC = "TrafficShapingTpsConfiguration";
|
|
|
295
323
|
const _Ta = "Tags";
|
|
296
324
|
const _Tr = "Transition";
|
|
297
325
|
const _Ty = "Type";
|
|
326
|
+
const _U = "Url";
|
|
298
327
|
const _UC = "UpdateChannel";
|
|
299
328
|
const _UCR = "UpdateChannelRequest";
|
|
300
329
|
const _UCRp = "UpdateChannelResponse";
|
|
@@ -333,6 +362,8 @@ const _lOAM = "__listOfAlternateMedia";
|
|
|
333
362
|
const _lOAMC = "__listOfAvailMatchingCriteria";
|
|
334
363
|
const _lOAMi = "__listOfAudienceMedia";
|
|
335
364
|
const _lOC = "__listOfChannel";
|
|
365
|
+
const _lOFR = "__listOfFunctionsRef";
|
|
366
|
+
const _lOFRi = "__listOfFunctionsResponse";
|
|
336
367
|
const _lOLS = "__listOfLiveSource";
|
|
337
368
|
const _lOPC = "__listOfPlaybackConfiguration";
|
|
338
369
|
const _lOPS = "__listOfPrefetchSchedule";
|
|
@@ -525,6 +556,11 @@ export var CreateVodSourceResponse$ = [3, n0, _CVSRr,
|
|
|
525
556
|
[_Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
|
|
526
557
|
[0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
|
|
527
558
|
];
|
|
559
|
+
export var CustomOutputConfiguration$ = [3, n0, _COC,
|
|
560
|
+
0,
|
|
561
|
+
[_Ru, _Out],
|
|
562
|
+
[0, 128 | 0], 1
|
|
563
|
+
];
|
|
528
564
|
export var DashConfiguration$ = [3, n0, _DC,
|
|
529
565
|
0,
|
|
530
566
|
[_MEP, _ML, _OMT],
|
|
@@ -565,6 +601,16 @@ export var DeleteChannelResponse$ = [3, n0, _DCRe,
|
|
|
565
601
|
[],
|
|
566
602
|
[]
|
|
567
603
|
];
|
|
604
|
+
export var DeleteFunctionRequest$ = [3, n0, _DFR,
|
|
605
|
+
0,
|
|
606
|
+
[_FI],
|
|
607
|
+
[[0, 1]], 1
|
|
608
|
+
];
|
|
609
|
+
export var DeleteFunctionResponse$ = [3, n0, _DFRe,
|
|
610
|
+
0,
|
|
611
|
+
[],
|
|
612
|
+
[]
|
|
613
|
+
];
|
|
568
614
|
export var DeleteLiveSourceRequest$ = [3, n0, _DLSR,
|
|
569
615
|
0,
|
|
570
616
|
[_LSN, _SLN],
|
|
@@ -675,6 +721,16 @@ export var DescribeVodSourceResponse$ = [3, n0, _DVSResc,
|
|
|
675
721
|
[_ABOd, _Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
|
|
676
722
|
[() => AdBreakOpportunities, 0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
|
|
677
723
|
];
|
|
724
|
+
export var Function$ = [3, n0, _F,
|
|
725
|
+
0,
|
|
726
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
|
|
727
|
+
[0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
|
|
728
|
+
];
|
|
729
|
+
export var FunctionRef$ = [3, n0, _FR,
|
|
730
|
+
0,
|
|
731
|
+
[_RC, _FI],
|
|
732
|
+
[0, 0]
|
|
733
|
+
];
|
|
678
734
|
export var GetChannelPolicyRequest$ = [3, n0, _GCPR,
|
|
679
735
|
0,
|
|
680
736
|
[_CN],
|
|
@@ -695,6 +751,16 @@ export var GetChannelScheduleResponse$ = [3, n0, _GCSRe,
|
|
|
695
751
|
[_I, _NT],
|
|
696
752
|
[() => __listOfScheduleEntry, 0]
|
|
697
753
|
];
|
|
754
|
+
export var GetFunctionRequest$ = [3, n0, _GFR,
|
|
755
|
+
0,
|
|
756
|
+
[_FI],
|
|
757
|
+
[[0, 1]], 1
|
|
758
|
+
];
|
|
759
|
+
export var GetFunctionResponse$ = [3, n0, _GFRe,
|
|
760
|
+
0,
|
|
761
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
|
|
762
|
+
[0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
|
|
763
|
+
];
|
|
698
764
|
export var GetPlaybackConfigurationRequest$ = [3, n0, _GPCR,
|
|
699
765
|
0,
|
|
700
766
|
[_N],
|
|
@@ -702,8 +768,8 @@ export var GetPlaybackConfigurationRequest$ = [3, n0, _GPCR,
|
|
|
702
768
|
];
|
|
703
769
|
export var GetPlaybackConfigurationResponse$ = [3, n0, _GPCRe,
|
|
704
770
|
0,
|
|
705
|
-
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC],
|
|
706
|
-
[0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration
|
|
771
|
+
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
772
|
+
[0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0]
|
|
707
773
|
];
|
|
708
774
|
export var GetPrefetchScheduleRequest$ = [3, n0, _GPSR,
|
|
709
775
|
0,
|
|
@@ -740,6 +806,11 @@ export var HttpRequest$ = [3, n0, _HR,
|
|
|
740
806
|
[_Me, _Bo, _H, _CRo],
|
|
741
807
|
[0, 0, 128 | 0, 0]
|
|
742
808
|
];
|
|
809
|
+
export var HttpRequestConfiguration$ = [3, n0, _HRC,
|
|
810
|
+
0,
|
|
811
|
+
[_Ru, _MTe, _RTM, _U, _Out, _Bo, _H],
|
|
812
|
+
[0, 0, 1, 0, 128 | 0, 0, 128 | 0], 4
|
|
813
|
+
];
|
|
743
814
|
export var KeyValuePair$ = [3, n0, _KVP,
|
|
744
815
|
0,
|
|
745
816
|
[_K, _V],
|
|
@@ -765,6 +836,16 @@ export var ListChannelsResponse$ = [3, n0, _LCRi,
|
|
|
765
836
|
[_I, _NT],
|
|
766
837
|
[[() => __listOfChannel, 0], 0]
|
|
767
838
|
];
|
|
839
|
+
export var ListFunctionsRequest$ = [3, n0, _LFR,
|
|
840
|
+
0,
|
|
841
|
+
[_MR, _NT],
|
|
842
|
+
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
843
|
+
];
|
|
844
|
+
export var ListFunctionsResponse$ = [3, n0, _LFRi,
|
|
845
|
+
0,
|
|
846
|
+
[_I, _NT],
|
|
847
|
+
[[() => __listOfFunctionsResponse, 0], 0]
|
|
848
|
+
];
|
|
768
849
|
export var ListLiveSourcesRequest$ = [3, n0, _LLSR,
|
|
769
850
|
0,
|
|
770
851
|
[_SLN, _MR, _NT],
|
|
@@ -852,13 +933,13 @@ export var ManifestProcessingRules$ = [3, n0, _MPR,
|
|
|
852
933
|
];
|
|
853
934
|
export var ManifestServiceInteractionLog$ = [3, n0, _MSIL,
|
|
854
935
|
0,
|
|
855
|
-
[_EET],
|
|
856
|
-
[64 | 0]
|
|
936
|
+
[_POIET, _EET],
|
|
937
|
+
[64 | 0, 64 | 0]
|
|
857
938
|
];
|
|
858
939
|
export var PlaybackConfiguration$ = [3, n0, _PC,
|
|
859
940
|
0,
|
|
860
|
-
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC],
|
|
861
|
-
[0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration
|
|
941
|
+
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
942
|
+
[0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0]
|
|
862
943
|
];
|
|
863
944
|
export var PrefetchConsumption$ = [3, n0, _PCr,
|
|
864
945
|
0,
|
|
@@ -885,24 +966,34 @@ export var PutChannelPolicyResponse$ = [3, n0, _PCPRu,
|
|
|
885
966
|
[],
|
|
886
967
|
[]
|
|
887
968
|
];
|
|
969
|
+
export var PutFunctionRequest$ = [3, n0, _PFR,
|
|
970
|
+
0,
|
|
971
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta],
|
|
972
|
+
[[0, 1], 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }]], 2
|
|
973
|
+
];
|
|
974
|
+
export var PutFunctionResponse$ = [3, n0, _PFRu,
|
|
975
|
+
0,
|
|
976
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
|
|
977
|
+
[0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
|
|
978
|
+
];
|
|
888
979
|
export var PutPlaybackConfigurationRequest$ = [3, n0, _PPCR,
|
|
889
980
|
0,
|
|
890
|
-
[_N, _ADSU, _AS, _B, _CC, _CA, _DC, _IM, _LPRC, _MPR, _PTS, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC],
|
|
891
|
-
[0, 0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CARo, 0, 0, 128 | 0], () => DashConfigurationForPut$, 0, () => LivePreRollConfiguration$, () => ManifestProcessingRules$, 1, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration
|
|
981
|
+
[_N, _ADSU, _AS, _B, _CC, _CA, _DC, _IM, _LPRC, _MPR, _PTS, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
982
|
+
[0, 0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CARo, 0, 0, 128 | 0], () => DashConfigurationForPut$, 0, () => LivePreRollConfiguration$, () => ManifestProcessingRules$, 1, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0], 1
|
|
892
983
|
];
|
|
893
984
|
export var PutPlaybackConfigurationResponse$ = [3, n0, _PPCRu,
|
|
894
985
|
0,
|
|
895
|
-
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC],
|
|
896
|
-
[0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration
|
|
986
|
+
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
987
|
+
[0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0]
|
|
897
988
|
];
|
|
898
|
-
export var RecurringConsumption$ = [3, n0,
|
|
989
|
+
export var RecurringConsumption$ = [3, n0, _RCe,
|
|
899
990
|
0,
|
|
900
991
|
[_RAES, _AMC],
|
|
901
992
|
[1, () => __listOfAvailMatchingCriteria]
|
|
902
993
|
];
|
|
903
994
|
export var RecurringPrefetchConfiguration$ = [3, n0, _RPC,
|
|
904
995
|
0,
|
|
905
|
-
[_ET,
|
|
996
|
+
[_ET, _RCe, _RR, _STt],
|
|
906
997
|
[7, () => RecurringConsumption$, () => RecurringRetrieval$, 7], 3
|
|
907
998
|
];
|
|
908
999
|
export var RecurringRetrieval$ = [3, n0, _RR,
|
|
@@ -950,6 +1041,11 @@ export var SegmentDeliveryConfiguration$ = [3, n0, _SDCe,
|
|
|
950
1041
|
[_BU, _N],
|
|
951
1042
|
[0, 0]
|
|
952
1043
|
];
|
|
1044
|
+
export var SequentialExecutorConfiguration$ = [3, n0, _SEC,
|
|
1045
|
+
0,
|
|
1046
|
+
[_Ru, _FL, _TM, _Out],
|
|
1047
|
+
[0, () => __listOfFunctionsRef, 1, 128 | 0], 3
|
|
1048
|
+
];
|
|
953
1049
|
export var SlateSource$ = [3, n0, _SS,
|
|
954
1050
|
0,
|
|
955
1051
|
[_SLN, _VSN],
|
|
@@ -1108,6 +1204,13 @@ var __listOfChannel = [1, n0, _lOC,
|
|
|
1108
1204
|
0, [() => Channel$,
|
|
1109
1205
|
0]
|
|
1110
1206
|
];
|
|
1207
|
+
var __listOfFunctionsRef = [1, n0, _lOFR,
|
|
1208
|
+
0, () => FunctionRef$
|
|
1209
|
+
];
|
|
1210
|
+
var __listOfFunctionsResponse = [1, n0, _lOFRi,
|
|
1211
|
+
0, [() => Function$,
|
|
1212
|
+
0]
|
|
1213
|
+
];
|
|
1111
1214
|
var __listOfLiveSource = [1, n0, _lOLS,
|
|
1112
1215
|
0, [() => LiveSource$,
|
|
1113
1216
|
0]
|
|
@@ -1139,6 +1242,7 @@ var __listOfVodSource = [1, n0, _lOVS,
|
|
|
1139
1242
|
0]
|
|
1140
1243
|
];
|
|
1141
1244
|
var __manifestServiceExcludeEventTypesList = 64 | 0;
|
|
1245
|
+
var __manifestServicePublishOptInEventTypesList = 64 | 0;
|
|
1142
1246
|
var AdBreakMetadataList = [1, n0, _ABML,
|
|
1143
1247
|
0, () => KeyValuePair$
|
|
1144
1248
|
];
|
|
@@ -1167,6 +1271,7 @@ var ConfigurationAliasesRequest = [2, n0, _CARo,
|
|
|
1167
1271
|
var ConfigurationAliasesResponse = [2, n0, _CAR,
|
|
1168
1272
|
0, 0, 128 | 0
|
|
1169
1273
|
];
|
|
1274
|
+
var FunctionMapping = 128 | 0;
|
|
1170
1275
|
var StringMap = 128 | 0;
|
|
1171
1276
|
export var ConfigureLogsForChannel$ = [9, n0, _CLFC,
|
|
1172
1277
|
{ [_h]: ["PUT", "/configureLogs/channel", 200] }, () => ConfigureLogsForChannelRequest$, () => ConfigureLogsForChannelResponse$
|
|
@@ -1198,6 +1303,9 @@ export var DeleteChannel$ = [9, n0, _DCe,
|
|
|
1198
1303
|
export var DeleteChannelPolicy$ = [9, n0, _DCP,
|
|
1199
1304
|
{ [_h]: ["DELETE", "/channel/{ChannelName}/policy", 200] }, () => DeleteChannelPolicyRequest$, () => DeleteChannelPolicyResponse$
|
|
1200
1305
|
];
|
|
1306
|
+
export var DeleteFunction$ = [9, n0, _DF,
|
|
1307
|
+
{ [_h]: ["DELETE", "/function/{FunctionId}", 204] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
|
|
1308
|
+
];
|
|
1201
1309
|
export var DeleteLiveSource$ = [9, n0, _DLS,
|
|
1202
1310
|
{ [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => DeleteLiveSourceRequest$, () => DeleteLiveSourceResponse$
|
|
1203
1311
|
];
|
|
@@ -1237,6 +1345,9 @@ export var GetChannelPolicy$ = [9, n0, _GCP,
|
|
|
1237
1345
|
export var GetChannelSchedule$ = [9, n0, _GCS,
|
|
1238
1346
|
{ [_h]: ["GET", "/channel/{ChannelName}/schedule", 200] }, () => GetChannelScheduleRequest$, () => GetChannelScheduleResponse$
|
|
1239
1347
|
];
|
|
1348
|
+
export var GetFunction$ = [9, n0, _GF,
|
|
1349
|
+
{ [_h]: ["GET", "/function/{FunctionId}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
|
|
1350
|
+
];
|
|
1240
1351
|
export var GetPlaybackConfiguration$ = [9, n0, _GPC,
|
|
1241
1352
|
{ [_h]: ["GET", "/playbackConfiguration/{Name}", 200] }, () => GetPlaybackConfigurationRequest$, () => GetPlaybackConfigurationResponse$
|
|
1242
1353
|
];
|
|
@@ -1249,6 +1360,9 @@ export var ListAlerts$ = [9, n0, _LA,
|
|
|
1249
1360
|
export var ListChannels$ = [9, n0, _LCi,
|
|
1250
1361
|
{ [_h]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
|
|
1251
1362
|
];
|
|
1363
|
+
export var ListFunctions$ = [9, n0, _LF,
|
|
1364
|
+
{ [_h]: ["GET", "/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
|
|
1365
|
+
];
|
|
1252
1366
|
export var ListLiveSources$ = [9, n0, _LLS,
|
|
1253
1367
|
{ [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSources", 200] }, () => ListLiveSourcesRequest$, () => ListLiveSourcesResponse$
|
|
1254
1368
|
];
|
|
@@ -1270,6 +1384,9 @@ export var ListVodSources$ = [9, n0, _LVS,
|
|
|
1270
1384
|
export var PutChannelPolicy$ = [9, n0, _PCP,
|
|
1271
1385
|
{ [_h]: ["PUT", "/channel/{ChannelName}/policy", 200] }, () => PutChannelPolicyRequest$, () => PutChannelPolicyResponse$
|
|
1272
1386
|
];
|
|
1387
|
+
export var PutFunction$ = [9, n0, _PF,
|
|
1388
|
+
{ [_h]: ["PUT", "/function/{FunctionId}", 200] }, () => PutFunctionRequest$, () => PutFunctionResponse$
|
|
1389
|
+
];
|
|
1273
1390
|
export var PutPlaybackConfiguration$ = [9, n0, _PPC,
|
|
1274
1391
|
{ [_h]: ["PUT", "/playbackConfiguration", 200] }, () => PutPlaybackConfigurationRequest$, () => PutPlaybackConfigurationResponse$
|
|
1275
1392
|
];
|
|
@@ -9,6 +9,7 @@ import { type CreateSourceLocationCommandInput, type CreateSourceLocationCommand
|
|
|
9
9
|
import { type CreateVodSourceCommandInput, type CreateVodSourceCommandOutput } from "./commands/CreateVodSourceCommand";
|
|
10
10
|
import { type DeleteChannelCommandInput, type DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
|
|
11
11
|
import { type DeleteChannelPolicyCommandInput, type DeleteChannelPolicyCommandOutput } from "./commands/DeleteChannelPolicyCommand";
|
|
12
|
+
import { type DeleteFunctionCommandInput, type DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
|
|
12
13
|
import { type DeleteLiveSourceCommandInput, type DeleteLiveSourceCommandOutput } from "./commands/DeleteLiveSourceCommand";
|
|
13
14
|
import { type DeletePlaybackConfigurationCommandInput, type DeletePlaybackConfigurationCommandOutput } from "./commands/DeletePlaybackConfigurationCommand";
|
|
14
15
|
import { type DeletePrefetchScheduleCommandInput, type DeletePrefetchScheduleCommandOutput } from "./commands/DeletePrefetchScheduleCommand";
|
|
@@ -22,10 +23,12 @@ import { type DescribeSourceLocationCommandInput, type DescribeSourceLocationCom
|
|
|
22
23
|
import { type DescribeVodSourceCommandInput, type DescribeVodSourceCommandOutput } from "./commands/DescribeVodSourceCommand";
|
|
23
24
|
import { type GetChannelPolicyCommandInput, type GetChannelPolicyCommandOutput } from "./commands/GetChannelPolicyCommand";
|
|
24
25
|
import { type GetChannelScheduleCommandInput, type GetChannelScheduleCommandOutput } from "./commands/GetChannelScheduleCommand";
|
|
26
|
+
import { type GetFunctionCommandInput, type GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
|
|
25
27
|
import { type GetPlaybackConfigurationCommandInput, type GetPlaybackConfigurationCommandOutput } from "./commands/GetPlaybackConfigurationCommand";
|
|
26
28
|
import { type GetPrefetchScheduleCommandInput, type GetPrefetchScheduleCommandOutput } from "./commands/GetPrefetchScheduleCommand";
|
|
27
29
|
import { type ListAlertsCommandInput, type ListAlertsCommandOutput } from "./commands/ListAlertsCommand";
|
|
28
30
|
import { type ListChannelsCommandInput, type ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
|
|
31
|
+
import { type ListFunctionsCommandInput, type ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
|
|
29
32
|
import { type ListLiveSourcesCommandInput, type ListLiveSourcesCommandOutput } from "./commands/ListLiveSourcesCommand";
|
|
30
33
|
import { type ListPlaybackConfigurationsCommandInput, type ListPlaybackConfigurationsCommandOutput } from "./commands/ListPlaybackConfigurationsCommand";
|
|
31
34
|
import { type ListPrefetchSchedulesCommandInput, type ListPrefetchSchedulesCommandOutput } from "./commands/ListPrefetchSchedulesCommand";
|
|
@@ -33,6 +36,7 @@ import { type ListSourceLocationsCommandInput, type ListSourceLocationsCommandOu
|
|
|
33
36
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
34
37
|
import { type ListVodSourcesCommandInput, type ListVodSourcesCommandOutput } from "./commands/ListVodSourcesCommand";
|
|
35
38
|
import { type PutChannelPolicyCommandInput, type PutChannelPolicyCommandOutput } from "./commands/PutChannelPolicyCommand";
|
|
39
|
+
import { type PutFunctionCommandInput, type PutFunctionCommandOutput } from "./commands/PutFunctionCommand";
|
|
36
40
|
import { type PutPlaybackConfigurationCommandInput, type PutPlaybackConfigurationCommandOutput } from "./commands/PutPlaybackConfigurationCommand";
|
|
37
41
|
import { type StartChannelCommandInput, type StartChannelCommandOutput } from "./commands/StartChannelCommand";
|
|
38
42
|
import { type StopChannelCommandInput, type StopChannelCommandOutput } from "./commands/StopChannelCommand";
|
|
@@ -105,6 +109,12 @@ export interface MediaTailor {
|
|
|
105
109
|
deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelPolicyCommandOutput>;
|
|
106
110
|
deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, cb: (err: any, data?: DeleteChannelPolicyCommandOutput) => void): void;
|
|
107
111
|
deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelPolicyCommandOutput) => void): void;
|
|
112
|
+
/**
|
|
113
|
+
* @see {@link DeleteFunctionCommand}
|
|
114
|
+
*/
|
|
115
|
+
deleteFunction(args: DeleteFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionCommandOutput>;
|
|
116
|
+
deleteFunction(args: DeleteFunctionCommandInput, cb: (err: any, data?: DeleteFunctionCommandOutput) => void): void;
|
|
117
|
+
deleteFunction(args: DeleteFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionCommandOutput) => void): void;
|
|
108
118
|
/**
|
|
109
119
|
* @see {@link DeleteLiveSourceCommand}
|
|
110
120
|
*/
|
|
@@ -183,6 +193,12 @@ export interface MediaTailor {
|
|
|
183
193
|
getChannelSchedule(args: GetChannelScheduleCommandInput, options?: __HttpHandlerOptions): Promise<GetChannelScheduleCommandOutput>;
|
|
184
194
|
getChannelSchedule(args: GetChannelScheduleCommandInput, cb: (err: any, data?: GetChannelScheduleCommandOutput) => void): void;
|
|
185
195
|
getChannelSchedule(args: GetChannelScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChannelScheduleCommandOutput) => void): void;
|
|
196
|
+
/**
|
|
197
|
+
* @see {@link GetFunctionCommand}
|
|
198
|
+
*/
|
|
199
|
+
getFunction(args: GetFunctionCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionCommandOutput>;
|
|
200
|
+
getFunction(args: GetFunctionCommandInput, cb: (err: any, data?: GetFunctionCommandOutput) => void): void;
|
|
201
|
+
getFunction(args: GetFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionCommandOutput) => void): void;
|
|
186
202
|
/**
|
|
187
203
|
* @see {@link GetPlaybackConfigurationCommand}
|
|
188
204
|
*/
|
|
@@ -208,6 +224,13 @@ export interface MediaTailor {
|
|
|
208
224
|
listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
|
|
209
225
|
listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
210
226
|
listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link ListFunctionsCommand}
|
|
229
|
+
*/
|
|
230
|
+
listFunctions(): Promise<ListFunctionsCommandOutput>;
|
|
231
|
+
listFunctions(args: ListFunctionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionsCommandOutput>;
|
|
232
|
+
listFunctions(args: ListFunctionsCommandInput, cb: (err: any, data?: ListFunctionsCommandOutput) => void): void;
|
|
233
|
+
listFunctions(args: ListFunctionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionsCommandOutput) => void): void;
|
|
211
234
|
/**
|
|
212
235
|
* @see {@link ListLiveSourcesCommand}
|
|
213
236
|
*/
|
|
@@ -252,6 +275,12 @@ export interface MediaTailor {
|
|
|
252
275
|
putChannelPolicy(args: PutChannelPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutChannelPolicyCommandOutput>;
|
|
253
276
|
putChannelPolicy(args: PutChannelPolicyCommandInput, cb: (err: any, data?: PutChannelPolicyCommandOutput) => void): void;
|
|
254
277
|
putChannelPolicy(args: PutChannelPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutChannelPolicyCommandOutput) => void): void;
|
|
278
|
+
/**
|
|
279
|
+
* @see {@link PutFunctionCommand}
|
|
280
|
+
*/
|
|
281
|
+
putFunction(args: PutFunctionCommandInput, options?: __HttpHandlerOptions): Promise<PutFunctionCommandOutput>;
|
|
282
|
+
putFunction(args: PutFunctionCommandInput, cb: (err: any, data?: PutFunctionCommandOutput) => void): void;
|
|
283
|
+
putFunction(args: PutFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFunctionCommandOutput) => void): void;
|
|
255
284
|
/**
|
|
256
285
|
* @see {@link PutPlaybackConfigurationCommand}
|
|
257
286
|
*/
|
|
@@ -333,6 +362,13 @@ export interface MediaTailor {
|
|
|
333
362
|
* @returns AsyncIterable of {@link ListChannelsCommandOutput}.
|
|
334
363
|
*/
|
|
335
364
|
paginateListChannels(args?: ListChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChannelsCommandOutput>;
|
|
365
|
+
/**
|
|
366
|
+
* @see {@link ListFunctionsCommand}
|
|
367
|
+
* @param args - command input.
|
|
368
|
+
* @param paginationConfig - optional pagination config.
|
|
369
|
+
* @returns AsyncIterable of {@link ListFunctionsCommandOutput}.
|
|
370
|
+
*/
|
|
371
|
+
paginateListFunctions(args?: ListFunctionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFunctionsCommandOutput>;
|
|
336
372
|
/**
|
|
337
373
|
* @see {@link ListLiveSourcesCommand}
|
|
338
374
|
* @param args - command input.
|
|
@@ -17,6 +17,7 @@ import type { CreateSourceLocationCommandInput, CreateSourceLocationCommandOutpu
|
|
|
17
17
|
import type { CreateVodSourceCommandInput, CreateVodSourceCommandOutput } from "./commands/CreateVodSourceCommand";
|
|
18
18
|
import type { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
|
|
19
19
|
import type { DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput } from "./commands/DeleteChannelPolicyCommand";
|
|
20
|
+
import type { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
|
|
20
21
|
import type { DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput } from "./commands/DeleteLiveSourceCommand";
|
|
21
22
|
import type { DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput } from "./commands/DeletePlaybackConfigurationCommand";
|
|
22
23
|
import type { DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput } from "./commands/DeletePrefetchScheduleCommand";
|
|
@@ -30,10 +31,12 @@ import type { DescribeSourceLocationCommandInput, DescribeSourceLocationCommandO
|
|
|
30
31
|
import type { DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput } from "./commands/DescribeVodSourceCommand";
|
|
31
32
|
import type { GetChannelPolicyCommandInput, GetChannelPolicyCommandOutput } from "./commands/GetChannelPolicyCommand";
|
|
32
33
|
import type { GetChannelScheduleCommandInput, GetChannelScheduleCommandOutput } from "./commands/GetChannelScheduleCommand";
|
|
34
|
+
import type { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
|
|
33
35
|
import type { GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOutput } from "./commands/GetPlaybackConfigurationCommand";
|
|
34
36
|
import type { GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput } from "./commands/GetPrefetchScheduleCommand";
|
|
35
37
|
import type { ListAlertsCommandInput, ListAlertsCommandOutput } from "./commands/ListAlertsCommand";
|
|
36
38
|
import type { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
|
|
39
|
+
import type { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
|
|
37
40
|
import type { ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput } from "./commands/ListLiveSourcesCommand";
|
|
38
41
|
import type { ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput } from "./commands/ListPlaybackConfigurationsCommand";
|
|
39
42
|
import type { ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput } from "./commands/ListPrefetchSchedulesCommand";
|
|
@@ -41,6 +44,7 @@ import type { ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput
|
|
|
41
44
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
42
45
|
import type { ListVodSourcesCommandInput, ListVodSourcesCommandOutput } from "./commands/ListVodSourcesCommand";
|
|
43
46
|
import type { PutChannelPolicyCommandInput, PutChannelPolicyCommandOutput } from "./commands/PutChannelPolicyCommand";
|
|
47
|
+
import type { PutFunctionCommandInput, PutFunctionCommandOutput } from "./commands/PutFunctionCommand";
|
|
44
48
|
import type { PutPlaybackConfigurationCommandInput, PutPlaybackConfigurationCommandOutput } from "./commands/PutPlaybackConfigurationCommand";
|
|
45
49
|
import type { StartChannelCommandInput, StartChannelCommandOutput } from "./commands/StartChannelCommand";
|
|
46
50
|
import type { StopChannelCommandInput, StopChannelCommandOutput } from "./commands/StopChannelCommand";
|
|
@@ -57,11 +61,11 @@ export { __Client };
|
|
|
57
61
|
/**
|
|
58
62
|
* @public
|
|
59
63
|
*/
|
|
60
|
-
export type ServiceInputTypes = ConfigureLogsForChannelCommandInput | ConfigureLogsForPlaybackConfigurationCommandInput | CreateChannelCommandInput | CreateLiveSourceCommandInput | CreatePrefetchScheduleCommandInput | CreateProgramCommandInput | CreateSourceLocationCommandInput | CreateVodSourceCommandInput | DeleteChannelCommandInput | DeleteChannelPolicyCommandInput | DeleteLiveSourceCommandInput | DeletePlaybackConfigurationCommandInput | DeletePrefetchScheduleCommandInput | DeleteProgramCommandInput | DeleteSourceLocationCommandInput | DeleteVodSourceCommandInput | DescribeChannelCommandInput | DescribeLiveSourceCommandInput | DescribeProgramCommandInput | DescribeSourceLocationCommandInput | DescribeVodSourceCommandInput | GetChannelPolicyCommandInput | GetChannelScheduleCommandInput | GetPlaybackConfigurationCommandInput | GetPrefetchScheduleCommandInput | ListAlertsCommandInput | ListChannelsCommandInput | ListLiveSourcesCommandInput | ListPlaybackConfigurationsCommandInput | ListPrefetchSchedulesCommandInput | ListSourceLocationsCommandInput | ListTagsForResourceCommandInput | ListVodSourcesCommandInput | PutChannelPolicyCommandInput | PutPlaybackConfigurationCommandInput | StartChannelCommandInput | StopChannelCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateLiveSourceCommandInput | UpdateProgramCommandInput | UpdateSourceLocationCommandInput | UpdateVodSourceCommandInput;
|
|
64
|
+
export type ServiceInputTypes = ConfigureLogsForChannelCommandInput | ConfigureLogsForPlaybackConfigurationCommandInput | CreateChannelCommandInput | CreateLiveSourceCommandInput | CreatePrefetchScheduleCommandInput | CreateProgramCommandInput | CreateSourceLocationCommandInput | CreateVodSourceCommandInput | DeleteChannelCommandInput | DeleteChannelPolicyCommandInput | DeleteFunctionCommandInput | DeleteLiveSourceCommandInput | DeletePlaybackConfigurationCommandInput | DeletePrefetchScheduleCommandInput | DeleteProgramCommandInput | DeleteSourceLocationCommandInput | DeleteVodSourceCommandInput | DescribeChannelCommandInput | DescribeLiveSourceCommandInput | DescribeProgramCommandInput | DescribeSourceLocationCommandInput | DescribeVodSourceCommandInput | GetChannelPolicyCommandInput | GetChannelScheduleCommandInput | GetFunctionCommandInput | GetPlaybackConfigurationCommandInput | GetPrefetchScheduleCommandInput | ListAlertsCommandInput | ListChannelsCommandInput | ListFunctionsCommandInput | ListLiveSourcesCommandInput | ListPlaybackConfigurationsCommandInput | ListPrefetchSchedulesCommandInput | ListSourceLocationsCommandInput | ListTagsForResourceCommandInput | ListVodSourcesCommandInput | PutChannelPolicyCommandInput | PutFunctionCommandInput | PutPlaybackConfigurationCommandInput | StartChannelCommandInput | StopChannelCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateLiveSourceCommandInput | UpdateProgramCommandInput | UpdateSourceLocationCommandInput | UpdateVodSourceCommandInput;
|
|
61
65
|
/**
|
|
62
66
|
* @public
|
|
63
67
|
*/
|
|
64
|
-
export type ServiceOutputTypes = ConfigureLogsForChannelCommandOutput | ConfigureLogsForPlaybackConfigurationCommandOutput | CreateChannelCommandOutput | CreateLiveSourceCommandOutput | CreatePrefetchScheduleCommandOutput | CreateProgramCommandOutput | CreateSourceLocationCommandOutput | CreateVodSourceCommandOutput | DeleteChannelCommandOutput | DeleteChannelPolicyCommandOutput | DeleteLiveSourceCommandOutput | DeletePlaybackConfigurationCommandOutput | DeletePrefetchScheduleCommandOutput | DeleteProgramCommandOutput | DeleteSourceLocationCommandOutput | DeleteVodSourceCommandOutput | DescribeChannelCommandOutput | DescribeLiveSourceCommandOutput | DescribeProgramCommandOutput | DescribeSourceLocationCommandOutput | DescribeVodSourceCommandOutput | GetChannelPolicyCommandOutput | GetChannelScheduleCommandOutput | GetPlaybackConfigurationCommandOutput | GetPrefetchScheduleCommandOutput | ListAlertsCommandOutput | ListChannelsCommandOutput | ListLiveSourcesCommandOutput | ListPlaybackConfigurationsCommandOutput | ListPrefetchSchedulesCommandOutput | ListSourceLocationsCommandOutput | ListTagsForResourceCommandOutput | ListVodSourcesCommandOutput | PutChannelPolicyCommandOutput | PutPlaybackConfigurationCommandOutput | StartChannelCommandOutput | StopChannelCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateLiveSourceCommandOutput | UpdateProgramCommandOutput | UpdateSourceLocationCommandOutput | UpdateVodSourceCommandOutput;
|
|
68
|
+
export type ServiceOutputTypes = ConfigureLogsForChannelCommandOutput | ConfigureLogsForPlaybackConfigurationCommandOutput | CreateChannelCommandOutput | CreateLiveSourceCommandOutput | CreatePrefetchScheduleCommandOutput | CreateProgramCommandOutput | CreateSourceLocationCommandOutput | CreateVodSourceCommandOutput | DeleteChannelCommandOutput | DeleteChannelPolicyCommandOutput | DeleteFunctionCommandOutput | DeleteLiveSourceCommandOutput | DeletePlaybackConfigurationCommandOutput | DeletePrefetchScheduleCommandOutput | DeleteProgramCommandOutput | DeleteSourceLocationCommandOutput | DeleteVodSourceCommandOutput | DescribeChannelCommandOutput | DescribeLiveSourceCommandOutput | DescribeProgramCommandOutput | DescribeSourceLocationCommandOutput | DescribeVodSourceCommandOutput | GetChannelPolicyCommandOutput | GetChannelScheduleCommandOutput | GetFunctionCommandOutput | GetPlaybackConfigurationCommandOutput | GetPrefetchScheduleCommandOutput | ListAlertsCommandOutput | ListChannelsCommandOutput | ListFunctionsCommandOutput | ListLiveSourcesCommandOutput | ListPlaybackConfigurationsCommandOutput | ListPrefetchSchedulesCommandOutput | ListSourceLocationsCommandOutput | ListTagsForResourceCommandOutput | ListVodSourcesCommandOutput | PutChannelPolicyCommandOutput | PutFunctionCommandOutput | PutPlaybackConfigurationCommandOutput | StartChannelCommandOutput | StopChannelCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateLiveSourceCommandOutput | UpdateProgramCommandOutput | UpdateSourceLocationCommandOutput | UpdateVodSourceCommandOutput;
|
|
65
69
|
/**
|
|
66
70
|
* @public
|
|
67
71
|
*/
|