@aws-sdk/client-mediatailor 3.1075.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1814 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/MediaTailorServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -15
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1578
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultMediaTailorHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "mediatailor",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultMediaTailorHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1558 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
84
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
85
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws"]],
|
|
86
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://mediatailor.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
["https://api.mediatailor-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
95
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
96
|
+
["https://api.mediatailor-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://api.mediatailor.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://api.mediatailor.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 9, 6,
|
|
112
|
+
5, 7, r + 11,
|
|
113
|
+
6, r + 4, 8,
|
|
114
|
+
7, r + 9, r + 10,
|
|
115
|
+
4, 11, 10,
|
|
116
|
+
5, r + 6, r + 8,
|
|
117
|
+
5, 12, r + 7,
|
|
118
|
+
7, r + 5, r + 6,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
5, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class MediaTailorServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, MediaTailorServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class BadRequestException extends MediaTailorServiceException {
|
|
144
|
+
name = "BadRequestException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
Message;
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "BadRequestException",
|
|
150
|
+
$fault: "client",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
const _A = "Alert";
|
|
159
|
+
const _AB = "AdBreak";
|
|
160
|
+
const _ABM = "AdBreakMetadata";
|
|
161
|
+
const _ABML = "AdBreakMetadataList";
|
|
162
|
+
const _ABO = "AdBreakOpportunity";
|
|
163
|
+
const _ABOd = "AdBreakOpportunities";
|
|
164
|
+
const _ABd = "AdBreaks";
|
|
165
|
+
const _AC = "AccessConfiguration";
|
|
166
|
+
const _ACC = "AdConditioningConfiguration";
|
|
167
|
+
const _ACl = "AlertCode";
|
|
168
|
+
const _ADS = "ApproximateDurationSeconds";
|
|
169
|
+
const _ADSC = "AdDecisionServerConfiguration";
|
|
170
|
+
const _ADSU = "AdDecisionServerUrl";
|
|
171
|
+
const _AE = "AvailsExpected";
|
|
172
|
+
const _AIL = "AdsInteractionLog";
|
|
173
|
+
const _AM = "AlertMessage";
|
|
174
|
+
const _AMC = "AvailMatchingCriteria";
|
|
175
|
+
const _AMP = "AdMarkerPassthrough";
|
|
176
|
+
const _AMT = "AdMarkupType";
|
|
177
|
+
const _AMl = "AlternateMedia";
|
|
178
|
+
const _AMu = "AudienceMedia";
|
|
179
|
+
const _AN = "AvailNum";
|
|
180
|
+
const _AS = "AvailSuppression";
|
|
181
|
+
const _AST = "ApproximateStartTime";
|
|
182
|
+
const _ASUP = "AdSegmentUrlPrefix";
|
|
183
|
+
const _AT = "AccessType";
|
|
184
|
+
const _Ar = "Arn";
|
|
185
|
+
const _Au = "Audience";
|
|
186
|
+
const _Aud = "Audiences";
|
|
187
|
+
const _B = "Bumper";
|
|
188
|
+
const _BRE = "BadRequestException";
|
|
189
|
+
const _BU = "BaseUrl";
|
|
190
|
+
const _Bo = "Body";
|
|
191
|
+
const _C = "Category";
|
|
192
|
+
const _CA = "ConfigurationAliases";
|
|
193
|
+
const _CAR = "ConfigurationAliasesResponse";
|
|
194
|
+
const _CARo = "ConfigurationAliasesRequest";
|
|
195
|
+
const _CC = "CdnConfiguration";
|
|
196
|
+
const _CCR = "CreateChannelRequest";
|
|
197
|
+
const _CCRr = "CreateChannelResponse";
|
|
198
|
+
const _CCr = "CreateChannel";
|
|
199
|
+
const _CLFC = "ConfigureLogsForChannel";
|
|
200
|
+
const _CLFCR = "ConfigureLogsForChannelRequest";
|
|
201
|
+
const _CLFCRo = "ConfigureLogsForChannelResponse";
|
|
202
|
+
const _CLFPC = "ConfigureLogsForPlaybackConfiguration";
|
|
203
|
+
const _CLFPCR = "ConfigureLogsForPlaybackConfigurationRequest";
|
|
204
|
+
const _CLFPCRo = "ConfigureLogsForPlaybackConfigurationResponse";
|
|
205
|
+
const _CLS = "CreateLiveSource";
|
|
206
|
+
const _CLSR = "CreateLiveSourceRequest";
|
|
207
|
+
const _CLSRr = "CreateLiveSourceResponse";
|
|
208
|
+
const _CN = "ChannelName";
|
|
209
|
+
const _COC = "CustomOutputConfiguration";
|
|
210
|
+
const _CP = "CreateProgram";
|
|
211
|
+
const _CPR = "CreateProgramRequest";
|
|
212
|
+
const _CPRr = "CreateProgramResponse";
|
|
213
|
+
const _CPS = "CreatePrefetchSchedule";
|
|
214
|
+
const _CPSR = "CreatePrefetchScheduleRequest";
|
|
215
|
+
const _CPSRr = "CreatePrefetchScheduleResponse";
|
|
216
|
+
const _CR = "ClipRange";
|
|
217
|
+
const _CRo = "CompressRequest";
|
|
218
|
+
const _CS = "ChannelState";
|
|
219
|
+
const _CSL = "CreateSourceLocation";
|
|
220
|
+
const _CSLR = "CreateSourceLocationRequest";
|
|
221
|
+
const _CSLRr = "CreateSourceLocationResponse";
|
|
222
|
+
const _CSUP = "ContentSegmentUrlPrefix";
|
|
223
|
+
const _CT = "CreationTime";
|
|
224
|
+
const _CVS = "CreateVodSource";
|
|
225
|
+
const _CVSR = "CreateVodSourceRequest";
|
|
226
|
+
const _CVSRr = "CreateVodSourceResponse";
|
|
227
|
+
const _Ch = "Channel";
|
|
228
|
+
const _Co = "Consumption";
|
|
229
|
+
const _D = "Description";
|
|
230
|
+
const _DAAES = "DelayAfterAvailEndSeconds";
|
|
231
|
+
const _DC = "DashConfiguration";
|
|
232
|
+
const _DCFP = "DashConfigurationForPut";
|
|
233
|
+
const _DCP = "DeleteChannelPolicy";
|
|
234
|
+
const _DCPR = "DeleteChannelPolicyRequest";
|
|
235
|
+
const _DCPRe = "DeleteChannelPolicyResponse";
|
|
236
|
+
const _DCR = "DeleteChannelRequest";
|
|
237
|
+
const _DCRe = "DeleteChannelResponse";
|
|
238
|
+
const _DCRes = "DescribeChannelRequest";
|
|
239
|
+
const _DCResc = "DescribeChannelResponse";
|
|
240
|
+
const _DCe = "DeleteChannel";
|
|
241
|
+
const _DCes = "DescribeChannel";
|
|
242
|
+
const _DF = "DeleteFunction";
|
|
243
|
+
const _DFR = "DeleteFunctionRequest";
|
|
244
|
+
const _DFRe = "DeleteFunctionResponse";
|
|
245
|
+
const _DLS = "DeleteLiveSource";
|
|
246
|
+
const _DLSR = "DeleteLiveSourceRequest";
|
|
247
|
+
const _DLSRe = "DeleteLiveSourceResponse";
|
|
248
|
+
const _DLSRes = "DescribeLiveSourceRequest";
|
|
249
|
+
const _DLSResc = "DescribeLiveSourceResponse";
|
|
250
|
+
const _DLSe = "DescribeLiveSource";
|
|
251
|
+
const _DM = "DurationMillis";
|
|
252
|
+
const _DMu = "DurationMinutes";
|
|
253
|
+
const _DP = "DeleteProgram";
|
|
254
|
+
const _DPC = "DeletePlaybackConfiguration";
|
|
255
|
+
const _DPCR = "DeletePlaybackConfigurationRequest";
|
|
256
|
+
const _DPCRe = "DeletePlaybackConfigurationResponse";
|
|
257
|
+
const _DPR = "DeleteProgramRequest";
|
|
258
|
+
const _DPRe = "DeleteProgramResponse";
|
|
259
|
+
const _DPRes = "DescribeProgramRequest";
|
|
260
|
+
const _DPResc = "DescribeProgramResponse";
|
|
261
|
+
const _DPS = "DashPlaylistSettings";
|
|
262
|
+
const _DPSR = "DeletePrefetchScheduleRequest";
|
|
263
|
+
const _DPSRe = "DeletePrefetchScheduleResponse";
|
|
264
|
+
const _DPSe = "DeletePrefetchSchedule";
|
|
265
|
+
const _DPe = "DescribeProgram";
|
|
266
|
+
const _DSDC = "DefaultSegmentDeliveryConfiguration";
|
|
267
|
+
const _DSL = "DeleteSourceLocation";
|
|
268
|
+
const _DSLR = "DeleteSourceLocationRequest";
|
|
269
|
+
const _DSLRe = "DeleteSourceLocationResponse";
|
|
270
|
+
const _DSLRes = "DescribeSourceLocationRequest";
|
|
271
|
+
const _DSLResc = "DescribeSourceLocationResponse";
|
|
272
|
+
const _DSLe = "DescribeSourceLocation";
|
|
273
|
+
const _DV = "DynamicVariable";
|
|
274
|
+
const _DVS = "DeleteVodSource";
|
|
275
|
+
const _DVSR = "DeleteVodSourceRequest";
|
|
276
|
+
const _DVSRe = "DeleteVodSourceResponse";
|
|
277
|
+
const _DVSRes = "DescribeVodSourceRequest";
|
|
278
|
+
const _DVSResc = "DescribeVodSourceResponse";
|
|
279
|
+
const _DVSe = "DescribeVodSource";
|
|
280
|
+
const _DVy = "DynamicVariables";
|
|
281
|
+
const _E = "Enabled";
|
|
282
|
+
const _EET = "ExcludeEventTypes";
|
|
283
|
+
const _ELS = "EnabledLoggingStrategies";
|
|
284
|
+
const _EOM = "EndOffsetMillis";
|
|
285
|
+
const _ET = "EndTime";
|
|
286
|
+
const _EU = "EndUrl";
|
|
287
|
+
const _F = "Function";
|
|
288
|
+
const _FI = "FunctionId";
|
|
289
|
+
const _FL = "FunctionList";
|
|
290
|
+
const _FM = "FunctionMapping";
|
|
291
|
+
const _FP = "FillPolicy";
|
|
292
|
+
const _FR = "FunctionRef";
|
|
293
|
+
const _FS = "FillerSlate";
|
|
294
|
+
const _FT = "FunctionType";
|
|
295
|
+
const _GCP = "GetChannelPolicy";
|
|
296
|
+
const _GCPR = "GetChannelPolicyRequest";
|
|
297
|
+
const _GCPRe = "GetChannelPolicyResponse";
|
|
298
|
+
const _GCS = "GetChannelSchedule";
|
|
299
|
+
const _GCSR = "GetChannelScheduleRequest";
|
|
300
|
+
const _GCSRe = "GetChannelScheduleResponse";
|
|
301
|
+
const _GF = "GetFunction";
|
|
302
|
+
const _GFR = "GetFunctionRequest";
|
|
303
|
+
const _GFRe = "GetFunctionResponse";
|
|
304
|
+
const _GPC = "GetPlaybackConfiguration";
|
|
305
|
+
const _GPCR = "GetPlaybackConfigurationRequest";
|
|
306
|
+
const _GPCRe = "GetPlaybackConfigurationResponse";
|
|
307
|
+
const _GPS = "GetPrefetchSchedule";
|
|
308
|
+
const _GPSR = "GetPrefetchScheduleRequest";
|
|
309
|
+
const _GPSRe = "GetPrefetchScheduleResponse";
|
|
310
|
+
const _H = "Headers";
|
|
311
|
+
const _HC = "HttpConfiguration";
|
|
312
|
+
const _HCl = "HlsConfiguration";
|
|
313
|
+
const _HN = "HeaderName";
|
|
314
|
+
const _HPC = "HttpPackageConfigurations";
|
|
315
|
+
const _HPCt = "HttpPackageConfiguration";
|
|
316
|
+
const _HPS = "HlsPlaylistSettings";
|
|
317
|
+
const _HR = "HttpRequest";
|
|
318
|
+
const _HRC = "HttpRequestConfiguration";
|
|
319
|
+
const _I = "Items";
|
|
320
|
+
const _IM = "InsertionMode";
|
|
321
|
+
const _K = "Key";
|
|
322
|
+
const _KVP = "KeyValuePair";
|
|
323
|
+
const _LA = "ListAlerts";
|
|
324
|
+
const _LAR = "ListAlertsRequest";
|
|
325
|
+
const _LARi = "ListAlertsResponse";
|
|
326
|
+
const _LC = "LogConfiguration";
|
|
327
|
+
const _LCFC = "LogConfigurationForChannel";
|
|
328
|
+
const _LCR = "ListChannelsRequest";
|
|
329
|
+
const _LCRi = "ListChannelsResponse";
|
|
330
|
+
const _LCi = "ListChannels";
|
|
331
|
+
const _LF = "ListFunctions";
|
|
332
|
+
const _LFR = "ListFunctionsRequest";
|
|
333
|
+
const _LFRi = "ListFunctionsResponse";
|
|
334
|
+
const _LLS = "ListLiveSources";
|
|
335
|
+
const _LLSR = "ListLiveSourcesRequest";
|
|
336
|
+
const _LLSRi = "ListLiveSourcesResponse";
|
|
337
|
+
const _LMT = "LastModifiedTime";
|
|
338
|
+
const _LPC = "ListPlaybackConfigurations";
|
|
339
|
+
const _LPCR = "ListPlaybackConfigurationsRequest";
|
|
340
|
+
const _LPCRi = "ListPlaybackConfigurationsResponse";
|
|
341
|
+
const _LPRC = "LivePreRollConfiguration";
|
|
342
|
+
const _LPS = "ListPrefetchSchedules";
|
|
343
|
+
const _LPSR = "ListPrefetchSchedulesRequest";
|
|
344
|
+
const _LPSRi = "ListPrefetchSchedulesResponse";
|
|
345
|
+
const _LS = "LiveSource";
|
|
346
|
+
const _LSL = "ListSourceLocations";
|
|
347
|
+
const _LSLR = "ListSourceLocationsRequest";
|
|
348
|
+
const _LSLRi = "ListSourceLocationsResponse";
|
|
349
|
+
const _LSN = "LiveSourceName";
|
|
350
|
+
const _LT = "LogTypes";
|
|
351
|
+
const _LTFR = "ListTagsForResource";
|
|
352
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
353
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
354
|
+
const _LVS = "ListVodSources";
|
|
355
|
+
const _LVSR = "ListVodSourcesRequest";
|
|
356
|
+
const _LVSRi = "ListVodSourcesResponse";
|
|
357
|
+
const _M = "Message";
|
|
358
|
+
const _MBTS = "MinBufferTimeSeconds";
|
|
359
|
+
const _MDS = "MaxDurationSeconds";
|
|
360
|
+
const _MEP = "ManifestEndpointPrefix";
|
|
361
|
+
const _ML = "MpdLocation";
|
|
362
|
+
const _MN = "ManifestName";
|
|
363
|
+
const _MPR = "ManifestProcessingRules";
|
|
364
|
+
const _MR = "MaxResults";
|
|
365
|
+
const _MSIL = "ManifestServiceInteractionLog";
|
|
366
|
+
const _MT = "MessageType";
|
|
367
|
+
const _MTDS = "MaxTimeDelaySeconds";
|
|
368
|
+
const _MTe = "MethodType";
|
|
369
|
+
const _MUPS = "MinUpdatePeriodSeconds";
|
|
370
|
+
const _MWS = "ManifestWindowSeconds";
|
|
371
|
+
const _Me = "Method";
|
|
372
|
+
const _Mo = "Mode";
|
|
373
|
+
const _N = "Name";
|
|
374
|
+
const _NT = "NextToken";
|
|
375
|
+
const _O = "Operator";
|
|
376
|
+
const _OM = "OffsetMillis";
|
|
377
|
+
const _OMT = "OriginManifestType";
|
|
378
|
+
const _Ou = "Outputs";
|
|
379
|
+
const _Out = "Output";
|
|
380
|
+
const _P = "Policy";
|
|
381
|
+
const _PC = "PlaybackConfiguration";
|
|
382
|
+
const _PCA = "PlaybackConfigurationArn";
|
|
383
|
+
const _PCN = "PlaybackConfigurationName";
|
|
384
|
+
const _PCP = "PutChannelPolicy";
|
|
385
|
+
const _PCPR = "PutChannelPolicyRequest";
|
|
386
|
+
const _PCPRu = "PutChannelPolicyResponse";
|
|
387
|
+
const _PCU = "PeakConcurrentUsers";
|
|
388
|
+
const _PCr = "PrefetchConsumption";
|
|
389
|
+
const _PE = "PercentEnabled";
|
|
390
|
+
const _PEP = "PlaybackEndpointPrefix";
|
|
391
|
+
const _PF = "PutFunction";
|
|
392
|
+
const _PFR = "PutFunctionRequest";
|
|
393
|
+
const _PFRu = "PutFunctionResponse";
|
|
394
|
+
const _PM = "PlaybackMode";
|
|
395
|
+
const _PN = "ProgramName";
|
|
396
|
+
const _POIET = "PublishOptInEventTypes";
|
|
397
|
+
const _PPC = "PutPlaybackConfiguration";
|
|
398
|
+
const _PPCR = "PutPlaybackConfigurationRequest";
|
|
399
|
+
const _PPCRu = "PutPlaybackConfigurationResponse";
|
|
400
|
+
const _PR = "PrefetchRetrieval";
|
|
401
|
+
const _PS = "PrefetchSchedule";
|
|
402
|
+
const _PT = "PeakTps";
|
|
403
|
+
const _PTS = "PersonalizationThresholdSeconds";
|
|
404
|
+
const _PU = "PlaybackUrl";
|
|
405
|
+
const _Pa = "Path";
|
|
406
|
+
const _R = "Retrieval";
|
|
407
|
+
const _RA = "ResourceArn";
|
|
408
|
+
const _RAES = "RetrievedAdExpirationSeconds";
|
|
409
|
+
const _RC = "RunCondition";
|
|
410
|
+
const _RCe = "RecurringConsumption";
|
|
411
|
+
const _RO = "RequestOutputs";
|
|
412
|
+
const _ROI = "RequestOutputItem";
|
|
413
|
+
const _ROIe = "ResponseOutputItem";
|
|
414
|
+
const _ROe = "ResponseOutputs";
|
|
415
|
+
const _RP = "RelativePosition";
|
|
416
|
+
const _RPC = "RecurringPrefetchConfiguration";
|
|
417
|
+
const _RPe = "RelativeProgram";
|
|
418
|
+
const _RR = "RecurringRetrieval";
|
|
419
|
+
const _RRA = "RelatedResourceArns";
|
|
420
|
+
const _RTM = "RequestTimeoutMilliseconds";
|
|
421
|
+
const _RWDS = "RetrievalWindowDurationSeconds";
|
|
422
|
+
const _Ru = "Runtime";
|
|
423
|
+
const _S = "Slate";
|
|
424
|
+
const _SA = "SecretArn";
|
|
425
|
+
const _SAB = "ScheduleAdBreak";
|
|
426
|
+
const _SABc = "ScheduleAdBreaks";
|
|
427
|
+
const _SAU = "SlateAdUrl";
|
|
428
|
+
const _SC = "ScheduleConfiguration";
|
|
429
|
+
const _SCR = "StartChannelRequest";
|
|
430
|
+
const _SCRt = "StartChannelResponse";
|
|
431
|
+
const _SCRto = "StopChannelRequest";
|
|
432
|
+
const _SCRtop = "StopChannelResponse";
|
|
433
|
+
const _SCt = "StartChannel";
|
|
434
|
+
const _SCto = "StopChannel";
|
|
435
|
+
const _SD = "SegmentationDescriptor";
|
|
436
|
+
const _SDC = "SegmentDeliveryConfigurations";
|
|
437
|
+
const _SDCe = "SegmentDeliveryConfiguration";
|
|
438
|
+
const _SDL = "SegmentationDescriptorList";
|
|
439
|
+
const _SDe = "SegmentationDescriptors";
|
|
440
|
+
const _SE = "ScheduleEntry";
|
|
441
|
+
const _SEC = "SequentialExecutorConfiguration";
|
|
442
|
+
const _SEI = "SegmentationEventId";
|
|
443
|
+
const _SEIp = "SpliceEventId";
|
|
444
|
+
const _SET = "ScheduleEntryType";
|
|
445
|
+
const _SEe = "SegmentsExpected";
|
|
446
|
+
const _SG = "SourceGroup";
|
|
447
|
+
const _SI = "StreamId";
|
|
448
|
+
const _SIEP = "SessionInitializationEndpointPrefix";
|
|
449
|
+
const _SIM = "SpliceInsertMessage";
|
|
450
|
+
const _SL = "SourceLocation";
|
|
451
|
+
const _SLN = "SourceLocationName";
|
|
452
|
+
const _SMATC = "SecretsManagerAccessTokenConfiguration";
|
|
453
|
+
const _SMFC = "StreamingMediaFileConditioning";
|
|
454
|
+
const _SN = "SegmentNum";
|
|
455
|
+
const _SOM = "StartOffsetMillis";
|
|
456
|
+
const _SPDS = "SuggestedPresentationDelaySeconds";
|
|
457
|
+
const _SS = "SlateSource";
|
|
458
|
+
const _SSE = "SubSegmentsExpected";
|
|
459
|
+
const _SSK = "SecretStringKey";
|
|
460
|
+
const _SSN = "SubSegmentNum";
|
|
461
|
+
const _SST = "ScheduledStartTime";
|
|
462
|
+
const _SSTM = "ScheduledStartTimeMillis";
|
|
463
|
+
const _ST = "ScheduleType";
|
|
464
|
+
const _STI = "SegmentationTypeId";
|
|
465
|
+
const _STt = "StartTime";
|
|
466
|
+
const _SU = "StartUrl";
|
|
467
|
+
const _SUT = "SegmentationUpidType";
|
|
468
|
+
const _SUe = "SegmentationUpid";
|
|
469
|
+
const _T = "Tier";
|
|
470
|
+
const _TK = "TagKeys";
|
|
471
|
+
const _TM = "TimeoutMilliseconds";
|
|
472
|
+
const _TPN = "TranscodeProfileName";
|
|
473
|
+
const _TR = "TagResource";
|
|
474
|
+
const _TRR = "TagResourceRequest";
|
|
475
|
+
const _TSC = "TimeShiftConfiguration";
|
|
476
|
+
const _TSM = "TimeSignalMessage";
|
|
477
|
+
const _TSRW = "TrafficShapingRetrievalWindow";
|
|
478
|
+
const _TST = "TrafficShapingType";
|
|
479
|
+
const _TSTC = "TrafficShapingTpsConfiguration";
|
|
480
|
+
const _Ta = "Tags";
|
|
481
|
+
const _Tr = "Transition";
|
|
482
|
+
const _Ty = "Type";
|
|
483
|
+
const _U = "Url";
|
|
484
|
+
const _UC = "UpdateChannel";
|
|
485
|
+
const _UCR = "UpdateChannelRequest";
|
|
486
|
+
const _UCRp = "UpdateChannelResponse";
|
|
487
|
+
const _ULS = "UpdateLiveSource";
|
|
488
|
+
const _ULSR = "UpdateLiveSourceRequest";
|
|
489
|
+
const _ULSRp = "UpdateLiveSourceResponse";
|
|
490
|
+
const _UP = "UpdateProgram";
|
|
491
|
+
const _UPI = "UniqueProgramId";
|
|
492
|
+
const _UPR = "UpdateProgramRequest";
|
|
493
|
+
const _UPRp = "UpdateProgramResponse";
|
|
494
|
+
const _UPSC = "UpdateProgramScheduleConfiguration";
|
|
495
|
+
const _UPT = "UpdateProgramTransition";
|
|
496
|
+
const _UR = "UntagResource";
|
|
497
|
+
const _URR = "UntagResourceRequest";
|
|
498
|
+
const _USL = "UpdateSourceLocation";
|
|
499
|
+
const _USLR = "UpdateSourceLocationRequest";
|
|
500
|
+
const _USLRp = "UpdateSourceLocationResponse";
|
|
501
|
+
const _UVS = "UpdateVodSource";
|
|
502
|
+
const _UVSR = "UpdateVodSourceRequest";
|
|
503
|
+
const _UVSRp = "UpdateVodSourceResponse";
|
|
504
|
+
const _V = "Value";
|
|
505
|
+
const _VCSU = "VideoContentSourceUrl";
|
|
506
|
+
const _VS = "VodSource";
|
|
507
|
+
const _VSN = "VodSourceName";
|
|
508
|
+
const _a = "audience";
|
|
509
|
+
const _c = "client";
|
|
510
|
+
const _dM = "durationMinutes";
|
|
511
|
+
const _e = "error";
|
|
512
|
+
const _h = "http";
|
|
513
|
+
const _hE = "httpError";
|
|
514
|
+
const _hQ = "httpQuery";
|
|
515
|
+
const _jN = "jsonName";
|
|
516
|
+
const _lOA = "__listOfAlert";
|
|
517
|
+
const _lOAB = "__listOfAdBreak";
|
|
518
|
+
const _lOAM = "__listOfAlternateMedia";
|
|
519
|
+
const _lOAMC = "__listOfAvailMatchingCriteria";
|
|
520
|
+
const _lOAMi = "__listOfAudienceMedia";
|
|
521
|
+
const _lOC = "__listOfChannel";
|
|
522
|
+
const _lOFR = "__listOfFunctionsRef";
|
|
523
|
+
const _lOFRi = "__listOfFunctionsResponse";
|
|
524
|
+
const _lOLS = "__listOfLiveSource";
|
|
525
|
+
const _lOPC = "__listOfPlaybackConfiguration";
|
|
526
|
+
const _lOPS = "__listOfPrefetchSchedule";
|
|
527
|
+
const _lOSAB = "__listOfScheduleAdBreak";
|
|
528
|
+
const _lOSDC = "__listOfSegmentDeliveryConfiguration";
|
|
529
|
+
const _lOSE = "__listOfScheduleEntry";
|
|
530
|
+
const _lOSL = "__listOfSourceLocation";
|
|
531
|
+
const _lOVS = "__listOfVodSource";
|
|
532
|
+
const _mR = "maxResults";
|
|
533
|
+
const _nT = "nextToken";
|
|
534
|
+
const _rA = "resourceArn";
|
|
535
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.mediatailor";
|
|
536
|
+
const _t = "tags";
|
|
537
|
+
const _tK = "tagKeys";
|
|
538
|
+
const n0 = "com.amazonaws.mediatailor";
|
|
539
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
540
|
+
var MediaTailorServiceException$ = [-3, _s, "MediaTailorServiceException", 0, [], []];
|
|
541
|
+
_s_registry.registerError(MediaTailorServiceException$, MediaTailorServiceException);
|
|
542
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
543
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
544
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
545
|
+
[_M],
|
|
546
|
+
[0]
|
|
547
|
+
];
|
|
548
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
549
|
+
const errorTypeRegistries = [
|
|
550
|
+
_s_registry,
|
|
551
|
+
n0_registry,
|
|
552
|
+
];
|
|
553
|
+
var AccessConfiguration$ = [3, n0, _AC,
|
|
554
|
+
0,
|
|
555
|
+
[_AT, _SMATC],
|
|
556
|
+
[0, () => SecretsManagerAccessTokenConfiguration$]
|
|
557
|
+
];
|
|
558
|
+
var AdBreak$ = [3, n0, _AB,
|
|
559
|
+
0,
|
|
560
|
+
[_OM, _MT, _S, _SIM, _TSM, _ABM],
|
|
561
|
+
[1, 0, () => SlateSource$, () => SpliceInsertMessage$, () => TimeSignalMessage$, () => AdBreakMetadataList], 1
|
|
562
|
+
];
|
|
563
|
+
var AdBreakOpportunity$ = [3, n0, _ABO,
|
|
564
|
+
0,
|
|
565
|
+
[_OM],
|
|
566
|
+
[1], 1
|
|
567
|
+
];
|
|
568
|
+
var AdConditioningConfiguration$ = [3, n0, _ACC,
|
|
569
|
+
0,
|
|
570
|
+
[_SMFC],
|
|
571
|
+
[0], 1
|
|
572
|
+
];
|
|
573
|
+
var AdDecisionServerConfiguration$ = [3, n0, _ADSC,
|
|
574
|
+
0,
|
|
575
|
+
[_HR],
|
|
576
|
+
[() => HttpRequest$]
|
|
577
|
+
];
|
|
578
|
+
var AdMarkerPassthrough$ = [3, n0, _AMP,
|
|
579
|
+
0,
|
|
580
|
+
[_E],
|
|
581
|
+
[2]
|
|
582
|
+
];
|
|
583
|
+
var AdsInteractionLog$ = [3, n0, _AIL,
|
|
584
|
+
0,
|
|
585
|
+
[_POIET, _EET],
|
|
586
|
+
[64 | 0, 64 | 0]
|
|
587
|
+
];
|
|
588
|
+
var Alert$ = [3, n0, _A,
|
|
589
|
+
0,
|
|
590
|
+
[_ACl, _AM, _LMT, _RRA, _RA, _C],
|
|
591
|
+
[0, 0, 7, 64 | 0, 0, 0], 5
|
|
592
|
+
];
|
|
593
|
+
var AlternateMedia$ = [3, n0, _AMl,
|
|
594
|
+
0,
|
|
595
|
+
[_SLN, _LSN, _VSN, _CR, _SSTM, _ABd, _DM],
|
|
596
|
+
[0, 0, 0, () => ClipRange$, 1, () => __listOfAdBreak, 1]
|
|
597
|
+
];
|
|
598
|
+
var AudienceMedia$ = [3, n0, _AMu,
|
|
599
|
+
0,
|
|
600
|
+
[_Au, _AMl],
|
|
601
|
+
[0, () => __listOfAlternateMedia]
|
|
602
|
+
];
|
|
603
|
+
var AvailMatchingCriteria$ = [3, n0, _AMC,
|
|
604
|
+
0,
|
|
605
|
+
[_DV, _O],
|
|
606
|
+
[0, 0], 2
|
|
607
|
+
];
|
|
608
|
+
var AvailSuppression$ = [3, n0, _AS,
|
|
609
|
+
0,
|
|
610
|
+
[_Mo, _V, _FP],
|
|
611
|
+
[0, 0, 0]
|
|
612
|
+
];
|
|
613
|
+
var Bumper$ = [3, n0, _B,
|
|
614
|
+
0,
|
|
615
|
+
[_EU, _SU],
|
|
616
|
+
[0, 0]
|
|
617
|
+
];
|
|
618
|
+
var CdnConfiguration$ = [3, n0, _CC,
|
|
619
|
+
0,
|
|
620
|
+
[_ASUP, _CSUP],
|
|
621
|
+
[0, 0]
|
|
622
|
+
];
|
|
623
|
+
var Channel$ = [3, n0, _Ch,
|
|
624
|
+
0,
|
|
625
|
+
[_Ar, _CN, _CS, _Ou, _PM, _T, _LC, _CT, _FS, _LMT, _Ta, _Aud],
|
|
626
|
+
[0, 0, 0, () => ResponseOutputs, 0, 0, () => LogConfigurationForChannel$, 7, () => SlateSource$, 7, [128 | 0, { [_jN]: _t }], 64 | 0], 7
|
|
627
|
+
];
|
|
628
|
+
var ClipRange$ = [3, n0, _CR,
|
|
629
|
+
0,
|
|
630
|
+
[_EOM, _SOM],
|
|
631
|
+
[1, 1]
|
|
632
|
+
];
|
|
633
|
+
var ConfigureLogsForChannelRequest$ = [3, n0, _CLFCR,
|
|
634
|
+
0,
|
|
635
|
+
[_CN, _LT],
|
|
636
|
+
[0, 64 | 0], 2
|
|
637
|
+
];
|
|
638
|
+
var ConfigureLogsForChannelResponse$ = [3, n0, _CLFCRo,
|
|
639
|
+
0,
|
|
640
|
+
[_CN, _LT],
|
|
641
|
+
[0, 64 | 0]
|
|
642
|
+
];
|
|
643
|
+
var ConfigureLogsForPlaybackConfigurationRequest$ = [3, n0, _CLFPCR,
|
|
644
|
+
0,
|
|
645
|
+
[_PE, _PCN, _ELS, _AIL, _MSIL],
|
|
646
|
+
[1, 0, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$], 2
|
|
647
|
+
];
|
|
648
|
+
var ConfigureLogsForPlaybackConfigurationResponse$ = [3, n0, _CLFPCRo,
|
|
649
|
+
0,
|
|
650
|
+
[_PE, _PCN, _ELS, _AIL, _MSIL],
|
|
651
|
+
[1, 0, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$], 1
|
|
652
|
+
];
|
|
653
|
+
var CreateChannelRequest$ = [3, n0, _CCR,
|
|
654
|
+
0,
|
|
655
|
+
[_CN, _Ou, _PM, _FS, _Ta, _T, _TSC, _Aud],
|
|
656
|
+
[[0, 1], () => RequestOutputs, 0, () => SlateSource$, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0], 3
|
|
657
|
+
];
|
|
658
|
+
var CreateChannelResponse$ = [3, n0, _CCRr,
|
|
659
|
+
0,
|
|
660
|
+
[_Ar, _CN, _CS, _CT, _FS, _LMT, _Ou, _PM, _Ta, _T, _TSC, _Aud],
|
|
661
|
+
[0, 0, 0, 7, () => SlateSource$, 7, () => ResponseOutputs, 0, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0]
|
|
662
|
+
];
|
|
663
|
+
var CreateLiveSourceRequest$ = [3, n0, _CLSR,
|
|
664
|
+
0,
|
|
665
|
+
[_HPC, _LSN, _SLN, _Ta],
|
|
666
|
+
[() => HttpPackageConfigurations, [0, 1], [0, 1], [128 | 0, { [_jN]: _t }]], 3
|
|
667
|
+
];
|
|
668
|
+
var CreateLiveSourceResponse$ = [3, n0, _CLSRr,
|
|
669
|
+
0,
|
|
670
|
+
[_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _Ta],
|
|
671
|
+
[0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]]
|
|
672
|
+
];
|
|
673
|
+
var CreatePrefetchScheduleRequest$ = [3, n0, _CPSR,
|
|
674
|
+
0,
|
|
675
|
+
[_N, _PCN, _Co, _R, _RPC, _ST, _SI, _Ta],
|
|
676
|
+
[[0, 1], [0, 1], () => PrefetchConsumption$, () => PrefetchRetrieval$, () => RecurringPrefetchConfiguration$, 0, 0, [128 | 0, { [_jN]: _t }]], 2
|
|
677
|
+
];
|
|
678
|
+
var CreatePrefetchScheduleResponse$ = [3, n0, _CPSRr,
|
|
679
|
+
0,
|
|
680
|
+
[_Ar, _Co, _N, _PCN, _R, _RPC, _ST, _SI, _Ta],
|
|
681
|
+
[0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, () => RecurringPrefetchConfiguration$, 0, 0, [128 | 0, { [_jN]: _t }]]
|
|
682
|
+
];
|
|
683
|
+
var CreateProgramRequest$ = [3, n0, _CPR,
|
|
684
|
+
0,
|
|
685
|
+
[_CN, _PN, _SC, _SLN, _ABd, _LSN, _VSN, _AMu, _Ta],
|
|
686
|
+
[[0, 1], [0, 1], () => ScheduleConfiguration$, 0, () => __listOfAdBreak, 0, 0, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]], 4
|
|
687
|
+
];
|
|
688
|
+
var CreateProgramResponse$ = [3, n0, _CPRr,
|
|
689
|
+
0,
|
|
690
|
+
[_ABd, _Ar, _CN, _CT, _LSN, _PN, _SST, _SLN, _VSN, _CR, _DM, _AMu, _Ta],
|
|
691
|
+
[() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange$, 1, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]]
|
|
692
|
+
];
|
|
693
|
+
var CreateSourceLocationRequest$ = [3, n0, _CSLR,
|
|
694
|
+
0,
|
|
695
|
+
[_HC, _SLN, _AC, _DSDC, _SDC, _Ta],
|
|
696
|
+
[() => HttpConfiguration$, [0, 1], () => AccessConfiguration$, () => DefaultSegmentDeliveryConfiguration$, () => __listOfSegmentDeliveryConfiguration, [128 | 0, { [_jN]: _t }]], 2
|
|
697
|
+
];
|
|
698
|
+
var CreateSourceLocationResponse$ = [3, n0, _CSLRr,
|
|
699
|
+
0,
|
|
700
|
+
[_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _Ta],
|
|
701
|
+
[() => AccessConfiguration$, 0, 7, () => DefaultSegmentDeliveryConfiguration$, () => HttpConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, 0, [128 | 0, { [_jN]: _t }]]
|
|
702
|
+
];
|
|
703
|
+
var CreateVodSourceRequest$ = [3, n0, _CVSR,
|
|
704
|
+
0,
|
|
705
|
+
[_HPC, _SLN, _VSN, _Ta],
|
|
706
|
+
[() => HttpPackageConfigurations, [0, 1], [0, 1], [128 | 0, { [_jN]: _t }]], 3
|
|
707
|
+
];
|
|
708
|
+
var CreateVodSourceResponse$ = [3, n0, _CVSRr,
|
|
709
|
+
0,
|
|
710
|
+
[_Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
|
|
711
|
+
[0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
|
|
712
|
+
];
|
|
713
|
+
var CustomOutputConfiguration$ = [3, n0, _COC,
|
|
714
|
+
0,
|
|
715
|
+
[_Ru, _Out],
|
|
716
|
+
[0, 128 | 0], 1
|
|
717
|
+
];
|
|
718
|
+
var DashConfiguration$ = [3, n0, _DC,
|
|
719
|
+
0,
|
|
720
|
+
[_MEP, _ML, _OMT],
|
|
721
|
+
[0, 0, 0]
|
|
722
|
+
];
|
|
723
|
+
var DashConfigurationForPut$ = [3, n0, _DCFP,
|
|
724
|
+
0,
|
|
725
|
+
[_ML, _OMT],
|
|
726
|
+
[0, 0]
|
|
727
|
+
];
|
|
728
|
+
var DashPlaylistSettings$ = [3, n0, _DPS,
|
|
729
|
+
0,
|
|
730
|
+
[_MWS, _MBTS, _MUPS, _SPDS],
|
|
731
|
+
[1, 1, 1, 1]
|
|
732
|
+
];
|
|
733
|
+
var DefaultSegmentDeliveryConfiguration$ = [3, n0, _DSDC,
|
|
734
|
+
0,
|
|
735
|
+
[_BU],
|
|
736
|
+
[0]
|
|
737
|
+
];
|
|
738
|
+
var DeleteChannelPolicyRequest$ = [3, n0, _DCPR,
|
|
739
|
+
0,
|
|
740
|
+
[_CN],
|
|
741
|
+
[[0, 1]], 1
|
|
742
|
+
];
|
|
743
|
+
var DeleteChannelPolicyResponse$ = [3, n0, _DCPRe,
|
|
744
|
+
0,
|
|
745
|
+
[],
|
|
746
|
+
[]
|
|
747
|
+
];
|
|
748
|
+
var DeleteChannelRequest$ = [3, n0, _DCR,
|
|
749
|
+
0,
|
|
750
|
+
[_CN],
|
|
751
|
+
[[0, 1]], 1
|
|
752
|
+
];
|
|
753
|
+
var DeleteChannelResponse$ = [3, n0, _DCRe,
|
|
754
|
+
0,
|
|
755
|
+
[],
|
|
756
|
+
[]
|
|
757
|
+
];
|
|
758
|
+
var DeleteFunctionRequest$ = [3, n0, _DFR,
|
|
759
|
+
0,
|
|
760
|
+
[_FI],
|
|
761
|
+
[[0, 1]], 1
|
|
762
|
+
];
|
|
763
|
+
var DeleteFunctionResponse$ = [3, n0, _DFRe,
|
|
764
|
+
0,
|
|
765
|
+
[],
|
|
766
|
+
[]
|
|
767
|
+
];
|
|
768
|
+
var DeleteLiveSourceRequest$ = [3, n0, _DLSR,
|
|
769
|
+
0,
|
|
770
|
+
[_LSN, _SLN],
|
|
771
|
+
[[0, 1], [0, 1]], 2
|
|
772
|
+
];
|
|
773
|
+
var DeleteLiveSourceResponse$ = [3, n0, _DLSRe,
|
|
774
|
+
0,
|
|
775
|
+
[],
|
|
776
|
+
[]
|
|
777
|
+
];
|
|
778
|
+
var DeletePlaybackConfigurationRequest$ = [3, n0, _DPCR,
|
|
779
|
+
0,
|
|
780
|
+
[_N],
|
|
781
|
+
[[0, 1]], 1
|
|
782
|
+
];
|
|
783
|
+
var DeletePlaybackConfigurationResponse$ = [3, n0, _DPCRe,
|
|
784
|
+
0,
|
|
785
|
+
[],
|
|
786
|
+
[]
|
|
787
|
+
];
|
|
788
|
+
var DeletePrefetchScheduleRequest$ = [3, n0, _DPSR,
|
|
789
|
+
0,
|
|
790
|
+
[_N, _PCN],
|
|
791
|
+
[[0, 1], [0, 1]], 2
|
|
792
|
+
];
|
|
793
|
+
var DeletePrefetchScheduleResponse$ = [3, n0, _DPSRe,
|
|
794
|
+
0,
|
|
795
|
+
[],
|
|
796
|
+
[]
|
|
797
|
+
];
|
|
798
|
+
var DeleteProgramRequest$ = [3, n0, _DPR,
|
|
799
|
+
0,
|
|
800
|
+
[_CN, _PN],
|
|
801
|
+
[[0, 1], [0, 1]], 2
|
|
802
|
+
];
|
|
803
|
+
var DeleteProgramResponse$ = [3, n0, _DPRe,
|
|
804
|
+
0,
|
|
805
|
+
[],
|
|
806
|
+
[]
|
|
807
|
+
];
|
|
808
|
+
var DeleteSourceLocationRequest$ = [3, n0, _DSLR,
|
|
809
|
+
0,
|
|
810
|
+
[_SLN],
|
|
811
|
+
[[0, 1]], 1
|
|
812
|
+
];
|
|
813
|
+
var DeleteSourceLocationResponse$ = [3, n0, _DSLRe,
|
|
814
|
+
0,
|
|
815
|
+
[],
|
|
816
|
+
[]
|
|
817
|
+
];
|
|
818
|
+
var DeleteVodSourceRequest$ = [3, n0, _DVSR,
|
|
819
|
+
0,
|
|
820
|
+
[_SLN, _VSN],
|
|
821
|
+
[[0, 1], [0, 1]], 2
|
|
822
|
+
];
|
|
823
|
+
var DeleteVodSourceResponse$ = [3, n0, _DVSRe,
|
|
824
|
+
0,
|
|
825
|
+
[],
|
|
826
|
+
[]
|
|
827
|
+
];
|
|
828
|
+
var DescribeChannelRequest$ = [3, n0, _DCRes,
|
|
829
|
+
0,
|
|
830
|
+
[_CN],
|
|
831
|
+
[[0, 1]], 1
|
|
832
|
+
];
|
|
833
|
+
var DescribeChannelResponse$ = [3, n0, _DCResc,
|
|
834
|
+
0,
|
|
835
|
+
[_LC, _Ar, _CN, _CS, _CT, _FS, _LMT, _Ou, _PM, _Ta, _T, _TSC, _Aud],
|
|
836
|
+
[() => LogConfigurationForChannel$, 0, 0, 0, 7, () => SlateSource$, 7, () => ResponseOutputs, 0, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0], 1
|
|
837
|
+
];
|
|
838
|
+
var DescribeLiveSourceRequest$ = [3, n0, _DLSRes,
|
|
839
|
+
0,
|
|
840
|
+
[_LSN, _SLN],
|
|
841
|
+
[[0, 1], [0, 1]], 2
|
|
842
|
+
];
|
|
843
|
+
var DescribeLiveSourceResponse$ = [3, n0, _DLSResc,
|
|
844
|
+
0,
|
|
845
|
+
[_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _Ta],
|
|
846
|
+
[0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]]
|
|
847
|
+
];
|
|
848
|
+
var DescribeProgramRequest$ = [3, n0, _DPRes,
|
|
849
|
+
0,
|
|
850
|
+
[_CN, _PN],
|
|
851
|
+
[[0, 1], [0, 1]], 2
|
|
852
|
+
];
|
|
853
|
+
var DescribeProgramResponse$ = [3, n0, _DPResc,
|
|
854
|
+
0,
|
|
855
|
+
[_ABd, _Ar, _CN, _CT, _LSN, _PN, _SST, _SLN, _VSN, _CR, _DM, _AMu, _Ta],
|
|
856
|
+
[() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange$, 1, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]]
|
|
857
|
+
];
|
|
858
|
+
var DescribeSourceLocationRequest$ = [3, n0, _DSLRes,
|
|
859
|
+
0,
|
|
860
|
+
[_SLN],
|
|
861
|
+
[[0, 1]], 1
|
|
862
|
+
];
|
|
863
|
+
var DescribeSourceLocationResponse$ = [3, n0, _DSLResc,
|
|
864
|
+
0,
|
|
865
|
+
[_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _Ta],
|
|
866
|
+
[() => AccessConfiguration$, 0, 7, () => DefaultSegmentDeliveryConfiguration$, () => HttpConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, 0, [128 | 0, { [_jN]: _t }]]
|
|
867
|
+
];
|
|
868
|
+
var DescribeVodSourceRequest$ = [3, n0, _DVSRes,
|
|
869
|
+
0,
|
|
870
|
+
[_SLN, _VSN],
|
|
871
|
+
[[0, 1], [0, 1]], 2
|
|
872
|
+
];
|
|
873
|
+
var DescribeVodSourceResponse$ = [3, n0, _DVSResc,
|
|
874
|
+
0,
|
|
875
|
+
[_ABOd, _Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
|
|
876
|
+
[() => AdBreakOpportunities, 0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
|
|
877
|
+
];
|
|
878
|
+
var Function$ = [3, n0, _F,
|
|
879
|
+
0,
|
|
880
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
|
|
881
|
+
[0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
|
|
882
|
+
];
|
|
883
|
+
var FunctionRef$ = [3, n0, _FR,
|
|
884
|
+
0,
|
|
885
|
+
[_RC, _FI],
|
|
886
|
+
[0, 0]
|
|
887
|
+
];
|
|
888
|
+
var GetChannelPolicyRequest$ = [3, n0, _GCPR,
|
|
889
|
+
0,
|
|
890
|
+
[_CN],
|
|
891
|
+
[[0, 1]], 1
|
|
892
|
+
];
|
|
893
|
+
var GetChannelPolicyResponse$ = [3, n0, _GCPRe,
|
|
894
|
+
0,
|
|
895
|
+
[_P],
|
|
896
|
+
[0]
|
|
897
|
+
];
|
|
898
|
+
var GetChannelScheduleRequest$ = [3, n0, _GCSR,
|
|
899
|
+
0,
|
|
900
|
+
[_CN, _DMu, _MR, _NT, _Au],
|
|
901
|
+
[[0, 1], [0, { [_hQ]: _dM }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _a }]], 1
|
|
902
|
+
];
|
|
903
|
+
var GetChannelScheduleResponse$ = [3, n0, _GCSRe,
|
|
904
|
+
0,
|
|
905
|
+
[_I, _NT],
|
|
906
|
+
[() => __listOfScheduleEntry, 0]
|
|
907
|
+
];
|
|
908
|
+
var GetFunctionRequest$ = [3, n0, _GFR,
|
|
909
|
+
0,
|
|
910
|
+
[_FI],
|
|
911
|
+
[[0, 1]], 1
|
|
912
|
+
];
|
|
913
|
+
var GetFunctionResponse$ = [3, n0, _GFRe,
|
|
914
|
+
0,
|
|
915
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
|
|
916
|
+
[0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
|
|
917
|
+
];
|
|
918
|
+
var GetPlaybackConfigurationRequest$ = [3, n0, _GPCR,
|
|
919
|
+
0,
|
|
920
|
+
[_N],
|
|
921
|
+
[[0, 1]], 1
|
|
922
|
+
];
|
|
923
|
+
var GetPlaybackConfigurationResponse$ = [3, n0, _GPCRe,
|
|
924
|
+
0,
|
|
925
|
+
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
926
|
+
[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]
|
|
927
|
+
];
|
|
928
|
+
var GetPrefetchScheduleRequest$ = [3, n0, _GPSR,
|
|
929
|
+
0,
|
|
930
|
+
[_N, _PCN],
|
|
931
|
+
[[0, 1], [0, 1]], 2
|
|
932
|
+
];
|
|
933
|
+
var GetPrefetchScheduleResponse$ = [3, n0, _GPSRe,
|
|
934
|
+
0,
|
|
935
|
+
[_Ar, _Co, _N, _PCN, _R, _ST, _RPC, _SI, _Ta],
|
|
936
|
+
[0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, 0, () => RecurringPrefetchConfiguration$, 0, [128 | 0, { [_jN]: _t }]]
|
|
937
|
+
];
|
|
938
|
+
var HlsConfiguration$ = [3, n0, _HCl,
|
|
939
|
+
0,
|
|
940
|
+
[_MEP],
|
|
941
|
+
[0]
|
|
942
|
+
];
|
|
943
|
+
var HlsPlaylistSettings$ = [3, n0, _HPS,
|
|
944
|
+
0,
|
|
945
|
+
[_MWS, _AMT],
|
|
946
|
+
[1, 64 | 0]
|
|
947
|
+
];
|
|
948
|
+
var HttpConfiguration$ = [3, n0, _HC,
|
|
949
|
+
0,
|
|
950
|
+
[_BU],
|
|
951
|
+
[0], 1
|
|
952
|
+
];
|
|
953
|
+
var HttpPackageConfiguration$ = [3, n0, _HPCt,
|
|
954
|
+
0,
|
|
955
|
+
[_Pa, _SG, _Ty],
|
|
956
|
+
[0, 0, 0], 3
|
|
957
|
+
];
|
|
958
|
+
var HttpRequest$ = [3, n0, _HR,
|
|
959
|
+
0,
|
|
960
|
+
[_Me, _Bo, _H, _CRo],
|
|
961
|
+
[0, 0, 128 | 0, 0]
|
|
962
|
+
];
|
|
963
|
+
var HttpRequestConfiguration$ = [3, n0, _HRC,
|
|
964
|
+
0,
|
|
965
|
+
[_Ru, _MTe, _RTM, _U, _Out, _Bo, _H],
|
|
966
|
+
[0, 0, 1, 0, 128 | 0, 0, 128 | 0], 4
|
|
967
|
+
];
|
|
968
|
+
var KeyValuePair$ = [3, n0, _KVP,
|
|
969
|
+
0,
|
|
970
|
+
[_K, _V],
|
|
971
|
+
[0, 0], 2
|
|
972
|
+
];
|
|
973
|
+
var ListAlertsRequest$ = [3, n0, _LAR,
|
|
974
|
+
0,
|
|
975
|
+
[_RA, _MR, _NT],
|
|
976
|
+
[[0, { [_hQ]: _rA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
977
|
+
];
|
|
978
|
+
var ListAlertsResponse$ = [3, n0, _LARi,
|
|
979
|
+
0,
|
|
980
|
+
[_I, _NT],
|
|
981
|
+
[() => __listOfAlert, 0]
|
|
982
|
+
];
|
|
983
|
+
var ListChannelsRequest$ = [3, n0, _LCR,
|
|
984
|
+
0,
|
|
985
|
+
[_MR, _NT],
|
|
986
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
987
|
+
];
|
|
988
|
+
var ListChannelsResponse$ = [3, n0, _LCRi,
|
|
989
|
+
0,
|
|
990
|
+
[_I, _NT],
|
|
991
|
+
[[() => __listOfChannel, 0], 0]
|
|
992
|
+
];
|
|
993
|
+
var ListFunctionsRequest$ = [3, n0, _LFR,
|
|
994
|
+
0,
|
|
995
|
+
[_MR, _NT],
|
|
996
|
+
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
997
|
+
];
|
|
998
|
+
var ListFunctionsResponse$ = [3, n0, _LFRi,
|
|
999
|
+
0,
|
|
1000
|
+
[_I, _NT],
|
|
1001
|
+
[[() => __listOfFunctionsResponse, 0], 0]
|
|
1002
|
+
];
|
|
1003
|
+
var ListLiveSourcesRequest$ = [3, n0, _LLSR,
|
|
1004
|
+
0,
|
|
1005
|
+
[_SLN, _MR, _NT],
|
|
1006
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1007
|
+
];
|
|
1008
|
+
var ListLiveSourcesResponse$ = [3, n0, _LLSRi,
|
|
1009
|
+
0,
|
|
1010
|
+
[_I, _NT],
|
|
1011
|
+
[[() => __listOfLiveSource, 0], 0]
|
|
1012
|
+
];
|
|
1013
|
+
var ListPlaybackConfigurationsRequest$ = [3, n0, _LPCR,
|
|
1014
|
+
0,
|
|
1015
|
+
[_MR, _NT],
|
|
1016
|
+
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1017
|
+
];
|
|
1018
|
+
var ListPlaybackConfigurationsResponse$ = [3, n0, _LPCRi,
|
|
1019
|
+
0,
|
|
1020
|
+
[_I, _NT],
|
|
1021
|
+
[[() => __listOfPlaybackConfiguration, 0], 0]
|
|
1022
|
+
];
|
|
1023
|
+
var ListPrefetchSchedulesRequest$ = [3, n0, _LPSR,
|
|
1024
|
+
0,
|
|
1025
|
+
[_PCN, _MR, _NT, _ST, _SI],
|
|
1026
|
+
[[0, 1], 1, 0, 0, 0], 1
|
|
1027
|
+
];
|
|
1028
|
+
var ListPrefetchSchedulesResponse$ = [3, n0, _LPSRi,
|
|
1029
|
+
0,
|
|
1030
|
+
[_I, _NT],
|
|
1031
|
+
[[() => __listOfPrefetchSchedule, 0], 0]
|
|
1032
|
+
];
|
|
1033
|
+
var ListSourceLocationsRequest$ = [3, n0, _LSLR,
|
|
1034
|
+
0,
|
|
1035
|
+
[_MR, _NT],
|
|
1036
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1037
|
+
];
|
|
1038
|
+
var ListSourceLocationsResponse$ = [3, n0, _LSLRi,
|
|
1039
|
+
0,
|
|
1040
|
+
[_I, _NT],
|
|
1041
|
+
[[() => __listOfSourceLocation, 0], 0]
|
|
1042
|
+
];
|
|
1043
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1044
|
+
0,
|
|
1045
|
+
[_RA],
|
|
1046
|
+
[[0, 1]], 1
|
|
1047
|
+
];
|
|
1048
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1049
|
+
0,
|
|
1050
|
+
[_Ta],
|
|
1051
|
+
[[128 | 0, { [_jN]: _t }]]
|
|
1052
|
+
];
|
|
1053
|
+
var ListVodSourcesRequest$ = [3, n0, _LVSR,
|
|
1054
|
+
0,
|
|
1055
|
+
[_SLN, _MR, _NT],
|
|
1056
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1057
|
+
];
|
|
1058
|
+
var ListVodSourcesResponse$ = [3, n0, _LVSRi,
|
|
1059
|
+
0,
|
|
1060
|
+
[_I, _NT],
|
|
1061
|
+
[[() => __listOfVodSource, 0], 0]
|
|
1062
|
+
];
|
|
1063
|
+
var LivePreRollConfiguration$ = [3, n0, _LPRC,
|
|
1064
|
+
0,
|
|
1065
|
+
[_ADSU, _MDS],
|
|
1066
|
+
[0, 1]
|
|
1067
|
+
];
|
|
1068
|
+
var LiveSource$ = [3, n0, _LS,
|
|
1069
|
+
0,
|
|
1070
|
+
[_Ar, _HPC, _LSN, _SLN, _CT, _LMT, _Ta],
|
|
1071
|
+
[0, () => HttpPackageConfigurations, 0, 0, 7, 7, [128 | 0, { [_jN]: _t }]], 4
|
|
1072
|
+
];
|
|
1073
|
+
var LogConfiguration$ = [3, n0, _LC,
|
|
1074
|
+
0,
|
|
1075
|
+
[_PE, _ELS, _AIL, _MSIL],
|
|
1076
|
+
[1, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$], 2
|
|
1077
|
+
];
|
|
1078
|
+
var LogConfigurationForChannel$ = [3, n0, _LCFC,
|
|
1079
|
+
0,
|
|
1080
|
+
[_LT],
|
|
1081
|
+
[64 | 0]
|
|
1082
|
+
];
|
|
1083
|
+
var ManifestProcessingRules$ = [3, n0, _MPR,
|
|
1084
|
+
0,
|
|
1085
|
+
[_AMP],
|
|
1086
|
+
[() => AdMarkerPassthrough$]
|
|
1087
|
+
];
|
|
1088
|
+
var ManifestServiceInteractionLog$ = [3, n0, _MSIL,
|
|
1089
|
+
0,
|
|
1090
|
+
[_POIET, _EET],
|
|
1091
|
+
[64 | 0, 64 | 0]
|
|
1092
|
+
];
|
|
1093
|
+
var PlaybackConfiguration$ = [3, n0, _PC,
|
|
1094
|
+
0,
|
|
1095
|
+
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
1096
|
+
[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]
|
|
1097
|
+
];
|
|
1098
|
+
var PrefetchConsumption$ = [3, n0, _PCr,
|
|
1099
|
+
0,
|
|
1100
|
+
[_ET, _AMC, _STt],
|
|
1101
|
+
[7, () => __listOfAvailMatchingCriteria, 7], 1
|
|
1102
|
+
];
|
|
1103
|
+
var PrefetchRetrieval$ = [3, n0, _PR,
|
|
1104
|
+
0,
|
|
1105
|
+
[_ET, _DVy, _STt, _TST, _TSRW, _TSTC],
|
|
1106
|
+
[7, 128 | 0, 7, 0, () => TrafficShapingRetrievalWindow$, () => TrafficShapingTpsConfiguration$], 1
|
|
1107
|
+
];
|
|
1108
|
+
var PrefetchSchedule$ = [3, n0, _PS,
|
|
1109
|
+
0,
|
|
1110
|
+
[_Ar, _N, _PCN, _Co, _R, _ST, _RPC, _SI, _Ta],
|
|
1111
|
+
[0, 0, 0, () => PrefetchConsumption$, () => PrefetchRetrieval$, 0, () => RecurringPrefetchConfiguration$, 0, [128 | 0, { [_jN]: _t }]], 3
|
|
1112
|
+
];
|
|
1113
|
+
var PutChannelPolicyRequest$ = [3, n0, _PCPR,
|
|
1114
|
+
0,
|
|
1115
|
+
[_CN, _P],
|
|
1116
|
+
[[0, 1], 0], 2
|
|
1117
|
+
];
|
|
1118
|
+
var PutChannelPolicyResponse$ = [3, n0, _PCPRu,
|
|
1119
|
+
0,
|
|
1120
|
+
[],
|
|
1121
|
+
[]
|
|
1122
|
+
];
|
|
1123
|
+
var PutFunctionRequest$ = [3, n0, _PFR,
|
|
1124
|
+
0,
|
|
1125
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta],
|
|
1126
|
+
[[0, 1], 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }]], 2
|
|
1127
|
+
];
|
|
1128
|
+
var PutFunctionResponse$ = [3, n0, _PFRu,
|
|
1129
|
+
0,
|
|
1130
|
+
[_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
|
|
1131
|
+
[0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
|
|
1132
|
+
];
|
|
1133
|
+
var PutPlaybackConfigurationRequest$ = [3, n0, _PPCR,
|
|
1134
|
+
0,
|
|
1135
|
+
[_N, _ADSU, _AS, _B, _CC, _CA, _DC, _IM, _LPRC, _MPR, _PTS, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
1136
|
+
[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
|
|
1137
|
+
];
|
|
1138
|
+
var PutPlaybackConfigurationResponse$ = [3, n0, _PPCRu,
|
|
1139
|
+
0,
|
|
1140
|
+
[_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
|
|
1141
|
+
[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]
|
|
1142
|
+
];
|
|
1143
|
+
var RecurringConsumption$ = [3, n0, _RCe,
|
|
1144
|
+
0,
|
|
1145
|
+
[_RAES, _AMC],
|
|
1146
|
+
[1, () => __listOfAvailMatchingCriteria]
|
|
1147
|
+
];
|
|
1148
|
+
var RecurringPrefetchConfiguration$ = [3, n0, _RPC,
|
|
1149
|
+
0,
|
|
1150
|
+
[_ET, _RCe, _RR, _STt],
|
|
1151
|
+
[7, () => RecurringConsumption$, () => RecurringRetrieval$, 7], 3
|
|
1152
|
+
];
|
|
1153
|
+
var RecurringRetrieval$ = [3, n0, _RR,
|
|
1154
|
+
0,
|
|
1155
|
+
[_DVy, _DAAES, _TST, _TSRW, _TSTC],
|
|
1156
|
+
[128 | 0, 1, 0, () => TrafficShapingRetrievalWindow$, () => TrafficShapingTpsConfiguration$]
|
|
1157
|
+
];
|
|
1158
|
+
var RequestOutputItem$ = [3, n0, _ROI,
|
|
1159
|
+
0,
|
|
1160
|
+
[_MN, _SG, _DPS, _HPS],
|
|
1161
|
+
[0, 0, () => DashPlaylistSettings$, () => HlsPlaylistSettings$], 2
|
|
1162
|
+
];
|
|
1163
|
+
var ResponseOutputItem$ = [3, n0, _ROIe,
|
|
1164
|
+
0,
|
|
1165
|
+
[_MN, _PU, _SG, _DPS, _HPS],
|
|
1166
|
+
[0, 0, 0, () => DashPlaylistSettings$, () => HlsPlaylistSettings$], 3
|
|
1167
|
+
];
|
|
1168
|
+
var ScheduleAdBreak$ = [3, n0, _SAB,
|
|
1169
|
+
0,
|
|
1170
|
+
[_ADS, _AST, _SLN, _VSN],
|
|
1171
|
+
[1, 7, 0, 0]
|
|
1172
|
+
];
|
|
1173
|
+
var ScheduleConfiguration$ = [3, n0, _SC,
|
|
1174
|
+
0,
|
|
1175
|
+
[_Tr, _CR],
|
|
1176
|
+
[() => Transition$, () => ClipRange$], 1
|
|
1177
|
+
];
|
|
1178
|
+
var ScheduleEntry$ = [3, n0, _SE,
|
|
1179
|
+
0,
|
|
1180
|
+
[_Ar, _CN, _PN, _SLN, _ADS, _AST, _LSN, _SABc, _SET, _VSN, _Aud],
|
|
1181
|
+
[0, 0, 0, 0, 1, 7, 0, () => __listOfScheduleAdBreak, 0, 0, 64 | 0], 4
|
|
1182
|
+
];
|
|
1183
|
+
var SecretsManagerAccessTokenConfiguration$ = [3, n0, _SMATC,
|
|
1184
|
+
0,
|
|
1185
|
+
[_HN, _SA, _SSK],
|
|
1186
|
+
[0, 0, 0]
|
|
1187
|
+
];
|
|
1188
|
+
var SegmentationDescriptor$ = [3, n0, _SD,
|
|
1189
|
+
0,
|
|
1190
|
+
[_SEI, _SUT, _SUe, _STI, _SN, _SEe, _SSN, _SSE],
|
|
1191
|
+
[1, 1, 0, 1, 1, 1, 1, 1]
|
|
1192
|
+
];
|
|
1193
|
+
var SegmentDeliveryConfiguration$ = [3, n0, _SDCe,
|
|
1194
|
+
0,
|
|
1195
|
+
[_BU, _N],
|
|
1196
|
+
[0, 0]
|
|
1197
|
+
];
|
|
1198
|
+
var SequentialExecutorConfiguration$ = [3, n0, _SEC,
|
|
1199
|
+
0,
|
|
1200
|
+
[_Ru, _FL, _TM, _Out],
|
|
1201
|
+
[0, () => __listOfFunctionsRef, 1, 128 | 0], 3
|
|
1202
|
+
];
|
|
1203
|
+
var SlateSource$ = [3, n0, _SS,
|
|
1204
|
+
0,
|
|
1205
|
+
[_SLN, _VSN],
|
|
1206
|
+
[0, 0]
|
|
1207
|
+
];
|
|
1208
|
+
var SourceLocation$ = [3, n0, _SL,
|
|
1209
|
+
0,
|
|
1210
|
+
[_Ar, _HC, _SLN, _AC, _CT, _DSDC, _LMT, _SDC, _Ta],
|
|
1211
|
+
[0, () => HttpConfiguration$, 0, () => AccessConfiguration$, 7, () => DefaultSegmentDeliveryConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, [128 | 0, { [_jN]: _t }]], 3
|
|
1212
|
+
];
|
|
1213
|
+
var SpliceInsertMessage$ = [3, n0, _SIM,
|
|
1214
|
+
0,
|
|
1215
|
+
[_AN, _AE, _SEIp, _UPI],
|
|
1216
|
+
[1, 1, 1, 1]
|
|
1217
|
+
];
|
|
1218
|
+
var StartChannelRequest$ = [3, n0, _SCR,
|
|
1219
|
+
0,
|
|
1220
|
+
[_CN],
|
|
1221
|
+
[[0, 1]], 1
|
|
1222
|
+
];
|
|
1223
|
+
var StartChannelResponse$ = [3, n0, _SCRt,
|
|
1224
|
+
0,
|
|
1225
|
+
[],
|
|
1226
|
+
[]
|
|
1227
|
+
];
|
|
1228
|
+
var StopChannelRequest$ = [3, n0, _SCRto,
|
|
1229
|
+
0,
|
|
1230
|
+
[_CN],
|
|
1231
|
+
[[0, 1]], 1
|
|
1232
|
+
];
|
|
1233
|
+
var StopChannelResponse$ = [3, n0, _SCRtop,
|
|
1234
|
+
0,
|
|
1235
|
+
[],
|
|
1236
|
+
[]
|
|
1237
|
+
];
|
|
1238
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1239
|
+
0,
|
|
1240
|
+
[_RA, _Ta],
|
|
1241
|
+
[[0, 1], [128 | 0, { [_jN]: _t }]], 2
|
|
1242
|
+
];
|
|
1243
|
+
var TimeShiftConfiguration$ = [3, n0, _TSC,
|
|
1244
|
+
0,
|
|
1245
|
+
[_MTDS],
|
|
1246
|
+
[1], 1
|
|
1247
|
+
];
|
|
1248
|
+
var TimeSignalMessage$ = [3, n0, _TSM,
|
|
1249
|
+
0,
|
|
1250
|
+
[_SDe],
|
|
1251
|
+
[() => SegmentationDescriptorList]
|
|
1252
|
+
];
|
|
1253
|
+
var TrafficShapingRetrievalWindow$ = [3, n0, _TSRW,
|
|
1254
|
+
0,
|
|
1255
|
+
[_RWDS],
|
|
1256
|
+
[1]
|
|
1257
|
+
];
|
|
1258
|
+
var TrafficShapingTpsConfiguration$ = [3, n0, _TSTC,
|
|
1259
|
+
0,
|
|
1260
|
+
[_PT, _PCU],
|
|
1261
|
+
[1, 1]
|
|
1262
|
+
];
|
|
1263
|
+
var Transition$ = [3, n0, _Tr,
|
|
1264
|
+
0,
|
|
1265
|
+
[_RP, _Ty, _DM, _RPe, _SSTM],
|
|
1266
|
+
[0, 0, 1, 0, 1], 2
|
|
1267
|
+
];
|
|
1268
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1269
|
+
0,
|
|
1270
|
+
[_RA, _TK],
|
|
1271
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1272
|
+
];
|
|
1273
|
+
var UpdateChannelRequest$ = [3, n0, _UCR,
|
|
1274
|
+
0,
|
|
1275
|
+
[_CN, _Ou, _FS, _TSC, _Aud],
|
|
1276
|
+
[[0, 1], () => RequestOutputs, () => SlateSource$, () => TimeShiftConfiguration$, 64 | 0], 2
|
|
1277
|
+
];
|
|
1278
|
+
var UpdateChannelResponse$ = [3, n0, _UCRp,
|
|
1279
|
+
0,
|
|
1280
|
+
[_Ar, _CN, _CS, _CT, _FS, _LMT, _Ou, _PM, _Ta, _T, _TSC, _Aud],
|
|
1281
|
+
[0, 0, 0, 7, () => SlateSource$, 7, () => ResponseOutputs, 0, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0]
|
|
1282
|
+
];
|
|
1283
|
+
var UpdateLiveSourceRequest$ = [3, n0, _ULSR,
|
|
1284
|
+
0,
|
|
1285
|
+
[_HPC, _LSN, _SLN],
|
|
1286
|
+
[() => HttpPackageConfigurations, [0, 1], [0, 1]], 3
|
|
1287
|
+
];
|
|
1288
|
+
var UpdateLiveSourceResponse$ = [3, n0, _ULSRp,
|
|
1289
|
+
0,
|
|
1290
|
+
[_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _Ta],
|
|
1291
|
+
[0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]]
|
|
1292
|
+
];
|
|
1293
|
+
var UpdateProgramRequest$ = [3, n0, _UPR,
|
|
1294
|
+
0,
|
|
1295
|
+
[_CN, _PN, _SC, _ABd, _AMu],
|
|
1296
|
+
[[0, 1], [0, 1], () => UpdateProgramScheduleConfiguration$, () => __listOfAdBreak, () => __listOfAudienceMedia], 3
|
|
1297
|
+
];
|
|
1298
|
+
var UpdateProgramResponse$ = [3, n0, _UPRp,
|
|
1299
|
+
0,
|
|
1300
|
+
[_ABd, _Ar, _CN, _CT, _PN, _SLN, _VSN, _LSN, _CR, _DM, _SST, _AMu, _Ta],
|
|
1301
|
+
[() => __listOfAdBreak, 0, 0, 7, 0, 0, 0, 0, () => ClipRange$, 1, 7, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]]
|
|
1302
|
+
];
|
|
1303
|
+
var UpdateProgramScheduleConfiguration$ = [3, n0, _UPSC,
|
|
1304
|
+
0,
|
|
1305
|
+
[_Tr, _CR],
|
|
1306
|
+
[() => UpdateProgramTransition$, () => ClipRange$]
|
|
1307
|
+
];
|
|
1308
|
+
var UpdateProgramTransition$ = [3, n0, _UPT,
|
|
1309
|
+
0,
|
|
1310
|
+
[_SSTM, _DM],
|
|
1311
|
+
[1, 1]
|
|
1312
|
+
];
|
|
1313
|
+
var UpdateSourceLocationRequest$ = [3, n0, _USLR,
|
|
1314
|
+
0,
|
|
1315
|
+
[_HC, _SLN, _AC, _DSDC, _SDC],
|
|
1316
|
+
[() => HttpConfiguration$, [0, 1], () => AccessConfiguration$, () => DefaultSegmentDeliveryConfiguration$, () => __listOfSegmentDeliveryConfiguration], 2
|
|
1317
|
+
];
|
|
1318
|
+
var UpdateSourceLocationResponse$ = [3, n0, _USLRp,
|
|
1319
|
+
0,
|
|
1320
|
+
[_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _Ta],
|
|
1321
|
+
[() => AccessConfiguration$, 0, 7, () => DefaultSegmentDeliveryConfiguration$, () => HttpConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, 0, [128 | 0, { [_jN]: _t }]]
|
|
1322
|
+
];
|
|
1323
|
+
var UpdateVodSourceRequest$ = [3, n0, _UVSR,
|
|
1324
|
+
0,
|
|
1325
|
+
[_HPC, _SLN, _VSN],
|
|
1326
|
+
[() => HttpPackageConfigurations, [0, 1], [0, 1]], 3
|
|
1327
|
+
];
|
|
1328
|
+
var UpdateVodSourceResponse$ = [3, n0, _UVSRp,
|
|
1329
|
+
0,
|
|
1330
|
+
[_Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
|
|
1331
|
+
[0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
|
|
1332
|
+
];
|
|
1333
|
+
var VodSource$ = [3, n0, _VS,
|
|
1334
|
+
0,
|
|
1335
|
+
[_Ar, _HPC, _SLN, _VSN, _CT, _LMT, _Ta],
|
|
1336
|
+
[0, () => HttpPackageConfigurations, 0, 0, 7, 7, [128 | 0, { [_jN]: _t }]], 4
|
|
1337
|
+
];
|
|
1338
|
+
var __Unit = "unit";
|
|
1339
|
+
var __listOfAdBreak = [1, n0, _lOAB,
|
|
1340
|
+
0, () => AdBreak$
|
|
1341
|
+
];
|
|
1342
|
+
var __listOfAlert = [1, n0, _lOA,
|
|
1343
|
+
0, () => Alert$
|
|
1344
|
+
];
|
|
1345
|
+
var __listOfAlternateMedia = [1, n0, _lOAM,
|
|
1346
|
+
0, () => AlternateMedia$
|
|
1347
|
+
];
|
|
1348
|
+
var __listOfAudienceMedia = [1, n0, _lOAMi,
|
|
1349
|
+
0, () => AudienceMedia$
|
|
1350
|
+
];
|
|
1351
|
+
var __listOfAvailMatchingCriteria = [1, n0, _lOAMC,
|
|
1352
|
+
0, () => AvailMatchingCriteria$
|
|
1353
|
+
];
|
|
1354
|
+
var __listOfChannel = [1, n0, _lOC,
|
|
1355
|
+
0, [() => Channel$,
|
|
1356
|
+
0]
|
|
1357
|
+
];
|
|
1358
|
+
var __listOfFunctionsRef = [1, n0, _lOFR,
|
|
1359
|
+
0, () => FunctionRef$
|
|
1360
|
+
];
|
|
1361
|
+
var __listOfFunctionsResponse = [1, n0, _lOFRi,
|
|
1362
|
+
0, [() => Function$,
|
|
1363
|
+
0]
|
|
1364
|
+
];
|
|
1365
|
+
var __listOfLiveSource = [1, n0, _lOLS,
|
|
1366
|
+
0, [() => LiveSource$,
|
|
1367
|
+
0]
|
|
1368
|
+
];
|
|
1369
|
+
var __listOfPlaybackConfiguration = [1, n0, _lOPC,
|
|
1370
|
+
0, [() => PlaybackConfiguration$,
|
|
1371
|
+
0]
|
|
1372
|
+
];
|
|
1373
|
+
var __listOfPrefetchSchedule = [1, n0, _lOPS,
|
|
1374
|
+
0, [() => PrefetchSchedule$,
|
|
1375
|
+
0]
|
|
1376
|
+
];
|
|
1377
|
+
var __listOfScheduleAdBreak = [1, n0, _lOSAB,
|
|
1378
|
+
0, () => ScheduleAdBreak$
|
|
1379
|
+
];
|
|
1380
|
+
var __listOfScheduleEntry = [1, n0, _lOSE,
|
|
1381
|
+
0, () => ScheduleEntry$
|
|
1382
|
+
];
|
|
1383
|
+
var __listOfSegmentDeliveryConfiguration = [1, n0, _lOSDC,
|
|
1384
|
+
0, () => SegmentDeliveryConfiguration$
|
|
1385
|
+
];
|
|
1386
|
+
var __listOfSourceLocation = [1, n0, _lOSL,
|
|
1387
|
+
0, [() => SourceLocation$,
|
|
1388
|
+
0]
|
|
1389
|
+
];
|
|
1390
|
+
var __listOfVodSource = [1, n0, _lOVS,
|
|
1391
|
+
0, [() => VodSource$,
|
|
1392
|
+
0]
|
|
1393
|
+
];
|
|
1394
|
+
var AdBreakMetadataList = [1, n0, _ABML,
|
|
1395
|
+
0, () => KeyValuePair$
|
|
1396
|
+
];
|
|
1397
|
+
var AdBreakOpportunities = [1, n0, _ABOd,
|
|
1398
|
+
0, () => AdBreakOpportunity$
|
|
1399
|
+
];
|
|
1400
|
+
var HttpPackageConfigurations = [1, n0, _HPC,
|
|
1401
|
+
0, () => HttpPackageConfiguration$
|
|
1402
|
+
];
|
|
1403
|
+
var RequestOutputs = [1, n0, _RO,
|
|
1404
|
+
0, () => RequestOutputItem$
|
|
1405
|
+
];
|
|
1406
|
+
var ResponseOutputs = [1, n0, _ROe,
|
|
1407
|
+
0, () => ResponseOutputItem$
|
|
1408
|
+
];
|
|
1409
|
+
var SegmentationDescriptorList = [1, n0, _SDL,
|
|
1410
|
+
0, () => SegmentationDescriptor$
|
|
1411
|
+
];
|
|
1412
|
+
var ConfigureLogsForChannel$ = [9, n0, _CLFC,
|
|
1413
|
+
{ [_h]: ["PUT", "/configureLogs/channel", 200] }, () => ConfigureLogsForChannelRequest$, () => ConfigureLogsForChannelResponse$
|
|
1414
|
+
];
|
|
1415
|
+
var ConfigureLogsForPlaybackConfiguration$ = [9, n0, _CLFPC,
|
|
1416
|
+
{ [_h]: ["PUT", "/configureLogs/playbackConfiguration", 200] }, () => ConfigureLogsForPlaybackConfigurationRequest$, () => ConfigureLogsForPlaybackConfigurationResponse$
|
|
1417
|
+
];
|
|
1418
|
+
var CreateChannel$ = [9, n0, _CCr,
|
|
1419
|
+
{ [_h]: ["POST", "/channel/{ChannelName}", 200] }, () => CreateChannelRequest$, () => CreateChannelResponse$
|
|
1420
|
+
];
|
|
1421
|
+
var CreateLiveSource$ = [9, n0, _CLS,
|
|
1422
|
+
{ [_h]: ["POST", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => CreateLiveSourceRequest$, () => CreateLiveSourceResponse$
|
|
1423
|
+
];
|
|
1424
|
+
var CreatePrefetchSchedule$ = [9, n0, _CPS,
|
|
1425
|
+
{ [_h]: ["POST", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 200] }, () => CreatePrefetchScheduleRequest$, () => CreatePrefetchScheduleResponse$
|
|
1426
|
+
];
|
|
1427
|
+
var CreateProgram$ = [9, n0, _CP,
|
|
1428
|
+
{ [_h]: ["POST", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => CreateProgramRequest$, () => CreateProgramResponse$
|
|
1429
|
+
];
|
|
1430
|
+
var CreateSourceLocation$ = [9, n0, _CSL,
|
|
1431
|
+
{ [_h]: ["POST", "/sourceLocation/{SourceLocationName}", 200] }, () => CreateSourceLocationRequest$, () => CreateSourceLocationResponse$
|
|
1432
|
+
];
|
|
1433
|
+
var CreateVodSource$ = [9, n0, _CVS,
|
|
1434
|
+
{ [_h]: ["POST", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => CreateVodSourceRequest$, () => CreateVodSourceResponse$
|
|
1435
|
+
];
|
|
1436
|
+
var DeleteChannel$ = [9, n0, _DCe,
|
|
1437
|
+
{ [_h]: ["DELETE", "/channel/{ChannelName}", 200] }, () => DeleteChannelRequest$, () => DeleteChannelResponse$
|
|
1438
|
+
];
|
|
1439
|
+
var DeleteChannelPolicy$ = [9, n0, _DCP,
|
|
1440
|
+
{ [_h]: ["DELETE", "/channel/{ChannelName}/policy", 200] }, () => DeleteChannelPolicyRequest$, () => DeleteChannelPolicyResponse$
|
|
1441
|
+
];
|
|
1442
|
+
var DeleteFunction$ = [9, n0, _DF,
|
|
1443
|
+
{ [_h]: ["DELETE", "/function/{FunctionId}", 204] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
|
|
1444
|
+
];
|
|
1445
|
+
var DeleteLiveSource$ = [9, n0, _DLS,
|
|
1446
|
+
{ [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => DeleteLiveSourceRequest$, () => DeleteLiveSourceResponse$
|
|
1447
|
+
];
|
|
1448
|
+
var DeletePlaybackConfiguration$ = [9, n0, _DPC,
|
|
1449
|
+
{ [_h]: ["DELETE", "/playbackConfiguration/{Name}", 204] }, () => DeletePlaybackConfigurationRequest$, () => DeletePlaybackConfigurationResponse$
|
|
1450
|
+
];
|
|
1451
|
+
var DeletePrefetchSchedule$ = [9, n0, _DPSe,
|
|
1452
|
+
{ [_h]: ["DELETE", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 204] }, () => DeletePrefetchScheduleRequest$, () => DeletePrefetchScheduleResponse$
|
|
1453
|
+
];
|
|
1454
|
+
var DeleteProgram$ = [9, n0, _DP,
|
|
1455
|
+
{ [_h]: ["DELETE", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => DeleteProgramRequest$, () => DeleteProgramResponse$
|
|
1456
|
+
];
|
|
1457
|
+
var DeleteSourceLocation$ = [9, n0, _DSL,
|
|
1458
|
+
{ [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}", 200] }, () => DeleteSourceLocationRequest$, () => DeleteSourceLocationResponse$
|
|
1459
|
+
];
|
|
1460
|
+
var DeleteVodSource$ = [9, n0, _DVS,
|
|
1461
|
+
{ [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => DeleteVodSourceRequest$, () => DeleteVodSourceResponse$
|
|
1462
|
+
];
|
|
1463
|
+
var DescribeChannel$ = [9, n0, _DCes,
|
|
1464
|
+
{ [_h]: ["GET", "/channel/{ChannelName}", 200] }, () => DescribeChannelRequest$, () => DescribeChannelResponse$
|
|
1465
|
+
];
|
|
1466
|
+
var DescribeLiveSource$ = [9, n0, _DLSe,
|
|
1467
|
+
{ [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => DescribeLiveSourceRequest$, () => DescribeLiveSourceResponse$
|
|
1468
|
+
];
|
|
1469
|
+
var DescribeProgram$ = [9, n0, _DPe,
|
|
1470
|
+
{ [_h]: ["GET", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => DescribeProgramRequest$, () => DescribeProgramResponse$
|
|
1471
|
+
];
|
|
1472
|
+
var DescribeSourceLocation$ = [9, n0, _DSLe,
|
|
1473
|
+
{ [_h]: ["GET", "/sourceLocation/{SourceLocationName}", 200] }, () => DescribeSourceLocationRequest$, () => DescribeSourceLocationResponse$
|
|
1474
|
+
];
|
|
1475
|
+
var DescribeVodSource$ = [9, n0, _DVSe,
|
|
1476
|
+
{ [_h]: ["GET", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => DescribeVodSourceRequest$, () => DescribeVodSourceResponse$
|
|
1477
|
+
];
|
|
1478
|
+
var GetChannelPolicy$ = [9, n0, _GCP,
|
|
1479
|
+
{ [_h]: ["GET", "/channel/{ChannelName}/policy", 200] }, () => GetChannelPolicyRequest$, () => GetChannelPolicyResponse$
|
|
1480
|
+
];
|
|
1481
|
+
var GetChannelSchedule$ = [9, n0, _GCS,
|
|
1482
|
+
{ [_h]: ["GET", "/channel/{ChannelName}/schedule", 200] }, () => GetChannelScheduleRequest$, () => GetChannelScheduleResponse$
|
|
1483
|
+
];
|
|
1484
|
+
var GetFunction$ = [9, n0, _GF,
|
|
1485
|
+
{ [_h]: ["GET", "/function/{FunctionId}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
|
|
1486
|
+
];
|
|
1487
|
+
var GetPlaybackConfiguration$ = [9, n0, _GPC,
|
|
1488
|
+
{ [_h]: ["GET", "/playbackConfiguration/{Name}", 200] }, () => GetPlaybackConfigurationRequest$, () => GetPlaybackConfigurationResponse$
|
|
1489
|
+
];
|
|
1490
|
+
var GetPrefetchSchedule$ = [9, n0, _GPS,
|
|
1491
|
+
{ [_h]: ["GET", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 200] }, () => GetPrefetchScheduleRequest$, () => GetPrefetchScheduleResponse$
|
|
1492
|
+
];
|
|
1493
|
+
var ListAlerts$ = [9, n0, _LA,
|
|
1494
|
+
{ [_h]: ["GET", "/alerts", 200] }, () => ListAlertsRequest$, () => ListAlertsResponse$
|
|
1495
|
+
];
|
|
1496
|
+
var ListChannels$ = [9, n0, _LCi,
|
|
1497
|
+
{ [_h]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
|
|
1498
|
+
];
|
|
1499
|
+
var ListFunctions$ = [9, n0, _LF,
|
|
1500
|
+
{ [_h]: ["GET", "/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
|
|
1501
|
+
];
|
|
1502
|
+
var ListLiveSources$ = [9, n0, _LLS,
|
|
1503
|
+
{ [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSources", 200] }, () => ListLiveSourcesRequest$, () => ListLiveSourcesResponse$
|
|
1504
|
+
];
|
|
1505
|
+
var ListPlaybackConfigurations$ = [9, n0, _LPC,
|
|
1506
|
+
{ [_h]: ["GET", "/playbackConfigurations", 200] }, () => ListPlaybackConfigurationsRequest$, () => ListPlaybackConfigurationsResponse$
|
|
1507
|
+
];
|
|
1508
|
+
var ListPrefetchSchedules$ = [9, n0, _LPS,
|
|
1509
|
+
{ [_h]: ["POST", "/prefetchSchedule/{PlaybackConfigurationName}", 200] }, () => ListPrefetchSchedulesRequest$, () => ListPrefetchSchedulesResponse$
|
|
1510
|
+
];
|
|
1511
|
+
var ListSourceLocations$ = [9, n0, _LSL,
|
|
1512
|
+
{ [_h]: ["GET", "/sourceLocations", 200] }, () => ListSourceLocationsRequest$, () => ListSourceLocationsResponse$
|
|
1513
|
+
];
|
|
1514
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1515
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1516
|
+
];
|
|
1517
|
+
var ListVodSources$ = [9, n0, _LVS,
|
|
1518
|
+
{ [_h]: ["GET", "/sourceLocation/{SourceLocationName}/vodSources", 200] }, () => ListVodSourcesRequest$, () => ListVodSourcesResponse$
|
|
1519
|
+
];
|
|
1520
|
+
var PutChannelPolicy$ = [9, n0, _PCP,
|
|
1521
|
+
{ [_h]: ["PUT", "/channel/{ChannelName}/policy", 200] }, () => PutChannelPolicyRequest$, () => PutChannelPolicyResponse$
|
|
1522
|
+
];
|
|
1523
|
+
var PutFunction$ = [9, n0, _PF,
|
|
1524
|
+
{ [_h]: ["PUT", "/function/{FunctionId}", 200] }, () => PutFunctionRequest$, () => PutFunctionResponse$
|
|
1525
|
+
];
|
|
1526
|
+
var PutPlaybackConfiguration$ = [9, n0, _PPC,
|
|
1527
|
+
{ [_h]: ["PUT", "/playbackConfiguration", 200] }, () => PutPlaybackConfigurationRequest$, () => PutPlaybackConfigurationResponse$
|
|
1528
|
+
];
|
|
1529
|
+
var StartChannel$ = [9, n0, _SCt,
|
|
1530
|
+
{ [_h]: ["PUT", "/channel/{ChannelName}/start", 200] }, () => StartChannelRequest$, () => StartChannelResponse$
|
|
1531
|
+
];
|
|
1532
|
+
var StopChannel$ = [9, n0, _SCto,
|
|
1533
|
+
{ [_h]: ["PUT", "/channel/{ChannelName}/stop", 200] }, () => StopChannelRequest$, () => StopChannelResponse$
|
|
1534
|
+
];
|
|
1535
|
+
var TagResource$ = [9, n0, _TR,
|
|
1536
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
1537
|
+
];
|
|
1538
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1539
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
1540
|
+
];
|
|
1541
|
+
var UpdateChannel$ = [9, n0, _UC,
|
|
1542
|
+
{ [_h]: ["PUT", "/channel/{ChannelName}", 200] }, () => UpdateChannelRequest$, () => UpdateChannelResponse$
|
|
1543
|
+
];
|
|
1544
|
+
var UpdateLiveSource$ = [9, n0, _ULS,
|
|
1545
|
+
{ [_h]: ["PUT", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => UpdateLiveSourceRequest$, () => UpdateLiveSourceResponse$
|
|
1546
|
+
];
|
|
1547
|
+
var UpdateProgram$ = [9, n0, _UP,
|
|
1548
|
+
{ [_h]: ["PUT", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => UpdateProgramRequest$, () => UpdateProgramResponse$
|
|
1549
|
+
];
|
|
1550
|
+
var UpdateSourceLocation$ = [9, n0, _USL,
|
|
1551
|
+
{ [_h]: ["PUT", "/sourceLocation/{SourceLocationName}", 200] }, () => UpdateSourceLocationRequest$, () => UpdateSourceLocationResponse$
|
|
1552
|
+
];
|
|
1553
|
+
var UpdateVodSource$ = [9, n0, _UVS,
|
|
1554
|
+
{ [_h]: ["PUT", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => UpdateVodSourceRequest$, () => UpdateVodSourceResponse$
|
|
1555
|
+
];
|
|
1556
|
+
|
|
1557
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1558
|
+
return {
|
|
1559
|
+
apiVersion: "2018-04-23",
|
|
1560
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1561
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1562
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1563
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1564
|
+
extensions: config?.extensions ?? [],
|
|
1565
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultMediaTailorHttpAuthSchemeProvider,
|
|
1566
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1567
|
+
{
|
|
1568
|
+
schemeId: "aws.auth#sigv4",
|
|
1569
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1570
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1571
|
+
},
|
|
1572
|
+
],
|
|
1573
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1574
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1575
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1576
|
+
defaultNamespace: "com.amazonaws.mediatailor",
|
|
1577
|
+
errorTypeRegistries,
|
|
1578
|
+
version: "2018-04-23",
|
|
1579
|
+
serviceTarget: "MediaTailor",
|
|
1580
|
+
},
|
|
1581
|
+
serviceId: config?.serviceId ?? "MediaTailor",
|
|
1582
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1583
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1584
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1585
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1586
|
+
};
|
|
1587
|
+
};
|
|
1588
|
+
|
|
1589
|
+
const getRuntimeConfig = (config) => {
|
|
1590
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1591
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1592
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1593
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1594
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1595
|
+
const loaderConfig = {
|
|
1596
|
+
profile: config?.profile,
|
|
1597
|
+
logger: clientSharedValues.logger,
|
|
1598
|
+
};
|
|
1599
|
+
return {
|
|
1600
|
+
...clientSharedValues,
|
|
1601
|
+
...config,
|
|
1602
|
+
runtime: "node",
|
|
1603
|
+
defaultsMode,
|
|
1604
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1605
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1606
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1607
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1608
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1609
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1610
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1611
|
+
retryMode: config?.retryMode ??
|
|
1612
|
+
loadConfig({
|
|
1613
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1614
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1615
|
+
}, config),
|
|
1616
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1617
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1618
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1619
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
|
|
34
1623
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1624
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1625
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -973,87 +2562,297 @@ const ListPrefetchScheduleType = {
|
|
|
973
2562
|
SINGLE: "SINGLE",
|
|
974
2563
|
};
|
|
975
2564
|
|
|
2565
|
+
exports.AccessConfiguration$ = AccessConfiguration$;
|
|
976
2566
|
exports.AccessType = AccessType;
|
|
2567
|
+
exports.AdBreak$ = AdBreak$;
|
|
2568
|
+
exports.AdBreakOpportunity$ = AdBreakOpportunity$;
|
|
2569
|
+
exports.AdConditioningConfiguration$ = AdConditioningConfiguration$;
|
|
2570
|
+
exports.AdDecisionServerConfiguration$ = AdDecisionServerConfiguration$;
|
|
2571
|
+
exports.AdMarkerPassthrough$ = AdMarkerPassthrough$;
|
|
977
2572
|
exports.AdMarkupType = AdMarkupType;
|
|
978
2573
|
exports.AdsInteractionExcludeEventType = AdsInteractionExcludeEventType;
|
|
2574
|
+
exports.AdsInteractionLog$ = AdsInteractionLog$;
|
|
979
2575
|
exports.AdsInteractionPublishOptInEventType = AdsInteractionPublishOptInEventType;
|
|
2576
|
+
exports.Alert$ = Alert$;
|
|
980
2577
|
exports.AlertCategory = AlertCategory;
|
|
2578
|
+
exports.AlternateMedia$ = AlternateMedia$;
|
|
2579
|
+
exports.AudienceMedia$ = AudienceMedia$;
|
|
2580
|
+
exports.AvailMatchingCriteria$ = AvailMatchingCriteria$;
|
|
2581
|
+
exports.AvailSuppression$ = AvailSuppression$;
|
|
2582
|
+
exports.BadRequestException = BadRequestException;
|
|
2583
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
2584
|
+
exports.Bumper$ = Bumper$;
|
|
2585
|
+
exports.CdnConfiguration$ = CdnConfiguration$;
|
|
2586
|
+
exports.Channel$ = Channel$;
|
|
981
2587
|
exports.ChannelState = ChannelState;
|
|
2588
|
+
exports.ClipRange$ = ClipRange$;
|
|
982
2589
|
exports.CompressionMethod = CompressionMethod;
|
|
2590
|
+
exports.ConfigureLogsForChannel$ = ConfigureLogsForChannel$;
|
|
983
2591
|
exports.ConfigureLogsForChannelCommand = ConfigureLogsForChannelCommand;
|
|
2592
|
+
exports.ConfigureLogsForChannelRequest$ = ConfigureLogsForChannelRequest$;
|
|
2593
|
+
exports.ConfigureLogsForChannelResponse$ = ConfigureLogsForChannelResponse$;
|
|
2594
|
+
exports.ConfigureLogsForPlaybackConfiguration$ = ConfigureLogsForPlaybackConfiguration$;
|
|
984
2595
|
exports.ConfigureLogsForPlaybackConfigurationCommand = ConfigureLogsForPlaybackConfigurationCommand;
|
|
2596
|
+
exports.ConfigureLogsForPlaybackConfigurationRequest$ = ConfigureLogsForPlaybackConfigurationRequest$;
|
|
2597
|
+
exports.ConfigureLogsForPlaybackConfigurationResponse$ = ConfigureLogsForPlaybackConfigurationResponse$;
|
|
2598
|
+
exports.CreateChannel$ = CreateChannel$;
|
|
985
2599
|
exports.CreateChannelCommand = CreateChannelCommand;
|
|
2600
|
+
exports.CreateChannelRequest$ = CreateChannelRequest$;
|
|
2601
|
+
exports.CreateChannelResponse$ = CreateChannelResponse$;
|
|
2602
|
+
exports.CreateLiveSource$ = CreateLiveSource$;
|
|
986
2603
|
exports.CreateLiveSourceCommand = CreateLiveSourceCommand;
|
|
2604
|
+
exports.CreateLiveSourceRequest$ = CreateLiveSourceRequest$;
|
|
2605
|
+
exports.CreateLiveSourceResponse$ = CreateLiveSourceResponse$;
|
|
2606
|
+
exports.CreatePrefetchSchedule$ = CreatePrefetchSchedule$;
|
|
987
2607
|
exports.CreatePrefetchScheduleCommand = CreatePrefetchScheduleCommand;
|
|
2608
|
+
exports.CreatePrefetchScheduleRequest$ = CreatePrefetchScheduleRequest$;
|
|
2609
|
+
exports.CreatePrefetchScheduleResponse$ = CreatePrefetchScheduleResponse$;
|
|
2610
|
+
exports.CreateProgram$ = CreateProgram$;
|
|
988
2611
|
exports.CreateProgramCommand = CreateProgramCommand;
|
|
2612
|
+
exports.CreateProgramRequest$ = CreateProgramRequest$;
|
|
2613
|
+
exports.CreateProgramResponse$ = CreateProgramResponse$;
|
|
2614
|
+
exports.CreateSourceLocation$ = CreateSourceLocation$;
|
|
989
2615
|
exports.CreateSourceLocationCommand = CreateSourceLocationCommand;
|
|
2616
|
+
exports.CreateSourceLocationRequest$ = CreateSourceLocationRequest$;
|
|
2617
|
+
exports.CreateSourceLocationResponse$ = CreateSourceLocationResponse$;
|
|
2618
|
+
exports.CreateVodSource$ = CreateVodSource$;
|
|
990
2619
|
exports.CreateVodSourceCommand = CreateVodSourceCommand;
|
|
2620
|
+
exports.CreateVodSourceRequest$ = CreateVodSourceRequest$;
|
|
2621
|
+
exports.CreateVodSourceResponse$ = CreateVodSourceResponse$;
|
|
2622
|
+
exports.CustomOutputConfiguration$ = CustomOutputConfiguration$;
|
|
2623
|
+
exports.DashConfiguration$ = DashConfiguration$;
|
|
2624
|
+
exports.DashConfigurationForPut$ = DashConfigurationForPut$;
|
|
2625
|
+
exports.DashPlaylistSettings$ = DashPlaylistSettings$;
|
|
2626
|
+
exports.DefaultSegmentDeliveryConfiguration$ = DefaultSegmentDeliveryConfiguration$;
|
|
2627
|
+
exports.DeleteChannel$ = DeleteChannel$;
|
|
991
2628
|
exports.DeleteChannelCommand = DeleteChannelCommand;
|
|
2629
|
+
exports.DeleteChannelPolicy$ = DeleteChannelPolicy$;
|
|
992
2630
|
exports.DeleteChannelPolicyCommand = DeleteChannelPolicyCommand;
|
|
2631
|
+
exports.DeleteChannelPolicyRequest$ = DeleteChannelPolicyRequest$;
|
|
2632
|
+
exports.DeleteChannelPolicyResponse$ = DeleteChannelPolicyResponse$;
|
|
2633
|
+
exports.DeleteChannelRequest$ = DeleteChannelRequest$;
|
|
2634
|
+
exports.DeleteChannelResponse$ = DeleteChannelResponse$;
|
|
2635
|
+
exports.DeleteFunction$ = DeleteFunction$;
|
|
993
2636
|
exports.DeleteFunctionCommand = DeleteFunctionCommand;
|
|
2637
|
+
exports.DeleteFunctionRequest$ = DeleteFunctionRequest$;
|
|
2638
|
+
exports.DeleteFunctionResponse$ = DeleteFunctionResponse$;
|
|
2639
|
+
exports.DeleteLiveSource$ = DeleteLiveSource$;
|
|
994
2640
|
exports.DeleteLiveSourceCommand = DeleteLiveSourceCommand;
|
|
2641
|
+
exports.DeleteLiveSourceRequest$ = DeleteLiveSourceRequest$;
|
|
2642
|
+
exports.DeleteLiveSourceResponse$ = DeleteLiveSourceResponse$;
|
|
2643
|
+
exports.DeletePlaybackConfiguration$ = DeletePlaybackConfiguration$;
|
|
995
2644
|
exports.DeletePlaybackConfigurationCommand = DeletePlaybackConfigurationCommand;
|
|
2645
|
+
exports.DeletePlaybackConfigurationRequest$ = DeletePlaybackConfigurationRequest$;
|
|
2646
|
+
exports.DeletePlaybackConfigurationResponse$ = DeletePlaybackConfigurationResponse$;
|
|
2647
|
+
exports.DeletePrefetchSchedule$ = DeletePrefetchSchedule$;
|
|
996
2648
|
exports.DeletePrefetchScheduleCommand = DeletePrefetchScheduleCommand;
|
|
2649
|
+
exports.DeletePrefetchScheduleRequest$ = DeletePrefetchScheduleRequest$;
|
|
2650
|
+
exports.DeletePrefetchScheduleResponse$ = DeletePrefetchScheduleResponse$;
|
|
2651
|
+
exports.DeleteProgram$ = DeleteProgram$;
|
|
997
2652
|
exports.DeleteProgramCommand = DeleteProgramCommand;
|
|
2653
|
+
exports.DeleteProgramRequest$ = DeleteProgramRequest$;
|
|
2654
|
+
exports.DeleteProgramResponse$ = DeleteProgramResponse$;
|
|
2655
|
+
exports.DeleteSourceLocation$ = DeleteSourceLocation$;
|
|
998
2656
|
exports.DeleteSourceLocationCommand = DeleteSourceLocationCommand;
|
|
2657
|
+
exports.DeleteSourceLocationRequest$ = DeleteSourceLocationRequest$;
|
|
2658
|
+
exports.DeleteSourceLocationResponse$ = DeleteSourceLocationResponse$;
|
|
2659
|
+
exports.DeleteVodSource$ = DeleteVodSource$;
|
|
999
2660
|
exports.DeleteVodSourceCommand = DeleteVodSourceCommand;
|
|
2661
|
+
exports.DeleteVodSourceRequest$ = DeleteVodSourceRequest$;
|
|
2662
|
+
exports.DeleteVodSourceResponse$ = DeleteVodSourceResponse$;
|
|
2663
|
+
exports.DescribeChannel$ = DescribeChannel$;
|
|
1000
2664
|
exports.DescribeChannelCommand = DescribeChannelCommand;
|
|
2665
|
+
exports.DescribeChannelRequest$ = DescribeChannelRequest$;
|
|
2666
|
+
exports.DescribeChannelResponse$ = DescribeChannelResponse$;
|
|
2667
|
+
exports.DescribeLiveSource$ = DescribeLiveSource$;
|
|
1001
2668
|
exports.DescribeLiveSourceCommand = DescribeLiveSourceCommand;
|
|
2669
|
+
exports.DescribeLiveSourceRequest$ = DescribeLiveSourceRequest$;
|
|
2670
|
+
exports.DescribeLiveSourceResponse$ = DescribeLiveSourceResponse$;
|
|
2671
|
+
exports.DescribeProgram$ = DescribeProgram$;
|
|
1002
2672
|
exports.DescribeProgramCommand = DescribeProgramCommand;
|
|
2673
|
+
exports.DescribeProgramRequest$ = DescribeProgramRequest$;
|
|
2674
|
+
exports.DescribeProgramResponse$ = DescribeProgramResponse$;
|
|
2675
|
+
exports.DescribeSourceLocation$ = DescribeSourceLocation$;
|
|
1003
2676
|
exports.DescribeSourceLocationCommand = DescribeSourceLocationCommand;
|
|
2677
|
+
exports.DescribeSourceLocationRequest$ = DescribeSourceLocationRequest$;
|
|
2678
|
+
exports.DescribeSourceLocationResponse$ = DescribeSourceLocationResponse$;
|
|
2679
|
+
exports.DescribeVodSource$ = DescribeVodSource$;
|
|
1004
2680
|
exports.DescribeVodSourceCommand = DescribeVodSourceCommand;
|
|
2681
|
+
exports.DescribeVodSourceRequest$ = DescribeVodSourceRequest$;
|
|
2682
|
+
exports.DescribeVodSourceResponse$ = DescribeVodSourceResponse$;
|
|
1005
2683
|
exports.EventName = EventName;
|
|
1006
2684
|
exports.FillPolicy = FillPolicy;
|
|
2685
|
+
exports.Function$ = Function$;
|
|
2686
|
+
exports.FunctionRef$ = FunctionRef$;
|
|
1007
2687
|
exports.FunctionType = FunctionType;
|
|
2688
|
+
exports.GetChannelPolicy$ = GetChannelPolicy$;
|
|
1008
2689
|
exports.GetChannelPolicyCommand = GetChannelPolicyCommand;
|
|
2690
|
+
exports.GetChannelPolicyRequest$ = GetChannelPolicyRequest$;
|
|
2691
|
+
exports.GetChannelPolicyResponse$ = GetChannelPolicyResponse$;
|
|
2692
|
+
exports.GetChannelSchedule$ = GetChannelSchedule$;
|
|
1009
2693
|
exports.GetChannelScheduleCommand = GetChannelScheduleCommand;
|
|
2694
|
+
exports.GetChannelScheduleRequest$ = GetChannelScheduleRequest$;
|
|
2695
|
+
exports.GetChannelScheduleResponse$ = GetChannelScheduleResponse$;
|
|
2696
|
+
exports.GetFunction$ = GetFunction$;
|
|
1010
2697
|
exports.GetFunctionCommand = GetFunctionCommand;
|
|
2698
|
+
exports.GetFunctionRequest$ = GetFunctionRequest$;
|
|
2699
|
+
exports.GetFunctionResponse$ = GetFunctionResponse$;
|
|
2700
|
+
exports.GetPlaybackConfiguration$ = GetPlaybackConfiguration$;
|
|
1011
2701
|
exports.GetPlaybackConfigurationCommand = GetPlaybackConfigurationCommand;
|
|
2702
|
+
exports.GetPlaybackConfigurationRequest$ = GetPlaybackConfigurationRequest$;
|
|
2703
|
+
exports.GetPlaybackConfigurationResponse$ = GetPlaybackConfigurationResponse$;
|
|
2704
|
+
exports.GetPrefetchSchedule$ = GetPrefetchSchedule$;
|
|
1012
2705
|
exports.GetPrefetchScheduleCommand = GetPrefetchScheduleCommand;
|
|
2706
|
+
exports.GetPrefetchScheduleRequest$ = GetPrefetchScheduleRequest$;
|
|
2707
|
+
exports.GetPrefetchScheduleResponse$ = GetPrefetchScheduleResponse$;
|
|
2708
|
+
exports.HlsConfiguration$ = HlsConfiguration$;
|
|
2709
|
+
exports.HlsPlaylistSettings$ = HlsPlaylistSettings$;
|
|
2710
|
+
exports.HttpConfiguration$ = HttpConfiguration$;
|
|
2711
|
+
exports.HttpPackageConfiguration$ = HttpPackageConfiguration$;
|
|
2712
|
+
exports.HttpRequest$ = HttpRequest$;
|
|
2713
|
+
exports.HttpRequestConfiguration$ = HttpRequestConfiguration$;
|
|
1013
2714
|
exports.InsertionMode = InsertionMode;
|
|
2715
|
+
exports.KeyValuePair$ = KeyValuePair$;
|
|
2716
|
+
exports.ListAlerts$ = ListAlerts$;
|
|
1014
2717
|
exports.ListAlertsCommand = ListAlertsCommand;
|
|
2718
|
+
exports.ListAlertsRequest$ = ListAlertsRequest$;
|
|
2719
|
+
exports.ListAlertsResponse$ = ListAlertsResponse$;
|
|
2720
|
+
exports.ListChannels$ = ListChannels$;
|
|
1015
2721
|
exports.ListChannelsCommand = ListChannelsCommand;
|
|
2722
|
+
exports.ListChannelsRequest$ = ListChannelsRequest$;
|
|
2723
|
+
exports.ListChannelsResponse$ = ListChannelsResponse$;
|
|
2724
|
+
exports.ListFunctions$ = ListFunctions$;
|
|
1016
2725
|
exports.ListFunctionsCommand = ListFunctionsCommand;
|
|
2726
|
+
exports.ListFunctionsRequest$ = ListFunctionsRequest$;
|
|
2727
|
+
exports.ListFunctionsResponse$ = ListFunctionsResponse$;
|
|
2728
|
+
exports.ListLiveSources$ = ListLiveSources$;
|
|
1017
2729
|
exports.ListLiveSourcesCommand = ListLiveSourcesCommand;
|
|
2730
|
+
exports.ListLiveSourcesRequest$ = ListLiveSourcesRequest$;
|
|
2731
|
+
exports.ListLiveSourcesResponse$ = ListLiveSourcesResponse$;
|
|
2732
|
+
exports.ListPlaybackConfigurations$ = ListPlaybackConfigurations$;
|
|
1018
2733
|
exports.ListPlaybackConfigurationsCommand = ListPlaybackConfigurationsCommand;
|
|
2734
|
+
exports.ListPlaybackConfigurationsRequest$ = ListPlaybackConfigurationsRequest$;
|
|
2735
|
+
exports.ListPlaybackConfigurationsResponse$ = ListPlaybackConfigurationsResponse$;
|
|
1019
2736
|
exports.ListPrefetchScheduleType = ListPrefetchScheduleType;
|
|
2737
|
+
exports.ListPrefetchSchedules$ = ListPrefetchSchedules$;
|
|
1020
2738
|
exports.ListPrefetchSchedulesCommand = ListPrefetchSchedulesCommand;
|
|
2739
|
+
exports.ListPrefetchSchedulesRequest$ = ListPrefetchSchedulesRequest$;
|
|
2740
|
+
exports.ListPrefetchSchedulesResponse$ = ListPrefetchSchedulesResponse$;
|
|
2741
|
+
exports.ListSourceLocations$ = ListSourceLocations$;
|
|
1021
2742
|
exports.ListSourceLocationsCommand = ListSourceLocationsCommand;
|
|
2743
|
+
exports.ListSourceLocationsRequest$ = ListSourceLocationsRequest$;
|
|
2744
|
+
exports.ListSourceLocationsResponse$ = ListSourceLocationsResponse$;
|
|
2745
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1022
2746
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2747
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2748
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2749
|
+
exports.ListVodSources$ = ListVodSources$;
|
|
1023
2750
|
exports.ListVodSourcesCommand = ListVodSourcesCommand;
|
|
2751
|
+
exports.ListVodSourcesRequest$ = ListVodSourcesRequest$;
|
|
2752
|
+
exports.ListVodSourcesResponse$ = ListVodSourcesResponse$;
|
|
2753
|
+
exports.LivePreRollConfiguration$ = LivePreRollConfiguration$;
|
|
2754
|
+
exports.LiveSource$ = LiveSource$;
|
|
2755
|
+
exports.LogConfiguration$ = LogConfiguration$;
|
|
2756
|
+
exports.LogConfigurationForChannel$ = LogConfigurationForChannel$;
|
|
1024
2757
|
exports.LogType = LogType;
|
|
1025
2758
|
exports.LoggingStrategy = LoggingStrategy;
|
|
2759
|
+
exports.ManifestProcessingRules$ = ManifestProcessingRules$;
|
|
1026
2760
|
exports.ManifestServiceExcludeEventType = ManifestServiceExcludeEventType;
|
|
2761
|
+
exports.ManifestServiceInteractionLog$ = ManifestServiceInteractionLog$;
|
|
1027
2762
|
exports.ManifestServicePublishOptInEventType = ManifestServicePublishOptInEventType;
|
|
1028
2763
|
exports.MediaTailor = MediaTailor;
|
|
1029
2764
|
exports.MediaTailorClient = MediaTailorClient;
|
|
2765
|
+
exports.MediaTailorServiceException = MediaTailorServiceException;
|
|
2766
|
+
exports.MediaTailorServiceException$ = MediaTailorServiceException$;
|
|
1030
2767
|
exports.MessageType = MessageType;
|
|
1031
2768
|
exports.Method = Method;
|
|
1032
2769
|
exports.MethodType = MethodType;
|
|
1033
2770
|
exports.Mode = Mode;
|
|
1034
2771
|
exports.Operator = Operator;
|
|
1035
2772
|
exports.OriginManifestType = OriginManifestType;
|
|
2773
|
+
exports.PlaybackConfiguration$ = PlaybackConfiguration$;
|
|
1036
2774
|
exports.PlaybackMode = PlaybackMode;
|
|
2775
|
+
exports.PrefetchConsumption$ = PrefetchConsumption$;
|
|
2776
|
+
exports.PrefetchRetrieval$ = PrefetchRetrieval$;
|
|
2777
|
+
exports.PrefetchSchedule$ = PrefetchSchedule$;
|
|
1037
2778
|
exports.PrefetchScheduleType = PrefetchScheduleType;
|
|
2779
|
+
exports.PutChannelPolicy$ = PutChannelPolicy$;
|
|
1038
2780
|
exports.PutChannelPolicyCommand = PutChannelPolicyCommand;
|
|
2781
|
+
exports.PutChannelPolicyRequest$ = PutChannelPolicyRequest$;
|
|
2782
|
+
exports.PutChannelPolicyResponse$ = PutChannelPolicyResponse$;
|
|
2783
|
+
exports.PutFunction$ = PutFunction$;
|
|
1039
2784
|
exports.PutFunctionCommand = PutFunctionCommand;
|
|
2785
|
+
exports.PutFunctionRequest$ = PutFunctionRequest$;
|
|
2786
|
+
exports.PutFunctionResponse$ = PutFunctionResponse$;
|
|
2787
|
+
exports.PutPlaybackConfiguration$ = PutPlaybackConfiguration$;
|
|
1040
2788
|
exports.PutPlaybackConfigurationCommand = PutPlaybackConfigurationCommand;
|
|
2789
|
+
exports.PutPlaybackConfigurationRequest$ = PutPlaybackConfigurationRequest$;
|
|
2790
|
+
exports.PutPlaybackConfigurationResponse$ = PutPlaybackConfigurationResponse$;
|
|
2791
|
+
exports.RecurringConsumption$ = RecurringConsumption$;
|
|
2792
|
+
exports.RecurringPrefetchConfiguration$ = RecurringPrefetchConfiguration$;
|
|
2793
|
+
exports.RecurringRetrieval$ = RecurringRetrieval$;
|
|
1041
2794
|
exports.RelativePosition = RelativePosition;
|
|
2795
|
+
exports.RequestOutputItem$ = RequestOutputItem$;
|
|
2796
|
+
exports.ResponseOutputItem$ = ResponseOutputItem$;
|
|
1042
2797
|
exports.RuntimeType = RuntimeType;
|
|
2798
|
+
exports.ScheduleAdBreak$ = ScheduleAdBreak$;
|
|
2799
|
+
exports.ScheduleConfiguration$ = ScheduleConfiguration$;
|
|
2800
|
+
exports.ScheduleEntry$ = ScheduleEntry$;
|
|
1043
2801
|
exports.ScheduleEntryType = ScheduleEntryType;
|
|
2802
|
+
exports.SecretsManagerAccessTokenConfiguration$ = SecretsManagerAccessTokenConfiguration$;
|
|
2803
|
+
exports.SegmentDeliveryConfiguration$ = SegmentDeliveryConfiguration$;
|
|
2804
|
+
exports.SegmentationDescriptor$ = SegmentationDescriptor$;
|
|
2805
|
+
exports.SequentialExecutorConfiguration$ = SequentialExecutorConfiguration$;
|
|
2806
|
+
exports.SlateSource$ = SlateSource$;
|
|
2807
|
+
exports.SourceLocation$ = SourceLocation$;
|
|
2808
|
+
exports.SpliceInsertMessage$ = SpliceInsertMessage$;
|
|
2809
|
+
exports.StartChannel$ = StartChannel$;
|
|
1044
2810
|
exports.StartChannelCommand = StartChannelCommand;
|
|
2811
|
+
exports.StartChannelRequest$ = StartChannelRequest$;
|
|
2812
|
+
exports.StartChannelResponse$ = StartChannelResponse$;
|
|
2813
|
+
exports.StopChannel$ = StopChannel$;
|
|
1045
2814
|
exports.StopChannelCommand = StopChannelCommand;
|
|
2815
|
+
exports.StopChannelRequest$ = StopChannelRequest$;
|
|
2816
|
+
exports.StopChannelResponse$ = StopChannelResponse$;
|
|
1046
2817
|
exports.StreamingMediaFileConditioning = StreamingMediaFileConditioning;
|
|
2818
|
+
exports.TagResource$ = TagResource$;
|
|
1047
2819
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2820
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1048
2821
|
exports.Tier = Tier;
|
|
2822
|
+
exports.TimeShiftConfiguration$ = TimeShiftConfiguration$;
|
|
2823
|
+
exports.TimeSignalMessage$ = TimeSignalMessage$;
|
|
2824
|
+
exports.TrafficShapingRetrievalWindow$ = TrafficShapingRetrievalWindow$;
|
|
2825
|
+
exports.TrafficShapingTpsConfiguration$ = TrafficShapingTpsConfiguration$;
|
|
1049
2826
|
exports.TrafficShapingType = TrafficShapingType;
|
|
2827
|
+
exports.Transition$ = Transition$;
|
|
1050
2828
|
exports.Type = Type;
|
|
2829
|
+
exports.UntagResource$ = UntagResource$;
|
|
1051
2830
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2831
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2832
|
+
exports.UpdateChannel$ = UpdateChannel$;
|
|
1052
2833
|
exports.UpdateChannelCommand = UpdateChannelCommand;
|
|
2834
|
+
exports.UpdateChannelRequest$ = UpdateChannelRequest$;
|
|
2835
|
+
exports.UpdateChannelResponse$ = UpdateChannelResponse$;
|
|
2836
|
+
exports.UpdateLiveSource$ = UpdateLiveSource$;
|
|
1053
2837
|
exports.UpdateLiveSourceCommand = UpdateLiveSourceCommand;
|
|
2838
|
+
exports.UpdateLiveSourceRequest$ = UpdateLiveSourceRequest$;
|
|
2839
|
+
exports.UpdateLiveSourceResponse$ = UpdateLiveSourceResponse$;
|
|
2840
|
+
exports.UpdateProgram$ = UpdateProgram$;
|
|
1054
2841
|
exports.UpdateProgramCommand = UpdateProgramCommand;
|
|
2842
|
+
exports.UpdateProgramRequest$ = UpdateProgramRequest$;
|
|
2843
|
+
exports.UpdateProgramResponse$ = UpdateProgramResponse$;
|
|
2844
|
+
exports.UpdateProgramScheduleConfiguration$ = UpdateProgramScheduleConfiguration$;
|
|
2845
|
+
exports.UpdateProgramTransition$ = UpdateProgramTransition$;
|
|
2846
|
+
exports.UpdateSourceLocation$ = UpdateSourceLocation$;
|
|
1055
2847
|
exports.UpdateSourceLocationCommand = UpdateSourceLocationCommand;
|
|
2848
|
+
exports.UpdateSourceLocationRequest$ = UpdateSourceLocationRequest$;
|
|
2849
|
+
exports.UpdateSourceLocationResponse$ = UpdateSourceLocationResponse$;
|
|
2850
|
+
exports.UpdateVodSource$ = UpdateVodSource$;
|
|
1056
2851
|
exports.UpdateVodSourceCommand = UpdateVodSourceCommand;
|
|
2852
|
+
exports.UpdateVodSourceRequest$ = UpdateVodSourceRequest$;
|
|
2853
|
+
exports.UpdateVodSourceResponse$ = UpdateVodSourceResponse$;
|
|
2854
|
+
exports.VodSource$ = VodSource$;
|
|
2855
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1057
2856
|
exports.paginateGetChannelSchedule = paginateGetChannelSchedule;
|
|
1058
2857
|
exports.paginateListAlerts = paginateListAlerts;
|
|
1059
2858
|
exports.paginateListChannels = paginateListChannels;
|