@aws-sdk/client-mediapackage 3.928.0 → 3.930.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 +2893 -1330
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MediaPackageClient.js +2 -0
- package/dist-es/commands/ConfigureLogsCommand.js +3 -10
- package/dist-es/commands/CreateChannelCommand.js +3 -10
- package/dist-es/commands/CreateHarvestJobCommand.js +3 -9
- package/dist-es/commands/CreateOriginEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteChannelCommand.js +3 -9
- package/dist-es/commands/DeleteOriginEndpointCommand.js +3 -9
- package/dist-es/commands/DescribeChannelCommand.js +3 -10
- package/dist-es/commands/DescribeHarvestJobCommand.js +3 -9
- package/dist-es/commands/DescribeOriginEndpointCommand.js +3 -9
- package/dist-es/commands/ListChannelsCommand.js +3 -10
- package/dist-es/commands/ListHarvestJobsCommand.js +3 -9
- package/dist-es/commands/ListOriginEndpointsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RotateChannelCredentialsCommand.js +3 -10
- package/dist-es/commands/RotateIngestEndpointCredentialsCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateChannelCommand.js +3 -10
- package/dist-es/commands/UpdateOriginEndpointCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -43
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2852 -0
- package/dist-types/MediaPackageClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -40
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +99 -0
- package/dist-types/ts3.4/MediaPackageClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +105 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -1140
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -233
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class MediaPackageClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,12 +110,12 @@ class MediaPackageClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class MediaPackageServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let MediaPackageServiceException$1 = class MediaPackageServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, MediaPackageServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
120
|
const __AdTriggersElement = {
|
|
121
121
|
BREAK: "BREAK",
|
|
@@ -210,7 +210,7 @@ const Origination = {
|
|
|
210
210
|
ALLOW: "ALLOW",
|
|
211
211
|
DENY: "DENY",
|
|
212
212
|
};
|
|
213
|
-
class ForbiddenException extends MediaPackageServiceException {
|
|
213
|
+
let ForbiddenException$1 = class ForbiddenException extends MediaPackageServiceException$1 {
|
|
214
214
|
name = "ForbiddenException";
|
|
215
215
|
$fault = "client";
|
|
216
216
|
Message;
|
|
@@ -223,8 +223,8 @@ class ForbiddenException extends MediaPackageServiceException {
|
|
|
223
223
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
224
224
|
this.Message = opts.Message;
|
|
225
225
|
}
|
|
226
|
-
}
|
|
227
|
-
class InternalServerErrorException extends MediaPackageServiceException {
|
|
226
|
+
};
|
|
227
|
+
let InternalServerErrorException$1 = class InternalServerErrorException extends MediaPackageServiceException$1 {
|
|
228
228
|
name = "InternalServerErrorException";
|
|
229
229
|
$fault = "server";
|
|
230
230
|
Message;
|
|
@@ -237,8 +237,8 @@ class InternalServerErrorException extends MediaPackageServiceException {
|
|
|
237
237
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
238
238
|
this.Message = opts.Message;
|
|
239
239
|
}
|
|
240
|
-
}
|
|
241
|
-
class NotFoundException extends MediaPackageServiceException {
|
|
240
|
+
};
|
|
241
|
+
let NotFoundException$1 = class NotFoundException extends MediaPackageServiceException$1 {
|
|
242
242
|
name = "NotFoundException";
|
|
243
243
|
$fault = "client";
|
|
244
244
|
Message;
|
|
@@ -251,8 +251,8 @@ class NotFoundException extends MediaPackageServiceException {
|
|
|
251
251
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
252
252
|
this.Message = opts.Message;
|
|
253
253
|
}
|
|
254
|
-
}
|
|
255
|
-
class ServiceUnavailableException extends MediaPackageServiceException {
|
|
254
|
+
};
|
|
255
|
+
let ServiceUnavailableException$1 = class ServiceUnavailableException extends MediaPackageServiceException$1 {
|
|
256
256
|
name = "ServiceUnavailableException";
|
|
257
257
|
$fault = "server";
|
|
258
258
|
Message;
|
|
@@ -265,8 +265,8 @@ class ServiceUnavailableException extends MediaPackageServiceException {
|
|
|
265
265
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
266
266
|
this.Message = opts.Message;
|
|
267
267
|
}
|
|
268
|
-
}
|
|
269
|
-
class TooManyRequestsException extends MediaPackageServiceException {
|
|
268
|
+
};
|
|
269
|
+
let TooManyRequestsException$1 = class TooManyRequestsException extends MediaPackageServiceException$1 {
|
|
270
270
|
name = "TooManyRequestsException";
|
|
271
271
|
$fault = "client";
|
|
272
272
|
Message;
|
|
@@ -279,8 +279,8 @@ class TooManyRequestsException extends MediaPackageServiceException {
|
|
|
279
279
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
280
280
|
this.Message = opts.Message;
|
|
281
281
|
}
|
|
282
|
-
}
|
|
283
|
-
class UnprocessableEntityException extends MediaPackageServiceException {
|
|
282
|
+
};
|
|
283
|
+
let UnprocessableEntityException$1 = class UnprocessableEntityException extends MediaPackageServiceException$1 {
|
|
284
284
|
name = "UnprocessableEntityException";
|
|
285
285
|
$fault = "client";
|
|
286
286
|
Message;
|
|
@@ -293,1199 +293,2862 @@ class UnprocessableEntityException extends MediaPackageServiceException {
|
|
|
293
293
|
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
294
294
|
this.Message = opts.Message;
|
|
295
295
|
}
|
|
296
|
-
}
|
|
297
|
-
const IngestEndpointFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
...(obj.Password && { Password: smithyClient.SENSITIVE_STRING }),
|
|
300
|
-
...(obj.Username && { Username: smithyClient.SENSITIVE_STRING }),
|
|
301
|
-
});
|
|
302
|
-
const HlsIngestFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
...(obj.IngestEndpoints && {
|
|
305
|
-
IngestEndpoints: obj.IngestEndpoints.map((item) => IngestEndpointFilterSensitiveLog(item)),
|
|
306
|
-
}),
|
|
307
|
-
});
|
|
308
|
-
const ChannelFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
311
|
-
});
|
|
312
|
-
const ConfigureLogsResponseFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
315
|
-
});
|
|
316
|
-
const CreateChannelResponseFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
319
|
-
});
|
|
320
|
-
const DescribeChannelResponseFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
323
|
-
});
|
|
324
|
-
const ListChannelsResponseFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
const RotateChannelCredentialsResponseFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
330
|
-
});
|
|
331
|
-
const RotateIngestEndpointCredentialsResponseFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
334
|
-
});
|
|
335
|
-
const UpdateChannelResponseFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
...(obj.HlsIngest && { HlsIngest: HlsIngestFilterSensitiveLog(obj.HlsIngest) }),
|
|
338
|
-
});
|
|
339
|
-
|
|
340
|
-
const se_ConfigureLogsCommand = async (input, context) => {
|
|
341
|
-
const b = core.requestBuilder(input, context);
|
|
342
|
-
const headers = {
|
|
343
|
-
"content-type": "application/json",
|
|
344
|
-
};
|
|
345
|
-
b.bp("/channels/{Id}/configure_logs");
|
|
346
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
347
|
-
let body;
|
|
348
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
349
|
-
egressAccessLogs: [, (_) => se_EgressAccessLogs(_), `EgressAccessLogs`],
|
|
350
|
-
ingressAccessLogs: [, (_) => se_IngressAccessLogs(_), `IngressAccessLogs`],
|
|
351
|
-
}));
|
|
352
|
-
b.m("PUT").h(headers).b(body);
|
|
353
|
-
return b.build();
|
|
354
|
-
};
|
|
355
|
-
const se_CreateChannelCommand = async (input, context) => {
|
|
356
|
-
const b = core.requestBuilder(input, context);
|
|
357
|
-
const headers = {
|
|
358
|
-
"content-type": "application/json",
|
|
359
|
-
};
|
|
360
|
-
b.bp("/channels");
|
|
361
|
-
let body;
|
|
362
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
363
|
-
description: [, , `Description`],
|
|
364
|
-
id: [, , `Id`],
|
|
365
|
-
tags: [, (_) => smithyClient._json(_), `Tags`],
|
|
366
|
-
}));
|
|
367
|
-
b.m("POST").h(headers).b(body);
|
|
368
|
-
return b.build();
|
|
369
|
-
};
|
|
370
|
-
const se_CreateHarvestJobCommand = async (input, context) => {
|
|
371
|
-
const b = core.requestBuilder(input, context);
|
|
372
|
-
const headers = {
|
|
373
|
-
"content-type": "application/json",
|
|
374
|
-
};
|
|
375
|
-
b.bp("/harvest_jobs");
|
|
376
|
-
let body;
|
|
377
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
378
|
-
endTime: [, , `EndTime`],
|
|
379
|
-
id: [, , `Id`],
|
|
380
|
-
originEndpointId: [, , `OriginEndpointId`],
|
|
381
|
-
s3Destination: [, (_) => se_S3Destination(_), `S3Destination`],
|
|
382
|
-
startTime: [, , `StartTime`],
|
|
383
|
-
}));
|
|
384
|
-
b.m("POST").h(headers).b(body);
|
|
385
|
-
return b.build();
|
|
386
|
-
};
|
|
387
|
-
const se_CreateOriginEndpointCommand = async (input, context) => {
|
|
388
|
-
const b = core.requestBuilder(input, context);
|
|
389
|
-
const headers = {
|
|
390
|
-
"content-type": "application/json",
|
|
391
|
-
};
|
|
392
|
-
b.bp("/origin_endpoints");
|
|
393
|
-
let body;
|
|
394
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
395
|
-
authorization: [, (_) => se_Authorization(_), `Authorization`],
|
|
396
|
-
channelId: [, , `ChannelId`],
|
|
397
|
-
cmafPackage: [, (_) => se_CmafPackageCreateOrUpdateParameters(_), `CmafPackage`],
|
|
398
|
-
dashPackage: [, (_) => se_DashPackage(_), `DashPackage`],
|
|
399
|
-
description: [, , `Description`],
|
|
400
|
-
hlsPackage: [, (_) => se_HlsPackage(_), `HlsPackage`],
|
|
401
|
-
id: [, , `Id`],
|
|
402
|
-
manifestName: [, , `ManifestName`],
|
|
403
|
-
mssPackage: [, (_) => se_MssPackage(_), `MssPackage`],
|
|
404
|
-
origination: [, , `Origination`],
|
|
405
|
-
startoverWindowSeconds: [, , `StartoverWindowSeconds`],
|
|
406
|
-
tags: [, (_) => smithyClient._json(_), `Tags`],
|
|
407
|
-
timeDelaySeconds: [, , `TimeDelaySeconds`],
|
|
408
|
-
whitelist: [, (_) => smithyClient._json(_), `Whitelist`],
|
|
409
|
-
}));
|
|
410
|
-
b.m("POST").h(headers).b(body);
|
|
411
|
-
return b.build();
|
|
412
|
-
};
|
|
413
|
-
const se_DeleteChannelCommand = async (input, context) => {
|
|
414
|
-
const b = core.requestBuilder(input, context);
|
|
415
|
-
const headers = {};
|
|
416
|
-
b.bp("/channels/{Id}");
|
|
417
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
418
|
-
let body;
|
|
419
|
-
b.m("DELETE").h(headers).b(body);
|
|
420
|
-
return b.build();
|
|
421
|
-
};
|
|
422
|
-
const se_DeleteOriginEndpointCommand = async (input, context) => {
|
|
423
|
-
const b = core.requestBuilder(input, context);
|
|
424
|
-
const headers = {};
|
|
425
|
-
b.bp("/origin_endpoints/{Id}");
|
|
426
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
427
|
-
let body;
|
|
428
|
-
b.m("DELETE").h(headers).b(body);
|
|
429
|
-
return b.build();
|
|
430
|
-
};
|
|
431
|
-
const se_DescribeChannelCommand = async (input, context) => {
|
|
432
|
-
const b = core.requestBuilder(input, context);
|
|
433
|
-
const headers = {};
|
|
434
|
-
b.bp("/channels/{Id}");
|
|
435
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
436
|
-
let body;
|
|
437
|
-
b.m("GET").h(headers).b(body);
|
|
438
|
-
return b.build();
|
|
439
|
-
};
|
|
440
|
-
const se_DescribeHarvestJobCommand = async (input, context) => {
|
|
441
|
-
const b = core.requestBuilder(input, context);
|
|
442
|
-
const headers = {};
|
|
443
|
-
b.bp("/harvest_jobs/{Id}");
|
|
444
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
445
|
-
let body;
|
|
446
|
-
b.m("GET").h(headers).b(body);
|
|
447
|
-
return b.build();
|
|
448
|
-
};
|
|
449
|
-
const se_DescribeOriginEndpointCommand = async (input, context) => {
|
|
450
|
-
const b = core.requestBuilder(input, context);
|
|
451
|
-
const headers = {};
|
|
452
|
-
b.bp("/origin_endpoints/{Id}");
|
|
453
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
454
|
-
let body;
|
|
455
|
-
b.m("GET").h(headers).b(body);
|
|
456
|
-
return b.build();
|
|
457
|
-
};
|
|
458
|
-
const se_ListChannelsCommand = async (input, context) => {
|
|
459
|
-
const b = core.requestBuilder(input, context);
|
|
460
|
-
const headers = {};
|
|
461
|
-
b.bp("/channels");
|
|
462
|
-
const query = smithyClient.map({
|
|
463
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
464
|
-
[_nT]: [, input[_NT]],
|
|
465
|
-
});
|
|
466
|
-
let body;
|
|
467
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
468
|
-
return b.build();
|
|
469
|
-
};
|
|
470
|
-
const se_ListHarvestJobsCommand = async (input, context) => {
|
|
471
|
-
const b = core.requestBuilder(input, context);
|
|
472
|
-
const headers = {};
|
|
473
|
-
b.bp("/harvest_jobs");
|
|
474
|
-
const query = smithyClient.map({
|
|
475
|
-
[_iCI]: [, input[_ICI]],
|
|
476
|
-
[_iS]: [, input[_IS]],
|
|
477
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
478
|
-
[_nT]: [, input[_NT]],
|
|
479
|
-
});
|
|
480
|
-
let body;
|
|
481
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
482
|
-
return b.build();
|
|
483
|
-
};
|
|
484
|
-
const se_ListOriginEndpointsCommand = async (input, context) => {
|
|
485
|
-
const b = core.requestBuilder(input, context);
|
|
486
|
-
const headers = {};
|
|
487
|
-
b.bp("/origin_endpoints");
|
|
488
|
-
const query = smithyClient.map({
|
|
489
|
-
[_cI]: [, input[_CI]],
|
|
490
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
491
|
-
[_nT]: [, input[_NT]],
|
|
492
|
-
});
|
|
493
|
-
let body;
|
|
494
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
495
|
-
return b.build();
|
|
496
|
-
};
|
|
497
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
498
|
-
const b = core.requestBuilder(input, context);
|
|
499
|
-
const headers = {};
|
|
500
|
-
b.bp("/tags/{ResourceArn}");
|
|
501
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
502
|
-
let body;
|
|
503
|
-
b.m("GET").h(headers).b(body);
|
|
504
|
-
return b.build();
|
|
505
|
-
};
|
|
506
|
-
const se_RotateChannelCredentialsCommand = async (input, context) => {
|
|
507
|
-
const b = core.requestBuilder(input, context);
|
|
508
|
-
const headers = {};
|
|
509
|
-
b.bp("/channels/{Id}/credentials");
|
|
510
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
511
|
-
let body;
|
|
512
|
-
b.m("PUT").h(headers).b(body);
|
|
513
|
-
return b.build();
|
|
514
|
-
};
|
|
515
|
-
const se_RotateIngestEndpointCredentialsCommand = async (input, context) => {
|
|
516
|
-
const b = core.requestBuilder(input, context);
|
|
517
|
-
const headers = {};
|
|
518
|
-
b.bp("/channels/{Id}/ingest_endpoints/{IngestEndpointId}/credentials");
|
|
519
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
520
|
-
b.p("IngestEndpointId", () => input.IngestEndpointId, "{IngestEndpointId}", false);
|
|
521
|
-
let body;
|
|
522
|
-
b.m("PUT").h(headers).b(body);
|
|
523
|
-
return b.build();
|
|
524
|
-
};
|
|
525
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
526
|
-
const b = core.requestBuilder(input, context);
|
|
527
|
-
const headers = {
|
|
528
|
-
"content-type": "application/json",
|
|
529
|
-
};
|
|
530
|
-
b.bp("/tags/{ResourceArn}");
|
|
531
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
532
|
-
let body;
|
|
533
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
534
|
-
tags: [, (_) => smithyClient._json(_), `Tags`],
|
|
535
|
-
}));
|
|
536
|
-
b.m("POST").h(headers).b(body);
|
|
537
|
-
return b.build();
|
|
538
|
-
};
|
|
539
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
540
|
-
const b = core.requestBuilder(input, context);
|
|
541
|
-
const headers = {};
|
|
542
|
-
b.bp("/tags/{ResourceArn}");
|
|
543
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
544
|
-
const query = smithyClient.map({
|
|
545
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
546
|
-
});
|
|
547
|
-
let body;
|
|
548
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
549
|
-
return b.build();
|
|
550
|
-
};
|
|
551
|
-
const se_UpdateChannelCommand = async (input, context) => {
|
|
552
|
-
const b = core.requestBuilder(input, context);
|
|
553
|
-
const headers = {
|
|
554
|
-
"content-type": "application/json",
|
|
555
|
-
};
|
|
556
|
-
b.bp("/channels/{Id}");
|
|
557
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
558
|
-
let body;
|
|
559
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
560
|
-
description: [, , `Description`],
|
|
561
|
-
}));
|
|
562
|
-
b.m("PUT").h(headers).b(body);
|
|
563
|
-
return b.build();
|
|
564
|
-
};
|
|
565
|
-
const se_UpdateOriginEndpointCommand = async (input, context) => {
|
|
566
|
-
const b = core.requestBuilder(input, context);
|
|
567
|
-
const headers = {
|
|
568
|
-
"content-type": "application/json",
|
|
569
|
-
};
|
|
570
|
-
b.bp("/origin_endpoints/{Id}");
|
|
571
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
572
|
-
let body;
|
|
573
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
574
|
-
authorization: [, (_) => se_Authorization(_), `Authorization`],
|
|
575
|
-
cmafPackage: [, (_) => se_CmafPackageCreateOrUpdateParameters(_), `CmafPackage`],
|
|
576
|
-
dashPackage: [, (_) => se_DashPackage(_), `DashPackage`],
|
|
577
|
-
description: [, , `Description`],
|
|
578
|
-
hlsPackage: [, (_) => se_HlsPackage(_), `HlsPackage`],
|
|
579
|
-
manifestName: [, , `ManifestName`],
|
|
580
|
-
mssPackage: [, (_) => se_MssPackage(_), `MssPackage`],
|
|
581
|
-
origination: [, , `Origination`],
|
|
582
|
-
startoverWindowSeconds: [, , `StartoverWindowSeconds`],
|
|
583
|
-
timeDelaySeconds: [, , `TimeDelaySeconds`],
|
|
584
|
-
whitelist: [, (_) => smithyClient._json(_), `Whitelist`],
|
|
585
|
-
}));
|
|
586
|
-
b.m("PUT").h(headers).b(body);
|
|
587
|
-
return b.build();
|
|
588
|
-
};
|
|
589
|
-
const de_ConfigureLogsCommand = async (output, context) => {
|
|
590
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
591
|
-
return de_CommandError(output, context);
|
|
592
|
-
}
|
|
593
|
-
const contents = smithyClient.map({
|
|
594
|
-
$metadata: deserializeMetadata(output),
|
|
595
|
-
});
|
|
596
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
597
|
-
const doc = smithyClient.take(data, {
|
|
598
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
599
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
600
|
-
Description: [, smithyClient.expectString, `description`],
|
|
601
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
602
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
603
|
-
Id: [, smithyClient.expectString, `id`],
|
|
604
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
605
|
-
Tags: [, smithyClient._json, `tags`],
|
|
606
|
-
});
|
|
607
|
-
Object.assign(contents, doc);
|
|
608
|
-
return contents;
|
|
609
|
-
};
|
|
610
|
-
const de_CreateChannelCommand = async (output, context) => {
|
|
611
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
612
|
-
return de_CommandError(output, context);
|
|
613
|
-
}
|
|
614
|
-
const contents = smithyClient.map({
|
|
615
|
-
$metadata: deserializeMetadata(output),
|
|
616
|
-
});
|
|
617
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
618
|
-
const doc = smithyClient.take(data, {
|
|
619
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
620
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
621
|
-
Description: [, smithyClient.expectString, `description`],
|
|
622
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
623
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
624
|
-
Id: [, smithyClient.expectString, `id`],
|
|
625
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
626
|
-
Tags: [, smithyClient._json, `tags`],
|
|
627
|
-
});
|
|
628
|
-
Object.assign(contents, doc);
|
|
629
|
-
return contents;
|
|
630
|
-
};
|
|
631
|
-
const de_CreateHarvestJobCommand = async (output, context) => {
|
|
632
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
633
|
-
return de_CommandError(output, context);
|
|
634
|
-
}
|
|
635
|
-
const contents = smithyClient.map({
|
|
636
|
-
$metadata: deserializeMetadata(output),
|
|
637
|
-
});
|
|
638
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
639
|
-
const doc = smithyClient.take(data, {
|
|
640
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
641
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
642
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
643
|
-
EndTime: [, smithyClient.expectString, `endTime`],
|
|
644
|
-
Id: [, smithyClient.expectString, `id`],
|
|
645
|
-
OriginEndpointId: [, smithyClient.expectString, `originEndpointId`],
|
|
646
|
-
S3Destination: [, (_) => de_S3Destination(_), `s3Destination`],
|
|
647
|
-
StartTime: [, smithyClient.expectString, `startTime`],
|
|
648
|
-
Status: [, smithyClient.expectString, `status`],
|
|
649
|
-
});
|
|
650
|
-
Object.assign(contents, doc);
|
|
651
|
-
return contents;
|
|
652
|
-
};
|
|
653
|
-
const de_CreateOriginEndpointCommand = async (output, context) => {
|
|
654
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
655
|
-
return de_CommandError(output, context);
|
|
656
|
-
}
|
|
657
|
-
const contents = smithyClient.map({
|
|
658
|
-
$metadata: deserializeMetadata(output),
|
|
659
|
-
});
|
|
660
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
661
|
-
const doc = smithyClient.take(data, {
|
|
662
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
663
|
-
Authorization: [, (_) => de_Authorization(_), `authorization`],
|
|
664
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
665
|
-
CmafPackage: [, (_) => de_CmafPackage(_), `cmafPackage`],
|
|
666
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
667
|
-
DashPackage: [, (_) => de_DashPackage(_), `dashPackage`],
|
|
668
|
-
Description: [, smithyClient.expectString, `description`],
|
|
669
|
-
HlsPackage: [, (_) => de_HlsPackage(_), `hlsPackage`],
|
|
670
|
-
Id: [, smithyClient.expectString, `id`],
|
|
671
|
-
ManifestName: [, smithyClient.expectString, `manifestName`],
|
|
672
|
-
MssPackage: [, (_) => de_MssPackage(_), `mssPackage`],
|
|
673
|
-
Origination: [, smithyClient.expectString, `origination`],
|
|
674
|
-
StartoverWindowSeconds: [, smithyClient.expectInt32, `startoverWindowSeconds`],
|
|
675
|
-
Tags: [, smithyClient._json, `tags`],
|
|
676
|
-
TimeDelaySeconds: [, smithyClient.expectInt32, `timeDelaySeconds`],
|
|
677
|
-
Url: [, smithyClient.expectString, `url`],
|
|
678
|
-
Whitelist: [, smithyClient._json, `whitelist`],
|
|
679
|
-
});
|
|
680
|
-
Object.assign(contents, doc);
|
|
681
|
-
return contents;
|
|
682
|
-
};
|
|
683
|
-
const de_DeleteChannelCommand = async (output, context) => {
|
|
684
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
685
|
-
return de_CommandError(output, context);
|
|
686
|
-
}
|
|
687
|
-
const contents = smithyClient.map({
|
|
688
|
-
$metadata: deserializeMetadata(output),
|
|
689
|
-
});
|
|
690
|
-
await smithyClient.collectBody(output.body, context);
|
|
691
|
-
return contents;
|
|
692
|
-
};
|
|
693
|
-
const de_DeleteOriginEndpointCommand = async (output, context) => {
|
|
694
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
695
|
-
return de_CommandError(output, context);
|
|
696
|
-
}
|
|
697
|
-
const contents = smithyClient.map({
|
|
698
|
-
$metadata: deserializeMetadata(output),
|
|
699
|
-
});
|
|
700
|
-
await smithyClient.collectBody(output.body, context);
|
|
701
|
-
return contents;
|
|
702
|
-
};
|
|
703
|
-
const de_DescribeChannelCommand = async (output, context) => {
|
|
704
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
705
|
-
return de_CommandError(output, context);
|
|
706
|
-
}
|
|
707
|
-
const contents = smithyClient.map({
|
|
708
|
-
$metadata: deserializeMetadata(output),
|
|
709
|
-
});
|
|
710
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
711
|
-
const doc = smithyClient.take(data, {
|
|
712
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
713
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
714
|
-
Description: [, smithyClient.expectString, `description`],
|
|
715
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
716
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
717
|
-
Id: [, smithyClient.expectString, `id`],
|
|
718
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
719
|
-
Tags: [, smithyClient._json, `tags`],
|
|
720
|
-
});
|
|
721
|
-
Object.assign(contents, doc);
|
|
722
|
-
return contents;
|
|
723
|
-
};
|
|
724
|
-
const de_DescribeHarvestJobCommand = async (output, context) => {
|
|
725
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
726
|
-
return de_CommandError(output, context);
|
|
727
|
-
}
|
|
728
|
-
const contents = smithyClient.map({
|
|
729
|
-
$metadata: deserializeMetadata(output),
|
|
730
|
-
});
|
|
731
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
732
|
-
const doc = smithyClient.take(data, {
|
|
733
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
734
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
735
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
736
|
-
EndTime: [, smithyClient.expectString, `endTime`],
|
|
737
|
-
Id: [, smithyClient.expectString, `id`],
|
|
738
|
-
OriginEndpointId: [, smithyClient.expectString, `originEndpointId`],
|
|
739
|
-
S3Destination: [, (_) => de_S3Destination(_), `s3Destination`],
|
|
740
|
-
StartTime: [, smithyClient.expectString, `startTime`],
|
|
741
|
-
Status: [, smithyClient.expectString, `status`],
|
|
742
|
-
});
|
|
743
|
-
Object.assign(contents, doc);
|
|
744
|
-
return contents;
|
|
745
|
-
};
|
|
746
|
-
const de_DescribeOriginEndpointCommand = async (output, context) => {
|
|
747
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
748
|
-
return de_CommandError(output, context);
|
|
749
|
-
}
|
|
750
|
-
const contents = smithyClient.map({
|
|
751
|
-
$metadata: deserializeMetadata(output),
|
|
752
|
-
});
|
|
753
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
754
|
-
const doc = smithyClient.take(data, {
|
|
755
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
756
|
-
Authorization: [, (_) => de_Authorization(_), `authorization`],
|
|
757
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
758
|
-
CmafPackage: [, (_) => de_CmafPackage(_), `cmafPackage`],
|
|
759
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
760
|
-
DashPackage: [, (_) => de_DashPackage(_), `dashPackage`],
|
|
761
|
-
Description: [, smithyClient.expectString, `description`],
|
|
762
|
-
HlsPackage: [, (_) => de_HlsPackage(_), `hlsPackage`],
|
|
763
|
-
Id: [, smithyClient.expectString, `id`],
|
|
764
|
-
ManifestName: [, smithyClient.expectString, `manifestName`],
|
|
765
|
-
MssPackage: [, (_) => de_MssPackage(_), `mssPackage`],
|
|
766
|
-
Origination: [, smithyClient.expectString, `origination`],
|
|
767
|
-
StartoverWindowSeconds: [, smithyClient.expectInt32, `startoverWindowSeconds`],
|
|
768
|
-
Tags: [, smithyClient._json, `tags`],
|
|
769
|
-
TimeDelaySeconds: [, smithyClient.expectInt32, `timeDelaySeconds`],
|
|
770
|
-
Url: [, smithyClient.expectString, `url`],
|
|
771
|
-
Whitelist: [, smithyClient._json, `whitelist`],
|
|
772
|
-
});
|
|
773
|
-
Object.assign(contents, doc);
|
|
774
|
-
return contents;
|
|
775
|
-
};
|
|
776
|
-
const de_ListChannelsCommand = async (output, context) => {
|
|
777
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
778
|
-
return de_CommandError(output, context);
|
|
779
|
-
}
|
|
780
|
-
const contents = smithyClient.map({
|
|
781
|
-
$metadata: deserializeMetadata(output),
|
|
782
|
-
});
|
|
783
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
784
|
-
const doc = smithyClient.take(data, {
|
|
785
|
-
Channels: [, (_) => de___listOfChannel(_), `channels`],
|
|
786
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
787
|
-
});
|
|
788
|
-
Object.assign(contents, doc);
|
|
789
|
-
return contents;
|
|
790
|
-
};
|
|
791
|
-
const de_ListHarvestJobsCommand = async (output, context) => {
|
|
792
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
793
|
-
return de_CommandError(output, context);
|
|
794
|
-
}
|
|
795
|
-
const contents = smithyClient.map({
|
|
796
|
-
$metadata: deserializeMetadata(output),
|
|
797
|
-
});
|
|
798
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
799
|
-
const doc = smithyClient.take(data, {
|
|
800
|
-
HarvestJobs: [, (_) => de___listOfHarvestJob(_), `harvestJobs`],
|
|
801
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
802
|
-
});
|
|
803
|
-
Object.assign(contents, doc);
|
|
804
|
-
return contents;
|
|
805
|
-
};
|
|
806
|
-
const de_ListOriginEndpointsCommand = async (output, context) => {
|
|
807
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
808
|
-
return de_CommandError(output, context);
|
|
809
|
-
}
|
|
810
|
-
const contents = smithyClient.map({
|
|
811
|
-
$metadata: deserializeMetadata(output),
|
|
812
|
-
});
|
|
813
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
814
|
-
const doc = smithyClient.take(data, {
|
|
815
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
816
|
-
OriginEndpoints: [, (_) => de___listOfOriginEndpoint(_), `originEndpoints`],
|
|
817
|
-
});
|
|
818
|
-
Object.assign(contents, doc);
|
|
819
|
-
return contents;
|
|
820
|
-
};
|
|
821
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
822
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
823
|
-
return de_CommandError(output, context);
|
|
824
|
-
}
|
|
825
|
-
const contents = smithyClient.map({
|
|
826
|
-
$metadata: deserializeMetadata(output),
|
|
827
|
-
});
|
|
828
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
829
|
-
const doc = smithyClient.take(data, {
|
|
830
|
-
Tags: [, smithyClient._json, `tags`],
|
|
831
|
-
});
|
|
832
|
-
Object.assign(contents, doc);
|
|
833
|
-
return contents;
|
|
834
|
-
};
|
|
835
|
-
const de_RotateChannelCredentialsCommand = async (output, context) => {
|
|
836
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
837
|
-
return de_CommandError(output, context);
|
|
838
|
-
}
|
|
839
|
-
const contents = smithyClient.map({
|
|
840
|
-
$metadata: deserializeMetadata(output),
|
|
841
|
-
});
|
|
842
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
843
|
-
const doc = smithyClient.take(data, {
|
|
844
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
845
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
846
|
-
Description: [, smithyClient.expectString, `description`],
|
|
847
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
848
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
849
|
-
Id: [, smithyClient.expectString, `id`],
|
|
850
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
851
|
-
Tags: [, smithyClient._json, `tags`],
|
|
852
|
-
});
|
|
853
|
-
Object.assign(contents, doc);
|
|
854
|
-
return contents;
|
|
855
|
-
};
|
|
856
|
-
const de_RotateIngestEndpointCredentialsCommand = async (output, context) => {
|
|
857
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
858
|
-
return de_CommandError(output, context);
|
|
859
|
-
}
|
|
860
|
-
const contents = smithyClient.map({
|
|
861
|
-
$metadata: deserializeMetadata(output),
|
|
862
|
-
});
|
|
863
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
864
|
-
const doc = smithyClient.take(data, {
|
|
865
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
866
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
867
|
-
Description: [, smithyClient.expectString, `description`],
|
|
868
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
869
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
870
|
-
Id: [, smithyClient.expectString, `id`],
|
|
871
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
872
|
-
Tags: [, smithyClient._json, `tags`],
|
|
873
|
-
});
|
|
874
|
-
Object.assign(contents, doc);
|
|
875
|
-
return contents;
|
|
876
|
-
};
|
|
877
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
878
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
879
|
-
return de_CommandError(output, context);
|
|
880
|
-
}
|
|
881
|
-
const contents = smithyClient.map({
|
|
882
|
-
$metadata: deserializeMetadata(output),
|
|
883
|
-
});
|
|
884
|
-
await smithyClient.collectBody(output.body, context);
|
|
885
|
-
return contents;
|
|
886
|
-
};
|
|
887
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
888
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
889
|
-
return de_CommandError(output, context);
|
|
890
|
-
}
|
|
891
|
-
const contents = smithyClient.map({
|
|
892
|
-
$metadata: deserializeMetadata(output),
|
|
893
|
-
});
|
|
894
|
-
await smithyClient.collectBody(output.body, context);
|
|
895
|
-
return contents;
|
|
896
|
-
};
|
|
897
|
-
const de_UpdateChannelCommand = async (output, context) => {
|
|
898
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
899
|
-
return de_CommandError(output, context);
|
|
900
|
-
}
|
|
901
|
-
const contents = smithyClient.map({
|
|
902
|
-
$metadata: deserializeMetadata(output),
|
|
903
|
-
});
|
|
904
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
905
|
-
const doc = smithyClient.take(data, {
|
|
906
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
907
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
908
|
-
Description: [, smithyClient.expectString, `description`],
|
|
909
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
910
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
911
|
-
Id: [, smithyClient.expectString, `id`],
|
|
912
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
913
|
-
Tags: [, smithyClient._json, `tags`],
|
|
914
|
-
});
|
|
915
|
-
Object.assign(contents, doc);
|
|
916
|
-
return contents;
|
|
917
|
-
};
|
|
918
|
-
const de_UpdateOriginEndpointCommand = async (output, context) => {
|
|
919
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
920
|
-
return de_CommandError(output, context);
|
|
921
|
-
}
|
|
922
|
-
const contents = smithyClient.map({
|
|
923
|
-
$metadata: deserializeMetadata(output),
|
|
924
|
-
});
|
|
925
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
926
|
-
const doc = smithyClient.take(data, {
|
|
927
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
928
|
-
Authorization: [, (_) => de_Authorization(_), `authorization`],
|
|
929
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
930
|
-
CmafPackage: [, (_) => de_CmafPackage(_), `cmafPackage`],
|
|
931
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
932
|
-
DashPackage: [, (_) => de_DashPackage(_), `dashPackage`],
|
|
933
|
-
Description: [, smithyClient.expectString, `description`],
|
|
934
|
-
HlsPackage: [, (_) => de_HlsPackage(_), `hlsPackage`],
|
|
935
|
-
Id: [, smithyClient.expectString, `id`],
|
|
936
|
-
ManifestName: [, smithyClient.expectString, `manifestName`],
|
|
937
|
-
MssPackage: [, (_) => de_MssPackage(_), `mssPackage`],
|
|
938
|
-
Origination: [, smithyClient.expectString, `origination`],
|
|
939
|
-
StartoverWindowSeconds: [, smithyClient.expectInt32, `startoverWindowSeconds`],
|
|
940
|
-
Tags: [, smithyClient._json, `tags`],
|
|
941
|
-
TimeDelaySeconds: [, smithyClient.expectInt32, `timeDelaySeconds`],
|
|
942
|
-
Url: [, smithyClient.expectString, `url`],
|
|
943
|
-
Whitelist: [, smithyClient._json, `whitelist`],
|
|
944
|
-
});
|
|
945
|
-
Object.assign(contents, doc);
|
|
946
|
-
return contents;
|
|
947
|
-
};
|
|
948
|
-
const de_CommandError = async (output, context) => {
|
|
949
|
-
const parsedOutput = {
|
|
950
|
-
...output,
|
|
951
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
952
|
-
};
|
|
953
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
954
|
-
switch (errorCode) {
|
|
955
|
-
case "ForbiddenException":
|
|
956
|
-
case "com.amazonaws.mediapackage#ForbiddenException":
|
|
957
|
-
throw await de_ForbiddenExceptionRes(parsedOutput);
|
|
958
|
-
case "InternalServerErrorException":
|
|
959
|
-
case "com.amazonaws.mediapackage#InternalServerErrorException":
|
|
960
|
-
throw await de_InternalServerErrorExceptionRes(parsedOutput);
|
|
961
|
-
case "NotFoundException":
|
|
962
|
-
case "com.amazonaws.mediapackage#NotFoundException":
|
|
963
|
-
throw await de_NotFoundExceptionRes(parsedOutput);
|
|
964
|
-
case "ServiceUnavailableException":
|
|
965
|
-
case "com.amazonaws.mediapackage#ServiceUnavailableException":
|
|
966
|
-
throw await de_ServiceUnavailableExceptionRes(parsedOutput);
|
|
967
|
-
case "TooManyRequestsException":
|
|
968
|
-
case "com.amazonaws.mediapackage#TooManyRequestsException":
|
|
969
|
-
throw await de_TooManyRequestsExceptionRes(parsedOutput);
|
|
970
|
-
case "UnprocessableEntityException":
|
|
971
|
-
case "com.amazonaws.mediapackage#UnprocessableEntityException":
|
|
972
|
-
throw await de_UnprocessableEntityExceptionRes(parsedOutput);
|
|
973
|
-
default:
|
|
974
|
-
const parsedBody = parsedOutput.body;
|
|
975
|
-
return throwDefaultError({
|
|
976
|
-
output,
|
|
977
|
-
parsedBody,
|
|
978
|
-
errorCode,
|
|
979
|
-
});
|
|
980
|
-
}
|
|
981
296
|
};
|
|
982
|
-
|
|
983
|
-
const
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
const
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
const doc = smithyClient.take(data, {
|
|
1000
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1001
|
-
});
|
|
1002
|
-
Object.assign(contents, doc);
|
|
1003
|
-
const exception = new InternalServerErrorException({
|
|
1004
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1005
|
-
...contents,
|
|
1006
|
-
});
|
|
1007
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1008
|
-
};
|
|
1009
|
-
const de_NotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1010
|
-
const contents = smithyClient.map({});
|
|
1011
|
-
const data = parsedOutput.body;
|
|
1012
|
-
const doc = smithyClient.take(data, {
|
|
1013
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1014
|
-
});
|
|
1015
|
-
Object.assign(contents, doc);
|
|
1016
|
-
const exception = new NotFoundException({
|
|
1017
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1018
|
-
...contents,
|
|
1019
|
-
});
|
|
1020
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1021
|
-
};
|
|
1022
|
-
const de_ServiceUnavailableExceptionRes = async (parsedOutput, context) => {
|
|
1023
|
-
const contents = smithyClient.map({});
|
|
1024
|
-
const data = parsedOutput.body;
|
|
1025
|
-
const doc = smithyClient.take(data, {
|
|
1026
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1027
|
-
});
|
|
1028
|
-
Object.assign(contents, doc);
|
|
1029
|
-
const exception = new ServiceUnavailableException({
|
|
1030
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1031
|
-
...contents,
|
|
1032
|
-
});
|
|
1033
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1034
|
-
};
|
|
1035
|
-
const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
|
|
1036
|
-
const contents = smithyClient.map({});
|
|
1037
|
-
const data = parsedOutput.body;
|
|
1038
|
-
const doc = smithyClient.take(data, {
|
|
1039
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1040
|
-
});
|
|
1041
|
-
Object.assign(contents, doc);
|
|
1042
|
-
const exception = new TooManyRequestsException({
|
|
1043
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1044
|
-
...contents,
|
|
1045
|
-
});
|
|
1046
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1047
|
-
};
|
|
1048
|
-
const de_UnprocessableEntityExceptionRes = async (parsedOutput, context) => {
|
|
1049
|
-
const contents = smithyClient.map({});
|
|
1050
|
-
const data = parsedOutput.body;
|
|
1051
|
-
const doc = smithyClient.take(data, {
|
|
1052
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1053
|
-
});
|
|
1054
|
-
Object.assign(contents, doc);
|
|
1055
|
-
const exception = new UnprocessableEntityException({
|
|
1056
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1057
|
-
...contents,
|
|
1058
|
-
});
|
|
1059
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1060
|
-
};
|
|
1061
|
-
const se___listOfHlsManifestCreateOrUpdateParameters = (input, context) => {
|
|
1062
|
-
return input
|
|
1063
|
-
.filter((e) => e != null)
|
|
1064
|
-
.map((entry) => {
|
|
1065
|
-
return se_HlsManifestCreateOrUpdateParameters(entry);
|
|
1066
|
-
});
|
|
1067
|
-
};
|
|
1068
|
-
const se_Authorization = (input, context) => {
|
|
1069
|
-
return smithyClient.take(input, {
|
|
1070
|
-
cdnIdentifierSecret: [, , `CdnIdentifierSecret`],
|
|
1071
|
-
secretsRoleArn: [, , `SecretsRoleArn`],
|
|
1072
|
-
});
|
|
1073
|
-
};
|
|
1074
|
-
const se_CmafEncryption = (input, context) => {
|
|
1075
|
-
return smithyClient.take(input, {
|
|
1076
|
-
constantInitializationVector: [, , `ConstantInitializationVector`],
|
|
1077
|
-
encryptionMethod: [, , `EncryptionMethod`],
|
|
1078
|
-
keyRotationIntervalSeconds: [, , `KeyRotationIntervalSeconds`],
|
|
1079
|
-
spekeKeyProvider: [, (_) => se_SpekeKeyProvider(_), `SpekeKeyProvider`],
|
|
1080
|
-
});
|
|
1081
|
-
};
|
|
1082
|
-
const se_CmafPackageCreateOrUpdateParameters = (input, context) => {
|
|
1083
|
-
return smithyClient.take(input, {
|
|
1084
|
-
encryption: [, (_) => se_CmafEncryption(_), `Encryption`],
|
|
1085
|
-
hlsManifests: [, (_) => se___listOfHlsManifestCreateOrUpdateParameters(_), `HlsManifests`],
|
|
1086
|
-
segmentDurationSeconds: [, , `SegmentDurationSeconds`],
|
|
1087
|
-
segmentPrefix: [, , `SegmentPrefix`],
|
|
1088
|
-
streamSelection: [, (_) => se_StreamSelection(_), `StreamSelection`],
|
|
1089
|
-
});
|
|
1090
|
-
};
|
|
1091
|
-
const se_DashEncryption = (input, context) => {
|
|
1092
|
-
return smithyClient.take(input, {
|
|
1093
|
-
keyRotationIntervalSeconds: [, , `KeyRotationIntervalSeconds`],
|
|
1094
|
-
spekeKeyProvider: [, (_) => se_SpekeKeyProvider(_), `SpekeKeyProvider`],
|
|
1095
|
-
});
|
|
1096
|
-
};
|
|
1097
|
-
const se_DashPackage = (input, context) => {
|
|
1098
|
-
return smithyClient.take(input, {
|
|
1099
|
-
adTriggers: [, smithyClient._json, `AdTriggers`],
|
|
1100
|
-
adsOnDeliveryRestrictions: [, , `AdsOnDeliveryRestrictions`],
|
|
1101
|
-
encryption: [, (_) => se_DashEncryption(_), `Encryption`],
|
|
1102
|
-
includeIframeOnlyStream: [, , `IncludeIframeOnlyStream`],
|
|
1103
|
-
manifestLayout: [, , `ManifestLayout`],
|
|
1104
|
-
manifestWindowSeconds: [, , `ManifestWindowSeconds`],
|
|
1105
|
-
minBufferTimeSeconds: [, , `MinBufferTimeSeconds`],
|
|
1106
|
-
minUpdatePeriodSeconds: [, , `MinUpdatePeriodSeconds`],
|
|
1107
|
-
periodTriggers: [, smithyClient._json, `PeriodTriggers`],
|
|
1108
|
-
profile: [, , `Profile`],
|
|
1109
|
-
segmentDurationSeconds: [, , `SegmentDurationSeconds`],
|
|
1110
|
-
segmentTemplateFormat: [, , `SegmentTemplateFormat`],
|
|
1111
|
-
streamSelection: [, (_) => se_StreamSelection(_), `StreamSelection`],
|
|
1112
|
-
suggestedPresentationDelaySeconds: [, , `SuggestedPresentationDelaySeconds`],
|
|
1113
|
-
utcTiming: [, , `UtcTiming`],
|
|
1114
|
-
utcTimingUri: [, , `UtcTimingUri`],
|
|
1115
|
-
});
|
|
1116
|
-
};
|
|
1117
|
-
const se_EgressAccessLogs = (input, context) => {
|
|
1118
|
-
return smithyClient.take(input, {
|
|
1119
|
-
logGroupName: [, , `LogGroupName`],
|
|
1120
|
-
});
|
|
1121
|
-
};
|
|
1122
|
-
const se_EncryptionContractConfiguration = (input, context) => {
|
|
1123
|
-
return smithyClient.take(input, {
|
|
1124
|
-
presetSpeke20Audio: [, , `PresetSpeke20Audio`],
|
|
1125
|
-
presetSpeke20Video: [, , `PresetSpeke20Video`],
|
|
1126
|
-
});
|
|
1127
|
-
};
|
|
1128
|
-
const se_HlsEncryption = (input, context) => {
|
|
1129
|
-
return smithyClient.take(input, {
|
|
1130
|
-
constantInitializationVector: [, , `ConstantInitializationVector`],
|
|
1131
|
-
encryptionMethod: [, , `EncryptionMethod`],
|
|
1132
|
-
keyRotationIntervalSeconds: [, , `KeyRotationIntervalSeconds`],
|
|
1133
|
-
repeatExtXKey: [, , `RepeatExtXKey`],
|
|
1134
|
-
spekeKeyProvider: [, (_) => se_SpekeKeyProvider(_), `SpekeKeyProvider`],
|
|
1135
|
-
});
|
|
1136
|
-
};
|
|
1137
|
-
const se_HlsManifestCreateOrUpdateParameters = (input, context) => {
|
|
1138
|
-
return smithyClient.take(input, {
|
|
1139
|
-
adMarkers: [, , `AdMarkers`],
|
|
1140
|
-
adTriggers: [, smithyClient._json, `AdTriggers`],
|
|
1141
|
-
adsOnDeliveryRestrictions: [, , `AdsOnDeliveryRestrictions`],
|
|
1142
|
-
id: [, , `Id`],
|
|
1143
|
-
includeIframeOnlyStream: [, , `IncludeIframeOnlyStream`],
|
|
1144
|
-
manifestName: [, , `ManifestName`],
|
|
1145
|
-
playlistType: [, , `PlaylistType`],
|
|
1146
|
-
playlistWindowSeconds: [, , `PlaylistWindowSeconds`],
|
|
1147
|
-
programDateTimeIntervalSeconds: [, , `ProgramDateTimeIntervalSeconds`],
|
|
1148
|
-
});
|
|
1149
|
-
};
|
|
1150
|
-
const se_HlsPackage = (input, context) => {
|
|
1151
|
-
return smithyClient.take(input, {
|
|
1152
|
-
adMarkers: [, , `AdMarkers`],
|
|
1153
|
-
adTriggers: [, smithyClient._json, `AdTriggers`],
|
|
1154
|
-
adsOnDeliveryRestrictions: [, , `AdsOnDeliveryRestrictions`],
|
|
1155
|
-
encryption: [, (_) => se_HlsEncryption(_), `Encryption`],
|
|
1156
|
-
includeDvbSubtitles: [, , `IncludeDvbSubtitles`],
|
|
1157
|
-
includeIframeOnlyStream: [, , `IncludeIframeOnlyStream`],
|
|
1158
|
-
playlistType: [, , `PlaylistType`],
|
|
1159
|
-
playlistWindowSeconds: [, , `PlaylistWindowSeconds`],
|
|
1160
|
-
programDateTimeIntervalSeconds: [, , `ProgramDateTimeIntervalSeconds`],
|
|
1161
|
-
segmentDurationSeconds: [, , `SegmentDurationSeconds`],
|
|
1162
|
-
streamSelection: [, (_) => se_StreamSelection(_), `StreamSelection`],
|
|
1163
|
-
useAudioRenditionGroup: [, , `UseAudioRenditionGroup`],
|
|
1164
|
-
});
|
|
1165
|
-
};
|
|
1166
|
-
const se_IngressAccessLogs = (input, context) => {
|
|
1167
|
-
return smithyClient.take(input, {
|
|
1168
|
-
logGroupName: [, , `LogGroupName`],
|
|
1169
|
-
});
|
|
1170
|
-
};
|
|
1171
|
-
const se_MssEncryption = (input, context) => {
|
|
1172
|
-
return smithyClient.take(input, {
|
|
1173
|
-
spekeKeyProvider: [, (_) => se_SpekeKeyProvider(_), `SpekeKeyProvider`],
|
|
1174
|
-
});
|
|
1175
|
-
};
|
|
1176
|
-
const se_MssPackage = (input, context) => {
|
|
1177
|
-
return smithyClient.take(input, {
|
|
1178
|
-
encryption: [, (_) => se_MssEncryption(_), `Encryption`],
|
|
1179
|
-
manifestWindowSeconds: [, , `ManifestWindowSeconds`],
|
|
1180
|
-
segmentDurationSeconds: [, , `SegmentDurationSeconds`],
|
|
1181
|
-
streamSelection: [, (_) => se_StreamSelection(_), `StreamSelection`],
|
|
1182
|
-
});
|
|
1183
|
-
};
|
|
1184
|
-
const se_S3Destination = (input, context) => {
|
|
1185
|
-
return smithyClient.take(input, {
|
|
1186
|
-
bucketName: [, , `BucketName`],
|
|
1187
|
-
manifestKey: [, , `ManifestKey`],
|
|
1188
|
-
roleArn: [, , `RoleArn`],
|
|
1189
|
-
});
|
|
1190
|
-
};
|
|
1191
|
-
const se_SpekeKeyProvider = (input, context) => {
|
|
1192
|
-
return smithyClient.take(input, {
|
|
1193
|
-
certificateArn: [, , `CertificateArn`],
|
|
1194
|
-
encryptionContractConfiguration: [
|
|
1195
|
-
,
|
|
1196
|
-
(_) => se_EncryptionContractConfiguration(_),
|
|
1197
|
-
`EncryptionContractConfiguration`,
|
|
1198
|
-
],
|
|
1199
|
-
resourceId: [, , `ResourceId`],
|
|
1200
|
-
roleArn: [, , `RoleArn`],
|
|
1201
|
-
systemIds: [, smithyClient._json, `SystemIds`],
|
|
1202
|
-
url: [, , `Url`],
|
|
1203
|
-
});
|
|
1204
|
-
};
|
|
1205
|
-
const se_StreamSelection = (input, context) => {
|
|
1206
|
-
return smithyClient.take(input, {
|
|
1207
|
-
maxVideoBitsPerSecond: [, , `MaxVideoBitsPerSecond`],
|
|
1208
|
-
minVideoBitsPerSecond: [, , `MinVideoBitsPerSecond`],
|
|
1209
|
-
streamOrder: [, , `StreamOrder`],
|
|
1210
|
-
});
|
|
1211
|
-
};
|
|
1212
|
-
const de___listOfChannel = (output, context) => {
|
|
1213
|
-
const retVal = (output || [])
|
|
1214
|
-
.filter((e) => e != null)
|
|
1215
|
-
.map((entry) => {
|
|
1216
|
-
return de_Channel(entry);
|
|
1217
|
-
});
|
|
1218
|
-
return retVal;
|
|
1219
|
-
};
|
|
1220
|
-
const de___listOfHarvestJob = (output, context) => {
|
|
1221
|
-
const retVal = (output || [])
|
|
1222
|
-
.filter((e) => e != null)
|
|
1223
|
-
.map((entry) => {
|
|
1224
|
-
return de_HarvestJob(entry);
|
|
1225
|
-
});
|
|
1226
|
-
return retVal;
|
|
1227
|
-
};
|
|
1228
|
-
const de___listOfHlsManifest = (output, context) => {
|
|
1229
|
-
const retVal = (output || [])
|
|
1230
|
-
.filter((e) => e != null)
|
|
1231
|
-
.map((entry) => {
|
|
1232
|
-
return de_HlsManifest(entry);
|
|
1233
|
-
});
|
|
1234
|
-
return retVal;
|
|
1235
|
-
};
|
|
1236
|
-
const de___listOfIngestEndpoint = (output, context) => {
|
|
1237
|
-
const retVal = (output || [])
|
|
1238
|
-
.filter((e) => e != null)
|
|
1239
|
-
.map((entry) => {
|
|
1240
|
-
return de_IngestEndpoint(entry);
|
|
1241
|
-
});
|
|
1242
|
-
return retVal;
|
|
1243
|
-
};
|
|
1244
|
-
const de___listOfOriginEndpoint = (output, context) => {
|
|
1245
|
-
const retVal = (output || [])
|
|
1246
|
-
.filter((e) => e != null)
|
|
1247
|
-
.map((entry) => {
|
|
1248
|
-
return de_OriginEndpoint(entry);
|
|
1249
|
-
});
|
|
1250
|
-
return retVal;
|
|
1251
|
-
};
|
|
1252
|
-
const de_Authorization = (output, context) => {
|
|
1253
|
-
return smithyClient.take(output, {
|
|
1254
|
-
CdnIdentifierSecret: [, smithyClient.expectString, `cdnIdentifierSecret`],
|
|
1255
|
-
SecretsRoleArn: [, smithyClient.expectString, `secretsRoleArn`],
|
|
1256
|
-
});
|
|
1257
|
-
};
|
|
1258
|
-
const de_Channel = (output, context) => {
|
|
1259
|
-
return smithyClient.take(output, {
|
|
1260
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
1261
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
1262
|
-
Description: [, smithyClient.expectString, `description`],
|
|
1263
|
-
EgressAccessLogs: [, (_) => de_EgressAccessLogs(_), `egressAccessLogs`],
|
|
1264
|
-
HlsIngest: [, (_) => de_HlsIngest(_), `hlsIngest`],
|
|
1265
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1266
|
-
IngressAccessLogs: [, (_) => de_IngressAccessLogs(_), `ingressAccessLogs`],
|
|
1267
|
-
Tags: [, smithyClient._json, `tags`],
|
|
1268
|
-
});
|
|
1269
|
-
};
|
|
1270
|
-
const de_CmafEncryption = (output, context) => {
|
|
1271
|
-
return smithyClient.take(output, {
|
|
1272
|
-
ConstantInitializationVector: [, smithyClient.expectString, `constantInitializationVector`],
|
|
1273
|
-
EncryptionMethod: [, smithyClient.expectString, `encryptionMethod`],
|
|
1274
|
-
KeyRotationIntervalSeconds: [, smithyClient.expectInt32, `keyRotationIntervalSeconds`],
|
|
1275
|
-
SpekeKeyProvider: [, (_) => de_SpekeKeyProvider(_), `spekeKeyProvider`],
|
|
1276
|
-
});
|
|
1277
|
-
};
|
|
1278
|
-
const de_CmafPackage = (output, context) => {
|
|
1279
|
-
return smithyClient.take(output, {
|
|
1280
|
-
Encryption: [, (_) => de_CmafEncryption(_), `encryption`],
|
|
1281
|
-
HlsManifests: [, (_) => de___listOfHlsManifest(_), `hlsManifests`],
|
|
1282
|
-
SegmentDurationSeconds: [, smithyClient.expectInt32, `segmentDurationSeconds`],
|
|
1283
|
-
SegmentPrefix: [, smithyClient.expectString, `segmentPrefix`],
|
|
1284
|
-
StreamSelection: [, (_) => de_StreamSelection(_), `streamSelection`],
|
|
1285
|
-
});
|
|
1286
|
-
};
|
|
1287
|
-
const de_DashEncryption = (output, context) => {
|
|
1288
|
-
return smithyClient.take(output, {
|
|
1289
|
-
KeyRotationIntervalSeconds: [, smithyClient.expectInt32, `keyRotationIntervalSeconds`],
|
|
1290
|
-
SpekeKeyProvider: [, (_) => de_SpekeKeyProvider(_), `spekeKeyProvider`],
|
|
1291
|
-
});
|
|
1292
|
-
};
|
|
1293
|
-
const de_DashPackage = (output, context) => {
|
|
1294
|
-
return smithyClient.take(output, {
|
|
1295
|
-
AdTriggers: [, smithyClient._json, `adTriggers`],
|
|
1296
|
-
AdsOnDeliveryRestrictions: [, smithyClient.expectString, `adsOnDeliveryRestrictions`],
|
|
1297
|
-
Encryption: [, (_) => de_DashEncryption(_), `encryption`],
|
|
1298
|
-
IncludeIframeOnlyStream: [, smithyClient.expectBoolean, `includeIframeOnlyStream`],
|
|
1299
|
-
ManifestLayout: [, smithyClient.expectString, `manifestLayout`],
|
|
1300
|
-
ManifestWindowSeconds: [, smithyClient.expectInt32, `manifestWindowSeconds`],
|
|
1301
|
-
MinBufferTimeSeconds: [, smithyClient.expectInt32, `minBufferTimeSeconds`],
|
|
1302
|
-
MinUpdatePeriodSeconds: [, smithyClient.expectInt32, `minUpdatePeriodSeconds`],
|
|
1303
|
-
PeriodTriggers: [, smithyClient._json, `periodTriggers`],
|
|
1304
|
-
Profile: [, smithyClient.expectString, `profile`],
|
|
1305
|
-
SegmentDurationSeconds: [, smithyClient.expectInt32, `segmentDurationSeconds`],
|
|
1306
|
-
SegmentTemplateFormat: [, smithyClient.expectString, `segmentTemplateFormat`],
|
|
1307
|
-
StreamSelection: [, (_) => de_StreamSelection(_), `streamSelection`],
|
|
1308
|
-
SuggestedPresentationDelaySeconds: [, smithyClient.expectInt32, `suggestedPresentationDelaySeconds`],
|
|
1309
|
-
UtcTiming: [, smithyClient.expectString, `utcTiming`],
|
|
1310
|
-
UtcTimingUri: [, smithyClient.expectString, `utcTimingUri`],
|
|
1311
|
-
});
|
|
1312
|
-
};
|
|
1313
|
-
const de_EgressAccessLogs = (output, context) => {
|
|
1314
|
-
return smithyClient.take(output, {
|
|
1315
|
-
LogGroupName: [, smithyClient.expectString, `logGroupName`],
|
|
1316
|
-
});
|
|
1317
|
-
};
|
|
1318
|
-
const de_EncryptionContractConfiguration = (output, context) => {
|
|
1319
|
-
return smithyClient.take(output, {
|
|
1320
|
-
PresetSpeke20Audio: [, smithyClient.expectString, `presetSpeke20Audio`],
|
|
1321
|
-
PresetSpeke20Video: [, smithyClient.expectString, `presetSpeke20Video`],
|
|
1322
|
-
});
|
|
1323
|
-
};
|
|
1324
|
-
const de_HarvestJob = (output, context) => {
|
|
1325
|
-
return smithyClient.take(output, {
|
|
1326
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
1327
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
1328
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
1329
|
-
EndTime: [, smithyClient.expectString, `endTime`],
|
|
1330
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1331
|
-
OriginEndpointId: [, smithyClient.expectString, `originEndpointId`],
|
|
1332
|
-
S3Destination: [, (_) => de_S3Destination(_), `s3Destination`],
|
|
1333
|
-
StartTime: [, smithyClient.expectString, `startTime`],
|
|
1334
|
-
Status: [, smithyClient.expectString, `status`],
|
|
1335
|
-
});
|
|
1336
|
-
};
|
|
1337
|
-
const de_HlsEncryption = (output, context) => {
|
|
1338
|
-
return smithyClient.take(output, {
|
|
1339
|
-
ConstantInitializationVector: [, smithyClient.expectString, `constantInitializationVector`],
|
|
1340
|
-
EncryptionMethod: [, smithyClient.expectString, `encryptionMethod`],
|
|
1341
|
-
KeyRotationIntervalSeconds: [, smithyClient.expectInt32, `keyRotationIntervalSeconds`],
|
|
1342
|
-
RepeatExtXKey: [, smithyClient.expectBoolean, `repeatExtXKey`],
|
|
1343
|
-
SpekeKeyProvider: [, (_) => de_SpekeKeyProvider(_), `spekeKeyProvider`],
|
|
1344
|
-
});
|
|
1345
|
-
};
|
|
1346
|
-
const de_HlsIngest = (output, context) => {
|
|
1347
|
-
return smithyClient.take(output, {
|
|
1348
|
-
IngestEndpoints: [, (_) => de___listOfIngestEndpoint(_), `ingestEndpoints`],
|
|
1349
|
-
});
|
|
1350
|
-
};
|
|
1351
|
-
const de_HlsManifest = (output, context) => {
|
|
1352
|
-
return smithyClient.take(output, {
|
|
1353
|
-
AdMarkers: [, smithyClient.expectString, `adMarkers`],
|
|
1354
|
-
AdTriggers: [, smithyClient._json, `adTriggers`],
|
|
1355
|
-
AdsOnDeliveryRestrictions: [, smithyClient.expectString, `adsOnDeliveryRestrictions`],
|
|
1356
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1357
|
-
IncludeIframeOnlyStream: [, smithyClient.expectBoolean, `includeIframeOnlyStream`],
|
|
1358
|
-
ManifestName: [, smithyClient.expectString, `manifestName`],
|
|
1359
|
-
PlaylistType: [, smithyClient.expectString, `playlistType`],
|
|
1360
|
-
PlaylistWindowSeconds: [, smithyClient.expectInt32, `playlistWindowSeconds`],
|
|
1361
|
-
ProgramDateTimeIntervalSeconds: [, smithyClient.expectInt32, `programDateTimeIntervalSeconds`],
|
|
1362
|
-
Url: [, smithyClient.expectString, `url`],
|
|
1363
|
-
});
|
|
1364
|
-
};
|
|
1365
|
-
const de_HlsPackage = (output, context) => {
|
|
1366
|
-
return smithyClient.take(output, {
|
|
1367
|
-
AdMarkers: [, smithyClient.expectString, `adMarkers`],
|
|
1368
|
-
AdTriggers: [, smithyClient._json, `adTriggers`],
|
|
1369
|
-
AdsOnDeliveryRestrictions: [, smithyClient.expectString, `adsOnDeliveryRestrictions`],
|
|
1370
|
-
Encryption: [, (_) => de_HlsEncryption(_), `encryption`],
|
|
1371
|
-
IncludeDvbSubtitles: [, smithyClient.expectBoolean, `includeDvbSubtitles`],
|
|
1372
|
-
IncludeIframeOnlyStream: [, smithyClient.expectBoolean, `includeIframeOnlyStream`],
|
|
1373
|
-
PlaylistType: [, smithyClient.expectString, `playlistType`],
|
|
1374
|
-
PlaylistWindowSeconds: [, smithyClient.expectInt32, `playlistWindowSeconds`],
|
|
1375
|
-
ProgramDateTimeIntervalSeconds: [, smithyClient.expectInt32, `programDateTimeIntervalSeconds`],
|
|
1376
|
-
SegmentDurationSeconds: [, smithyClient.expectInt32, `segmentDurationSeconds`],
|
|
1377
|
-
StreamSelection: [, (_) => de_StreamSelection(_), `streamSelection`],
|
|
1378
|
-
UseAudioRenditionGroup: [, smithyClient.expectBoolean, `useAudioRenditionGroup`],
|
|
1379
|
-
});
|
|
1380
|
-
};
|
|
1381
|
-
const de_IngestEndpoint = (output, context) => {
|
|
1382
|
-
return smithyClient.take(output, {
|
|
1383
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1384
|
-
Password: [, smithyClient.expectString, `password`],
|
|
1385
|
-
Url: [, smithyClient.expectString, `url`],
|
|
1386
|
-
Username: [, smithyClient.expectString, `username`],
|
|
1387
|
-
});
|
|
1388
|
-
};
|
|
1389
|
-
const de_IngressAccessLogs = (output, context) => {
|
|
1390
|
-
return smithyClient.take(output, {
|
|
1391
|
-
LogGroupName: [, smithyClient.expectString, `logGroupName`],
|
|
1392
|
-
});
|
|
1393
|
-
};
|
|
1394
|
-
const de_MssEncryption = (output, context) => {
|
|
1395
|
-
return smithyClient.take(output, {
|
|
1396
|
-
SpekeKeyProvider: [, (_) => de_SpekeKeyProvider(_), `spekeKeyProvider`],
|
|
1397
|
-
});
|
|
1398
|
-
};
|
|
1399
|
-
const de_MssPackage = (output, context) => {
|
|
1400
|
-
return smithyClient.take(output, {
|
|
1401
|
-
Encryption: [, (_) => de_MssEncryption(_), `encryption`],
|
|
1402
|
-
ManifestWindowSeconds: [, smithyClient.expectInt32, `manifestWindowSeconds`],
|
|
1403
|
-
SegmentDurationSeconds: [, smithyClient.expectInt32, `segmentDurationSeconds`],
|
|
1404
|
-
StreamSelection: [, (_) => de_StreamSelection(_), `streamSelection`],
|
|
1405
|
-
});
|
|
1406
|
-
};
|
|
1407
|
-
const de_OriginEndpoint = (output, context) => {
|
|
1408
|
-
return smithyClient.take(output, {
|
|
1409
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
1410
|
-
Authorization: [, (_) => de_Authorization(_), `authorization`],
|
|
1411
|
-
ChannelId: [, smithyClient.expectString, `channelId`],
|
|
1412
|
-
CmafPackage: [, (_) => de_CmafPackage(_), `cmafPackage`],
|
|
1413
|
-
CreatedAt: [, smithyClient.expectString, `createdAt`],
|
|
1414
|
-
DashPackage: [, (_) => de_DashPackage(_), `dashPackage`],
|
|
1415
|
-
Description: [, smithyClient.expectString, `description`],
|
|
1416
|
-
HlsPackage: [, (_) => de_HlsPackage(_), `hlsPackage`],
|
|
1417
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1418
|
-
ManifestName: [, smithyClient.expectString, `manifestName`],
|
|
1419
|
-
MssPackage: [, (_) => de_MssPackage(_), `mssPackage`],
|
|
1420
|
-
Origination: [, smithyClient.expectString, `origination`],
|
|
1421
|
-
StartoverWindowSeconds: [, smithyClient.expectInt32, `startoverWindowSeconds`],
|
|
1422
|
-
Tags: [, smithyClient._json, `tags`],
|
|
1423
|
-
TimeDelaySeconds: [, smithyClient.expectInt32, `timeDelaySeconds`],
|
|
1424
|
-
Url: [, smithyClient.expectString, `url`],
|
|
1425
|
-
Whitelist: [, smithyClient._json, `whitelist`],
|
|
1426
|
-
});
|
|
1427
|
-
};
|
|
1428
|
-
const de_S3Destination = (output, context) => {
|
|
1429
|
-
return smithyClient.take(output, {
|
|
1430
|
-
BucketName: [, smithyClient.expectString, `bucketName`],
|
|
1431
|
-
ManifestKey: [, smithyClient.expectString, `manifestKey`],
|
|
1432
|
-
RoleArn: [, smithyClient.expectString, `roleArn`],
|
|
1433
|
-
});
|
|
1434
|
-
};
|
|
1435
|
-
const de_SpekeKeyProvider = (output, context) => {
|
|
1436
|
-
return smithyClient.take(output, {
|
|
1437
|
-
CertificateArn: [, smithyClient.expectString, `certificateArn`],
|
|
1438
|
-
EncryptionContractConfiguration: [
|
|
1439
|
-
,
|
|
1440
|
-
(_) => de_EncryptionContractConfiguration(_),
|
|
1441
|
-
`encryptionContractConfiguration`,
|
|
1442
|
-
],
|
|
1443
|
-
ResourceId: [, smithyClient.expectString, `resourceId`],
|
|
1444
|
-
RoleArn: [, smithyClient.expectString, `roleArn`],
|
|
1445
|
-
SystemIds: [, smithyClient._json, `systemIds`],
|
|
1446
|
-
Url: [, smithyClient.expectString, `url`],
|
|
1447
|
-
});
|
|
1448
|
-
};
|
|
1449
|
-
const de_StreamSelection = (output, context) => {
|
|
1450
|
-
return smithyClient.take(output, {
|
|
1451
|
-
MaxVideoBitsPerSecond: [, smithyClient.expectInt32, `maxVideoBitsPerSecond`],
|
|
1452
|
-
MinVideoBitsPerSecond: [, smithyClient.expectInt32, `minVideoBitsPerSecond`],
|
|
1453
|
-
StreamOrder: [, smithyClient.expectString, `streamOrder`],
|
|
1454
|
-
});
|
|
1455
|
-
};
|
|
1456
|
-
const deserializeMetadata = (output) => ({
|
|
1457
|
-
httpStatusCode: output.statusCode,
|
|
1458
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1459
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1460
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1461
|
-
});
|
|
297
|
+
|
|
298
|
+
const _A = "Authorization";
|
|
299
|
+
const _AM = "AdMarkers";
|
|
300
|
+
const _AODR = "AdsOnDeliveryRestrictions";
|
|
301
|
+
const _AT = "AdTriggers";
|
|
302
|
+
const _Ar = "Arn";
|
|
303
|
+
const _BN = "BucketName";
|
|
304
|
+
const _C = "Channel";
|
|
305
|
+
const _CA = "CreatedAt";
|
|
306
|
+
const _CAe = "CertificateArn";
|
|
307
|
+
const _CC = "CreateChannel";
|
|
308
|
+
const _CCR = "CreateChannelRequest";
|
|
309
|
+
const _CCRr = "CreateChannelResponse";
|
|
310
|
+
const _CE = "CmafEncryption";
|
|
311
|
+
const _CHJ = "CreateHarvestJob";
|
|
312
|
+
const _CHJR = "CreateHarvestJobRequest";
|
|
313
|
+
const _CHJRr = "CreateHarvestJobResponse";
|
|
1462
314
|
const _CI = "ChannelId";
|
|
315
|
+
const _CIS = "CdnIdentifierSecret";
|
|
316
|
+
const _CIV = "ConstantInitializationVector";
|
|
317
|
+
const _CL = "ConfigureLogs";
|
|
318
|
+
const _CLR = "ConfigureLogsRequest";
|
|
319
|
+
const _CLRo = "ConfigureLogsResponse";
|
|
320
|
+
const _COE = "CreateOriginEndpoint";
|
|
321
|
+
const _COER = "CreateOriginEndpointRequest";
|
|
322
|
+
const _COERr = "CreateOriginEndpointResponse";
|
|
323
|
+
const _CP = "CmafPackage";
|
|
324
|
+
const _CPCOUP = "CmafPackageCreateOrUpdateParameters";
|
|
325
|
+
const _Ch = "Channels";
|
|
326
|
+
const _D = "Description";
|
|
327
|
+
const _DC = "DeleteChannel";
|
|
328
|
+
const _DCR = "DeleteChannelRequest";
|
|
329
|
+
const _DCRe = "DeleteChannelResponse";
|
|
330
|
+
const _DCRes = "DescribeChannelRequest";
|
|
331
|
+
const _DCResc = "DescribeChannelResponse";
|
|
332
|
+
const _DCe = "DescribeChannel";
|
|
333
|
+
const _DE = "DashEncryption";
|
|
334
|
+
const _DHJ = "DescribeHarvestJob";
|
|
335
|
+
const _DHJR = "DescribeHarvestJobRequest";
|
|
336
|
+
const _DHJRe = "DescribeHarvestJobResponse";
|
|
337
|
+
const _DOE = "DeleteOriginEndpoint";
|
|
338
|
+
const _DOER = "DeleteOriginEndpointRequest";
|
|
339
|
+
const _DOERe = "DeleteOriginEndpointResponse";
|
|
340
|
+
const _DOERes = "DescribeOriginEndpointRequest";
|
|
341
|
+
const _DOEResc = "DescribeOriginEndpointResponse";
|
|
342
|
+
const _DOEe = "DescribeOriginEndpoint";
|
|
343
|
+
const _DP = "DashPackage";
|
|
344
|
+
const _E = "Encryption";
|
|
345
|
+
const _EAL = "EgressAccessLogs";
|
|
346
|
+
const _ECC = "EncryptionContractConfiguration";
|
|
347
|
+
const _EM = "EncryptionMethod";
|
|
348
|
+
const _ET = "EndTime";
|
|
349
|
+
const _FE = "ForbiddenException";
|
|
350
|
+
const _HE = "HlsEncryption";
|
|
351
|
+
const _HI = "HlsIngest";
|
|
352
|
+
const _HJ = "HarvestJob";
|
|
353
|
+
const _HJa = "HarvestJobs";
|
|
354
|
+
const _HM = "HlsManifests";
|
|
355
|
+
const _HMCOUP = "HlsManifestCreateOrUpdateParameters";
|
|
356
|
+
const _HMl = "HlsManifest";
|
|
357
|
+
const _HP = "HlsPackage";
|
|
358
|
+
const _I = "Id";
|
|
359
|
+
const _IAL = "IngressAccessLogs";
|
|
1463
360
|
const _ICI = "IncludeChannelId";
|
|
361
|
+
const _IDS = "IncludeDvbSubtitles";
|
|
362
|
+
const _IE = "IngestEndpoints";
|
|
363
|
+
const _IEI = "IngestEndpointId";
|
|
364
|
+
const _IEn = "IngestEndpoint";
|
|
365
|
+
const _IIOS = "IncludeIframeOnlyStream";
|
|
1464
366
|
const _IS = "IncludeStatus";
|
|
367
|
+
const _ISEE = "InternalServerErrorException";
|
|
368
|
+
const _KRIS = "KeyRotationIntervalSeconds";
|
|
369
|
+
const _LC = "ListChannels";
|
|
370
|
+
const _LCR = "ListChannelsRequest";
|
|
371
|
+
const _LCRi = "ListChannelsResponse";
|
|
372
|
+
const _LGN = "LogGroupName";
|
|
373
|
+
const _LHJ = "ListHarvestJobs";
|
|
374
|
+
const _LHJR = "ListHarvestJobsRequest";
|
|
375
|
+
const _LHJRi = "ListHarvestJobsResponse";
|
|
376
|
+
const _LOE = "ListOriginEndpoints";
|
|
377
|
+
const _LOER = "ListOriginEndpointsRequest";
|
|
378
|
+
const _LOERi = "ListOriginEndpointsResponse";
|
|
379
|
+
const _LTFR = "ListTagsForResource";
|
|
380
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
381
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
382
|
+
const _M = "Message";
|
|
383
|
+
const _MBTS = "MinBufferTimeSeconds";
|
|
384
|
+
const _ME = "MssEncryption";
|
|
385
|
+
const _MK = "ManifestKey";
|
|
386
|
+
const _ML = "ManifestLayout";
|
|
387
|
+
const _MN = "ManifestName";
|
|
388
|
+
const _MP = "MssPackage";
|
|
1465
389
|
const _MR = "MaxResults";
|
|
390
|
+
const _MUPS = "MinUpdatePeriodSeconds";
|
|
391
|
+
const _MVBPS = "MaxVideoBitsPerSecond";
|
|
392
|
+
const _MVBPSi = "MinVideoBitsPerSecond";
|
|
393
|
+
const _MWS = "ManifestWindowSeconds";
|
|
394
|
+
const _NFE = "NotFoundException";
|
|
1466
395
|
const _NT = "NextToken";
|
|
396
|
+
const _O = "Origination";
|
|
397
|
+
const _OE = "OriginEndpoints";
|
|
398
|
+
const _OEI = "OriginEndpointId";
|
|
399
|
+
const _OEr = "OriginEndpoint";
|
|
400
|
+
const _P = "Profile";
|
|
401
|
+
const _PDTIS = "ProgramDateTimeIntervalSeconds";
|
|
402
|
+
const _PSA = "PresetSpeke20Audio";
|
|
403
|
+
const _PSV = "PresetSpeke20Video";
|
|
404
|
+
const _PT = "PeriodTriggers";
|
|
405
|
+
const _PTl = "PlaylistType";
|
|
406
|
+
const _PWS = "PlaylistWindowSeconds";
|
|
407
|
+
const _Pa = "Password";
|
|
408
|
+
const _RA = "ResourceArn";
|
|
409
|
+
const _RAo = "RoleArn";
|
|
410
|
+
const _RCC = "RotateChannelCredentials";
|
|
411
|
+
const _RCCR = "RotateChannelCredentialsRequest";
|
|
412
|
+
const _RCCRo = "RotateChannelCredentialsResponse";
|
|
413
|
+
const _REXK = "RepeatExtXKey";
|
|
414
|
+
const _RI = "ResourceId";
|
|
415
|
+
const _RIEC = "RotateIngestEndpointCredentials";
|
|
416
|
+
const _RIECR = "RotateIngestEndpointCredentialsRequest";
|
|
417
|
+
const _RIECRo = "RotateIngestEndpointCredentialsResponse";
|
|
418
|
+
const _S = "Status";
|
|
419
|
+
const _SD = "S3Destination";
|
|
420
|
+
const _SDS = "SegmentDurationSeconds";
|
|
421
|
+
const _SI = "SystemIds";
|
|
422
|
+
const _SKP = "SpekeKeyProvider";
|
|
423
|
+
const _SO = "StreamOrder";
|
|
424
|
+
const _SP = "SegmentPrefix";
|
|
425
|
+
const _SPDS = "SuggestedPresentationDelaySeconds";
|
|
426
|
+
const _SRA = "SecretsRoleArn";
|
|
427
|
+
const _SS = "SensitiveString";
|
|
428
|
+
const _SSt = "StreamSelection";
|
|
429
|
+
const _ST = "StartTime";
|
|
430
|
+
const _STF = "SegmentTemplateFormat";
|
|
431
|
+
const _SUE = "ServiceUnavailableException";
|
|
432
|
+
const _SWS = "StartoverWindowSeconds";
|
|
433
|
+
const _T = "Tags";
|
|
434
|
+
const _TDS = "TimeDelaySeconds";
|
|
1467
435
|
const _TK = "TagKeys";
|
|
436
|
+
const _TMRE = "TooManyRequestsException";
|
|
437
|
+
const _TR = "TagResource";
|
|
438
|
+
const _TRR = "TagResourceRequest";
|
|
439
|
+
const _U = "Url";
|
|
440
|
+
const _UARG = "UseAudioRenditionGroup";
|
|
441
|
+
const _UC = "UpdateChannel";
|
|
442
|
+
const _UCR = "UpdateChannelRequest";
|
|
443
|
+
const _UCRp = "UpdateChannelResponse";
|
|
444
|
+
const _UEE = "UnprocessableEntityException";
|
|
445
|
+
const _UOE = "UpdateOriginEndpoint";
|
|
446
|
+
const _UOER = "UpdateOriginEndpointRequest";
|
|
447
|
+
const _UOERp = "UpdateOriginEndpointResponse";
|
|
448
|
+
const _UR = "UntagResource";
|
|
449
|
+
const _URR = "UntagResourceRequest";
|
|
450
|
+
const _UT = "UtcTiming";
|
|
451
|
+
const _UTU = "UtcTimingUri";
|
|
452
|
+
const _Us = "Username";
|
|
453
|
+
const _W = "Whitelist";
|
|
454
|
+
const _a = "arn";
|
|
455
|
+
const _aM = "adMarkers";
|
|
456
|
+
const _aODR = "adsOnDeliveryRestrictions";
|
|
457
|
+
const _aT = "adTriggers";
|
|
458
|
+
const _au = "authorization";
|
|
459
|
+
const _bN = "bucketName";
|
|
460
|
+
const _c = "client";
|
|
461
|
+
const _cA = "createdAt";
|
|
462
|
+
const _cAe = "certificateArn";
|
|
1468
463
|
const _cI = "channelId";
|
|
464
|
+
const _cIS = "cdnIdentifierSecret";
|
|
465
|
+
const _cIV = "constantInitializationVector";
|
|
466
|
+
const _cP = "cmafPackage";
|
|
467
|
+
const _ch = "channels";
|
|
468
|
+
const _d = "description";
|
|
469
|
+
const _dP = "dashPackage";
|
|
470
|
+
const _e = "encryption";
|
|
471
|
+
const _eAL = "egressAccessLogs";
|
|
472
|
+
const _eCC = "encryptionContractConfiguration";
|
|
473
|
+
const _eM = "encryptionMethod";
|
|
474
|
+
const _eT = "endTime";
|
|
475
|
+
const _er = "error";
|
|
476
|
+
const _h = "http";
|
|
477
|
+
const _hE = "httpError";
|
|
478
|
+
const _hI = "hlsIngest";
|
|
479
|
+
const _hJ = "harvestJobs";
|
|
480
|
+
const _hM = "hlsManifests";
|
|
481
|
+
const _hP = "hlsPackage";
|
|
482
|
+
const _hQ = "httpQuery";
|
|
483
|
+
const _i = "id";
|
|
484
|
+
const _iAL = "ingressAccessLogs";
|
|
1469
485
|
const _iCI = "includeChannelId";
|
|
486
|
+
const _iDS = "includeDvbSubtitles";
|
|
487
|
+
const _iE = "ingestEndpoints";
|
|
488
|
+
const _iIOS = "includeIframeOnlyStream";
|
|
1470
489
|
const _iS = "includeStatus";
|
|
490
|
+
const _jN = "jsonName";
|
|
491
|
+
const _kRIS = "keyRotationIntervalSeconds";
|
|
492
|
+
const _lGN = "logGroupName";
|
|
493
|
+
const _lOC = "__listOfChannel";
|
|
494
|
+
const _lOHJ = "__listOfHarvestJob";
|
|
495
|
+
const _lOHM = "__listOfHlsManifest";
|
|
496
|
+
const _lOHMCOUP = "__listOfHlsManifestCreateOrUpdateParameters";
|
|
497
|
+
const _lOIE = "__listOfIngestEndpoint";
|
|
498
|
+
const _lOOE = "__listOfOriginEndpoint";
|
|
499
|
+
const _m = "message";
|
|
500
|
+
const _mBTS = "minBufferTimeSeconds";
|
|
501
|
+
const _mK = "manifestKey";
|
|
502
|
+
const _mL = "manifestLayout";
|
|
503
|
+
const _mN = "manifestName";
|
|
504
|
+
const _mP = "mssPackage";
|
|
1471
505
|
const _mR = "maxResults";
|
|
506
|
+
const _mUPS = "minUpdatePeriodSeconds";
|
|
507
|
+
const _mVBPS = "maxVideoBitsPerSecond";
|
|
508
|
+
const _mVBPSi = "minVideoBitsPerSecond";
|
|
509
|
+
const _mWS = "manifestWindowSeconds";
|
|
1472
510
|
const _nT = "nextToken";
|
|
511
|
+
const _o = "origination";
|
|
512
|
+
const _oE = "originEndpoints";
|
|
513
|
+
const _oEI = "originEndpointId";
|
|
514
|
+
const _p = "profile";
|
|
515
|
+
const _pDTIS = "programDateTimeIntervalSeconds";
|
|
516
|
+
const _pSA = "presetSpeke20Audio";
|
|
517
|
+
const _pSV = "presetSpeke20Video";
|
|
518
|
+
const _pT = "periodTriggers";
|
|
519
|
+
const _pTl = "playlistType";
|
|
520
|
+
const _pWS = "playlistWindowSeconds";
|
|
521
|
+
const _pa = "password";
|
|
522
|
+
const _rA = "roleArn";
|
|
523
|
+
const _rEXK = "repeatExtXKey";
|
|
524
|
+
const _rI = "resourceId";
|
|
525
|
+
const _s = "status";
|
|
526
|
+
const _sD = "s3Destination";
|
|
527
|
+
const _sDS = "segmentDurationSeconds";
|
|
528
|
+
const _sI = "systemIds";
|
|
529
|
+
const _sKP = "spekeKeyProvider";
|
|
530
|
+
const _sO = "streamOrder";
|
|
531
|
+
const _sP = "segmentPrefix";
|
|
532
|
+
const _sPDS = "suggestedPresentationDelaySeconds";
|
|
533
|
+
const _sRA = "secretsRoleArn";
|
|
534
|
+
const _sS = "streamSelection";
|
|
535
|
+
const _sT = "startTime";
|
|
536
|
+
const _sTF = "segmentTemplateFormat";
|
|
537
|
+
const _sWS = "startoverWindowSeconds";
|
|
538
|
+
const _se = "server";
|
|
539
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mediapackage";
|
|
540
|
+
const _t = "tags";
|
|
541
|
+
const _tDS = "timeDelaySeconds";
|
|
1473
542
|
const _tK = "tagKeys";
|
|
543
|
+
const _u = "url";
|
|
544
|
+
const _uARG = "useAudioRenditionGroup";
|
|
545
|
+
const _uT = "utcTiming";
|
|
546
|
+
const _uTU = "utcTimingUri";
|
|
547
|
+
const _us = "username";
|
|
548
|
+
const _w = "whitelist";
|
|
549
|
+
const n0 = "com.amazonaws.mediapackage";
|
|
550
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
551
|
+
var Authorization = [
|
|
552
|
+
3,
|
|
553
|
+
n0,
|
|
554
|
+
_A,
|
|
555
|
+
0,
|
|
556
|
+
[_CIS, _SRA],
|
|
557
|
+
[
|
|
558
|
+
[
|
|
559
|
+
0,
|
|
560
|
+
{
|
|
561
|
+
[_jN]: _cIS,
|
|
562
|
+
},
|
|
563
|
+
],
|
|
564
|
+
[
|
|
565
|
+
0,
|
|
566
|
+
{
|
|
567
|
+
[_jN]: _sRA,
|
|
568
|
+
},
|
|
569
|
+
],
|
|
570
|
+
],
|
|
571
|
+
];
|
|
572
|
+
var Channel = [
|
|
573
|
+
3,
|
|
574
|
+
n0,
|
|
575
|
+
_C,
|
|
576
|
+
0,
|
|
577
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
578
|
+
[
|
|
579
|
+
[
|
|
580
|
+
0,
|
|
581
|
+
{
|
|
582
|
+
[_jN]: _a,
|
|
583
|
+
},
|
|
584
|
+
],
|
|
585
|
+
[
|
|
586
|
+
0,
|
|
587
|
+
{
|
|
588
|
+
[_jN]: _cA,
|
|
589
|
+
},
|
|
590
|
+
],
|
|
591
|
+
[
|
|
592
|
+
0,
|
|
593
|
+
{
|
|
594
|
+
[_jN]: _d,
|
|
595
|
+
},
|
|
596
|
+
],
|
|
597
|
+
[
|
|
598
|
+
() => EgressAccessLogs,
|
|
599
|
+
{
|
|
600
|
+
[_jN]: _eAL,
|
|
601
|
+
},
|
|
602
|
+
],
|
|
603
|
+
[
|
|
604
|
+
() => HlsIngest,
|
|
605
|
+
{
|
|
606
|
+
[_jN]: _hI,
|
|
607
|
+
},
|
|
608
|
+
],
|
|
609
|
+
[
|
|
610
|
+
0,
|
|
611
|
+
{
|
|
612
|
+
[_jN]: _i,
|
|
613
|
+
},
|
|
614
|
+
],
|
|
615
|
+
[
|
|
616
|
+
() => IngressAccessLogs,
|
|
617
|
+
{
|
|
618
|
+
[_jN]: _iAL,
|
|
619
|
+
},
|
|
620
|
+
],
|
|
621
|
+
[
|
|
622
|
+
128 | 0,
|
|
623
|
+
{
|
|
624
|
+
[_jN]: _t,
|
|
625
|
+
},
|
|
626
|
+
],
|
|
627
|
+
],
|
|
628
|
+
];
|
|
629
|
+
var CmafEncryption = [
|
|
630
|
+
3,
|
|
631
|
+
n0,
|
|
632
|
+
_CE,
|
|
633
|
+
0,
|
|
634
|
+
[_CIV, _EM, _KRIS, _SKP],
|
|
635
|
+
[
|
|
636
|
+
[
|
|
637
|
+
0,
|
|
638
|
+
{
|
|
639
|
+
[_jN]: _cIV,
|
|
640
|
+
},
|
|
641
|
+
],
|
|
642
|
+
[
|
|
643
|
+
0,
|
|
644
|
+
{
|
|
645
|
+
[_jN]: _eM,
|
|
646
|
+
},
|
|
647
|
+
],
|
|
648
|
+
[
|
|
649
|
+
1,
|
|
650
|
+
{
|
|
651
|
+
[_jN]: _kRIS,
|
|
652
|
+
},
|
|
653
|
+
],
|
|
654
|
+
[
|
|
655
|
+
() => SpekeKeyProvider,
|
|
656
|
+
{
|
|
657
|
+
[_jN]: _sKP,
|
|
658
|
+
},
|
|
659
|
+
],
|
|
660
|
+
],
|
|
661
|
+
];
|
|
662
|
+
var CmafPackage = [
|
|
663
|
+
3,
|
|
664
|
+
n0,
|
|
665
|
+
_CP,
|
|
666
|
+
0,
|
|
667
|
+
[_E, _HM, _SDS, _SP, _SSt],
|
|
668
|
+
[
|
|
669
|
+
[
|
|
670
|
+
() => CmafEncryption,
|
|
671
|
+
{
|
|
672
|
+
[_jN]: _e,
|
|
673
|
+
},
|
|
674
|
+
],
|
|
675
|
+
[
|
|
676
|
+
() => __listOfHlsManifest,
|
|
677
|
+
{
|
|
678
|
+
[_jN]: _hM,
|
|
679
|
+
},
|
|
680
|
+
],
|
|
681
|
+
[
|
|
682
|
+
1,
|
|
683
|
+
{
|
|
684
|
+
[_jN]: _sDS,
|
|
685
|
+
},
|
|
686
|
+
],
|
|
687
|
+
[
|
|
688
|
+
0,
|
|
689
|
+
{
|
|
690
|
+
[_jN]: _sP,
|
|
691
|
+
},
|
|
692
|
+
],
|
|
693
|
+
[
|
|
694
|
+
() => StreamSelection,
|
|
695
|
+
{
|
|
696
|
+
[_jN]: _sS,
|
|
697
|
+
},
|
|
698
|
+
],
|
|
699
|
+
],
|
|
700
|
+
];
|
|
701
|
+
var CmafPackageCreateOrUpdateParameters = [
|
|
702
|
+
3,
|
|
703
|
+
n0,
|
|
704
|
+
_CPCOUP,
|
|
705
|
+
0,
|
|
706
|
+
[_E, _HM, _SDS, _SP, _SSt],
|
|
707
|
+
[
|
|
708
|
+
[
|
|
709
|
+
() => CmafEncryption,
|
|
710
|
+
{
|
|
711
|
+
[_jN]: _e,
|
|
712
|
+
},
|
|
713
|
+
],
|
|
714
|
+
[
|
|
715
|
+
() => __listOfHlsManifestCreateOrUpdateParameters,
|
|
716
|
+
{
|
|
717
|
+
[_jN]: _hM,
|
|
718
|
+
},
|
|
719
|
+
],
|
|
720
|
+
[
|
|
721
|
+
1,
|
|
722
|
+
{
|
|
723
|
+
[_jN]: _sDS,
|
|
724
|
+
},
|
|
725
|
+
],
|
|
726
|
+
[
|
|
727
|
+
0,
|
|
728
|
+
{
|
|
729
|
+
[_jN]: _sP,
|
|
730
|
+
},
|
|
731
|
+
],
|
|
732
|
+
[
|
|
733
|
+
() => StreamSelection,
|
|
734
|
+
{
|
|
735
|
+
[_jN]: _sS,
|
|
736
|
+
},
|
|
737
|
+
],
|
|
738
|
+
],
|
|
739
|
+
];
|
|
740
|
+
var ConfigureLogsRequest = [
|
|
741
|
+
3,
|
|
742
|
+
n0,
|
|
743
|
+
_CLR,
|
|
744
|
+
0,
|
|
745
|
+
[_EAL, _I, _IAL],
|
|
746
|
+
[
|
|
747
|
+
[
|
|
748
|
+
() => EgressAccessLogs,
|
|
749
|
+
{
|
|
750
|
+
[_jN]: _eAL,
|
|
751
|
+
},
|
|
752
|
+
],
|
|
753
|
+
[0, 1],
|
|
754
|
+
[
|
|
755
|
+
() => IngressAccessLogs,
|
|
756
|
+
{
|
|
757
|
+
[_jN]: _iAL,
|
|
758
|
+
},
|
|
759
|
+
],
|
|
760
|
+
],
|
|
761
|
+
];
|
|
762
|
+
var ConfigureLogsResponse = [
|
|
763
|
+
3,
|
|
764
|
+
n0,
|
|
765
|
+
_CLRo,
|
|
766
|
+
0,
|
|
767
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
768
|
+
[
|
|
769
|
+
[
|
|
770
|
+
0,
|
|
771
|
+
{
|
|
772
|
+
[_jN]: _a,
|
|
773
|
+
},
|
|
774
|
+
],
|
|
775
|
+
[
|
|
776
|
+
0,
|
|
777
|
+
{
|
|
778
|
+
[_jN]: _cA,
|
|
779
|
+
},
|
|
780
|
+
],
|
|
781
|
+
[
|
|
782
|
+
0,
|
|
783
|
+
{
|
|
784
|
+
[_jN]: _d,
|
|
785
|
+
},
|
|
786
|
+
],
|
|
787
|
+
[
|
|
788
|
+
() => EgressAccessLogs,
|
|
789
|
+
{
|
|
790
|
+
[_jN]: _eAL,
|
|
791
|
+
},
|
|
792
|
+
],
|
|
793
|
+
[
|
|
794
|
+
() => HlsIngest,
|
|
795
|
+
{
|
|
796
|
+
[_jN]: _hI,
|
|
797
|
+
},
|
|
798
|
+
],
|
|
799
|
+
[
|
|
800
|
+
0,
|
|
801
|
+
{
|
|
802
|
+
[_jN]: _i,
|
|
803
|
+
},
|
|
804
|
+
],
|
|
805
|
+
[
|
|
806
|
+
() => IngressAccessLogs,
|
|
807
|
+
{
|
|
808
|
+
[_jN]: _iAL,
|
|
809
|
+
},
|
|
810
|
+
],
|
|
811
|
+
[
|
|
812
|
+
128 | 0,
|
|
813
|
+
{
|
|
814
|
+
[_jN]: _t,
|
|
815
|
+
},
|
|
816
|
+
],
|
|
817
|
+
],
|
|
818
|
+
];
|
|
819
|
+
var CreateChannelRequest = [
|
|
820
|
+
3,
|
|
821
|
+
n0,
|
|
822
|
+
_CCR,
|
|
823
|
+
0,
|
|
824
|
+
[_D, _I, _T],
|
|
825
|
+
[
|
|
826
|
+
[
|
|
827
|
+
0,
|
|
828
|
+
{
|
|
829
|
+
[_jN]: _d,
|
|
830
|
+
},
|
|
831
|
+
],
|
|
832
|
+
[
|
|
833
|
+
0,
|
|
834
|
+
{
|
|
835
|
+
[_jN]: _i,
|
|
836
|
+
},
|
|
837
|
+
],
|
|
838
|
+
[
|
|
839
|
+
128 | 0,
|
|
840
|
+
{
|
|
841
|
+
[_jN]: _t,
|
|
842
|
+
},
|
|
843
|
+
],
|
|
844
|
+
],
|
|
845
|
+
];
|
|
846
|
+
var CreateChannelResponse = [
|
|
847
|
+
3,
|
|
848
|
+
n0,
|
|
849
|
+
_CCRr,
|
|
850
|
+
0,
|
|
851
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
852
|
+
[
|
|
853
|
+
[
|
|
854
|
+
0,
|
|
855
|
+
{
|
|
856
|
+
[_jN]: _a,
|
|
857
|
+
},
|
|
858
|
+
],
|
|
859
|
+
[
|
|
860
|
+
0,
|
|
861
|
+
{
|
|
862
|
+
[_jN]: _cA,
|
|
863
|
+
},
|
|
864
|
+
],
|
|
865
|
+
[
|
|
866
|
+
0,
|
|
867
|
+
{
|
|
868
|
+
[_jN]: _d,
|
|
869
|
+
},
|
|
870
|
+
],
|
|
871
|
+
[
|
|
872
|
+
() => EgressAccessLogs,
|
|
873
|
+
{
|
|
874
|
+
[_jN]: _eAL,
|
|
875
|
+
},
|
|
876
|
+
],
|
|
877
|
+
[
|
|
878
|
+
() => HlsIngest,
|
|
879
|
+
{
|
|
880
|
+
[_jN]: _hI,
|
|
881
|
+
},
|
|
882
|
+
],
|
|
883
|
+
[
|
|
884
|
+
0,
|
|
885
|
+
{
|
|
886
|
+
[_jN]: _i,
|
|
887
|
+
},
|
|
888
|
+
],
|
|
889
|
+
[
|
|
890
|
+
() => IngressAccessLogs,
|
|
891
|
+
{
|
|
892
|
+
[_jN]: _iAL,
|
|
893
|
+
},
|
|
894
|
+
],
|
|
895
|
+
[
|
|
896
|
+
128 | 0,
|
|
897
|
+
{
|
|
898
|
+
[_jN]: _t,
|
|
899
|
+
},
|
|
900
|
+
],
|
|
901
|
+
],
|
|
902
|
+
];
|
|
903
|
+
var CreateHarvestJobRequest = [
|
|
904
|
+
3,
|
|
905
|
+
n0,
|
|
906
|
+
_CHJR,
|
|
907
|
+
0,
|
|
908
|
+
[_ET, _I, _OEI, _SD, _ST],
|
|
909
|
+
[
|
|
910
|
+
[
|
|
911
|
+
0,
|
|
912
|
+
{
|
|
913
|
+
[_jN]: _eT,
|
|
914
|
+
},
|
|
915
|
+
],
|
|
916
|
+
[
|
|
917
|
+
0,
|
|
918
|
+
{
|
|
919
|
+
[_jN]: _i,
|
|
920
|
+
},
|
|
921
|
+
],
|
|
922
|
+
[
|
|
923
|
+
0,
|
|
924
|
+
{
|
|
925
|
+
[_jN]: _oEI,
|
|
926
|
+
},
|
|
927
|
+
],
|
|
928
|
+
[
|
|
929
|
+
() => S3Destination,
|
|
930
|
+
{
|
|
931
|
+
[_jN]: _sD,
|
|
932
|
+
},
|
|
933
|
+
],
|
|
934
|
+
[
|
|
935
|
+
0,
|
|
936
|
+
{
|
|
937
|
+
[_jN]: _sT,
|
|
938
|
+
},
|
|
939
|
+
],
|
|
940
|
+
],
|
|
941
|
+
];
|
|
942
|
+
var CreateHarvestJobResponse = [
|
|
943
|
+
3,
|
|
944
|
+
n0,
|
|
945
|
+
_CHJRr,
|
|
946
|
+
0,
|
|
947
|
+
[_Ar, _CI, _CA, _ET, _I, _OEI, _SD, _ST, _S],
|
|
948
|
+
[
|
|
949
|
+
[
|
|
950
|
+
0,
|
|
951
|
+
{
|
|
952
|
+
[_jN]: _a,
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
[
|
|
956
|
+
0,
|
|
957
|
+
{
|
|
958
|
+
[_jN]: _cI,
|
|
959
|
+
},
|
|
960
|
+
],
|
|
961
|
+
[
|
|
962
|
+
0,
|
|
963
|
+
{
|
|
964
|
+
[_jN]: _cA,
|
|
965
|
+
},
|
|
966
|
+
],
|
|
967
|
+
[
|
|
968
|
+
0,
|
|
969
|
+
{
|
|
970
|
+
[_jN]: _eT,
|
|
971
|
+
},
|
|
972
|
+
],
|
|
973
|
+
[
|
|
974
|
+
0,
|
|
975
|
+
{
|
|
976
|
+
[_jN]: _i,
|
|
977
|
+
},
|
|
978
|
+
],
|
|
979
|
+
[
|
|
980
|
+
0,
|
|
981
|
+
{
|
|
982
|
+
[_jN]: _oEI,
|
|
983
|
+
},
|
|
984
|
+
],
|
|
985
|
+
[
|
|
986
|
+
() => S3Destination,
|
|
987
|
+
{
|
|
988
|
+
[_jN]: _sD,
|
|
989
|
+
},
|
|
990
|
+
],
|
|
991
|
+
[
|
|
992
|
+
0,
|
|
993
|
+
{
|
|
994
|
+
[_jN]: _sT,
|
|
995
|
+
},
|
|
996
|
+
],
|
|
997
|
+
[
|
|
998
|
+
0,
|
|
999
|
+
{
|
|
1000
|
+
[_jN]: _s,
|
|
1001
|
+
},
|
|
1002
|
+
],
|
|
1003
|
+
],
|
|
1004
|
+
];
|
|
1005
|
+
var CreateOriginEndpointRequest = [
|
|
1006
|
+
3,
|
|
1007
|
+
n0,
|
|
1008
|
+
_COER,
|
|
1009
|
+
0,
|
|
1010
|
+
[_A, _CI, _CP, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _W],
|
|
1011
|
+
[
|
|
1012
|
+
[
|
|
1013
|
+
() => Authorization,
|
|
1014
|
+
{
|
|
1015
|
+
[_jN]: _au,
|
|
1016
|
+
},
|
|
1017
|
+
],
|
|
1018
|
+
[
|
|
1019
|
+
0,
|
|
1020
|
+
{
|
|
1021
|
+
[_jN]: _cI,
|
|
1022
|
+
},
|
|
1023
|
+
],
|
|
1024
|
+
[
|
|
1025
|
+
() => CmafPackageCreateOrUpdateParameters,
|
|
1026
|
+
{
|
|
1027
|
+
[_jN]: _cP,
|
|
1028
|
+
},
|
|
1029
|
+
],
|
|
1030
|
+
[
|
|
1031
|
+
() => DashPackage,
|
|
1032
|
+
{
|
|
1033
|
+
[_jN]: _dP,
|
|
1034
|
+
},
|
|
1035
|
+
],
|
|
1036
|
+
[
|
|
1037
|
+
0,
|
|
1038
|
+
{
|
|
1039
|
+
[_jN]: _d,
|
|
1040
|
+
},
|
|
1041
|
+
],
|
|
1042
|
+
[
|
|
1043
|
+
() => HlsPackage,
|
|
1044
|
+
{
|
|
1045
|
+
[_jN]: _hP,
|
|
1046
|
+
},
|
|
1047
|
+
],
|
|
1048
|
+
[
|
|
1049
|
+
0,
|
|
1050
|
+
{
|
|
1051
|
+
[_jN]: _i,
|
|
1052
|
+
},
|
|
1053
|
+
],
|
|
1054
|
+
[
|
|
1055
|
+
0,
|
|
1056
|
+
{
|
|
1057
|
+
[_jN]: _mN,
|
|
1058
|
+
},
|
|
1059
|
+
],
|
|
1060
|
+
[
|
|
1061
|
+
() => MssPackage,
|
|
1062
|
+
{
|
|
1063
|
+
[_jN]: _mP,
|
|
1064
|
+
},
|
|
1065
|
+
],
|
|
1066
|
+
[
|
|
1067
|
+
0,
|
|
1068
|
+
{
|
|
1069
|
+
[_jN]: _o,
|
|
1070
|
+
},
|
|
1071
|
+
],
|
|
1072
|
+
[
|
|
1073
|
+
1,
|
|
1074
|
+
{
|
|
1075
|
+
[_jN]: _sWS,
|
|
1076
|
+
},
|
|
1077
|
+
],
|
|
1078
|
+
[
|
|
1079
|
+
128 | 0,
|
|
1080
|
+
{
|
|
1081
|
+
[_jN]: _t,
|
|
1082
|
+
},
|
|
1083
|
+
],
|
|
1084
|
+
[
|
|
1085
|
+
1,
|
|
1086
|
+
{
|
|
1087
|
+
[_jN]: _tDS,
|
|
1088
|
+
},
|
|
1089
|
+
],
|
|
1090
|
+
[
|
|
1091
|
+
64 | 0,
|
|
1092
|
+
{
|
|
1093
|
+
[_jN]: _w,
|
|
1094
|
+
},
|
|
1095
|
+
],
|
|
1096
|
+
],
|
|
1097
|
+
];
|
|
1098
|
+
var CreateOriginEndpointResponse = [
|
|
1099
|
+
3,
|
|
1100
|
+
n0,
|
|
1101
|
+
_COERr,
|
|
1102
|
+
0,
|
|
1103
|
+
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
1104
|
+
[
|
|
1105
|
+
[
|
|
1106
|
+
0,
|
|
1107
|
+
{
|
|
1108
|
+
[_jN]: _a,
|
|
1109
|
+
},
|
|
1110
|
+
],
|
|
1111
|
+
[
|
|
1112
|
+
() => Authorization,
|
|
1113
|
+
{
|
|
1114
|
+
[_jN]: _au,
|
|
1115
|
+
},
|
|
1116
|
+
],
|
|
1117
|
+
[
|
|
1118
|
+
0,
|
|
1119
|
+
{
|
|
1120
|
+
[_jN]: _cI,
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
[
|
|
1124
|
+
() => CmafPackage,
|
|
1125
|
+
{
|
|
1126
|
+
[_jN]: _cP,
|
|
1127
|
+
},
|
|
1128
|
+
],
|
|
1129
|
+
[
|
|
1130
|
+
0,
|
|
1131
|
+
{
|
|
1132
|
+
[_jN]: _cA,
|
|
1133
|
+
},
|
|
1134
|
+
],
|
|
1135
|
+
[
|
|
1136
|
+
() => DashPackage,
|
|
1137
|
+
{
|
|
1138
|
+
[_jN]: _dP,
|
|
1139
|
+
},
|
|
1140
|
+
],
|
|
1141
|
+
[
|
|
1142
|
+
0,
|
|
1143
|
+
{
|
|
1144
|
+
[_jN]: _d,
|
|
1145
|
+
},
|
|
1146
|
+
],
|
|
1147
|
+
[
|
|
1148
|
+
() => HlsPackage,
|
|
1149
|
+
{
|
|
1150
|
+
[_jN]: _hP,
|
|
1151
|
+
},
|
|
1152
|
+
],
|
|
1153
|
+
[
|
|
1154
|
+
0,
|
|
1155
|
+
{
|
|
1156
|
+
[_jN]: _i,
|
|
1157
|
+
},
|
|
1158
|
+
],
|
|
1159
|
+
[
|
|
1160
|
+
0,
|
|
1161
|
+
{
|
|
1162
|
+
[_jN]: _mN,
|
|
1163
|
+
},
|
|
1164
|
+
],
|
|
1165
|
+
[
|
|
1166
|
+
() => MssPackage,
|
|
1167
|
+
{
|
|
1168
|
+
[_jN]: _mP,
|
|
1169
|
+
},
|
|
1170
|
+
],
|
|
1171
|
+
[
|
|
1172
|
+
0,
|
|
1173
|
+
{
|
|
1174
|
+
[_jN]: _o,
|
|
1175
|
+
},
|
|
1176
|
+
],
|
|
1177
|
+
[
|
|
1178
|
+
1,
|
|
1179
|
+
{
|
|
1180
|
+
[_jN]: _sWS,
|
|
1181
|
+
},
|
|
1182
|
+
],
|
|
1183
|
+
[
|
|
1184
|
+
128 | 0,
|
|
1185
|
+
{
|
|
1186
|
+
[_jN]: _t,
|
|
1187
|
+
},
|
|
1188
|
+
],
|
|
1189
|
+
[
|
|
1190
|
+
1,
|
|
1191
|
+
{
|
|
1192
|
+
[_jN]: _tDS,
|
|
1193
|
+
},
|
|
1194
|
+
],
|
|
1195
|
+
[
|
|
1196
|
+
0,
|
|
1197
|
+
{
|
|
1198
|
+
[_jN]: _u,
|
|
1199
|
+
},
|
|
1200
|
+
],
|
|
1201
|
+
[
|
|
1202
|
+
64 | 0,
|
|
1203
|
+
{
|
|
1204
|
+
[_jN]: _w,
|
|
1205
|
+
},
|
|
1206
|
+
],
|
|
1207
|
+
],
|
|
1208
|
+
];
|
|
1209
|
+
var DashEncryption = [
|
|
1210
|
+
3,
|
|
1211
|
+
n0,
|
|
1212
|
+
_DE,
|
|
1213
|
+
0,
|
|
1214
|
+
[_KRIS, _SKP],
|
|
1215
|
+
[
|
|
1216
|
+
[
|
|
1217
|
+
1,
|
|
1218
|
+
{
|
|
1219
|
+
[_jN]: _kRIS,
|
|
1220
|
+
},
|
|
1221
|
+
],
|
|
1222
|
+
[
|
|
1223
|
+
() => SpekeKeyProvider,
|
|
1224
|
+
{
|
|
1225
|
+
[_jN]: _sKP,
|
|
1226
|
+
},
|
|
1227
|
+
],
|
|
1228
|
+
],
|
|
1229
|
+
];
|
|
1230
|
+
var DashPackage = [
|
|
1231
|
+
3,
|
|
1232
|
+
n0,
|
|
1233
|
+
_DP,
|
|
1234
|
+
0,
|
|
1235
|
+
[_AT, _AODR, _E, _IIOS, _ML, _MWS, _MBTS, _MUPS, _PT, _P, _SDS, _STF, _SSt, _SPDS, _UT, _UTU],
|
|
1236
|
+
[
|
|
1237
|
+
[
|
|
1238
|
+
64 | 0,
|
|
1239
|
+
{
|
|
1240
|
+
[_jN]: _aT,
|
|
1241
|
+
},
|
|
1242
|
+
],
|
|
1243
|
+
[
|
|
1244
|
+
0,
|
|
1245
|
+
{
|
|
1246
|
+
[_jN]: _aODR,
|
|
1247
|
+
},
|
|
1248
|
+
],
|
|
1249
|
+
[
|
|
1250
|
+
() => DashEncryption,
|
|
1251
|
+
{
|
|
1252
|
+
[_jN]: _e,
|
|
1253
|
+
},
|
|
1254
|
+
],
|
|
1255
|
+
[
|
|
1256
|
+
2,
|
|
1257
|
+
{
|
|
1258
|
+
[_jN]: _iIOS,
|
|
1259
|
+
},
|
|
1260
|
+
],
|
|
1261
|
+
[
|
|
1262
|
+
0,
|
|
1263
|
+
{
|
|
1264
|
+
[_jN]: _mL,
|
|
1265
|
+
},
|
|
1266
|
+
],
|
|
1267
|
+
[
|
|
1268
|
+
1,
|
|
1269
|
+
{
|
|
1270
|
+
[_jN]: _mWS,
|
|
1271
|
+
},
|
|
1272
|
+
],
|
|
1273
|
+
[
|
|
1274
|
+
1,
|
|
1275
|
+
{
|
|
1276
|
+
[_jN]: _mBTS,
|
|
1277
|
+
},
|
|
1278
|
+
],
|
|
1279
|
+
[
|
|
1280
|
+
1,
|
|
1281
|
+
{
|
|
1282
|
+
[_jN]: _mUPS,
|
|
1283
|
+
},
|
|
1284
|
+
],
|
|
1285
|
+
[
|
|
1286
|
+
64 | 0,
|
|
1287
|
+
{
|
|
1288
|
+
[_jN]: _pT,
|
|
1289
|
+
},
|
|
1290
|
+
],
|
|
1291
|
+
[
|
|
1292
|
+
0,
|
|
1293
|
+
{
|
|
1294
|
+
[_jN]: _p,
|
|
1295
|
+
},
|
|
1296
|
+
],
|
|
1297
|
+
[
|
|
1298
|
+
1,
|
|
1299
|
+
{
|
|
1300
|
+
[_jN]: _sDS,
|
|
1301
|
+
},
|
|
1302
|
+
],
|
|
1303
|
+
[
|
|
1304
|
+
0,
|
|
1305
|
+
{
|
|
1306
|
+
[_jN]: _sTF,
|
|
1307
|
+
},
|
|
1308
|
+
],
|
|
1309
|
+
[
|
|
1310
|
+
() => StreamSelection,
|
|
1311
|
+
{
|
|
1312
|
+
[_jN]: _sS,
|
|
1313
|
+
},
|
|
1314
|
+
],
|
|
1315
|
+
[
|
|
1316
|
+
1,
|
|
1317
|
+
{
|
|
1318
|
+
[_jN]: _sPDS,
|
|
1319
|
+
},
|
|
1320
|
+
],
|
|
1321
|
+
[
|
|
1322
|
+
0,
|
|
1323
|
+
{
|
|
1324
|
+
[_jN]: _uT,
|
|
1325
|
+
},
|
|
1326
|
+
],
|
|
1327
|
+
[
|
|
1328
|
+
0,
|
|
1329
|
+
{
|
|
1330
|
+
[_jN]: _uTU,
|
|
1331
|
+
},
|
|
1332
|
+
],
|
|
1333
|
+
],
|
|
1334
|
+
];
|
|
1335
|
+
var DeleteChannelRequest = [3, n0, _DCR, 0, [_I], [[0, 1]]];
|
|
1336
|
+
var DeleteChannelResponse = [3, n0, _DCRe, 0, [], []];
|
|
1337
|
+
var DeleteOriginEndpointRequest = [3, n0, _DOER, 0, [_I], [[0, 1]]];
|
|
1338
|
+
var DeleteOriginEndpointResponse = [3, n0, _DOERe, 0, [], []];
|
|
1339
|
+
var DescribeChannelRequest = [3, n0, _DCRes, 0, [_I], [[0, 1]]];
|
|
1340
|
+
var DescribeChannelResponse = [
|
|
1341
|
+
3,
|
|
1342
|
+
n0,
|
|
1343
|
+
_DCResc,
|
|
1344
|
+
0,
|
|
1345
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
1346
|
+
[
|
|
1347
|
+
[
|
|
1348
|
+
0,
|
|
1349
|
+
{
|
|
1350
|
+
[_jN]: _a,
|
|
1351
|
+
},
|
|
1352
|
+
],
|
|
1353
|
+
[
|
|
1354
|
+
0,
|
|
1355
|
+
{
|
|
1356
|
+
[_jN]: _cA,
|
|
1357
|
+
},
|
|
1358
|
+
],
|
|
1359
|
+
[
|
|
1360
|
+
0,
|
|
1361
|
+
{
|
|
1362
|
+
[_jN]: _d,
|
|
1363
|
+
},
|
|
1364
|
+
],
|
|
1365
|
+
[
|
|
1366
|
+
() => EgressAccessLogs,
|
|
1367
|
+
{
|
|
1368
|
+
[_jN]: _eAL,
|
|
1369
|
+
},
|
|
1370
|
+
],
|
|
1371
|
+
[
|
|
1372
|
+
() => HlsIngest,
|
|
1373
|
+
{
|
|
1374
|
+
[_jN]: _hI,
|
|
1375
|
+
},
|
|
1376
|
+
],
|
|
1377
|
+
[
|
|
1378
|
+
0,
|
|
1379
|
+
{
|
|
1380
|
+
[_jN]: _i,
|
|
1381
|
+
},
|
|
1382
|
+
],
|
|
1383
|
+
[
|
|
1384
|
+
() => IngressAccessLogs,
|
|
1385
|
+
{
|
|
1386
|
+
[_jN]: _iAL,
|
|
1387
|
+
},
|
|
1388
|
+
],
|
|
1389
|
+
[
|
|
1390
|
+
128 | 0,
|
|
1391
|
+
{
|
|
1392
|
+
[_jN]: _t,
|
|
1393
|
+
},
|
|
1394
|
+
],
|
|
1395
|
+
],
|
|
1396
|
+
];
|
|
1397
|
+
var DescribeHarvestJobRequest = [3, n0, _DHJR, 0, [_I], [[0, 1]]];
|
|
1398
|
+
var DescribeHarvestJobResponse = [
|
|
1399
|
+
3,
|
|
1400
|
+
n0,
|
|
1401
|
+
_DHJRe,
|
|
1402
|
+
0,
|
|
1403
|
+
[_Ar, _CI, _CA, _ET, _I, _OEI, _SD, _ST, _S],
|
|
1404
|
+
[
|
|
1405
|
+
[
|
|
1406
|
+
0,
|
|
1407
|
+
{
|
|
1408
|
+
[_jN]: _a,
|
|
1409
|
+
},
|
|
1410
|
+
],
|
|
1411
|
+
[
|
|
1412
|
+
0,
|
|
1413
|
+
{
|
|
1414
|
+
[_jN]: _cI,
|
|
1415
|
+
},
|
|
1416
|
+
],
|
|
1417
|
+
[
|
|
1418
|
+
0,
|
|
1419
|
+
{
|
|
1420
|
+
[_jN]: _cA,
|
|
1421
|
+
},
|
|
1422
|
+
],
|
|
1423
|
+
[
|
|
1424
|
+
0,
|
|
1425
|
+
{
|
|
1426
|
+
[_jN]: _eT,
|
|
1427
|
+
},
|
|
1428
|
+
],
|
|
1429
|
+
[
|
|
1430
|
+
0,
|
|
1431
|
+
{
|
|
1432
|
+
[_jN]: _i,
|
|
1433
|
+
},
|
|
1434
|
+
],
|
|
1435
|
+
[
|
|
1436
|
+
0,
|
|
1437
|
+
{
|
|
1438
|
+
[_jN]: _oEI,
|
|
1439
|
+
},
|
|
1440
|
+
],
|
|
1441
|
+
[
|
|
1442
|
+
() => S3Destination,
|
|
1443
|
+
{
|
|
1444
|
+
[_jN]: _sD,
|
|
1445
|
+
},
|
|
1446
|
+
],
|
|
1447
|
+
[
|
|
1448
|
+
0,
|
|
1449
|
+
{
|
|
1450
|
+
[_jN]: _sT,
|
|
1451
|
+
},
|
|
1452
|
+
],
|
|
1453
|
+
[
|
|
1454
|
+
0,
|
|
1455
|
+
{
|
|
1456
|
+
[_jN]: _s,
|
|
1457
|
+
},
|
|
1458
|
+
],
|
|
1459
|
+
],
|
|
1460
|
+
];
|
|
1461
|
+
var DescribeOriginEndpointRequest = [3, n0, _DOERes, 0, [_I], [[0, 1]]];
|
|
1462
|
+
var DescribeOriginEndpointResponse = [
|
|
1463
|
+
3,
|
|
1464
|
+
n0,
|
|
1465
|
+
_DOEResc,
|
|
1466
|
+
0,
|
|
1467
|
+
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
1468
|
+
[
|
|
1469
|
+
[
|
|
1470
|
+
0,
|
|
1471
|
+
{
|
|
1472
|
+
[_jN]: _a,
|
|
1473
|
+
},
|
|
1474
|
+
],
|
|
1475
|
+
[
|
|
1476
|
+
() => Authorization,
|
|
1477
|
+
{
|
|
1478
|
+
[_jN]: _au,
|
|
1479
|
+
},
|
|
1480
|
+
],
|
|
1481
|
+
[
|
|
1482
|
+
0,
|
|
1483
|
+
{
|
|
1484
|
+
[_jN]: _cI,
|
|
1485
|
+
},
|
|
1486
|
+
],
|
|
1487
|
+
[
|
|
1488
|
+
() => CmafPackage,
|
|
1489
|
+
{
|
|
1490
|
+
[_jN]: _cP,
|
|
1491
|
+
},
|
|
1492
|
+
],
|
|
1493
|
+
[
|
|
1494
|
+
0,
|
|
1495
|
+
{
|
|
1496
|
+
[_jN]: _cA,
|
|
1497
|
+
},
|
|
1498
|
+
],
|
|
1499
|
+
[
|
|
1500
|
+
() => DashPackage,
|
|
1501
|
+
{
|
|
1502
|
+
[_jN]: _dP,
|
|
1503
|
+
},
|
|
1504
|
+
],
|
|
1505
|
+
[
|
|
1506
|
+
0,
|
|
1507
|
+
{
|
|
1508
|
+
[_jN]: _d,
|
|
1509
|
+
},
|
|
1510
|
+
],
|
|
1511
|
+
[
|
|
1512
|
+
() => HlsPackage,
|
|
1513
|
+
{
|
|
1514
|
+
[_jN]: _hP,
|
|
1515
|
+
},
|
|
1516
|
+
],
|
|
1517
|
+
[
|
|
1518
|
+
0,
|
|
1519
|
+
{
|
|
1520
|
+
[_jN]: _i,
|
|
1521
|
+
},
|
|
1522
|
+
],
|
|
1523
|
+
[
|
|
1524
|
+
0,
|
|
1525
|
+
{
|
|
1526
|
+
[_jN]: _mN,
|
|
1527
|
+
},
|
|
1528
|
+
],
|
|
1529
|
+
[
|
|
1530
|
+
() => MssPackage,
|
|
1531
|
+
{
|
|
1532
|
+
[_jN]: _mP,
|
|
1533
|
+
},
|
|
1534
|
+
],
|
|
1535
|
+
[
|
|
1536
|
+
0,
|
|
1537
|
+
{
|
|
1538
|
+
[_jN]: _o,
|
|
1539
|
+
},
|
|
1540
|
+
],
|
|
1541
|
+
[
|
|
1542
|
+
1,
|
|
1543
|
+
{
|
|
1544
|
+
[_jN]: _sWS,
|
|
1545
|
+
},
|
|
1546
|
+
],
|
|
1547
|
+
[
|
|
1548
|
+
128 | 0,
|
|
1549
|
+
{
|
|
1550
|
+
[_jN]: _t,
|
|
1551
|
+
},
|
|
1552
|
+
],
|
|
1553
|
+
[
|
|
1554
|
+
1,
|
|
1555
|
+
{
|
|
1556
|
+
[_jN]: _tDS,
|
|
1557
|
+
},
|
|
1558
|
+
],
|
|
1559
|
+
[
|
|
1560
|
+
0,
|
|
1561
|
+
{
|
|
1562
|
+
[_jN]: _u,
|
|
1563
|
+
},
|
|
1564
|
+
],
|
|
1565
|
+
[
|
|
1566
|
+
64 | 0,
|
|
1567
|
+
{
|
|
1568
|
+
[_jN]: _w,
|
|
1569
|
+
},
|
|
1570
|
+
],
|
|
1571
|
+
],
|
|
1572
|
+
];
|
|
1573
|
+
var EgressAccessLogs = [
|
|
1574
|
+
3,
|
|
1575
|
+
n0,
|
|
1576
|
+
_EAL,
|
|
1577
|
+
0,
|
|
1578
|
+
[_LGN],
|
|
1579
|
+
[
|
|
1580
|
+
[
|
|
1581
|
+
0,
|
|
1582
|
+
{
|
|
1583
|
+
[_jN]: _lGN,
|
|
1584
|
+
},
|
|
1585
|
+
],
|
|
1586
|
+
],
|
|
1587
|
+
];
|
|
1588
|
+
var EncryptionContractConfiguration = [
|
|
1589
|
+
3,
|
|
1590
|
+
n0,
|
|
1591
|
+
_ECC,
|
|
1592
|
+
0,
|
|
1593
|
+
[_PSA, _PSV],
|
|
1594
|
+
[
|
|
1595
|
+
[
|
|
1596
|
+
0,
|
|
1597
|
+
{
|
|
1598
|
+
[_jN]: _pSA,
|
|
1599
|
+
},
|
|
1600
|
+
],
|
|
1601
|
+
[
|
|
1602
|
+
0,
|
|
1603
|
+
{
|
|
1604
|
+
[_jN]: _pSV,
|
|
1605
|
+
},
|
|
1606
|
+
],
|
|
1607
|
+
],
|
|
1608
|
+
];
|
|
1609
|
+
var ForbiddenException = [
|
|
1610
|
+
-3,
|
|
1611
|
+
n0,
|
|
1612
|
+
_FE,
|
|
1613
|
+
{
|
|
1614
|
+
[_er]: _c,
|
|
1615
|
+
[_hE]: 403,
|
|
1616
|
+
},
|
|
1617
|
+
[_M],
|
|
1618
|
+
[
|
|
1619
|
+
[
|
|
1620
|
+
0,
|
|
1621
|
+
{
|
|
1622
|
+
[_jN]: _m,
|
|
1623
|
+
},
|
|
1624
|
+
],
|
|
1625
|
+
],
|
|
1626
|
+
];
|
|
1627
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenException, ForbiddenException$1);
|
|
1628
|
+
var HarvestJob = [
|
|
1629
|
+
3,
|
|
1630
|
+
n0,
|
|
1631
|
+
_HJ,
|
|
1632
|
+
0,
|
|
1633
|
+
[_Ar, _CI, _CA, _ET, _I, _OEI, _SD, _ST, _S],
|
|
1634
|
+
[
|
|
1635
|
+
[
|
|
1636
|
+
0,
|
|
1637
|
+
{
|
|
1638
|
+
[_jN]: _a,
|
|
1639
|
+
},
|
|
1640
|
+
],
|
|
1641
|
+
[
|
|
1642
|
+
0,
|
|
1643
|
+
{
|
|
1644
|
+
[_jN]: _cI,
|
|
1645
|
+
},
|
|
1646
|
+
],
|
|
1647
|
+
[
|
|
1648
|
+
0,
|
|
1649
|
+
{
|
|
1650
|
+
[_jN]: _cA,
|
|
1651
|
+
},
|
|
1652
|
+
],
|
|
1653
|
+
[
|
|
1654
|
+
0,
|
|
1655
|
+
{
|
|
1656
|
+
[_jN]: _eT,
|
|
1657
|
+
},
|
|
1658
|
+
],
|
|
1659
|
+
[
|
|
1660
|
+
0,
|
|
1661
|
+
{
|
|
1662
|
+
[_jN]: _i,
|
|
1663
|
+
},
|
|
1664
|
+
],
|
|
1665
|
+
[
|
|
1666
|
+
0,
|
|
1667
|
+
{
|
|
1668
|
+
[_jN]: _oEI,
|
|
1669
|
+
},
|
|
1670
|
+
],
|
|
1671
|
+
[
|
|
1672
|
+
() => S3Destination,
|
|
1673
|
+
{
|
|
1674
|
+
[_jN]: _sD,
|
|
1675
|
+
},
|
|
1676
|
+
],
|
|
1677
|
+
[
|
|
1678
|
+
0,
|
|
1679
|
+
{
|
|
1680
|
+
[_jN]: _sT,
|
|
1681
|
+
},
|
|
1682
|
+
],
|
|
1683
|
+
[
|
|
1684
|
+
0,
|
|
1685
|
+
{
|
|
1686
|
+
[_jN]: _s,
|
|
1687
|
+
},
|
|
1688
|
+
],
|
|
1689
|
+
],
|
|
1690
|
+
];
|
|
1691
|
+
var HlsEncryption = [
|
|
1692
|
+
3,
|
|
1693
|
+
n0,
|
|
1694
|
+
_HE,
|
|
1695
|
+
0,
|
|
1696
|
+
[_CIV, _EM, _KRIS, _REXK, _SKP],
|
|
1697
|
+
[
|
|
1698
|
+
[
|
|
1699
|
+
0,
|
|
1700
|
+
{
|
|
1701
|
+
[_jN]: _cIV,
|
|
1702
|
+
},
|
|
1703
|
+
],
|
|
1704
|
+
[
|
|
1705
|
+
0,
|
|
1706
|
+
{
|
|
1707
|
+
[_jN]: _eM,
|
|
1708
|
+
},
|
|
1709
|
+
],
|
|
1710
|
+
[
|
|
1711
|
+
1,
|
|
1712
|
+
{
|
|
1713
|
+
[_jN]: _kRIS,
|
|
1714
|
+
},
|
|
1715
|
+
],
|
|
1716
|
+
[
|
|
1717
|
+
2,
|
|
1718
|
+
{
|
|
1719
|
+
[_jN]: _rEXK,
|
|
1720
|
+
},
|
|
1721
|
+
],
|
|
1722
|
+
[
|
|
1723
|
+
() => SpekeKeyProvider,
|
|
1724
|
+
{
|
|
1725
|
+
[_jN]: _sKP,
|
|
1726
|
+
},
|
|
1727
|
+
],
|
|
1728
|
+
],
|
|
1729
|
+
];
|
|
1730
|
+
var HlsIngest = [
|
|
1731
|
+
3,
|
|
1732
|
+
n0,
|
|
1733
|
+
_HI,
|
|
1734
|
+
0,
|
|
1735
|
+
[_IE],
|
|
1736
|
+
[
|
|
1737
|
+
[
|
|
1738
|
+
() => __listOfIngestEndpoint,
|
|
1739
|
+
{
|
|
1740
|
+
[_jN]: _iE,
|
|
1741
|
+
},
|
|
1742
|
+
],
|
|
1743
|
+
],
|
|
1744
|
+
];
|
|
1745
|
+
var HlsManifest = [
|
|
1746
|
+
3,
|
|
1747
|
+
n0,
|
|
1748
|
+
_HMl,
|
|
1749
|
+
0,
|
|
1750
|
+
[_AM, _I, _IIOS, _MN, _PTl, _PWS, _PDTIS, _U, _AT, _AODR],
|
|
1751
|
+
[
|
|
1752
|
+
[
|
|
1753
|
+
0,
|
|
1754
|
+
{
|
|
1755
|
+
[_jN]: _aM,
|
|
1756
|
+
},
|
|
1757
|
+
],
|
|
1758
|
+
[
|
|
1759
|
+
0,
|
|
1760
|
+
{
|
|
1761
|
+
[_jN]: _i,
|
|
1762
|
+
},
|
|
1763
|
+
],
|
|
1764
|
+
[
|
|
1765
|
+
2,
|
|
1766
|
+
{
|
|
1767
|
+
[_jN]: _iIOS,
|
|
1768
|
+
},
|
|
1769
|
+
],
|
|
1770
|
+
[
|
|
1771
|
+
0,
|
|
1772
|
+
{
|
|
1773
|
+
[_jN]: _mN,
|
|
1774
|
+
},
|
|
1775
|
+
],
|
|
1776
|
+
[
|
|
1777
|
+
0,
|
|
1778
|
+
{
|
|
1779
|
+
[_jN]: _pTl,
|
|
1780
|
+
},
|
|
1781
|
+
],
|
|
1782
|
+
[
|
|
1783
|
+
1,
|
|
1784
|
+
{
|
|
1785
|
+
[_jN]: _pWS,
|
|
1786
|
+
},
|
|
1787
|
+
],
|
|
1788
|
+
[
|
|
1789
|
+
1,
|
|
1790
|
+
{
|
|
1791
|
+
[_jN]: _pDTIS,
|
|
1792
|
+
},
|
|
1793
|
+
],
|
|
1794
|
+
[
|
|
1795
|
+
0,
|
|
1796
|
+
{
|
|
1797
|
+
[_jN]: _u,
|
|
1798
|
+
},
|
|
1799
|
+
],
|
|
1800
|
+
[
|
|
1801
|
+
64 | 0,
|
|
1802
|
+
{
|
|
1803
|
+
[_jN]: _aT,
|
|
1804
|
+
},
|
|
1805
|
+
],
|
|
1806
|
+
[
|
|
1807
|
+
0,
|
|
1808
|
+
{
|
|
1809
|
+
[_jN]: _aODR,
|
|
1810
|
+
},
|
|
1811
|
+
],
|
|
1812
|
+
],
|
|
1813
|
+
];
|
|
1814
|
+
var HlsManifestCreateOrUpdateParameters = [
|
|
1815
|
+
3,
|
|
1816
|
+
n0,
|
|
1817
|
+
_HMCOUP,
|
|
1818
|
+
0,
|
|
1819
|
+
[_AM, _AT, _AODR, _I, _IIOS, _MN, _PTl, _PWS, _PDTIS],
|
|
1820
|
+
[
|
|
1821
|
+
[
|
|
1822
|
+
0,
|
|
1823
|
+
{
|
|
1824
|
+
[_jN]: _aM,
|
|
1825
|
+
},
|
|
1826
|
+
],
|
|
1827
|
+
[
|
|
1828
|
+
64 | 0,
|
|
1829
|
+
{
|
|
1830
|
+
[_jN]: _aT,
|
|
1831
|
+
},
|
|
1832
|
+
],
|
|
1833
|
+
[
|
|
1834
|
+
0,
|
|
1835
|
+
{
|
|
1836
|
+
[_jN]: _aODR,
|
|
1837
|
+
},
|
|
1838
|
+
],
|
|
1839
|
+
[
|
|
1840
|
+
0,
|
|
1841
|
+
{
|
|
1842
|
+
[_jN]: _i,
|
|
1843
|
+
},
|
|
1844
|
+
],
|
|
1845
|
+
[
|
|
1846
|
+
2,
|
|
1847
|
+
{
|
|
1848
|
+
[_jN]: _iIOS,
|
|
1849
|
+
},
|
|
1850
|
+
],
|
|
1851
|
+
[
|
|
1852
|
+
0,
|
|
1853
|
+
{
|
|
1854
|
+
[_jN]: _mN,
|
|
1855
|
+
},
|
|
1856
|
+
],
|
|
1857
|
+
[
|
|
1858
|
+
0,
|
|
1859
|
+
{
|
|
1860
|
+
[_jN]: _pTl,
|
|
1861
|
+
},
|
|
1862
|
+
],
|
|
1863
|
+
[
|
|
1864
|
+
1,
|
|
1865
|
+
{
|
|
1866
|
+
[_jN]: _pWS,
|
|
1867
|
+
},
|
|
1868
|
+
],
|
|
1869
|
+
[
|
|
1870
|
+
1,
|
|
1871
|
+
{
|
|
1872
|
+
[_jN]: _pDTIS,
|
|
1873
|
+
},
|
|
1874
|
+
],
|
|
1875
|
+
],
|
|
1876
|
+
];
|
|
1877
|
+
var HlsPackage = [
|
|
1878
|
+
3,
|
|
1879
|
+
n0,
|
|
1880
|
+
_HP,
|
|
1881
|
+
0,
|
|
1882
|
+
[_AM, _AT, _AODR, _E, _IDS, _IIOS, _PTl, _PWS, _PDTIS, _SDS, _SSt, _UARG],
|
|
1883
|
+
[
|
|
1884
|
+
[
|
|
1885
|
+
0,
|
|
1886
|
+
{
|
|
1887
|
+
[_jN]: _aM,
|
|
1888
|
+
},
|
|
1889
|
+
],
|
|
1890
|
+
[
|
|
1891
|
+
64 | 0,
|
|
1892
|
+
{
|
|
1893
|
+
[_jN]: _aT,
|
|
1894
|
+
},
|
|
1895
|
+
],
|
|
1896
|
+
[
|
|
1897
|
+
0,
|
|
1898
|
+
{
|
|
1899
|
+
[_jN]: _aODR,
|
|
1900
|
+
},
|
|
1901
|
+
],
|
|
1902
|
+
[
|
|
1903
|
+
() => HlsEncryption,
|
|
1904
|
+
{
|
|
1905
|
+
[_jN]: _e,
|
|
1906
|
+
},
|
|
1907
|
+
],
|
|
1908
|
+
[
|
|
1909
|
+
2,
|
|
1910
|
+
{
|
|
1911
|
+
[_jN]: _iDS,
|
|
1912
|
+
},
|
|
1913
|
+
],
|
|
1914
|
+
[
|
|
1915
|
+
2,
|
|
1916
|
+
{
|
|
1917
|
+
[_jN]: _iIOS,
|
|
1918
|
+
},
|
|
1919
|
+
],
|
|
1920
|
+
[
|
|
1921
|
+
0,
|
|
1922
|
+
{
|
|
1923
|
+
[_jN]: _pTl,
|
|
1924
|
+
},
|
|
1925
|
+
],
|
|
1926
|
+
[
|
|
1927
|
+
1,
|
|
1928
|
+
{
|
|
1929
|
+
[_jN]: _pWS,
|
|
1930
|
+
},
|
|
1931
|
+
],
|
|
1932
|
+
[
|
|
1933
|
+
1,
|
|
1934
|
+
{
|
|
1935
|
+
[_jN]: _pDTIS,
|
|
1936
|
+
},
|
|
1937
|
+
],
|
|
1938
|
+
[
|
|
1939
|
+
1,
|
|
1940
|
+
{
|
|
1941
|
+
[_jN]: _sDS,
|
|
1942
|
+
},
|
|
1943
|
+
],
|
|
1944
|
+
[
|
|
1945
|
+
() => StreamSelection,
|
|
1946
|
+
{
|
|
1947
|
+
[_jN]: _sS,
|
|
1948
|
+
},
|
|
1949
|
+
],
|
|
1950
|
+
[
|
|
1951
|
+
2,
|
|
1952
|
+
{
|
|
1953
|
+
[_jN]: _uARG,
|
|
1954
|
+
},
|
|
1955
|
+
],
|
|
1956
|
+
],
|
|
1957
|
+
];
|
|
1958
|
+
var IngestEndpoint = [
|
|
1959
|
+
3,
|
|
1960
|
+
n0,
|
|
1961
|
+
_IEn,
|
|
1962
|
+
0,
|
|
1963
|
+
[_I, _Pa, _U, _Us],
|
|
1964
|
+
[
|
|
1965
|
+
[
|
|
1966
|
+
0,
|
|
1967
|
+
{
|
|
1968
|
+
[_jN]: _i,
|
|
1969
|
+
},
|
|
1970
|
+
],
|
|
1971
|
+
[
|
|
1972
|
+
() => SensitiveString,
|
|
1973
|
+
{
|
|
1974
|
+
[_jN]: _pa,
|
|
1975
|
+
},
|
|
1976
|
+
],
|
|
1977
|
+
[
|
|
1978
|
+
0,
|
|
1979
|
+
{
|
|
1980
|
+
[_jN]: _u,
|
|
1981
|
+
},
|
|
1982
|
+
],
|
|
1983
|
+
[
|
|
1984
|
+
() => SensitiveString,
|
|
1985
|
+
{
|
|
1986
|
+
[_jN]: _us,
|
|
1987
|
+
},
|
|
1988
|
+
],
|
|
1989
|
+
],
|
|
1990
|
+
];
|
|
1991
|
+
var IngressAccessLogs = [
|
|
1992
|
+
3,
|
|
1993
|
+
n0,
|
|
1994
|
+
_IAL,
|
|
1995
|
+
0,
|
|
1996
|
+
[_LGN],
|
|
1997
|
+
[
|
|
1998
|
+
[
|
|
1999
|
+
0,
|
|
2000
|
+
{
|
|
2001
|
+
[_jN]: _lGN,
|
|
2002
|
+
},
|
|
2003
|
+
],
|
|
2004
|
+
],
|
|
2005
|
+
];
|
|
2006
|
+
var InternalServerErrorException = [
|
|
2007
|
+
-3,
|
|
2008
|
+
n0,
|
|
2009
|
+
_ISEE,
|
|
2010
|
+
{
|
|
2011
|
+
[_er]: _se,
|
|
2012
|
+
[_hE]: 500,
|
|
2013
|
+
},
|
|
2014
|
+
[_M],
|
|
2015
|
+
[
|
|
2016
|
+
[
|
|
2017
|
+
0,
|
|
2018
|
+
{
|
|
2019
|
+
[_jN]: _m,
|
|
2020
|
+
},
|
|
2021
|
+
],
|
|
2022
|
+
],
|
|
2023
|
+
];
|
|
2024
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException, InternalServerErrorException$1);
|
|
2025
|
+
var ListChannelsRequest = [
|
|
2026
|
+
3,
|
|
2027
|
+
n0,
|
|
2028
|
+
_LCR,
|
|
2029
|
+
0,
|
|
2030
|
+
[_MR, _NT],
|
|
2031
|
+
[
|
|
2032
|
+
[
|
|
2033
|
+
1,
|
|
2034
|
+
{
|
|
2035
|
+
[_hQ]: _mR,
|
|
2036
|
+
},
|
|
2037
|
+
],
|
|
2038
|
+
[
|
|
2039
|
+
0,
|
|
2040
|
+
{
|
|
2041
|
+
[_hQ]: _nT,
|
|
2042
|
+
},
|
|
2043
|
+
],
|
|
2044
|
+
],
|
|
2045
|
+
];
|
|
2046
|
+
var ListChannelsResponse = [
|
|
2047
|
+
3,
|
|
2048
|
+
n0,
|
|
2049
|
+
_LCRi,
|
|
2050
|
+
0,
|
|
2051
|
+
[_Ch, _NT],
|
|
2052
|
+
[
|
|
2053
|
+
[
|
|
2054
|
+
() => __listOfChannel,
|
|
2055
|
+
{
|
|
2056
|
+
[_jN]: _ch,
|
|
2057
|
+
},
|
|
2058
|
+
],
|
|
2059
|
+
[
|
|
2060
|
+
0,
|
|
2061
|
+
{
|
|
2062
|
+
[_jN]: _nT,
|
|
2063
|
+
},
|
|
2064
|
+
],
|
|
2065
|
+
],
|
|
2066
|
+
];
|
|
2067
|
+
var ListHarvestJobsRequest = [
|
|
2068
|
+
3,
|
|
2069
|
+
n0,
|
|
2070
|
+
_LHJR,
|
|
2071
|
+
0,
|
|
2072
|
+
[_ICI, _IS, _MR, _NT],
|
|
2073
|
+
[
|
|
2074
|
+
[
|
|
2075
|
+
0,
|
|
2076
|
+
{
|
|
2077
|
+
[_hQ]: _iCI,
|
|
2078
|
+
},
|
|
2079
|
+
],
|
|
2080
|
+
[
|
|
2081
|
+
0,
|
|
2082
|
+
{
|
|
2083
|
+
[_hQ]: _iS,
|
|
2084
|
+
},
|
|
2085
|
+
],
|
|
2086
|
+
[
|
|
2087
|
+
1,
|
|
2088
|
+
{
|
|
2089
|
+
[_hQ]: _mR,
|
|
2090
|
+
},
|
|
2091
|
+
],
|
|
2092
|
+
[
|
|
2093
|
+
0,
|
|
2094
|
+
{
|
|
2095
|
+
[_hQ]: _nT,
|
|
2096
|
+
},
|
|
2097
|
+
],
|
|
2098
|
+
],
|
|
2099
|
+
];
|
|
2100
|
+
var ListHarvestJobsResponse = [
|
|
2101
|
+
3,
|
|
2102
|
+
n0,
|
|
2103
|
+
_LHJRi,
|
|
2104
|
+
0,
|
|
2105
|
+
[_HJa, _NT],
|
|
2106
|
+
[
|
|
2107
|
+
[
|
|
2108
|
+
() => __listOfHarvestJob,
|
|
2109
|
+
{
|
|
2110
|
+
[_jN]: _hJ,
|
|
2111
|
+
},
|
|
2112
|
+
],
|
|
2113
|
+
[
|
|
2114
|
+
0,
|
|
2115
|
+
{
|
|
2116
|
+
[_jN]: _nT,
|
|
2117
|
+
},
|
|
2118
|
+
],
|
|
2119
|
+
],
|
|
2120
|
+
];
|
|
2121
|
+
var ListOriginEndpointsRequest = [
|
|
2122
|
+
3,
|
|
2123
|
+
n0,
|
|
2124
|
+
_LOER,
|
|
2125
|
+
0,
|
|
2126
|
+
[_CI, _MR, _NT],
|
|
2127
|
+
[
|
|
2128
|
+
[
|
|
2129
|
+
0,
|
|
2130
|
+
{
|
|
2131
|
+
[_hQ]: _cI,
|
|
2132
|
+
},
|
|
2133
|
+
],
|
|
2134
|
+
[
|
|
2135
|
+
1,
|
|
2136
|
+
{
|
|
2137
|
+
[_hQ]: _mR,
|
|
2138
|
+
},
|
|
2139
|
+
],
|
|
2140
|
+
[
|
|
2141
|
+
0,
|
|
2142
|
+
{
|
|
2143
|
+
[_hQ]: _nT,
|
|
2144
|
+
},
|
|
2145
|
+
],
|
|
2146
|
+
],
|
|
2147
|
+
];
|
|
2148
|
+
var ListOriginEndpointsResponse = [
|
|
2149
|
+
3,
|
|
2150
|
+
n0,
|
|
2151
|
+
_LOERi,
|
|
2152
|
+
0,
|
|
2153
|
+
[_NT, _OE],
|
|
2154
|
+
[
|
|
2155
|
+
[
|
|
2156
|
+
0,
|
|
2157
|
+
{
|
|
2158
|
+
[_jN]: _nT,
|
|
2159
|
+
},
|
|
2160
|
+
],
|
|
2161
|
+
[
|
|
2162
|
+
() => __listOfOriginEndpoint,
|
|
2163
|
+
{
|
|
2164
|
+
[_jN]: _oE,
|
|
2165
|
+
},
|
|
2166
|
+
],
|
|
2167
|
+
],
|
|
2168
|
+
];
|
|
2169
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
2170
|
+
var ListTagsForResourceResponse = [
|
|
2171
|
+
3,
|
|
2172
|
+
n0,
|
|
2173
|
+
_LTFRRi,
|
|
2174
|
+
0,
|
|
2175
|
+
[_T],
|
|
2176
|
+
[
|
|
2177
|
+
[
|
|
2178
|
+
128 | 0,
|
|
2179
|
+
{
|
|
2180
|
+
[_jN]: _t,
|
|
2181
|
+
},
|
|
2182
|
+
],
|
|
2183
|
+
],
|
|
2184
|
+
];
|
|
2185
|
+
var MssEncryption = [
|
|
2186
|
+
3,
|
|
2187
|
+
n0,
|
|
2188
|
+
_ME,
|
|
2189
|
+
0,
|
|
2190
|
+
[_SKP],
|
|
2191
|
+
[
|
|
2192
|
+
[
|
|
2193
|
+
() => SpekeKeyProvider,
|
|
2194
|
+
{
|
|
2195
|
+
[_jN]: _sKP,
|
|
2196
|
+
},
|
|
2197
|
+
],
|
|
2198
|
+
],
|
|
2199
|
+
];
|
|
2200
|
+
var MssPackage = [
|
|
2201
|
+
3,
|
|
2202
|
+
n0,
|
|
2203
|
+
_MP,
|
|
2204
|
+
0,
|
|
2205
|
+
[_E, _MWS, _SDS, _SSt],
|
|
2206
|
+
[
|
|
2207
|
+
[
|
|
2208
|
+
() => MssEncryption,
|
|
2209
|
+
{
|
|
2210
|
+
[_jN]: _e,
|
|
2211
|
+
},
|
|
2212
|
+
],
|
|
2213
|
+
[
|
|
2214
|
+
1,
|
|
2215
|
+
{
|
|
2216
|
+
[_jN]: _mWS,
|
|
2217
|
+
},
|
|
2218
|
+
],
|
|
2219
|
+
[
|
|
2220
|
+
1,
|
|
2221
|
+
{
|
|
2222
|
+
[_jN]: _sDS,
|
|
2223
|
+
},
|
|
2224
|
+
],
|
|
2225
|
+
[
|
|
2226
|
+
() => StreamSelection,
|
|
2227
|
+
{
|
|
2228
|
+
[_jN]: _sS,
|
|
2229
|
+
},
|
|
2230
|
+
],
|
|
2231
|
+
],
|
|
2232
|
+
];
|
|
2233
|
+
var NotFoundException = [
|
|
2234
|
+
-3,
|
|
2235
|
+
n0,
|
|
2236
|
+
_NFE,
|
|
2237
|
+
{
|
|
2238
|
+
[_er]: _c,
|
|
2239
|
+
[_hE]: 404,
|
|
2240
|
+
},
|
|
2241
|
+
[_M],
|
|
2242
|
+
[
|
|
2243
|
+
[
|
|
2244
|
+
0,
|
|
2245
|
+
{
|
|
2246
|
+
[_jN]: _m,
|
|
2247
|
+
},
|
|
2248
|
+
],
|
|
2249
|
+
],
|
|
2250
|
+
];
|
|
2251
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
|
|
2252
|
+
var OriginEndpoint = [
|
|
2253
|
+
3,
|
|
2254
|
+
n0,
|
|
2255
|
+
_OEr,
|
|
2256
|
+
0,
|
|
2257
|
+
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
2258
|
+
[
|
|
2259
|
+
[
|
|
2260
|
+
0,
|
|
2261
|
+
{
|
|
2262
|
+
[_jN]: _a,
|
|
2263
|
+
},
|
|
2264
|
+
],
|
|
2265
|
+
[
|
|
2266
|
+
() => Authorization,
|
|
2267
|
+
{
|
|
2268
|
+
[_jN]: _au,
|
|
2269
|
+
},
|
|
2270
|
+
],
|
|
2271
|
+
[
|
|
2272
|
+
0,
|
|
2273
|
+
{
|
|
2274
|
+
[_jN]: _cI,
|
|
2275
|
+
},
|
|
2276
|
+
],
|
|
2277
|
+
[
|
|
2278
|
+
() => CmafPackage,
|
|
2279
|
+
{
|
|
2280
|
+
[_jN]: _cP,
|
|
2281
|
+
},
|
|
2282
|
+
],
|
|
2283
|
+
[
|
|
2284
|
+
0,
|
|
2285
|
+
{
|
|
2286
|
+
[_jN]: _cA,
|
|
2287
|
+
},
|
|
2288
|
+
],
|
|
2289
|
+
[
|
|
2290
|
+
() => DashPackage,
|
|
2291
|
+
{
|
|
2292
|
+
[_jN]: _dP,
|
|
2293
|
+
},
|
|
2294
|
+
],
|
|
2295
|
+
[
|
|
2296
|
+
0,
|
|
2297
|
+
{
|
|
2298
|
+
[_jN]: _d,
|
|
2299
|
+
},
|
|
2300
|
+
],
|
|
2301
|
+
[
|
|
2302
|
+
() => HlsPackage,
|
|
2303
|
+
{
|
|
2304
|
+
[_jN]: _hP,
|
|
2305
|
+
},
|
|
2306
|
+
],
|
|
2307
|
+
[
|
|
2308
|
+
0,
|
|
2309
|
+
{
|
|
2310
|
+
[_jN]: _i,
|
|
2311
|
+
},
|
|
2312
|
+
],
|
|
2313
|
+
[
|
|
2314
|
+
0,
|
|
2315
|
+
{
|
|
2316
|
+
[_jN]: _mN,
|
|
2317
|
+
},
|
|
2318
|
+
],
|
|
2319
|
+
[
|
|
2320
|
+
() => MssPackage,
|
|
2321
|
+
{
|
|
2322
|
+
[_jN]: _mP,
|
|
2323
|
+
},
|
|
2324
|
+
],
|
|
2325
|
+
[
|
|
2326
|
+
0,
|
|
2327
|
+
{
|
|
2328
|
+
[_jN]: _o,
|
|
2329
|
+
},
|
|
2330
|
+
],
|
|
2331
|
+
[
|
|
2332
|
+
1,
|
|
2333
|
+
{
|
|
2334
|
+
[_jN]: _sWS,
|
|
2335
|
+
},
|
|
2336
|
+
],
|
|
2337
|
+
[
|
|
2338
|
+
128 | 0,
|
|
2339
|
+
{
|
|
2340
|
+
[_jN]: _t,
|
|
2341
|
+
},
|
|
2342
|
+
],
|
|
2343
|
+
[
|
|
2344
|
+
1,
|
|
2345
|
+
{
|
|
2346
|
+
[_jN]: _tDS,
|
|
2347
|
+
},
|
|
2348
|
+
],
|
|
2349
|
+
[
|
|
2350
|
+
0,
|
|
2351
|
+
{
|
|
2352
|
+
[_jN]: _u,
|
|
2353
|
+
},
|
|
2354
|
+
],
|
|
2355
|
+
[
|
|
2356
|
+
64 | 0,
|
|
2357
|
+
{
|
|
2358
|
+
[_jN]: _w,
|
|
2359
|
+
},
|
|
2360
|
+
],
|
|
2361
|
+
],
|
|
2362
|
+
];
|
|
2363
|
+
var RotateChannelCredentialsRequest = [3, n0, _RCCR, 0, [_I], [[0, 1]]];
|
|
2364
|
+
var RotateChannelCredentialsResponse = [
|
|
2365
|
+
3,
|
|
2366
|
+
n0,
|
|
2367
|
+
_RCCRo,
|
|
2368
|
+
0,
|
|
2369
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
2370
|
+
[
|
|
2371
|
+
[
|
|
2372
|
+
0,
|
|
2373
|
+
{
|
|
2374
|
+
[_jN]: _a,
|
|
2375
|
+
},
|
|
2376
|
+
],
|
|
2377
|
+
[
|
|
2378
|
+
0,
|
|
2379
|
+
{
|
|
2380
|
+
[_jN]: _cA,
|
|
2381
|
+
},
|
|
2382
|
+
],
|
|
2383
|
+
[
|
|
2384
|
+
0,
|
|
2385
|
+
{
|
|
2386
|
+
[_jN]: _d,
|
|
2387
|
+
},
|
|
2388
|
+
],
|
|
2389
|
+
[
|
|
2390
|
+
() => EgressAccessLogs,
|
|
2391
|
+
{
|
|
2392
|
+
[_jN]: _eAL,
|
|
2393
|
+
},
|
|
2394
|
+
],
|
|
2395
|
+
[
|
|
2396
|
+
() => HlsIngest,
|
|
2397
|
+
{
|
|
2398
|
+
[_jN]: _hI,
|
|
2399
|
+
},
|
|
2400
|
+
],
|
|
2401
|
+
[
|
|
2402
|
+
0,
|
|
2403
|
+
{
|
|
2404
|
+
[_jN]: _i,
|
|
2405
|
+
},
|
|
2406
|
+
],
|
|
2407
|
+
[
|
|
2408
|
+
() => IngressAccessLogs,
|
|
2409
|
+
{
|
|
2410
|
+
[_jN]: _iAL,
|
|
2411
|
+
},
|
|
2412
|
+
],
|
|
2413
|
+
[
|
|
2414
|
+
128 | 0,
|
|
2415
|
+
{
|
|
2416
|
+
[_jN]: _t,
|
|
2417
|
+
},
|
|
2418
|
+
],
|
|
2419
|
+
],
|
|
2420
|
+
];
|
|
2421
|
+
var RotateIngestEndpointCredentialsRequest = [
|
|
2422
|
+
3,
|
|
2423
|
+
n0,
|
|
2424
|
+
_RIECR,
|
|
2425
|
+
0,
|
|
2426
|
+
[_I, _IEI],
|
|
2427
|
+
[
|
|
2428
|
+
[0, 1],
|
|
2429
|
+
[0, 1],
|
|
2430
|
+
],
|
|
2431
|
+
];
|
|
2432
|
+
var RotateIngestEndpointCredentialsResponse = [
|
|
2433
|
+
3,
|
|
2434
|
+
n0,
|
|
2435
|
+
_RIECRo,
|
|
2436
|
+
0,
|
|
2437
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
2438
|
+
[
|
|
2439
|
+
[
|
|
2440
|
+
0,
|
|
2441
|
+
{
|
|
2442
|
+
[_jN]: _a,
|
|
2443
|
+
},
|
|
2444
|
+
],
|
|
2445
|
+
[
|
|
2446
|
+
0,
|
|
2447
|
+
{
|
|
2448
|
+
[_jN]: _cA,
|
|
2449
|
+
},
|
|
2450
|
+
],
|
|
2451
|
+
[
|
|
2452
|
+
0,
|
|
2453
|
+
{
|
|
2454
|
+
[_jN]: _d,
|
|
2455
|
+
},
|
|
2456
|
+
],
|
|
2457
|
+
[
|
|
2458
|
+
() => EgressAccessLogs,
|
|
2459
|
+
{
|
|
2460
|
+
[_jN]: _eAL,
|
|
2461
|
+
},
|
|
2462
|
+
],
|
|
2463
|
+
[
|
|
2464
|
+
() => HlsIngest,
|
|
2465
|
+
{
|
|
2466
|
+
[_jN]: _hI,
|
|
2467
|
+
},
|
|
2468
|
+
],
|
|
2469
|
+
[
|
|
2470
|
+
0,
|
|
2471
|
+
{
|
|
2472
|
+
[_jN]: _i,
|
|
2473
|
+
},
|
|
2474
|
+
],
|
|
2475
|
+
[
|
|
2476
|
+
() => IngressAccessLogs,
|
|
2477
|
+
{
|
|
2478
|
+
[_jN]: _iAL,
|
|
2479
|
+
},
|
|
2480
|
+
],
|
|
2481
|
+
[
|
|
2482
|
+
128 | 0,
|
|
2483
|
+
{
|
|
2484
|
+
[_jN]: _t,
|
|
2485
|
+
},
|
|
2486
|
+
],
|
|
2487
|
+
],
|
|
2488
|
+
];
|
|
2489
|
+
var S3Destination = [
|
|
2490
|
+
3,
|
|
2491
|
+
n0,
|
|
2492
|
+
_SD,
|
|
2493
|
+
0,
|
|
2494
|
+
[_BN, _MK, _RAo],
|
|
2495
|
+
[
|
|
2496
|
+
[
|
|
2497
|
+
0,
|
|
2498
|
+
{
|
|
2499
|
+
[_jN]: _bN,
|
|
2500
|
+
},
|
|
2501
|
+
],
|
|
2502
|
+
[
|
|
2503
|
+
0,
|
|
2504
|
+
{
|
|
2505
|
+
[_jN]: _mK,
|
|
2506
|
+
},
|
|
2507
|
+
],
|
|
2508
|
+
[
|
|
2509
|
+
0,
|
|
2510
|
+
{
|
|
2511
|
+
[_jN]: _rA,
|
|
2512
|
+
},
|
|
2513
|
+
],
|
|
2514
|
+
],
|
|
2515
|
+
];
|
|
2516
|
+
var ServiceUnavailableException = [
|
|
2517
|
+
-3,
|
|
2518
|
+
n0,
|
|
2519
|
+
_SUE,
|
|
2520
|
+
{
|
|
2521
|
+
[_er]: _se,
|
|
2522
|
+
[_hE]: 503,
|
|
2523
|
+
},
|
|
2524
|
+
[_M],
|
|
2525
|
+
[
|
|
2526
|
+
[
|
|
2527
|
+
0,
|
|
2528
|
+
{
|
|
2529
|
+
[_jN]: _m,
|
|
2530
|
+
},
|
|
2531
|
+
],
|
|
2532
|
+
],
|
|
2533
|
+
];
|
|
2534
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
|
|
2535
|
+
var SpekeKeyProvider = [
|
|
2536
|
+
3,
|
|
2537
|
+
n0,
|
|
2538
|
+
_SKP,
|
|
2539
|
+
0,
|
|
2540
|
+
[_CAe, _ECC, _RI, _RAo, _SI, _U],
|
|
2541
|
+
[
|
|
2542
|
+
[
|
|
2543
|
+
0,
|
|
2544
|
+
{
|
|
2545
|
+
[_jN]: _cAe,
|
|
2546
|
+
},
|
|
2547
|
+
],
|
|
2548
|
+
[
|
|
2549
|
+
() => EncryptionContractConfiguration,
|
|
2550
|
+
{
|
|
2551
|
+
[_jN]: _eCC,
|
|
2552
|
+
},
|
|
2553
|
+
],
|
|
2554
|
+
[
|
|
2555
|
+
0,
|
|
2556
|
+
{
|
|
2557
|
+
[_jN]: _rI,
|
|
2558
|
+
},
|
|
2559
|
+
],
|
|
2560
|
+
[
|
|
2561
|
+
0,
|
|
2562
|
+
{
|
|
2563
|
+
[_jN]: _rA,
|
|
2564
|
+
},
|
|
2565
|
+
],
|
|
2566
|
+
[
|
|
2567
|
+
64 | 0,
|
|
2568
|
+
{
|
|
2569
|
+
[_jN]: _sI,
|
|
2570
|
+
},
|
|
2571
|
+
],
|
|
2572
|
+
[
|
|
2573
|
+
0,
|
|
2574
|
+
{
|
|
2575
|
+
[_jN]: _u,
|
|
2576
|
+
},
|
|
2577
|
+
],
|
|
2578
|
+
],
|
|
2579
|
+
];
|
|
2580
|
+
var StreamSelection = [
|
|
2581
|
+
3,
|
|
2582
|
+
n0,
|
|
2583
|
+
_SSt,
|
|
2584
|
+
0,
|
|
2585
|
+
[_MVBPS, _MVBPSi, _SO],
|
|
2586
|
+
[
|
|
2587
|
+
[
|
|
2588
|
+
1,
|
|
2589
|
+
{
|
|
2590
|
+
[_jN]: _mVBPS,
|
|
2591
|
+
},
|
|
2592
|
+
],
|
|
2593
|
+
[
|
|
2594
|
+
1,
|
|
2595
|
+
{
|
|
2596
|
+
[_jN]: _mVBPSi,
|
|
2597
|
+
},
|
|
2598
|
+
],
|
|
2599
|
+
[
|
|
2600
|
+
0,
|
|
2601
|
+
{
|
|
2602
|
+
[_jN]: _sO,
|
|
2603
|
+
},
|
|
2604
|
+
],
|
|
2605
|
+
],
|
|
2606
|
+
];
|
|
2607
|
+
var TagResourceRequest = [
|
|
2608
|
+
3,
|
|
2609
|
+
n0,
|
|
2610
|
+
_TRR,
|
|
2611
|
+
0,
|
|
2612
|
+
[_RA, _T],
|
|
2613
|
+
[
|
|
2614
|
+
[0, 1],
|
|
2615
|
+
[
|
|
2616
|
+
128 | 0,
|
|
2617
|
+
{
|
|
2618
|
+
[_jN]: _t,
|
|
2619
|
+
},
|
|
2620
|
+
],
|
|
2621
|
+
],
|
|
2622
|
+
];
|
|
2623
|
+
var TooManyRequestsException = [
|
|
2624
|
+
-3,
|
|
2625
|
+
n0,
|
|
2626
|
+
_TMRE,
|
|
2627
|
+
{
|
|
2628
|
+
[_er]: _c,
|
|
2629
|
+
[_hE]: 429,
|
|
2630
|
+
},
|
|
2631
|
+
[_M],
|
|
2632
|
+
[
|
|
2633
|
+
[
|
|
2634
|
+
0,
|
|
2635
|
+
{
|
|
2636
|
+
[_jN]: _m,
|
|
2637
|
+
},
|
|
2638
|
+
],
|
|
2639
|
+
],
|
|
2640
|
+
];
|
|
2641
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
|
|
2642
|
+
var UnprocessableEntityException = [
|
|
2643
|
+
-3,
|
|
2644
|
+
n0,
|
|
2645
|
+
_UEE,
|
|
2646
|
+
{
|
|
2647
|
+
[_er]: _c,
|
|
2648
|
+
[_hE]: 422,
|
|
2649
|
+
},
|
|
2650
|
+
[_M],
|
|
2651
|
+
[
|
|
2652
|
+
[
|
|
2653
|
+
0,
|
|
2654
|
+
{
|
|
2655
|
+
[_jN]: _m,
|
|
2656
|
+
},
|
|
2657
|
+
],
|
|
2658
|
+
],
|
|
2659
|
+
];
|
|
2660
|
+
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException, UnprocessableEntityException$1);
|
|
2661
|
+
var UntagResourceRequest = [
|
|
2662
|
+
3,
|
|
2663
|
+
n0,
|
|
2664
|
+
_URR,
|
|
2665
|
+
0,
|
|
2666
|
+
[_RA, _TK],
|
|
2667
|
+
[
|
|
2668
|
+
[0, 1],
|
|
2669
|
+
[
|
|
2670
|
+
64 | 0,
|
|
2671
|
+
{
|
|
2672
|
+
[_hQ]: _tK,
|
|
2673
|
+
},
|
|
2674
|
+
],
|
|
2675
|
+
],
|
|
2676
|
+
];
|
|
2677
|
+
var UpdateChannelRequest = [
|
|
2678
|
+
3,
|
|
2679
|
+
n0,
|
|
2680
|
+
_UCR,
|
|
2681
|
+
0,
|
|
2682
|
+
[_D, _I],
|
|
2683
|
+
[
|
|
2684
|
+
[
|
|
2685
|
+
0,
|
|
2686
|
+
{
|
|
2687
|
+
[_jN]: _d,
|
|
2688
|
+
},
|
|
2689
|
+
],
|
|
2690
|
+
[0, 1],
|
|
2691
|
+
],
|
|
2692
|
+
];
|
|
2693
|
+
var UpdateChannelResponse = [
|
|
2694
|
+
3,
|
|
2695
|
+
n0,
|
|
2696
|
+
_UCRp,
|
|
2697
|
+
0,
|
|
2698
|
+
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
2699
|
+
[
|
|
2700
|
+
[
|
|
2701
|
+
0,
|
|
2702
|
+
{
|
|
2703
|
+
[_jN]: _a,
|
|
2704
|
+
},
|
|
2705
|
+
],
|
|
2706
|
+
[
|
|
2707
|
+
0,
|
|
2708
|
+
{
|
|
2709
|
+
[_jN]: _cA,
|
|
2710
|
+
},
|
|
2711
|
+
],
|
|
2712
|
+
[
|
|
2713
|
+
0,
|
|
2714
|
+
{
|
|
2715
|
+
[_jN]: _d,
|
|
2716
|
+
},
|
|
2717
|
+
],
|
|
2718
|
+
[
|
|
2719
|
+
() => EgressAccessLogs,
|
|
2720
|
+
{
|
|
2721
|
+
[_jN]: _eAL,
|
|
2722
|
+
},
|
|
2723
|
+
],
|
|
2724
|
+
[
|
|
2725
|
+
() => HlsIngest,
|
|
2726
|
+
{
|
|
2727
|
+
[_jN]: _hI,
|
|
2728
|
+
},
|
|
2729
|
+
],
|
|
2730
|
+
[
|
|
2731
|
+
0,
|
|
2732
|
+
{
|
|
2733
|
+
[_jN]: _i,
|
|
2734
|
+
},
|
|
2735
|
+
],
|
|
2736
|
+
[
|
|
2737
|
+
() => IngressAccessLogs,
|
|
2738
|
+
{
|
|
2739
|
+
[_jN]: _iAL,
|
|
2740
|
+
},
|
|
2741
|
+
],
|
|
2742
|
+
[
|
|
2743
|
+
128 | 0,
|
|
2744
|
+
{
|
|
2745
|
+
[_jN]: _t,
|
|
2746
|
+
},
|
|
2747
|
+
],
|
|
2748
|
+
],
|
|
2749
|
+
];
|
|
2750
|
+
var UpdateOriginEndpointRequest = [
|
|
2751
|
+
3,
|
|
2752
|
+
n0,
|
|
2753
|
+
_UOER,
|
|
2754
|
+
0,
|
|
2755
|
+
[_A, _CP, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _TDS, _W],
|
|
2756
|
+
[
|
|
2757
|
+
[
|
|
2758
|
+
() => Authorization,
|
|
2759
|
+
{
|
|
2760
|
+
[_jN]: _au,
|
|
2761
|
+
},
|
|
2762
|
+
],
|
|
2763
|
+
[
|
|
2764
|
+
() => CmafPackageCreateOrUpdateParameters,
|
|
2765
|
+
{
|
|
2766
|
+
[_jN]: _cP,
|
|
2767
|
+
},
|
|
2768
|
+
],
|
|
2769
|
+
[
|
|
2770
|
+
() => DashPackage,
|
|
2771
|
+
{
|
|
2772
|
+
[_jN]: _dP,
|
|
2773
|
+
},
|
|
2774
|
+
],
|
|
2775
|
+
[
|
|
2776
|
+
0,
|
|
2777
|
+
{
|
|
2778
|
+
[_jN]: _d,
|
|
2779
|
+
},
|
|
2780
|
+
],
|
|
2781
|
+
[
|
|
2782
|
+
() => HlsPackage,
|
|
2783
|
+
{
|
|
2784
|
+
[_jN]: _hP,
|
|
2785
|
+
},
|
|
2786
|
+
],
|
|
2787
|
+
[0, 1],
|
|
2788
|
+
[
|
|
2789
|
+
0,
|
|
2790
|
+
{
|
|
2791
|
+
[_jN]: _mN,
|
|
2792
|
+
},
|
|
2793
|
+
],
|
|
2794
|
+
[
|
|
2795
|
+
() => MssPackage,
|
|
2796
|
+
{
|
|
2797
|
+
[_jN]: _mP,
|
|
2798
|
+
},
|
|
2799
|
+
],
|
|
2800
|
+
[
|
|
2801
|
+
0,
|
|
2802
|
+
{
|
|
2803
|
+
[_jN]: _o,
|
|
2804
|
+
},
|
|
2805
|
+
],
|
|
2806
|
+
[
|
|
2807
|
+
1,
|
|
2808
|
+
{
|
|
2809
|
+
[_jN]: _sWS,
|
|
2810
|
+
},
|
|
2811
|
+
],
|
|
2812
|
+
[
|
|
2813
|
+
1,
|
|
2814
|
+
{
|
|
2815
|
+
[_jN]: _tDS,
|
|
2816
|
+
},
|
|
2817
|
+
],
|
|
2818
|
+
[
|
|
2819
|
+
64 | 0,
|
|
2820
|
+
{
|
|
2821
|
+
[_jN]: _w,
|
|
2822
|
+
},
|
|
2823
|
+
],
|
|
2824
|
+
],
|
|
2825
|
+
];
|
|
2826
|
+
var UpdateOriginEndpointResponse = [
|
|
2827
|
+
3,
|
|
2828
|
+
n0,
|
|
2829
|
+
_UOERp,
|
|
2830
|
+
0,
|
|
2831
|
+
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
2832
|
+
[
|
|
2833
|
+
[
|
|
2834
|
+
0,
|
|
2835
|
+
{
|
|
2836
|
+
[_jN]: _a,
|
|
2837
|
+
},
|
|
2838
|
+
],
|
|
2839
|
+
[
|
|
2840
|
+
() => Authorization,
|
|
2841
|
+
{
|
|
2842
|
+
[_jN]: _au,
|
|
2843
|
+
},
|
|
2844
|
+
],
|
|
2845
|
+
[
|
|
2846
|
+
0,
|
|
2847
|
+
{
|
|
2848
|
+
[_jN]: _cI,
|
|
2849
|
+
},
|
|
2850
|
+
],
|
|
2851
|
+
[
|
|
2852
|
+
() => CmafPackage,
|
|
2853
|
+
{
|
|
2854
|
+
[_jN]: _cP,
|
|
2855
|
+
},
|
|
2856
|
+
],
|
|
2857
|
+
[
|
|
2858
|
+
0,
|
|
2859
|
+
{
|
|
2860
|
+
[_jN]: _cA,
|
|
2861
|
+
},
|
|
2862
|
+
],
|
|
2863
|
+
[
|
|
2864
|
+
() => DashPackage,
|
|
2865
|
+
{
|
|
2866
|
+
[_jN]: _dP,
|
|
2867
|
+
},
|
|
2868
|
+
],
|
|
2869
|
+
[
|
|
2870
|
+
0,
|
|
2871
|
+
{
|
|
2872
|
+
[_jN]: _d,
|
|
2873
|
+
},
|
|
2874
|
+
],
|
|
2875
|
+
[
|
|
2876
|
+
() => HlsPackage,
|
|
2877
|
+
{
|
|
2878
|
+
[_jN]: _hP,
|
|
2879
|
+
},
|
|
2880
|
+
],
|
|
2881
|
+
[
|
|
2882
|
+
0,
|
|
2883
|
+
{
|
|
2884
|
+
[_jN]: _i,
|
|
2885
|
+
},
|
|
2886
|
+
],
|
|
2887
|
+
[
|
|
2888
|
+
0,
|
|
2889
|
+
{
|
|
2890
|
+
[_jN]: _mN,
|
|
2891
|
+
},
|
|
2892
|
+
],
|
|
2893
|
+
[
|
|
2894
|
+
() => MssPackage,
|
|
2895
|
+
{
|
|
2896
|
+
[_jN]: _mP,
|
|
2897
|
+
},
|
|
2898
|
+
],
|
|
2899
|
+
[
|
|
2900
|
+
0,
|
|
2901
|
+
{
|
|
2902
|
+
[_jN]: _o,
|
|
2903
|
+
},
|
|
2904
|
+
],
|
|
2905
|
+
[
|
|
2906
|
+
1,
|
|
2907
|
+
{
|
|
2908
|
+
[_jN]: _sWS,
|
|
2909
|
+
},
|
|
2910
|
+
],
|
|
2911
|
+
[
|
|
2912
|
+
128 | 0,
|
|
2913
|
+
{
|
|
2914
|
+
[_jN]: _t,
|
|
2915
|
+
},
|
|
2916
|
+
],
|
|
2917
|
+
[
|
|
2918
|
+
1,
|
|
2919
|
+
{
|
|
2920
|
+
[_jN]: _tDS,
|
|
2921
|
+
},
|
|
2922
|
+
],
|
|
2923
|
+
[
|
|
2924
|
+
0,
|
|
2925
|
+
{
|
|
2926
|
+
[_jN]: _u,
|
|
2927
|
+
},
|
|
2928
|
+
],
|
|
2929
|
+
[
|
|
2930
|
+
64 | 0,
|
|
2931
|
+
{
|
|
2932
|
+
[_jN]: _w,
|
|
2933
|
+
},
|
|
2934
|
+
],
|
|
2935
|
+
],
|
|
2936
|
+
];
|
|
2937
|
+
var __Unit = "unit";
|
|
2938
|
+
var MediaPackageServiceException = [-3, _sm, "MediaPackageServiceException", 0, [], []];
|
|
2939
|
+
schema.TypeRegistry.for(_sm).registerError(MediaPackageServiceException, MediaPackageServiceException$1);
|
|
2940
|
+
var __listOfChannel = [1, n0, _lOC, 0, [() => Channel, 0]];
|
|
2941
|
+
var __listOfHarvestJob = [1, n0, _lOHJ, 0, [() => HarvestJob, 0]];
|
|
2942
|
+
var __listOfHlsManifest = [1, n0, _lOHM, 0, [() => HlsManifest, 0]];
|
|
2943
|
+
var __listOfHlsManifestCreateOrUpdateParameters = [
|
|
2944
|
+
1,
|
|
2945
|
+
n0,
|
|
2946
|
+
_lOHMCOUP,
|
|
2947
|
+
0,
|
|
2948
|
+
[() => HlsManifestCreateOrUpdateParameters, 0],
|
|
2949
|
+
];
|
|
2950
|
+
var __listOfIngestEndpoint = [1, n0, _lOIE, 0, [() => IngestEndpoint, 0]];
|
|
2951
|
+
var __listOfOriginEndpoint = [1, n0, _lOOE, 0, [() => OriginEndpoint, 0]];
|
|
2952
|
+
var ConfigureLogs = [
|
|
2953
|
+
9,
|
|
2954
|
+
n0,
|
|
2955
|
+
_CL,
|
|
2956
|
+
{
|
|
2957
|
+
[_h]: ["PUT", "/channels/{Id}/configure_logs", 200],
|
|
2958
|
+
},
|
|
2959
|
+
() => ConfigureLogsRequest,
|
|
2960
|
+
() => ConfigureLogsResponse,
|
|
2961
|
+
];
|
|
2962
|
+
var CreateChannel = [
|
|
2963
|
+
9,
|
|
2964
|
+
n0,
|
|
2965
|
+
_CC,
|
|
2966
|
+
{
|
|
2967
|
+
[_h]: ["POST", "/channels", 200],
|
|
2968
|
+
},
|
|
2969
|
+
() => CreateChannelRequest,
|
|
2970
|
+
() => CreateChannelResponse,
|
|
2971
|
+
];
|
|
2972
|
+
var CreateHarvestJob = [
|
|
2973
|
+
9,
|
|
2974
|
+
n0,
|
|
2975
|
+
_CHJ,
|
|
2976
|
+
{
|
|
2977
|
+
[_h]: ["POST", "/harvest_jobs", 200],
|
|
2978
|
+
},
|
|
2979
|
+
() => CreateHarvestJobRequest,
|
|
2980
|
+
() => CreateHarvestJobResponse,
|
|
2981
|
+
];
|
|
2982
|
+
var CreateOriginEndpoint = [
|
|
2983
|
+
9,
|
|
2984
|
+
n0,
|
|
2985
|
+
_COE,
|
|
2986
|
+
{
|
|
2987
|
+
[_h]: ["POST", "/origin_endpoints", 200],
|
|
2988
|
+
},
|
|
2989
|
+
() => CreateOriginEndpointRequest,
|
|
2990
|
+
() => CreateOriginEndpointResponse,
|
|
2991
|
+
];
|
|
2992
|
+
var DeleteChannel = [
|
|
2993
|
+
9,
|
|
2994
|
+
n0,
|
|
2995
|
+
_DC,
|
|
2996
|
+
{
|
|
2997
|
+
[_h]: ["DELETE", "/channels/{Id}", 202],
|
|
2998
|
+
},
|
|
2999
|
+
() => DeleteChannelRequest,
|
|
3000
|
+
() => DeleteChannelResponse,
|
|
3001
|
+
];
|
|
3002
|
+
var DeleteOriginEndpoint = [
|
|
3003
|
+
9,
|
|
3004
|
+
n0,
|
|
3005
|
+
_DOE,
|
|
3006
|
+
{
|
|
3007
|
+
[_h]: ["DELETE", "/origin_endpoints/{Id}", 202],
|
|
3008
|
+
},
|
|
3009
|
+
() => DeleteOriginEndpointRequest,
|
|
3010
|
+
() => DeleteOriginEndpointResponse,
|
|
3011
|
+
];
|
|
3012
|
+
var DescribeChannel = [
|
|
3013
|
+
9,
|
|
3014
|
+
n0,
|
|
3015
|
+
_DCe,
|
|
3016
|
+
{
|
|
3017
|
+
[_h]: ["GET", "/channels/{Id}", 200],
|
|
3018
|
+
},
|
|
3019
|
+
() => DescribeChannelRequest,
|
|
3020
|
+
() => DescribeChannelResponse,
|
|
3021
|
+
];
|
|
3022
|
+
var DescribeHarvestJob = [
|
|
3023
|
+
9,
|
|
3024
|
+
n0,
|
|
3025
|
+
_DHJ,
|
|
3026
|
+
{
|
|
3027
|
+
[_h]: ["GET", "/harvest_jobs/{Id}", 200],
|
|
3028
|
+
},
|
|
3029
|
+
() => DescribeHarvestJobRequest,
|
|
3030
|
+
() => DescribeHarvestJobResponse,
|
|
3031
|
+
];
|
|
3032
|
+
var DescribeOriginEndpoint = [
|
|
3033
|
+
9,
|
|
3034
|
+
n0,
|
|
3035
|
+
_DOEe,
|
|
3036
|
+
{
|
|
3037
|
+
[_h]: ["GET", "/origin_endpoints/{Id}", 200],
|
|
3038
|
+
},
|
|
3039
|
+
() => DescribeOriginEndpointRequest,
|
|
3040
|
+
() => DescribeOriginEndpointResponse,
|
|
3041
|
+
];
|
|
3042
|
+
var ListChannels = [
|
|
3043
|
+
9,
|
|
3044
|
+
n0,
|
|
3045
|
+
_LC,
|
|
3046
|
+
{
|
|
3047
|
+
[_h]: ["GET", "/channels", 200],
|
|
3048
|
+
},
|
|
3049
|
+
() => ListChannelsRequest,
|
|
3050
|
+
() => ListChannelsResponse,
|
|
3051
|
+
];
|
|
3052
|
+
var ListHarvestJobs = [
|
|
3053
|
+
9,
|
|
3054
|
+
n0,
|
|
3055
|
+
_LHJ,
|
|
3056
|
+
{
|
|
3057
|
+
[_h]: ["GET", "/harvest_jobs", 200],
|
|
3058
|
+
},
|
|
3059
|
+
() => ListHarvestJobsRequest,
|
|
3060
|
+
() => ListHarvestJobsResponse,
|
|
3061
|
+
];
|
|
3062
|
+
var ListOriginEndpoints = [
|
|
3063
|
+
9,
|
|
3064
|
+
n0,
|
|
3065
|
+
_LOE,
|
|
3066
|
+
{
|
|
3067
|
+
[_h]: ["GET", "/origin_endpoints", 200],
|
|
3068
|
+
},
|
|
3069
|
+
() => ListOriginEndpointsRequest,
|
|
3070
|
+
() => ListOriginEndpointsResponse,
|
|
3071
|
+
];
|
|
3072
|
+
var ListTagsForResource = [
|
|
3073
|
+
9,
|
|
3074
|
+
n0,
|
|
3075
|
+
_LTFR,
|
|
3076
|
+
{
|
|
3077
|
+
[_h]: ["GET", "/tags/{ResourceArn}", 200],
|
|
3078
|
+
},
|
|
3079
|
+
() => ListTagsForResourceRequest,
|
|
3080
|
+
() => ListTagsForResourceResponse,
|
|
3081
|
+
];
|
|
3082
|
+
var RotateChannelCredentials = [
|
|
3083
|
+
9,
|
|
3084
|
+
n0,
|
|
3085
|
+
_RCC,
|
|
3086
|
+
{
|
|
3087
|
+
[_h]: ["PUT", "/channels/{Id}/credentials", 200],
|
|
3088
|
+
},
|
|
3089
|
+
() => RotateChannelCredentialsRequest,
|
|
3090
|
+
() => RotateChannelCredentialsResponse,
|
|
3091
|
+
];
|
|
3092
|
+
var RotateIngestEndpointCredentials = [
|
|
3093
|
+
9,
|
|
3094
|
+
n0,
|
|
3095
|
+
_RIEC,
|
|
3096
|
+
{
|
|
3097
|
+
[_h]: ["PUT", "/channels/{Id}/ingest_endpoints/{IngestEndpointId}/credentials", 200],
|
|
3098
|
+
},
|
|
3099
|
+
() => RotateIngestEndpointCredentialsRequest,
|
|
3100
|
+
() => RotateIngestEndpointCredentialsResponse,
|
|
3101
|
+
];
|
|
3102
|
+
var TagResource = [
|
|
3103
|
+
9,
|
|
3104
|
+
n0,
|
|
3105
|
+
_TR,
|
|
3106
|
+
{
|
|
3107
|
+
[_h]: ["POST", "/tags/{ResourceArn}", 204],
|
|
3108
|
+
},
|
|
3109
|
+
() => TagResourceRequest,
|
|
3110
|
+
() => __Unit,
|
|
3111
|
+
];
|
|
3112
|
+
var UntagResource = [
|
|
3113
|
+
9,
|
|
3114
|
+
n0,
|
|
3115
|
+
_UR,
|
|
3116
|
+
{
|
|
3117
|
+
[_h]: ["DELETE", "/tags/{ResourceArn}", 204],
|
|
3118
|
+
},
|
|
3119
|
+
() => UntagResourceRequest,
|
|
3120
|
+
() => __Unit,
|
|
3121
|
+
];
|
|
3122
|
+
var UpdateChannel = [
|
|
3123
|
+
9,
|
|
3124
|
+
n0,
|
|
3125
|
+
_UC,
|
|
3126
|
+
{
|
|
3127
|
+
[_h]: ["PUT", "/channels/{Id}", 200],
|
|
3128
|
+
},
|
|
3129
|
+
() => UpdateChannelRequest,
|
|
3130
|
+
() => UpdateChannelResponse,
|
|
3131
|
+
];
|
|
3132
|
+
var UpdateOriginEndpoint = [
|
|
3133
|
+
9,
|
|
3134
|
+
n0,
|
|
3135
|
+
_UOE,
|
|
3136
|
+
{
|
|
3137
|
+
[_h]: ["PUT", "/origin_endpoints/{Id}", 200],
|
|
3138
|
+
},
|
|
3139
|
+
() => UpdateOriginEndpointRequest,
|
|
3140
|
+
() => UpdateOriginEndpointResponse,
|
|
3141
|
+
];
|
|
1474
3142
|
|
|
1475
3143
|
class ConfigureLogsCommand extends smithyClient.Command
|
|
1476
3144
|
.classBuilder()
|
|
1477
3145
|
.ep(commonParams)
|
|
1478
3146
|
.m(function (Command, cs, config, o) {
|
|
1479
|
-
return [
|
|
1480
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1481
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1482
|
-
];
|
|
3147
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1483
3148
|
})
|
|
1484
3149
|
.s("MediaPackage", "ConfigureLogs", {})
|
|
1485
3150
|
.n("MediaPackageClient", "ConfigureLogsCommand")
|
|
1486
|
-
.
|
|
1487
|
-
.ser(se_ConfigureLogsCommand)
|
|
1488
|
-
.de(de_ConfigureLogsCommand)
|
|
3151
|
+
.sc(ConfigureLogs)
|
|
1489
3152
|
.build() {
|
|
1490
3153
|
}
|
|
1491
3154
|
|
|
@@ -1493,16 +3156,11 @@ class CreateChannelCommand extends smithyClient.Command
|
|
|
1493
3156
|
.classBuilder()
|
|
1494
3157
|
.ep(commonParams)
|
|
1495
3158
|
.m(function (Command, cs, config, o) {
|
|
1496
|
-
return [
|
|
1497
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1498
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1499
|
-
];
|
|
3159
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1500
3160
|
})
|
|
1501
3161
|
.s("MediaPackage", "CreateChannel", {})
|
|
1502
3162
|
.n("MediaPackageClient", "CreateChannelCommand")
|
|
1503
|
-
.
|
|
1504
|
-
.ser(se_CreateChannelCommand)
|
|
1505
|
-
.de(de_CreateChannelCommand)
|
|
3163
|
+
.sc(CreateChannel)
|
|
1506
3164
|
.build() {
|
|
1507
3165
|
}
|
|
1508
3166
|
|
|
@@ -1510,16 +3168,11 @@ class CreateHarvestJobCommand extends smithyClient.Command
|
|
|
1510
3168
|
.classBuilder()
|
|
1511
3169
|
.ep(commonParams)
|
|
1512
3170
|
.m(function (Command, cs, config, o) {
|
|
1513
|
-
return [
|
|
1514
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1515
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1516
|
-
];
|
|
3171
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1517
3172
|
})
|
|
1518
3173
|
.s("MediaPackage", "CreateHarvestJob", {})
|
|
1519
3174
|
.n("MediaPackageClient", "CreateHarvestJobCommand")
|
|
1520
|
-
.
|
|
1521
|
-
.ser(se_CreateHarvestJobCommand)
|
|
1522
|
-
.de(de_CreateHarvestJobCommand)
|
|
3175
|
+
.sc(CreateHarvestJob)
|
|
1523
3176
|
.build() {
|
|
1524
3177
|
}
|
|
1525
3178
|
|
|
@@ -1527,16 +3180,11 @@ class CreateOriginEndpointCommand extends smithyClient.Command
|
|
|
1527
3180
|
.classBuilder()
|
|
1528
3181
|
.ep(commonParams)
|
|
1529
3182
|
.m(function (Command, cs, config, o) {
|
|
1530
|
-
return [
|
|
1531
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1532
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1533
|
-
];
|
|
3183
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1534
3184
|
})
|
|
1535
3185
|
.s("MediaPackage", "CreateOriginEndpoint", {})
|
|
1536
3186
|
.n("MediaPackageClient", "CreateOriginEndpointCommand")
|
|
1537
|
-
.
|
|
1538
|
-
.ser(se_CreateOriginEndpointCommand)
|
|
1539
|
-
.de(de_CreateOriginEndpointCommand)
|
|
3187
|
+
.sc(CreateOriginEndpoint)
|
|
1540
3188
|
.build() {
|
|
1541
3189
|
}
|
|
1542
3190
|
|
|
@@ -1544,16 +3192,11 @@ class DeleteChannelCommand extends smithyClient.Command
|
|
|
1544
3192
|
.classBuilder()
|
|
1545
3193
|
.ep(commonParams)
|
|
1546
3194
|
.m(function (Command, cs, config, o) {
|
|
1547
|
-
return [
|
|
1548
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1549
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1550
|
-
];
|
|
3195
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1551
3196
|
})
|
|
1552
3197
|
.s("MediaPackage", "DeleteChannel", {})
|
|
1553
3198
|
.n("MediaPackageClient", "DeleteChannelCommand")
|
|
1554
|
-
.
|
|
1555
|
-
.ser(se_DeleteChannelCommand)
|
|
1556
|
-
.de(de_DeleteChannelCommand)
|
|
3199
|
+
.sc(DeleteChannel)
|
|
1557
3200
|
.build() {
|
|
1558
3201
|
}
|
|
1559
3202
|
|
|
@@ -1561,16 +3204,11 @@ class DeleteOriginEndpointCommand extends smithyClient.Command
|
|
|
1561
3204
|
.classBuilder()
|
|
1562
3205
|
.ep(commonParams)
|
|
1563
3206
|
.m(function (Command, cs, config, o) {
|
|
1564
|
-
return [
|
|
1565
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1566
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1567
|
-
];
|
|
3207
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1568
3208
|
})
|
|
1569
3209
|
.s("MediaPackage", "DeleteOriginEndpoint", {})
|
|
1570
3210
|
.n("MediaPackageClient", "DeleteOriginEndpointCommand")
|
|
1571
|
-
.
|
|
1572
|
-
.ser(se_DeleteOriginEndpointCommand)
|
|
1573
|
-
.de(de_DeleteOriginEndpointCommand)
|
|
3211
|
+
.sc(DeleteOriginEndpoint)
|
|
1574
3212
|
.build() {
|
|
1575
3213
|
}
|
|
1576
3214
|
|
|
@@ -1578,16 +3216,11 @@ class DescribeChannelCommand extends smithyClient.Command
|
|
|
1578
3216
|
.classBuilder()
|
|
1579
3217
|
.ep(commonParams)
|
|
1580
3218
|
.m(function (Command, cs, config, o) {
|
|
1581
|
-
return [
|
|
1582
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1583
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1584
|
-
];
|
|
3219
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1585
3220
|
})
|
|
1586
3221
|
.s("MediaPackage", "DescribeChannel", {})
|
|
1587
3222
|
.n("MediaPackageClient", "DescribeChannelCommand")
|
|
1588
|
-
.
|
|
1589
|
-
.ser(se_DescribeChannelCommand)
|
|
1590
|
-
.de(de_DescribeChannelCommand)
|
|
3223
|
+
.sc(DescribeChannel)
|
|
1591
3224
|
.build() {
|
|
1592
3225
|
}
|
|
1593
3226
|
|
|
@@ -1595,16 +3228,11 @@ class DescribeHarvestJobCommand extends smithyClient.Command
|
|
|
1595
3228
|
.classBuilder()
|
|
1596
3229
|
.ep(commonParams)
|
|
1597
3230
|
.m(function (Command, cs, config, o) {
|
|
1598
|
-
return [
|
|
1599
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1600
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1601
|
-
];
|
|
3231
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1602
3232
|
})
|
|
1603
3233
|
.s("MediaPackage", "DescribeHarvestJob", {})
|
|
1604
3234
|
.n("MediaPackageClient", "DescribeHarvestJobCommand")
|
|
1605
|
-
.
|
|
1606
|
-
.ser(se_DescribeHarvestJobCommand)
|
|
1607
|
-
.de(de_DescribeHarvestJobCommand)
|
|
3235
|
+
.sc(DescribeHarvestJob)
|
|
1608
3236
|
.build() {
|
|
1609
3237
|
}
|
|
1610
3238
|
|
|
@@ -1612,16 +3240,11 @@ class DescribeOriginEndpointCommand extends smithyClient.Command
|
|
|
1612
3240
|
.classBuilder()
|
|
1613
3241
|
.ep(commonParams)
|
|
1614
3242
|
.m(function (Command, cs, config, o) {
|
|
1615
|
-
return [
|
|
1616
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1617
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1618
|
-
];
|
|
3243
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1619
3244
|
})
|
|
1620
3245
|
.s("MediaPackage", "DescribeOriginEndpoint", {})
|
|
1621
3246
|
.n("MediaPackageClient", "DescribeOriginEndpointCommand")
|
|
1622
|
-
.
|
|
1623
|
-
.ser(se_DescribeOriginEndpointCommand)
|
|
1624
|
-
.de(de_DescribeOriginEndpointCommand)
|
|
3247
|
+
.sc(DescribeOriginEndpoint)
|
|
1625
3248
|
.build() {
|
|
1626
3249
|
}
|
|
1627
3250
|
|
|
@@ -1629,16 +3252,11 @@ class ListChannelsCommand extends smithyClient.Command
|
|
|
1629
3252
|
.classBuilder()
|
|
1630
3253
|
.ep(commonParams)
|
|
1631
3254
|
.m(function (Command, cs, config, o) {
|
|
1632
|
-
return [
|
|
1633
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1634
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1635
|
-
];
|
|
3255
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1636
3256
|
})
|
|
1637
3257
|
.s("MediaPackage", "ListChannels", {})
|
|
1638
3258
|
.n("MediaPackageClient", "ListChannelsCommand")
|
|
1639
|
-
.
|
|
1640
|
-
.ser(se_ListChannelsCommand)
|
|
1641
|
-
.de(de_ListChannelsCommand)
|
|
3259
|
+
.sc(ListChannels)
|
|
1642
3260
|
.build() {
|
|
1643
3261
|
}
|
|
1644
3262
|
|
|
@@ -1646,16 +3264,11 @@ class ListHarvestJobsCommand extends smithyClient.Command
|
|
|
1646
3264
|
.classBuilder()
|
|
1647
3265
|
.ep(commonParams)
|
|
1648
3266
|
.m(function (Command, cs, config, o) {
|
|
1649
|
-
return [
|
|
1650
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1651
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1652
|
-
];
|
|
3267
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1653
3268
|
})
|
|
1654
3269
|
.s("MediaPackage", "ListHarvestJobs", {})
|
|
1655
3270
|
.n("MediaPackageClient", "ListHarvestJobsCommand")
|
|
1656
|
-
.
|
|
1657
|
-
.ser(se_ListHarvestJobsCommand)
|
|
1658
|
-
.de(de_ListHarvestJobsCommand)
|
|
3271
|
+
.sc(ListHarvestJobs)
|
|
1659
3272
|
.build() {
|
|
1660
3273
|
}
|
|
1661
3274
|
|
|
@@ -1663,16 +3276,11 @@ class ListOriginEndpointsCommand extends smithyClient.Command
|
|
|
1663
3276
|
.classBuilder()
|
|
1664
3277
|
.ep(commonParams)
|
|
1665
3278
|
.m(function (Command, cs, config, o) {
|
|
1666
|
-
return [
|
|
1667
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1668
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1669
|
-
];
|
|
3279
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1670
3280
|
})
|
|
1671
3281
|
.s("MediaPackage", "ListOriginEndpoints", {})
|
|
1672
3282
|
.n("MediaPackageClient", "ListOriginEndpointsCommand")
|
|
1673
|
-
.
|
|
1674
|
-
.ser(se_ListOriginEndpointsCommand)
|
|
1675
|
-
.de(de_ListOriginEndpointsCommand)
|
|
3283
|
+
.sc(ListOriginEndpoints)
|
|
1676
3284
|
.build() {
|
|
1677
3285
|
}
|
|
1678
3286
|
|
|
@@ -1680,16 +3288,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1680
3288
|
.classBuilder()
|
|
1681
3289
|
.ep(commonParams)
|
|
1682
3290
|
.m(function (Command, cs, config, o) {
|
|
1683
|
-
return [
|
|
1684
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1685
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1686
|
-
];
|
|
3291
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1687
3292
|
})
|
|
1688
3293
|
.s("MediaPackage", "ListTagsForResource", {})
|
|
1689
3294
|
.n("MediaPackageClient", "ListTagsForResourceCommand")
|
|
1690
|
-
.
|
|
1691
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1692
|
-
.de(de_ListTagsForResourceCommand)
|
|
3295
|
+
.sc(ListTagsForResource)
|
|
1693
3296
|
.build() {
|
|
1694
3297
|
}
|
|
1695
3298
|
|
|
@@ -1697,16 +3300,11 @@ class RotateChannelCredentialsCommand extends smithyClient.Command
|
|
|
1697
3300
|
.classBuilder()
|
|
1698
3301
|
.ep(commonParams)
|
|
1699
3302
|
.m(function (Command, cs, config, o) {
|
|
1700
|
-
return [
|
|
1701
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1702
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1703
|
-
];
|
|
3303
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1704
3304
|
})
|
|
1705
3305
|
.s("MediaPackage", "RotateChannelCredentials", {})
|
|
1706
3306
|
.n("MediaPackageClient", "RotateChannelCredentialsCommand")
|
|
1707
|
-
.
|
|
1708
|
-
.ser(se_RotateChannelCredentialsCommand)
|
|
1709
|
-
.de(de_RotateChannelCredentialsCommand)
|
|
3307
|
+
.sc(RotateChannelCredentials)
|
|
1710
3308
|
.build() {
|
|
1711
3309
|
}
|
|
1712
3310
|
|
|
@@ -1714,16 +3312,11 @@ class RotateIngestEndpointCredentialsCommand extends smithyClient.Command
|
|
|
1714
3312
|
.classBuilder()
|
|
1715
3313
|
.ep(commonParams)
|
|
1716
3314
|
.m(function (Command, cs, config, o) {
|
|
1717
|
-
return [
|
|
1718
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1719
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1720
|
-
];
|
|
3315
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1721
3316
|
})
|
|
1722
3317
|
.s("MediaPackage", "RotateIngestEndpointCredentials", {})
|
|
1723
3318
|
.n("MediaPackageClient", "RotateIngestEndpointCredentialsCommand")
|
|
1724
|
-
.
|
|
1725
|
-
.ser(se_RotateIngestEndpointCredentialsCommand)
|
|
1726
|
-
.de(de_RotateIngestEndpointCredentialsCommand)
|
|
3319
|
+
.sc(RotateIngestEndpointCredentials)
|
|
1727
3320
|
.build() {
|
|
1728
3321
|
}
|
|
1729
3322
|
|
|
@@ -1731,16 +3324,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1731
3324
|
.classBuilder()
|
|
1732
3325
|
.ep(commonParams)
|
|
1733
3326
|
.m(function (Command, cs, config, o) {
|
|
1734
|
-
return [
|
|
1735
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1736
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1737
|
-
];
|
|
3327
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1738
3328
|
})
|
|
1739
3329
|
.s("MediaPackage", "TagResource", {})
|
|
1740
3330
|
.n("MediaPackageClient", "TagResourceCommand")
|
|
1741
|
-
.
|
|
1742
|
-
.ser(se_TagResourceCommand)
|
|
1743
|
-
.de(de_TagResourceCommand)
|
|
3331
|
+
.sc(TagResource)
|
|
1744
3332
|
.build() {
|
|
1745
3333
|
}
|
|
1746
3334
|
|
|
@@ -1748,16 +3336,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1748
3336
|
.classBuilder()
|
|
1749
3337
|
.ep(commonParams)
|
|
1750
3338
|
.m(function (Command, cs, config, o) {
|
|
1751
|
-
return [
|
|
1752
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1753
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1754
|
-
];
|
|
3339
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1755
3340
|
})
|
|
1756
3341
|
.s("MediaPackage", "UntagResource", {})
|
|
1757
3342
|
.n("MediaPackageClient", "UntagResourceCommand")
|
|
1758
|
-
.
|
|
1759
|
-
.ser(se_UntagResourceCommand)
|
|
1760
|
-
.de(de_UntagResourceCommand)
|
|
3343
|
+
.sc(UntagResource)
|
|
1761
3344
|
.build() {
|
|
1762
3345
|
}
|
|
1763
3346
|
|
|
@@ -1765,16 +3348,11 @@ class UpdateChannelCommand extends smithyClient.Command
|
|
|
1765
3348
|
.classBuilder()
|
|
1766
3349
|
.ep(commonParams)
|
|
1767
3350
|
.m(function (Command, cs, config, o) {
|
|
1768
|
-
return [
|
|
1769
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1770
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1771
|
-
];
|
|
3351
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1772
3352
|
})
|
|
1773
3353
|
.s("MediaPackage", "UpdateChannel", {})
|
|
1774
3354
|
.n("MediaPackageClient", "UpdateChannelCommand")
|
|
1775
|
-
.
|
|
1776
|
-
.ser(se_UpdateChannelCommand)
|
|
1777
|
-
.de(de_UpdateChannelCommand)
|
|
3355
|
+
.sc(UpdateChannel)
|
|
1778
3356
|
.build() {
|
|
1779
3357
|
}
|
|
1780
3358
|
|
|
@@ -1782,16 +3360,11 @@ class UpdateOriginEndpointCommand extends smithyClient.Command
|
|
|
1782
3360
|
.classBuilder()
|
|
1783
3361
|
.ep(commonParams)
|
|
1784
3362
|
.m(function (Command, cs, config, o) {
|
|
1785
|
-
return [
|
|
1786
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1787
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1788
|
-
];
|
|
3363
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1789
3364
|
})
|
|
1790
3365
|
.s("MediaPackage", "UpdateOriginEndpoint", {})
|
|
1791
3366
|
.n("MediaPackageClient", "UpdateOriginEndpointCommand")
|
|
1792
|
-
.
|
|
1793
|
-
.ser(se_UpdateOriginEndpointCommand)
|
|
1794
|
-
.de(de_UpdateOriginEndpointCommand)
|
|
3367
|
+
.sc(UpdateOriginEndpoint)
|
|
1795
3368
|
.build() {
|
|
1796
3369
|
}
|
|
1797
3370
|
|
|
@@ -1836,54 +3409,44 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1836
3409
|
});
|
|
1837
3410
|
exports.AdMarkers = AdMarkers;
|
|
1838
3411
|
exports.AdsOnDeliveryRestrictions = AdsOnDeliveryRestrictions;
|
|
1839
|
-
exports.ChannelFilterSensitiveLog = ChannelFilterSensitiveLog;
|
|
1840
3412
|
exports.CmafEncryptionMethod = CmafEncryptionMethod;
|
|
1841
3413
|
exports.ConfigureLogsCommand = ConfigureLogsCommand;
|
|
1842
|
-
exports.ConfigureLogsResponseFilterSensitiveLog = ConfigureLogsResponseFilterSensitiveLog;
|
|
1843
3414
|
exports.CreateChannelCommand = CreateChannelCommand;
|
|
1844
|
-
exports.CreateChannelResponseFilterSensitiveLog = CreateChannelResponseFilterSensitiveLog;
|
|
1845
3415
|
exports.CreateHarvestJobCommand = CreateHarvestJobCommand;
|
|
1846
3416
|
exports.CreateOriginEndpointCommand = CreateOriginEndpointCommand;
|
|
1847
3417
|
exports.DeleteChannelCommand = DeleteChannelCommand;
|
|
1848
3418
|
exports.DeleteOriginEndpointCommand = DeleteOriginEndpointCommand;
|
|
1849
3419
|
exports.DescribeChannelCommand = DescribeChannelCommand;
|
|
1850
|
-
exports.DescribeChannelResponseFilterSensitiveLog = DescribeChannelResponseFilterSensitiveLog;
|
|
1851
3420
|
exports.DescribeHarvestJobCommand = DescribeHarvestJobCommand;
|
|
1852
3421
|
exports.DescribeOriginEndpointCommand = DescribeOriginEndpointCommand;
|
|
1853
3422
|
exports.EncryptionMethod = EncryptionMethod;
|
|
1854
|
-
exports.ForbiddenException = ForbiddenException;
|
|
1855
|
-
exports.
|
|
1856
|
-
exports.IngestEndpointFilterSensitiveLog = IngestEndpointFilterSensitiveLog;
|
|
1857
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
3423
|
+
exports.ForbiddenException = ForbiddenException$1;
|
|
3424
|
+
exports.InternalServerErrorException = InternalServerErrorException$1;
|
|
1858
3425
|
exports.ListChannelsCommand = ListChannelsCommand;
|
|
1859
|
-
exports.ListChannelsResponseFilterSensitiveLog = ListChannelsResponseFilterSensitiveLog;
|
|
1860
3426
|
exports.ListHarvestJobsCommand = ListHarvestJobsCommand;
|
|
1861
3427
|
exports.ListOriginEndpointsCommand = ListOriginEndpointsCommand;
|
|
1862
3428
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1863
3429
|
exports.ManifestLayout = ManifestLayout;
|
|
1864
3430
|
exports.MediaPackage = MediaPackage;
|
|
1865
3431
|
exports.MediaPackageClient = MediaPackageClient;
|
|
1866
|
-
exports.MediaPackageServiceException = MediaPackageServiceException;
|
|
1867
|
-
exports.NotFoundException = NotFoundException;
|
|
3432
|
+
exports.MediaPackageServiceException = MediaPackageServiceException$1;
|
|
3433
|
+
exports.NotFoundException = NotFoundException$1;
|
|
1868
3434
|
exports.Origination = Origination;
|
|
1869
3435
|
exports.PlaylistType = PlaylistType;
|
|
1870
3436
|
exports.PresetSpeke20Audio = PresetSpeke20Audio;
|
|
1871
3437
|
exports.PresetSpeke20Video = PresetSpeke20Video;
|
|
1872
3438
|
exports.Profile = Profile;
|
|
1873
3439
|
exports.RotateChannelCredentialsCommand = RotateChannelCredentialsCommand;
|
|
1874
|
-
exports.RotateChannelCredentialsResponseFilterSensitiveLog = RotateChannelCredentialsResponseFilterSensitiveLog;
|
|
1875
3440
|
exports.RotateIngestEndpointCredentialsCommand = RotateIngestEndpointCredentialsCommand;
|
|
1876
|
-
exports.RotateIngestEndpointCredentialsResponseFilterSensitiveLog = RotateIngestEndpointCredentialsResponseFilterSensitiveLog;
|
|
1877
3441
|
exports.SegmentTemplateFormat = SegmentTemplateFormat;
|
|
1878
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
3442
|
+
exports.ServiceUnavailableException = ServiceUnavailableException$1;
|
|
1879
3443
|
exports.Status = Status;
|
|
1880
3444
|
exports.StreamOrder = StreamOrder;
|
|
1881
3445
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1882
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1883
|
-
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
3446
|
+
exports.TooManyRequestsException = TooManyRequestsException$1;
|
|
3447
|
+
exports.UnprocessableEntityException = UnprocessableEntityException$1;
|
|
1884
3448
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1885
3449
|
exports.UpdateChannelCommand = UpdateChannelCommand;
|
|
1886
|
-
exports.UpdateChannelResponseFilterSensitiveLog = UpdateChannelResponseFilterSensitiveLog;
|
|
1887
3450
|
exports.UpdateOriginEndpointCommand = UpdateOriginEndpointCommand;
|
|
1888
3451
|
exports.UtcTiming = UtcTiming;
|
|
1889
3452
|
exports.__AdTriggersElement = __AdTriggersElement;
|