@aws-sdk/client-mediapackage 3.987.0 → 3.989.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 +38 -872
- package/dist-cjs/models/MediaPackageServiceException.js +12 -0
- package/dist-cjs/models/errors.js +94 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +686 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +56 -50
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var MediaPackageServiceException = require('./models/MediaPackageServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,767 +113,6 @@ class MediaPackageClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class MediaPackageServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, MediaPackageServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ForbiddenException extends MediaPackageServiceException {
|
|
121
|
-
name = "ForbiddenException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "ForbiddenException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InternalServerErrorException extends MediaPackageServiceException {
|
|
135
|
-
name = "InternalServerErrorException";
|
|
136
|
-
$fault = "server";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InternalServerErrorException",
|
|
141
|
-
$fault: "server",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class NotFoundException extends MediaPackageServiceException {
|
|
149
|
-
name = "NotFoundException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "NotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ServiceUnavailableException extends MediaPackageServiceException {
|
|
163
|
-
name = "ServiceUnavailableException";
|
|
164
|
-
$fault = "server";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ServiceUnavailableException",
|
|
169
|
-
$fault: "server",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class TooManyRequestsException extends MediaPackageServiceException {
|
|
177
|
-
name = "TooManyRequestsException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "TooManyRequestsException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class UnprocessableEntityException extends MediaPackageServiceException {
|
|
191
|
-
name = "UnprocessableEntityException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "UnprocessableEntityException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
const _A = "Authorization";
|
|
206
|
-
const _AM = "AdMarkers";
|
|
207
|
-
const _AODR = "AdsOnDeliveryRestrictions";
|
|
208
|
-
const _AT = "AdTriggers";
|
|
209
|
-
const _Ar = "Arn";
|
|
210
|
-
const _BN = "BucketName";
|
|
211
|
-
const _C = "Channel";
|
|
212
|
-
const _CA = "CreatedAt";
|
|
213
|
-
const _CAe = "CertificateArn";
|
|
214
|
-
const _CC = "CreateChannel";
|
|
215
|
-
const _CCR = "CreateChannelRequest";
|
|
216
|
-
const _CCRr = "CreateChannelResponse";
|
|
217
|
-
const _CE = "CmafEncryption";
|
|
218
|
-
const _CHJ = "CreateHarvestJob";
|
|
219
|
-
const _CHJR = "CreateHarvestJobRequest";
|
|
220
|
-
const _CHJRr = "CreateHarvestJobResponse";
|
|
221
|
-
const _CI = "ChannelId";
|
|
222
|
-
const _CIS = "CdnIdentifierSecret";
|
|
223
|
-
const _CIV = "ConstantInitializationVector";
|
|
224
|
-
const _CL = "ConfigureLogs";
|
|
225
|
-
const _CLR = "ConfigureLogsRequest";
|
|
226
|
-
const _CLRo = "ConfigureLogsResponse";
|
|
227
|
-
const _COE = "CreateOriginEndpoint";
|
|
228
|
-
const _COER = "CreateOriginEndpointRequest";
|
|
229
|
-
const _COERr = "CreateOriginEndpointResponse";
|
|
230
|
-
const _CP = "CmafPackage";
|
|
231
|
-
const _CPCOUP = "CmafPackageCreateOrUpdateParameters";
|
|
232
|
-
const _Ch = "Channels";
|
|
233
|
-
const _D = "Description";
|
|
234
|
-
const _DC = "DeleteChannel";
|
|
235
|
-
const _DCR = "DeleteChannelRequest";
|
|
236
|
-
const _DCRe = "DeleteChannelResponse";
|
|
237
|
-
const _DCRes = "DescribeChannelRequest";
|
|
238
|
-
const _DCResc = "DescribeChannelResponse";
|
|
239
|
-
const _DCe = "DescribeChannel";
|
|
240
|
-
const _DE = "DashEncryption";
|
|
241
|
-
const _DHJ = "DescribeHarvestJob";
|
|
242
|
-
const _DHJR = "DescribeHarvestJobRequest";
|
|
243
|
-
const _DHJRe = "DescribeHarvestJobResponse";
|
|
244
|
-
const _DOE = "DeleteOriginEndpoint";
|
|
245
|
-
const _DOER = "DeleteOriginEndpointRequest";
|
|
246
|
-
const _DOERe = "DeleteOriginEndpointResponse";
|
|
247
|
-
const _DOERes = "DescribeOriginEndpointRequest";
|
|
248
|
-
const _DOEResc = "DescribeOriginEndpointResponse";
|
|
249
|
-
const _DOEe = "DescribeOriginEndpoint";
|
|
250
|
-
const _DP = "DashPackage";
|
|
251
|
-
const _E = "Encryption";
|
|
252
|
-
const _EAL = "EgressAccessLogs";
|
|
253
|
-
const _ECC = "EncryptionContractConfiguration";
|
|
254
|
-
const _EM = "EncryptionMethod";
|
|
255
|
-
const _ET = "EndTime";
|
|
256
|
-
const _FE = "ForbiddenException";
|
|
257
|
-
const _HE = "HlsEncryption";
|
|
258
|
-
const _HI = "HlsIngest";
|
|
259
|
-
const _HJ = "HarvestJob";
|
|
260
|
-
const _HJa = "HarvestJobs";
|
|
261
|
-
const _HM = "HlsManifests";
|
|
262
|
-
const _HMCOUP = "HlsManifestCreateOrUpdateParameters";
|
|
263
|
-
const _HMl = "HlsManifest";
|
|
264
|
-
const _HP = "HlsPackage";
|
|
265
|
-
const _I = "Id";
|
|
266
|
-
const _IAL = "IngressAccessLogs";
|
|
267
|
-
const _ICI = "IncludeChannelId";
|
|
268
|
-
const _IDS = "IncludeDvbSubtitles";
|
|
269
|
-
const _IE = "IngestEndpoints";
|
|
270
|
-
const _IEI = "IngestEndpointId";
|
|
271
|
-
const _IEn = "IngestEndpoint";
|
|
272
|
-
const _IIOS = "IncludeIframeOnlyStream";
|
|
273
|
-
const _IS = "IncludeStatus";
|
|
274
|
-
const _ISEE = "InternalServerErrorException";
|
|
275
|
-
const _KRIS = "KeyRotationIntervalSeconds";
|
|
276
|
-
const _LC = "ListChannels";
|
|
277
|
-
const _LCR = "ListChannelsRequest";
|
|
278
|
-
const _LCRi = "ListChannelsResponse";
|
|
279
|
-
const _LGN = "LogGroupName";
|
|
280
|
-
const _LHJ = "ListHarvestJobs";
|
|
281
|
-
const _LHJR = "ListHarvestJobsRequest";
|
|
282
|
-
const _LHJRi = "ListHarvestJobsResponse";
|
|
283
|
-
const _LOE = "ListOriginEndpoints";
|
|
284
|
-
const _LOER = "ListOriginEndpointsRequest";
|
|
285
|
-
const _LOERi = "ListOriginEndpointsResponse";
|
|
286
|
-
const _LTFR = "ListTagsForResource";
|
|
287
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
288
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
289
|
-
const _M = "Message";
|
|
290
|
-
const _MBTS = "MinBufferTimeSeconds";
|
|
291
|
-
const _ME = "MssEncryption";
|
|
292
|
-
const _MK = "ManifestKey";
|
|
293
|
-
const _ML = "ManifestLayout";
|
|
294
|
-
const _MN = "ManifestName";
|
|
295
|
-
const _MP = "MssPackage";
|
|
296
|
-
const _MR = "MaxResults";
|
|
297
|
-
const _MUPS = "MinUpdatePeriodSeconds";
|
|
298
|
-
const _MVBPS = "MaxVideoBitsPerSecond";
|
|
299
|
-
const _MVBPSi = "MinVideoBitsPerSecond";
|
|
300
|
-
const _MWS = "ManifestWindowSeconds";
|
|
301
|
-
const _NFE = "NotFoundException";
|
|
302
|
-
const _NT = "NextToken";
|
|
303
|
-
const _O = "Origination";
|
|
304
|
-
const _OE = "OriginEndpoints";
|
|
305
|
-
const _OEI = "OriginEndpointId";
|
|
306
|
-
const _OEr = "OriginEndpoint";
|
|
307
|
-
const _P = "Profile";
|
|
308
|
-
const _PDTIS = "ProgramDateTimeIntervalSeconds";
|
|
309
|
-
const _PSA = "PresetSpeke20Audio";
|
|
310
|
-
const _PSV = "PresetSpeke20Video";
|
|
311
|
-
const _PT = "PeriodTriggers";
|
|
312
|
-
const _PTl = "PlaylistType";
|
|
313
|
-
const _PWS = "PlaylistWindowSeconds";
|
|
314
|
-
const _Pa = "Password";
|
|
315
|
-
const _RA = "ResourceArn";
|
|
316
|
-
const _RAo = "RoleArn";
|
|
317
|
-
const _RCC = "RotateChannelCredentials";
|
|
318
|
-
const _RCCR = "RotateChannelCredentialsRequest";
|
|
319
|
-
const _RCCRo = "RotateChannelCredentialsResponse";
|
|
320
|
-
const _REXK = "RepeatExtXKey";
|
|
321
|
-
const _RI = "ResourceId";
|
|
322
|
-
const _RIEC = "RotateIngestEndpointCredentials";
|
|
323
|
-
const _RIECR = "RotateIngestEndpointCredentialsRequest";
|
|
324
|
-
const _RIECRo = "RotateIngestEndpointCredentialsResponse";
|
|
325
|
-
const _S = "Status";
|
|
326
|
-
const _SD = "S3Destination";
|
|
327
|
-
const _SDS = "SegmentDurationSeconds";
|
|
328
|
-
const _SI = "SystemIds";
|
|
329
|
-
const _SKP = "SpekeKeyProvider";
|
|
330
|
-
const _SO = "StreamOrder";
|
|
331
|
-
const _SP = "SegmentPrefix";
|
|
332
|
-
const _SPDS = "SuggestedPresentationDelaySeconds";
|
|
333
|
-
const _SRA = "SecretsRoleArn";
|
|
334
|
-
const _SS = "SensitiveString";
|
|
335
|
-
const _SSt = "StreamSelection";
|
|
336
|
-
const _ST = "StartTime";
|
|
337
|
-
const _STF = "SegmentTemplateFormat";
|
|
338
|
-
const _SUE = "ServiceUnavailableException";
|
|
339
|
-
const _SWS = "StartoverWindowSeconds";
|
|
340
|
-
const _T = "Tags";
|
|
341
|
-
const _TDS = "TimeDelaySeconds";
|
|
342
|
-
const _TK = "TagKeys";
|
|
343
|
-
const _TMRE = "TooManyRequestsException";
|
|
344
|
-
const _TR = "TagResource";
|
|
345
|
-
const _TRR = "TagResourceRequest";
|
|
346
|
-
const _U = "Url";
|
|
347
|
-
const _UARG = "UseAudioRenditionGroup";
|
|
348
|
-
const _UC = "UpdateChannel";
|
|
349
|
-
const _UCR = "UpdateChannelRequest";
|
|
350
|
-
const _UCRp = "UpdateChannelResponse";
|
|
351
|
-
const _UEE = "UnprocessableEntityException";
|
|
352
|
-
const _UOE = "UpdateOriginEndpoint";
|
|
353
|
-
const _UOER = "UpdateOriginEndpointRequest";
|
|
354
|
-
const _UOERp = "UpdateOriginEndpointResponse";
|
|
355
|
-
const _UR = "UntagResource";
|
|
356
|
-
const _URR = "UntagResourceRequest";
|
|
357
|
-
const _UT = "UtcTiming";
|
|
358
|
-
const _UTU = "UtcTimingUri";
|
|
359
|
-
const _Us = "Username";
|
|
360
|
-
const _W = "Whitelist";
|
|
361
|
-
const _a = "arn";
|
|
362
|
-
const _aM = "adMarkers";
|
|
363
|
-
const _aODR = "adsOnDeliveryRestrictions";
|
|
364
|
-
const _aT = "adTriggers";
|
|
365
|
-
const _au = "authorization";
|
|
366
|
-
const _bN = "bucketName";
|
|
367
|
-
const _c = "client";
|
|
368
|
-
const _cA = "createdAt";
|
|
369
|
-
const _cAe = "certificateArn";
|
|
370
|
-
const _cI = "channelId";
|
|
371
|
-
const _cIS = "cdnIdentifierSecret";
|
|
372
|
-
const _cIV = "constantInitializationVector";
|
|
373
|
-
const _cP = "cmafPackage";
|
|
374
|
-
const _ch = "channels";
|
|
375
|
-
const _d = "description";
|
|
376
|
-
const _dP = "dashPackage";
|
|
377
|
-
const _e = "encryption";
|
|
378
|
-
const _eAL = "egressAccessLogs";
|
|
379
|
-
const _eCC = "encryptionContractConfiguration";
|
|
380
|
-
const _eM = "encryptionMethod";
|
|
381
|
-
const _eT = "endTime";
|
|
382
|
-
const _er = "error";
|
|
383
|
-
const _h = "http";
|
|
384
|
-
const _hE = "httpError";
|
|
385
|
-
const _hI = "hlsIngest";
|
|
386
|
-
const _hJ = "harvestJobs";
|
|
387
|
-
const _hM = "hlsManifests";
|
|
388
|
-
const _hP = "hlsPackage";
|
|
389
|
-
const _hQ = "httpQuery";
|
|
390
|
-
const _i = "id";
|
|
391
|
-
const _iAL = "ingressAccessLogs";
|
|
392
|
-
const _iCI = "includeChannelId";
|
|
393
|
-
const _iDS = "includeDvbSubtitles";
|
|
394
|
-
const _iE = "ingestEndpoints";
|
|
395
|
-
const _iIOS = "includeIframeOnlyStream";
|
|
396
|
-
const _iS = "includeStatus";
|
|
397
|
-
const _jN = "jsonName";
|
|
398
|
-
const _kRIS = "keyRotationIntervalSeconds";
|
|
399
|
-
const _lGN = "logGroupName";
|
|
400
|
-
const _lOC = "__listOfChannel";
|
|
401
|
-
const _lOHJ = "__listOfHarvestJob";
|
|
402
|
-
const _lOHM = "__listOfHlsManifest";
|
|
403
|
-
const _lOHMCOUP = "__listOfHlsManifestCreateOrUpdateParameters";
|
|
404
|
-
const _lOIE = "__listOfIngestEndpoint";
|
|
405
|
-
const _lOOE = "__listOfOriginEndpoint";
|
|
406
|
-
const _m = "message";
|
|
407
|
-
const _mBTS = "minBufferTimeSeconds";
|
|
408
|
-
const _mK = "manifestKey";
|
|
409
|
-
const _mL = "manifestLayout";
|
|
410
|
-
const _mN = "manifestName";
|
|
411
|
-
const _mP = "mssPackage";
|
|
412
|
-
const _mR = "maxResults";
|
|
413
|
-
const _mUPS = "minUpdatePeriodSeconds";
|
|
414
|
-
const _mVBPS = "maxVideoBitsPerSecond";
|
|
415
|
-
const _mVBPSi = "minVideoBitsPerSecond";
|
|
416
|
-
const _mWS = "manifestWindowSeconds";
|
|
417
|
-
const _nT = "nextToken";
|
|
418
|
-
const _o = "origination";
|
|
419
|
-
const _oE = "originEndpoints";
|
|
420
|
-
const _oEI = "originEndpointId";
|
|
421
|
-
const _p = "profile";
|
|
422
|
-
const _pDTIS = "programDateTimeIntervalSeconds";
|
|
423
|
-
const _pSA = "presetSpeke20Audio";
|
|
424
|
-
const _pSV = "presetSpeke20Video";
|
|
425
|
-
const _pT = "periodTriggers";
|
|
426
|
-
const _pTl = "playlistType";
|
|
427
|
-
const _pWS = "playlistWindowSeconds";
|
|
428
|
-
const _pa = "password";
|
|
429
|
-
const _rA = "roleArn";
|
|
430
|
-
const _rEXK = "repeatExtXKey";
|
|
431
|
-
const _rI = "resourceId";
|
|
432
|
-
const _s = "status";
|
|
433
|
-
const _sD = "s3Destination";
|
|
434
|
-
const _sDS = "segmentDurationSeconds";
|
|
435
|
-
const _sI = "systemIds";
|
|
436
|
-
const _sKP = "spekeKeyProvider";
|
|
437
|
-
const _sO = "streamOrder";
|
|
438
|
-
const _sP = "segmentPrefix";
|
|
439
|
-
const _sPDS = "suggestedPresentationDelaySeconds";
|
|
440
|
-
const _sRA = "secretsRoleArn";
|
|
441
|
-
const _sS = "streamSelection";
|
|
442
|
-
const _sT = "startTime";
|
|
443
|
-
const _sTF = "segmentTemplateFormat";
|
|
444
|
-
const _sWS = "startoverWindowSeconds";
|
|
445
|
-
const _se = "server";
|
|
446
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mediapackage";
|
|
447
|
-
const _t = "tags";
|
|
448
|
-
const _tDS = "timeDelaySeconds";
|
|
449
|
-
const _tK = "tagKeys";
|
|
450
|
-
const _u = "url";
|
|
451
|
-
const _uARG = "useAudioRenditionGroup";
|
|
452
|
-
const _uT = "utcTiming";
|
|
453
|
-
const _uTU = "utcTimingUri";
|
|
454
|
-
const _us = "username";
|
|
455
|
-
const _w = "whitelist";
|
|
456
|
-
const n0 = "com.amazonaws.mediapackage";
|
|
457
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
458
|
-
var Authorization$ = [3, n0, _A,
|
|
459
|
-
0,
|
|
460
|
-
[_CIS, _SRA],
|
|
461
|
-
[[0, { [_jN]: _cIS }], [0, { [_jN]: _sRA }]], 2
|
|
462
|
-
];
|
|
463
|
-
var Channel$ = [3, n0, _C,
|
|
464
|
-
0,
|
|
465
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
466
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
467
|
-
];
|
|
468
|
-
var CmafEncryption$ = [3, n0, _CE,
|
|
469
|
-
0,
|
|
470
|
-
[_SKP, _CIV, _EM, _KRIS],
|
|
471
|
-
[[() => SpekeKeyProvider$, { [_jN]: _sKP }], [0, { [_jN]: _cIV }], [0, { [_jN]: _eM }], [1, { [_jN]: _kRIS }]], 1
|
|
472
|
-
];
|
|
473
|
-
var CmafPackage$ = [3, n0, _CP,
|
|
474
|
-
0,
|
|
475
|
-
[_E, _HM, _SDS, _SP, _SSt],
|
|
476
|
-
[[() => CmafEncryption$, { [_jN]: _e }], [() => __listOfHlsManifest, { [_jN]: _hM }], [1, { [_jN]: _sDS }], [0, { [_jN]: _sP }], [() => StreamSelection$, { [_jN]: _sS }]]
|
|
477
|
-
];
|
|
478
|
-
var CmafPackageCreateOrUpdateParameters$ = [3, n0, _CPCOUP,
|
|
479
|
-
0,
|
|
480
|
-
[_E, _HM, _SDS, _SP, _SSt],
|
|
481
|
-
[[() => CmafEncryption$, { [_jN]: _e }], [() => __listOfHlsManifestCreateOrUpdateParameters, { [_jN]: _hM }], [1, { [_jN]: _sDS }], [0, { [_jN]: _sP }], [() => StreamSelection$, { [_jN]: _sS }]]
|
|
482
|
-
];
|
|
483
|
-
var ConfigureLogsRequest$ = [3, n0, _CLR,
|
|
484
|
-
0,
|
|
485
|
-
[_I, _EAL, _IAL],
|
|
486
|
-
[[0, 1], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => IngressAccessLogs$, { [_jN]: _iAL }]], 1
|
|
487
|
-
];
|
|
488
|
-
var ConfigureLogsResponse$ = [3, n0, _CLRo,
|
|
489
|
-
0,
|
|
490
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
491
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
492
|
-
];
|
|
493
|
-
var CreateChannelRequest$ = [3, n0, _CCR,
|
|
494
|
-
0,
|
|
495
|
-
[_I, _D, _T],
|
|
496
|
-
[[0, { [_jN]: _i }], [0, { [_jN]: _d }], [128 | 0, { [_jN]: _t }]], 1
|
|
497
|
-
];
|
|
498
|
-
var CreateChannelResponse$ = [3, n0, _CCRr,
|
|
499
|
-
0,
|
|
500
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
501
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
502
|
-
];
|
|
503
|
-
var CreateHarvestJobRequest$ = [3, n0, _CHJR,
|
|
504
|
-
0,
|
|
505
|
-
[_ET, _I, _OEI, _SD, _ST],
|
|
506
|
-
[[0, { [_jN]: _eT }], [0, { [_jN]: _i }], [0, { [_jN]: _oEI }], [() => S3Destination$, { [_jN]: _sD }], [0, { [_jN]: _sT }]], 5
|
|
507
|
-
];
|
|
508
|
-
var CreateHarvestJobResponse$ = [3, n0, _CHJRr,
|
|
509
|
-
0,
|
|
510
|
-
[_Ar, _CI, _CA, _ET, _I, _OEI, _SD, _ST, _S],
|
|
511
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cI }], [0, { [_jN]: _cA }], [0, { [_jN]: _eT }], [0, { [_jN]: _i }], [0, { [_jN]: _oEI }], [() => S3Destination$, { [_jN]: _sD }], [0, { [_jN]: _sT }], [0, { [_jN]: _s }]]
|
|
512
|
-
];
|
|
513
|
-
var CreateOriginEndpointRequest$ = [3, n0, _COER,
|
|
514
|
-
0,
|
|
515
|
-
[_CI, _I, _A, _CP, _DP, _D, _HP, _MN, _MP, _O, _SWS, _T, _TDS, _W],
|
|
516
|
-
[[0, { [_jN]: _cI }], [0, { [_jN]: _i }], [() => Authorization$, { [_jN]: _au }], [() => CmafPackageCreateOrUpdateParameters$, { [_jN]: _cP }], [() => DashPackage$, { [_jN]: _dP }], [0, { [_jN]: _d }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _mN }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _o }], [1, { [_jN]: _sWS }], [128 | 0, { [_jN]: _t }], [1, { [_jN]: _tDS }], [64 | 0, { [_jN]: _w }]], 2
|
|
517
|
-
];
|
|
518
|
-
var CreateOriginEndpointResponse$ = [3, n0, _COERr,
|
|
519
|
-
0,
|
|
520
|
-
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
521
|
-
[[0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cI }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [0, { [_jN]: _d }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [0, { [_jN]: _mN }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _o }], [1, { [_jN]: _sWS }], [128 | 0, { [_jN]: _t }], [1, { [_jN]: _tDS }], [0, { [_jN]: _u }], [64 | 0, { [_jN]: _w }]]
|
|
522
|
-
];
|
|
523
|
-
var DashEncryption$ = [3, n0, _DE,
|
|
524
|
-
0,
|
|
525
|
-
[_SKP, _KRIS],
|
|
526
|
-
[[() => SpekeKeyProvider$, { [_jN]: _sKP }], [1, { [_jN]: _kRIS }]], 1
|
|
527
|
-
];
|
|
528
|
-
var DashPackage$ = [3, n0, _DP,
|
|
529
|
-
0,
|
|
530
|
-
[_AT, _AODR, _E, _IIOS, _ML, _MWS, _MBTS, _MUPS, _PT, _P, _SDS, _STF, _SSt, _SPDS, _UT, _UTU],
|
|
531
|
-
[[64 | 0, { [_jN]: _aT }], [0, { [_jN]: _aODR }], [() => DashEncryption$, { [_jN]: _e }], [2, { [_jN]: _iIOS }], [0, { [_jN]: _mL }], [1, { [_jN]: _mWS }], [1, { [_jN]: _mBTS }], [1, { [_jN]: _mUPS }], [64 | 0, { [_jN]: _pT }], [0, { [_jN]: _p }], [1, { [_jN]: _sDS }], [0, { [_jN]: _sTF }], [() => StreamSelection$, { [_jN]: _sS }], [1, { [_jN]: _sPDS }], [0, { [_jN]: _uT }], [0, { [_jN]: _uTU }]]
|
|
532
|
-
];
|
|
533
|
-
var DeleteChannelRequest$ = [3, n0, _DCR,
|
|
534
|
-
0,
|
|
535
|
-
[_I],
|
|
536
|
-
[[0, 1]], 1
|
|
537
|
-
];
|
|
538
|
-
var DeleteChannelResponse$ = [3, n0, _DCRe,
|
|
539
|
-
0,
|
|
540
|
-
[],
|
|
541
|
-
[]
|
|
542
|
-
];
|
|
543
|
-
var DeleteOriginEndpointRequest$ = [3, n0, _DOER,
|
|
544
|
-
0,
|
|
545
|
-
[_I],
|
|
546
|
-
[[0, 1]], 1
|
|
547
|
-
];
|
|
548
|
-
var DeleteOriginEndpointResponse$ = [3, n0, _DOERe,
|
|
549
|
-
0,
|
|
550
|
-
[],
|
|
551
|
-
[]
|
|
552
|
-
];
|
|
553
|
-
var DescribeChannelRequest$ = [3, n0, _DCRes,
|
|
554
|
-
0,
|
|
555
|
-
[_I],
|
|
556
|
-
[[0, 1]], 1
|
|
557
|
-
];
|
|
558
|
-
var DescribeChannelResponse$ = [3, n0, _DCResc,
|
|
559
|
-
0,
|
|
560
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
561
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
562
|
-
];
|
|
563
|
-
var DescribeHarvestJobRequest$ = [3, n0, _DHJR,
|
|
564
|
-
0,
|
|
565
|
-
[_I],
|
|
566
|
-
[[0, 1]], 1
|
|
567
|
-
];
|
|
568
|
-
var DescribeHarvestJobResponse$ = [3, n0, _DHJRe,
|
|
569
|
-
0,
|
|
570
|
-
[_Ar, _CI, _CA, _ET, _I, _OEI, _SD, _ST, _S],
|
|
571
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cI }], [0, { [_jN]: _cA }], [0, { [_jN]: _eT }], [0, { [_jN]: _i }], [0, { [_jN]: _oEI }], [() => S3Destination$, { [_jN]: _sD }], [0, { [_jN]: _sT }], [0, { [_jN]: _s }]]
|
|
572
|
-
];
|
|
573
|
-
var DescribeOriginEndpointRequest$ = [3, n0, _DOERes,
|
|
574
|
-
0,
|
|
575
|
-
[_I],
|
|
576
|
-
[[0, 1]], 1
|
|
577
|
-
];
|
|
578
|
-
var DescribeOriginEndpointResponse$ = [3, n0, _DOEResc,
|
|
579
|
-
0,
|
|
580
|
-
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
581
|
-
[[0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cI }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [0, { [_jN]: _d }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [0, { [_jN]: _mN }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _o }], [1, { [_jN]: _sWS }], [128 | 0, { [_jN]: _t }], [1, { [_jN]: _tDS }], [0, { [_jN]: _u }], [64 | 0, { [_jN]: _w }]]
|
|
582
|
-
];
|
|
583
|
-
var EgressAccessLogs$ = [3, n0, _EAL,
|
|
584
|
-
0,
|
|
585
|
-
[_LGN],
|
|
586
|
-
[[0, { [_jN]: _lGN }]]
|
|
587
|
-
];
|
|
588
|
-
var EncryptionContractConfiguration$ = [3, n0, _ECC,
|
|
589
|
-
0,
|
|
590
|
-
[_PSA, _PSV],
|
|
591
|
-
[[0, { [_jN]: _pSA }], [0, { [_jN]: _pSV }]], 2
|
|
592
|
-
];
|
|
593
|
-
var ForbiddenException$ = [-3, n0, _FE,
|
|
594
|
-
{ [_er]: _c, [_hE]: 403 },
|
|
595
|
-
[_M],
|
|
596
|
-
[[0, { [_jN]: _m }]]
|
|
597
|
-
];
|
|
598
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
599
|
-
var HarvestJob$ = [3, n0, _HJ,
|
|
600
|
-
0,
|
|
601
|
-
[_Ar, _CI, _CA, _ET, _I, _OEI, _SD, _ST, _S],
|
|
602
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cI }], [0, { [_jN]: _cA }], [0, { [_jN]: _eT }], [0, { [_jN]: _i }], [0, { [_jN]: _oEI }], [() => S3Destination$, { [_jN]: _sD }], [0, { [_jN]: _sT }], [0, { [_jN]: _s }]]
|
|
603
|
-
];
|
|
604
|
-
var HlsEncryption$ = [3, n0, _HE,
|
|
605
|
-
0,
|
|
606
|
-
[_SKP, _CIV, _EM, _KRIS, _REXK],
|
|
607
|
-
[[() => SpekeKeyProvider$, { [_jN]: _sKP }], [0, { [_jN]: _cIV }], [0, { [_jN]: _eM }], [1, { [_jN]: _kRIS }], [2, { [_jN]: _rEXK }]], 1
|
|
608
|
-
];
|
|
609
|
-
var HlsIngest$ = [3, n0, _HI,
|
|
610
|
-
0,
|
|
611
|
-
[_IE],
|
|
612
|
-
[[() => __listOfIngestEndpoint, { [_jN]: _iE }]]
|
|
613
|
-
];
|
|
614
|
-
var HlsManifest$ = [3, n0, _HMl,
|
|
615
|
-
0,
|
|
616
|
-
[_I, _AM, _IIOS, _MN, _PTl, _PWS, _PDTIS, _U, _AT, _AODR],
|
|
617
|
-
[[0, { [_jN]: _i }], [0, { [_jN]: _aM }], [2, { [_jN]: _iIOS }], [0, { [_jN]: _mN }], [0, { [_jN]: _pTl }], [1, { [_jN]: _pWS }], [1, { [_jN]: _pDTIS }], [0, { [_jN]: _u }], [64 | 0, { [_jN]: _aT }], [0, { [_jN]: _aODR }]], 1
|
|
618
|
-
];
|
|
619
|
-
var HlsManifestCreateOrUpdateParameters$ = [3, n0, _HMCOUP,
|
|
620
|
-
0,
|
|
621
|
-
[_I, _AM, _AT, _AODR, _IIOS, _MN, _PTl, _PWS, _PDTIS],
|
|
622
|
-
[[0, { [_jN]: _i }], [0, { [_jN]: _aM }], [64 | 0, { [_jN]: _aT }], [0, { [_jN]: _aODR }], [2, { [_jN]: _iIOS }], [0, { [_jN]: _mN }], [0, { [_jN]: _pTl }], [1, { [_jN]: _pWS }], [1, { [_jN]: _pDTIS }]], 1
|
|
623
|
-
];
|
|
624
|
-
var HlsPackage$ = [3, n0, _HP,
|
|
625
|
-
0,
|
|
626
|
-
[_AM, _AT, _AODR, _E, _IDS, _IIOS, _PTl, _PWS, _PDTIS, _SDS, _SSt, _UARG],
|
|
627
|
-
[[0, { [_jN]: _aM }], [64 | 0, { [_jN]: _aT }], [0, { [_jN]: _aODR }], [() => HlsEncryption$, { [_jN]: _e }], [2, { [_jN]: _iDS }], [2, { [_jN]: _iIOS }], [0, { [_jN]: _pTl }], [1, { [_jN]: _pWS }], [1, { [_jN]: _pDTIS }], [1, { [_jN]: _sDS }], [() => StreamSelection$, { [_jN]: _sS }], [2, { [_jN]: _uARG }]]
|
|
628
|
-
];
|
|
629
|
-
var IngestEndpoint$ = [3, n0, _IEn,
|
|
630
|
-
0,
|
|
631
|
-
[_I, _Pa, _U, _Us],
|
|
632
|
-
[[0, { [_jN]: _i }], [() => SensitiveString, { [_jN]: _pa }], [0, { [_jN]: _u }], [() => SensitiveString, { [_jN]: _us }]]
|
|
633
|
-
];
|
|
634
|
-
var IngressAccessLogs$ = [3, n0, _IAL,
|
|
635
|
-
0,
|
|
636
|
-
[_LGN],
|
|
637
|
-
[[0, { [_jN]: _lGN }]]
|
|
638
|
-
];
|
|
639
|
-
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
640
|
-
{ [_er]: _se, [_hE]: 500 },
|
|
641
|
-
[_M],
|
|
642
|
-
[[0, { [_jN]: _m }]]
|
|
643
|
-
];
|
|
644
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
645
|
-
var ListChannelsRequest$ = [3, n0, _LCR,
|
|
646
|
-
0,
|
|
647
|
-
[_MR, _NT],
|
|
648
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
649
|
-
];
|
|
650
|
-
var ListChannelsResponse$ = [3, n0, _LCRi,
|
|
651
|
-
0,
|
|
652
|
-
[_Ch, _NT],
|
|
653
|
-
[[() => __listOfChannel, { [_jN]: _ch }], [0, { [_jN]: _nT }]]
|
|
654
|
-
];
|
|
655
|
-
var ListHarvestJobsRequest$ = [3, n0, _LHJR,
|
|
656
|
-
0,
|
|
657
|
-
[_ICI, _IS, _MR, _NT],
|
|
658
|
-
[[0, { [_hQ]: _iCI }], [0, { [_hQ]: _iS }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
659
|
-
];
|
|
660
|
-
var ListHarvestJobsResponse$ = [3, n0, _LHJRi,
|
|
661
|
-
0,
|
|
662
|
-
[_HJa, _NT],
|
|
663
|
-
[[() => __listOfHarvestJob, { [_jN]: _hJ }], [0, { [_jN]: _nT }]]
|
|
664
|
-
];
|
|
665
|
-
var ListOriginEndpointsRequest$ = [3, n0, _LOER,
|
|
666
|
-
0,
|
|
667
|
-
[_CI, _MR, _NT],
|
|
668
|
-
[[0, { [_hQ]: _cI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
669
|
-
];
|
|
670
|
-
var ListOriginEndpointsResponse$ = [3, n0, _LOERi,
|
|
671
|
-
0,
|
|
672
|
-
[_NT, _OE],
|
|
673
|
-
[[0, { [_jN]: _nT }], [() => __listOfOriginEndpoint, { [_jN]: _oE }]]
|
|
674
|
-
];
|
|
675
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
676
|
-
0,
|
|
677
|
-
[_RA],
|
|
678
|
-
[[0, 1]], 1
|
|
679
|
-
];
|
|
680
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
681
|
-
0,
|
|
682
|
-
[_T],
|
|
683
|
-
[[128 | 0, { [_jN]: _t }]]
|
|
684
|
-
];
|
|
685
|
-
var MssEncryption$ = [3, n0, _ME,
|
|
686
|
-
0,
|
|
687
|
-
[_SKP],
|
|
688
|
-
[[() => SpekeKeyProvider$, { [_jN]: _sKP }]], 1
|
|
689
|
-
];
|
|
690
|
-
var MssPackage$ = [3, n0, _MP,
|
|
691
|
-
0,
|
|
692
|
-
[_E, _MWS, _SDS, _SSt],
|
|
693
|
-
[[() => MssEncryption$, { [_jN]: _e }], [1, { [_jN]: _mWS }], [1, { [_jN]: _sDS }], [() => StreamSelection$, { [_jN]: _sS }]]
|
|
694
|
-
];
|
|
695
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
696
|
-
{ [_er]: _c, [_hE]: 404 },
|
|
697
|
-
[_M],
|
|
698
|
-
[[0, { [_jN]: _m }]]
|
|
699
|
-
];
|
|
700
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
701
|
-
var OriginEndpoint$ = [3, n0, _OEr,
|
|
702
|
-
0,
|
|
703
|
-
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
704
|
-
[[0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cI }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [0, { [_jN]: _d }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [0, { [_jN]: _mN }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _o }], [1, { [_jN]: _sWS }], [128 | 0, { [_jN]: _t }], [1, { [_jN]: _tDS }], [0, { [_jN]: _u }], [64 | 0, { [_jN]: _w }]]
|
|
705
|
-
];
|
|
706
|
-
var RotateChannelCredentialsRequest$ = [3, n0, _RCCR,
|
|
707
|
-
0,
|
|
708
|
-
[_I],
|
|
709
|
-
[[0, 1]], 1
|
|
710
|
-
];
|
|
711
|
-
var RotateChannelCredentialsResponse$ = [3, n0, _RCCRo,
|
|
712
|
-
0,
|
|
713
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
714
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
715
|
-
];
|
|
716
|
-
var RotateIngestEndpointCredentialsRequest$ = [3, n0, _RIECR,
|
|
717
|
-
0,
|
|
718
|
-
[_I, _IEI],
|
|
719
|
-
[[0, 1], [0, 1]], 2
|
|
720
|
-
];
|
|
721
|
-
var RotateIngestEndpointCredentialsResponse$ = [3, n0, _RIECRo,
|
|
722
|
-
0,
|
|
723
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
724
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
725
|
-
];
|
|
726
|
-
var S3Destination$ = [3, n0, _SD,
|
|
727
|
-
0,
|
|
728
|
-
[_BN, _MK, _RAo],
|
|
729
|
-
[[0, { [_jN]: _bN }], [0, { [_jN]: _mK }], [0, { [_jN]: _rA }]], 3
|
|
730
|
-
];
|
|
731
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
732
|
-
{ [_er]: _se, [_hE]: 503 },
|
|
733
|
-
[_M],
|
|
734
|
-
[[0, { [_jN]: _m }]]
|
|
735
|
-
];
|
|
736
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
737
|
-
var SpekeKeyProvider$ = [3, n0, _SKP,
|
|
738
|
-
0,
|
|
739
|
-
[_RI, _RAo, _SI, _U, _CAe, _ECC],
|
|
740
|
-
[[0, { [_jN]: _rI }], [0, { [_jN]: _rA }], [64 | 0, { [_jN]: _sI }], [0, { [_jN]: _u }], [0, { [_jN]: _cAe }], [() => EncryptionContractConfiguration$, { [_jN]: _eCC }]], 4
|
|
741
|
-
];
|
|
742
|
-
var StreamSelection$ = [3, n0, _SSt,
|
|
743
|
-
0,
|
|
744
|
-
[_MVBPS, _MVBPSi, _SO],
|
|
745
|
-
[[1, { [_jN]: _mVBPS }], [1, { [_jN]: _mVBPSi }], [0, { [_jN]: _sO }]]
|
|
746
|
-
];
|
|
747
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
748
|
-
0,
|
|
749
|
-
[_RA, _T],
|
|
750
|
-
[[0, 1], [128 | 0, { [_jN]: _t }]], 2
|
|
751
|
-
];
|
|
752
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
753
|
-
{ [_er]: _c, [_hE]: 429 },
|
|
754
|
-
[_M],
|
|
755
|
-
[[0, { [_jN]: _m }]]
|
|
756
|
-
];
|
|
757
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
758
|
-
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
759
|
-
{ [_er]: _c, [_hE]: 422 },
|
|
760
|
-
[_M],
|
|
761
|
-
[[0, { [_jN]: _m }]]
|
|
762
|
-
];
|
|
763
|
-
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
764
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
765
|
-
0,
|
|
766
|
-
[_RA, _TK],
|
|
767
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
768
|
-
];
|
|
769
|
-
var UpdateChannelRequest$ = [3, n0, _UCR,
|
|
770
|
-
0,
|
|
771
|
-
[_I, _D],
|
|
772
|
-
[[0, 1], [0, { [_jN]: _d }]], 1
|
|
773
|
-
];
|
|
774
|
-
var UpdateChannelResponse$ = [3, n0, _UCRp,
|
|
775
|
-
0,
|
|
776
|
-
[_Ar, _CA, _D, _EAL, _HI, _I, _IAL, _T],
|
|
777
|
-
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _d }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [() => HlsIngest$, { [_jN]: _hI }], [0, { [_jN]: _i }], [() => IngressAccessLogs$, { [_jN]: _iAL }], [128 | 0, { [_jN]: _t }]]
|
|
778
|
-
];
|
|
779
|
-
var UpdateOriginEndpointRequest$ = [3, n0, _UOER,
|
|
780
|
-
0,
|
|
781
|
-
[_I, _A, _CP, _DP, _D, _HP, _MN, _MP, _O, _SWS, _TDS, _W],
|
|
782
|
-
[[0, 1], [() => Authorization$, { [_jN]: _au }], [() => CmafPackageCreateOrUpdateParameters$, { [_jN]: _cP }], [() => DashPackage$, { [_jN]: _dP }], [0, { [_jN]: _d }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _mN }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _o }], [1, { [_jN]: _sWS }], [1, { [_jN]: _tDS }], [64 | 0, { [_jN]: _w }]], 1
|
|
783
|
-
];
|
|
784
|
-
var UpdateOriginEndpointResponse$ = [3, n0, _UOERp,
|
|
785
|
-
0,
|
|
786
|
-
[_Ar, _A, _CI, _CP, _CA, _DP, _D, _HP, _I, _MN, _MP, _O, _SWS, _T, _TDS, _U, _W],
|
|
787
|
-
[[0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cI }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [0, { [_jN]: _d }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [0, { [_jN]: _mN }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _o }], [1, { [_jN]: _sWS }], [128 | 0, { [_jN]: _t }], [1, { [_jN]: _tDS }], [0, { [_jN]: _u }], [64 | 0, { [_jN]: _w }]]
|
|
788
|
-
];
|
|
789
|
-
var __Unit = "unit";
|
|
790
|
-
var MediaPackageServiceException$ = [-3, _sm, "MediaPackageServiceException", 0, [], []];
|
|
791
|
-
schema.TypeRegistry.for(_sm).registerError(MediaPackageServiceException$, MediaPackageServiceException);
|
|
792
|
-
var __listOfChannel = [1, n0, _lOC,
|
|
793
|
-
0, [() => Channel$,
|
|
794
|
-
0]
|
|
795
|
-
];
|
|
796
|
-
var __listOfHarvestJob = [1, n0, _lOHJ,
|
|
797
|
-
0, [() => HarvestJob$,
|
|
798
|
-
0]
|
|
799
|
-
];
|
|
800
|
-
var __listOfHlsManifest = [1, n0, _lOHM,
|
|
801
|
-
0, [() => HlsManifest$,
|
|
802
|
-
0]
|
|
803
|
-
];
|
|
804
|
-
var __listOfHlsManifestCreateOrUpdateParameters = [1, n0, _lOHMCOUP,
|
|
805
|
-
0, [() => HlsManifestCreateOrUpdateParameters$,
|
|
806
|
-
0]
|
|
807
|
-
];
|
|
808
|
-
var __listOfIngestEndpoint = [1, n0, _lOIE,
|
|
809
|
-
0, [() => IngestEndpoint$,
|
|
810
|
-
0]
|
|
811
|
-
];
|
|
812
|
-
var __listOfOriginEndpoint = [1, n0, _lOOE,
|
|
813
|
-
0, [() => OriginEndpoint$,
|
|
814
|
-
0]
|
|
815
|
-
];
|
|
816
|
-
var ConfigureLogs$ = [9, n0, _CL,
|
|
817
|
-
{ [_h]: ["PUT", "/channels/{Id}/configure_logs", 200] }, () => ConfigureLogsRequest$, () => ConfigureLogsResponse$
|
|
818
|
-
];
|
|
819
|
-
var CreateChannel$ = [9, n0, _CC,
|
|
820
|
-
{ [_h]: ["POST", "/channels", 200] }, () => CreateChannelRequest$, () => CreateChannelResponse$
|
|
821
|
-
];
|
|
822
|
-
var CreateHarvestJob$ = [9, n0, _CHJ,
|
|
823
|
-
{ [_h]: ["POST", "/harvest_jobs", 200] }, () => CreateHarvestJobRequest$, () => CreateHarvestJobResponse$
|
|
824
|
-
];
|
|
825
|
-
var CreateOriginEndpoint$ = [9, n0, _COE,
|
|
826
|
-
{ [_h]: ["POST", "/origin_endpoints", 200] }, () => CreateOriginEndpointRequest$, () => CreateOriginEndpointResponse$
|
|
827
|
-
];
|
|
828
|
-
var DeleteChannel$ = [9, n0, _DC,
|
|
829
|
-
{ [_h]: ["DELETE", "/channels/{Id}", 202] }, () => DeleteChannelRequest$, () => DeleteChannelResponse$
|
|
830
|
-
];
|
|
831
|
-
var DeleteOriginEndpoint$ = [9, n0, _DOE,
|
|
832
|
-
{ [_h]: ["DELETE", "/origin_endpoints/{Id}", 202] }, () => DeleteOriginEndpointRequest$, () => DeleteOriginEndpointResponse$
|
|
833
|
-
];
|
|
834
|
-
var DescribeChannel$ = [9, n0, _DCe,
|
|
835
|
-
{ [_h]: ["GET", "/channels/{Id}", 200] }, () => DescribeChannelRequest$, () => DescribeChannelResponse$
|
|
836
|
-
];
|
|
837
|
-
var DescribeHarvestJob$ = [9, n0, _DHJ,
|
|
838
|
-
{ [_h]: ["GET", "/harvest_jobs/{Id}", 200] }, () => DescribeHarvestJobRequest$, () => DescribeHarvestJobResponse$
|
|
839
|
-
];
|
|
840
|
-
var DescribeOriginEndpoint$ = [9, n0, _DOEe,
|
|
841
|
-
{ [_h]: ["GET", "/origin_endpoints/{Id}", 200] }, () => DescribeOriginEndpointRequest$, () => DescribeOriginEndpointResponse$
|
|
842
|
-
];
|
|
843
|
-
var ListChannels$ = [9, n0, _LC,
|
|
844
|
-
{ [_h]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
|
|
845
|
-
];
|
|
846
|
-
var ListHarvestJobs$ = [9, n0, _LHJ,
|
|
847
|
-
{ [_h]: ["GET", "/harvest_jobs", 200] }, () => ListHarvestJobsRequest$, () => ListHarvestJobsResponse$
|
|
848
|
-
];
|
|
849
|
-
var ListOriginEndpoints$ = [9, n0, _LOE,
|
|
850
|
-
{ [_h]: ["GET", "/origin_endpoints", 200] }, () => ListOriginEndpointsRequest$, () => ListOriginEndpointsResponse$
|
|
851
|
-
];
|
|
852
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
853
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
854
|
-
];
|
|
855
|
-
var RotateChannelCredentials$ = [9, n0, _RCC,
|
|
856
|
-
{ [_h]: ["PUT", "/channels/{Id}/credentials", 200] }, () => RotateChannelCredentialsRequest$, () => RotateChannelCredentialsResponse$
|
|
857
|
-
];
|
|
858
|
-
var RotateIngestEndpointCredentials$ = [9, n0, _RIEC,
|
|
859
|
-
{ [_h]: ["PUT", "/channels/{Id}/ingest_endpoints/{IngestEndpointId}/credentials", 200] }, () => RotateIngestEndpointCredentialsRequest$, () => RotateIngestEndpointCredentialsResponse$
|
|
860
|
-
];
|
|
861
|
-
var TagResource$ = [9, n0, _TR,
|
|
862
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
863
|
-
];
|
|
864
|
-
var UntagResource$ = [9, n0, _UR,
|
|
865
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
866
|
-
];
|
|
867
|
-
var UpdateChannel$ = [9, n0, _UC,
|
|
868
|
-
{ [_h]: ["PUT", "/channels/{Id}", 200] }, () => UpdateChannelRequest$, () => UpdateChannelResponse$
|
|
869
|
-
];
|
|
870
|
-
var UpdateOriginEndpoint$ = [9, n0, _UOE,
|
|
871
|
-
{ [_h]: ["PUT", "/origin_endpoints/{Id}", 200] }, () => UpdateOriginEndpointRequest$, () => UpdateOriginEndpointResponse$
|
|
872
|
-
];
|
|
873
|
-
|
|
874
116
|
class ConfigureLogsCommand extends smithyClient.Command
|
|
875
117
|
.classBuilder()
|
|
876
118
|
.ep(commonParams)
|
|
@@ -879,7 +121,7 @@ class ConfigureLogsCommand extends smithyClient.Command
|
|
|
879
121
|
})
|
|
880
122
|
.s("MediaPackage", "ConfigureLogs", {})
|
|
881
123
|
.n("MediaPackageClient", "ConfigureLogsCommand")
|
|
882
|
-
.sc(ConfigureLogs$)
|
|
124
|
+
.sc(schemas_0.ConfigureLogs$)
|
|
883
125
|
.build() {
|
|
884
126
|
}
|
|
885
127
|
|
|
@@ -891,7 +133,7 @@ class CreateChannelCommand extends smithyClient.Command
|
|
|
891
133
|
})
|
|
892
134
|
.s("MediaPackage", "CreateChannel", {})
|
|
893
135
|
.n("MediaPackageClient", "CreateChannelCommand")
|
|
894
|
-
.sc(CreateChannel$)
|
|
136
|
+
.sc(schemas_0.CreateChannel$)
|
|
895
137
|
.build() {
|
|
896
138
|
}
|
|
897
139
|
|
|
@@ -903,7 +145,7 @@ class CreateHarvestJobCommand extends smithyClient.Command
|
|
|
903
145
|
})
|
|
904
146
|
.s("MediaPackage", "CreateHarvestJob", {})
|
|
905
147
|
.n("MediaPackageClient", "CreateHarvestJobCommand")
|
|
906
|
-
.sc(CreateHarvestJob$)
|
|
148
|
+
.sc(schemas_0.CreateHarvestJob$)
|
|
907
149
|
.build() {
|
|
908
150
|
}
|
|
909
151
|
|
|
@@ -915,7 +157,7 @@ class CreateOriginEndpointCommand extends smithyClient.Command
|
|
|
915
157
|
})
|
|
916
158
|
.s("MediaPackage", "CreateOriginEndpoint", {})
|
|
917
159
|
.n("MediaPackageClient", "CreateOriginEndpointCommand")
|
|
918
|
-
.sc(CreateOriginEndpoint$)
|
|
160
|
+
.sc(schemas_0.CreateOriginEndpoint$)
|
|
919
161
|
.build() {
|
|
920
162
|
}
|
|
921
163
|
|
|
@@ -927,7 +169,7 @@ class DeleteChannelCommand extends smithyClient.Command
|
|
|
927
169
|
})
|
|
928
170
|
.s("MediaPackage", "DeleteChannel", {})
|
|
929
171
|
.n("MediaPackageClient", "DeleteChannelCommand")
|
|
930
|
-
.sc(DeleteChannel$)
|
|
172
|
+
.sc(schemas_0.DeleteChannel$)
|
|
931
173
|
.build() {
|
|
932
174
|
}
|
|
933
175
|
|
|
@@ -939,7 +181,7 @@ class DeleteOriginEndpointCommand extends smithyClient.Command
|
|
|
939
181
|
})
|
|
940
182
|
.s("MediaPackage", "DeleteOriginEndpoint", {})
|
|
941
183
|
.n("MediaPackageClient", "DeleteOriginEndpointCommand")
|
|
942
|
-
.sc(DeleteOriginEndpoint$)
|
|
184
|
+
.sc(schemas_0.DeleteOriginEndpoint$)
|
|
943
185
|
.build() {
|
|
944
186
|
}
|
|
945
187
|
|
|
@@ -951,7 +193,7 @@ class DescribeChannelCommand extends smithyClient.Command
|
|
|
951
193
|
})
|
|
952
194
|
.s("MediaPackage", "DescribeChannel", {})
|
|
953
195
|
.n("MediaPackageClient", "DescribeChannelCommand")
|
|
954
|
-
.sc(DescribeChannel$)
|
|
196
|
+
.sc(schemas_0.DescribeChannel$)
|
|
955
197
|
.build() {
|
|
956
198
|
}
|
|
957
199
|
|
|
@@ -963,7 +205,7 @@ class DescribeHarvestJobCommand extends smithyClient.Command
|
|
|
963
205
|
})
|
|
964
206
|
.s("MediaPackage", "DescribeHarvestJob", {})
|
|
965
207
|
.n("MediaPackageClient", "DescribeHarvestJobCommand")
|
|
966
|
-
.sc(DescribeHarvestJob$)
|
|
208
|
+
.sc(schemas_0.DescribeHarvestJob$)
|
|
967
209
|
.build() {
|
|
968
210
|
}
|
|
969
211
|
|
|
@@ -975,7 +217,7 @@ class DescribeOriginEndpointCommand extends smithyClient.Command
|
|
|
975
217
|
})
|
|
976
218
|
.s("MediaPackage", "DescribeOriginEndpoint", {})
|
|
977
219
|
.n("MediaPackageClient", "DescribeOriginEndpointCommand")
|
|
978
|
-
.sc(DescribeOriginEndpoint$)
|
|
220
|
+
.sc(schemas_0.DescribeOriginEndpoint$)
|
|
979
221
|
.build() {
|
|
980
222
|
}
|
|
981
223
|
|
|
@@ -987,7 +229,7 @@ class ListChannelsCommand extends smithyClient.Command
|
|
|
987
229
|
})
|
|
988
230
|
.s("MediaPackage", "ListChannels", {})
|
|
989
231
|
.n("MediaPackageClient", "ListChannelsCommand")
|
|
990
|
-
.sc(ListChannels$)
|
|
232
|
+
.sc(schemas_0.ListChannels$)
|
|
991
233
|
.build() {
|
|
992
234
|
}
|
|
993
235
|
|
|
@@ -999,7 +241,7 @@ class ListHarvestJobsCommand extends smithyClient.Command
|
|
|
999
241
|
})
|
|
1000
242
|
.s("MediaPackage", "ListHarvestJobs", {})
|
|
1001
243
|
.n("MediaPackageClient", "ListHarvestJobsCommand")
|
|
1002
|
-
.sc(ListHarvestJobs$)
|
|
244
|
+
.sc(schemas_0.ListHarvestJobs$)
|
|
1003
245
|
.build() {
|
|
1004
246
|
}
|
|
1005
247
|
|
|
@@ -1011,7 +253,7 @@ class ListOriginEndpointsCommand extends smithyClient.Command
|
|
|
1011
253
|
})
|
|
1012
254
|
.s("MediaPackage", "ListOriginEndpoints", {})
|
|
1013
255
|
.n("MediaPackageClient", "ListOriginEndpointsCommand")
|
|
1014
|
-
.sc(ListOriginEndpoints$)
|
|
256
|
+
.sc(schemas_0.ListOriginEndpoints$)
|
|
1015
257
|
.build() {
|
|
1016
258
|
}
|
|
1017
259
|
|
|
@@ -1023,7 +265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1023
265
|
})
|
|
1024
266
|
.s("MediaPackage", "ListTagsForResource", {})
|
|
1025
267
|
.n("MediaPackageClient", "ListTagsForResourceCommand")
|
|
1026
|
-
.sc(ListTagsForResource$)
|
|
268
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1027
269
|
.build() {
|
|
1028
270
|
}
|
|
1029
271
|
|
|
@@ -1035,7 +277,7 @@ class RotateChannelCredentialsCommand extends smithyClient.Command
|
|
|
1035
277
|
})
|
|
1036
278
|
.s("MediaPackage", "RotateChannelCredentials", {})
|
|
1037
279
|
.n("MediaPackageClient", "RotateChannelCredentialsCommand")
|
|
1038
|
-
.sc(RotateChannelCredentials$)
|
|
280
|
+
.sc(schemas_0.RotateChannelCredentials$)
|
|
1039
281
|
.build() {
|
|
1040
282
|
}
|
|
1041
283
|
|
|
@@ -1047,7 +289,7 @@ class RotateIngestEndpointCredentialsCommand extends smithyClient.Command
|
|
|
1047
289
|
})
|
|
1048
290
|
.s("MediaPackage", "RotateIngestEndpointCredentials", {})
|
|
1049
291
|
.n("MediaPackageClient", "RotateIngestEndpointCredentialsCommand")
|
|
1050
|
-
.sc(RotateIngestEndpointCredentials$)
|
|
292
|
+
.sc(schemas_0.RotateIngestEndpointCredentials$)
|
|
1051
293
|
.build() {
|
|
1052
294
|
}
|
|
1053
295
|
|
|
@@ -1059,7 +301,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1059
301
|
})
|
|
1060
302
|
.s("MediaPackage", "TagResource", {})
|
|
1061
303
|
.n("MediaPackageClient", "TagResourceCommand")
|
|
1062
|
-
.sc(TagResource$)
|
|
304
|
+
.sc(schemas_0.TagResource$)
|
|
1063
305
|
.build() {
|
|
1064
306
|
}
|
|
1065
307
|
|
|
@@ -1071,7 +313,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1071
313
|
})
|
|
1072
314
|
.s("MediaPackage", "UntagResource", {})
|
|
1073
315
|
.n("MediaPackageClient", "UntagResourceCommand")
|
|
1074
|
-
.sc(UntagResource$)
|
|
316
|
+
.sc(schemas_0.UntagResource$)
|
|
1075
317
|
.build() {
|
|
1076
318
|
}
|
|
1077
319
|
|
|
@@ -1083,7 +325,7 @@ class UpdateChannelCommand extends smithyClient.Command
|
|
|
1083
325
|
})
|
|
1084
326
|
.s("MediaPackage", "UpdateChannel", {})
|
|
1085
327
|
.n("MediaPackageClient", "UpdateChannelCommand")
|
|
1086
|
-
.sc(UpdateChannel$)
|
|
328
|
+
.sc(schemas_0.UpdateChannel$)
|
|
1087
329
|
.build() {
|
|
1088
330
|
}
|
|
1089
331
|
|
|
@@ -1095,7 +337,7 @@ class UpdateOriginEndpointCommand extends smithyClient.Command
|
|
|
1095
337
|
})
|
|
1096
338
|
.s("MediaPackage", "UpdateOriginEndpoint", {})
|
|
1097
339
|
.n("MediaPackageClient", "UpdateOriginEndpointCommand")
|
|
1098
|
-
.sc(UpdateOriginEndpoint$)
|
|
340
|
+
.sc(schemas_0.UpdateOriginEndpoint$)
|
|
1099
341
|
.build() {
|
|
1100
342
|
}
|
|
1101
343
|
|
|
@@ -1237,135 +479,59 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1237
479
|
enumerable: true,
|
|
1238
480
|
get: function () { return smithyClient.Client; }
|
|
1239
481
|
});
|
|
482
|
+
Object.defineProperty(exports, "MediaPackageServiceException", {
|
|
483
|
+
enumerable: true,
|
|
484
|
+
get: function () { return MediaPackageServiceException.MediaPackageServiceException; }
|
|
485
|
+
});
|
|
1240
486
|
exports.AdMarkers = AdMarkers;
|
|
1241
487
|
exports.AdsOnDeliveryRestrictions = AdsOnDeliveryRestrictions;
|
|
1242
|
-
exports.Authorization$ = Authorization$;
|
|
1243
|
-
exports.Channel$ = Channel$;
|
|
1244
|
-
exports.CmafEncryption$ = CmafEncryption$;
|
|
1245
488
|
exports.CmafEncryptionMethod = CmafEncryptionMethod;
|
|
1246
|
-
exports.CmafPackage$ = CmafPackage$;
|
|
1247
|
-
exports.CmafPackageCreateOrUpdateParameters$ = CmafPackageCreateOrUpdateParameters$;
|
|
1248
|
-
exports.ConfigureLogs$ = ConfigureLogs$;
|
|
1249
489
|
exports.ConfigureLogsCommand = ConfigureLogsCommand;
|
|
1250
|
-
exports.ConfigureLogsRequest$ = ConfigureLogsRequest$;
|
|
1251
|
-
exports.ConfigureLogsResponse$ = ConfigureLogsResponse$;
|
|
1252
|
-
exports.CreateChannel$ = CreateChannel$;
|
|
1253
490
|
exports.CreateChannelCommand = CreateChannelCommand;
|
|
1254
|
-
exports.CreateChannelRequest$ = CreateChannelRequest$;
|
|
1255
|
-
exports.CreateChannelResponse$ = CreateChannelResponse$;
|
|
1256
|
-
exports.CreateHarvestJob$ = CreateHarvestJob$;
|
|
1257
491
|
exports.CreateHarvestJobCommand = CreateHarvestJobCommand;
|
|
1258
|
-
exports.CreateHarvestJobRequest$ = CreateHarvestJobRequest$;
|
|
1259
|
-
exports.CreateHarvestJobResponse$ = CreateHarvestJobResponse$;
|
|
1260
|
-
exports.CreateOriginEndpoint$ = CreateOriginEndpoint$;
|
|
1261
492
|
exports.CreateOriginEndpointCommand = CreateOriginEndpointCommand;
|
|
1262
|
-
exports.CreateOriginEndpointRequest$ = CreateOriginEndpointRequest$;
|
|
1263
|
-
exports.CreateOriginEndpointResponse$ = CreateOriginEndpointResponse$;
|
|
1264
|
-
exports.DashEncryption$ = DashEncryption$;
|
|
1265
|
-
exports.DashPackage$ = DashPackage$;
|
|
1266
|
-
exports.DeleteChannel$ = DeleteChannel$;
|
|
1267
493
|
exports.DeleteChannelCommand = DeleteChannelCommand;
|
|
1268
|
-
exports.DeleteChannelRequest$ = DeleteChannelRequest$;
|
|
1269
|
-
exports.DeleteChannelResponse$ = DeleteChannelResponse$;
|
|
1270
|
-
exports.DeleteOriginEndpoint$ = DeleteOriginEndpoint$;
|
|
1271
494
|
exports.DeleteOriginEndpointCommand = DeleteOriginEndpointCommand;
|
|
1272
|
-
exports.DeleteOriginEndpointRequest$ = DeleteOriginEndpointRequest$;
|
|
1273
|
-
exports.DeleteOriginEndpointResponse$ = DeleteOriginEndpointResponse$;
|
|
1274
|
-
exports.DescribeChannel$ = DescribeChannel$;
|
|
1275
495
|
exports.DescribeChannelCommand = DescribeChannelCommand;
|
|
1276
|
-
exports.DescribeChannelRequest$ = DescribeChannelRequest$;
|
|
1277
|
-
exports.DescribeChannelResponse$ = DescribeChannelResponse$;
|
|
1278
|
-
exports.DescribeHarvestJob$ = DescribeHarvestJob$;
|
|
1279
496
|
exports.DescribeHarvestJobCommand = DescribeHarvestJobCommand;
|
|
1280
|
-
exports.DescribeHarvestJobRequest$ = DescribeHarvestJobRequest$;
|
|
1281
|
-
exports.DescribeHarvestJobResponse$ = DescribeHarvestJobResponse$;
|
|
1282
|
-
exports.DescribeOriginEndpoint$ = DescribeOriginEndpoint$;
|
|
1283
497
|
exports.DescribeOriginEndpointCommand = DescribeOriginEndpointCommand;
|
|
1284
|
-
exports.DescribeOriginEndpointRequest$ = DescribeOriginEndpointRequest$;
|
|
1285
|
-
exports.DescribeOriginEndpointResponse$ = DescribeOriginEndpointResponse$;
|
|
1286
|
-
exports.EgressAccessLogs$ = EgressAccessLogs$;
|
|
1287
|
-
exports.EncryptionContractConfiguration$ = EncryptionContractConfiguration$;
|
|
1288
498
|
exports.EncryptionMethod = EncryptionMethod;
|
|
1289
|
-
exports.ForbiddenException = ForbiddenException;
|
|
1290
|
-
exports.ForbiddenException$ = ForbiddenException$;
|
|
1291
|
-
exports.HarvestJob$ = HarvestJob$;
|
|
1292
|
-
exports.HlsEncryption$ = HlsEncryption$;
|
|
1293
|
-
exports.HlsIngest$ = HlsIngest$;
|
|
1294
|
-
exports.HlsManifest$ = HlsManifest$;
|
|
1295
|
-
exports.HlsManifestCreateOrUpdateParameters$ = HlsManifestCreateOrUpdateParameters$;
|
|
1296
|
-
exports.HlsPackage$ = HlsPackage$;
|
|
1297
|
-
exports.IngestEndpoint$ = IngestEndpoint$;
|
|
1298
|
-
exports.IngressAccessLogs$ = IngressAccessLogs$;
|
|
1299
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
1300
|
-
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
1301
|
-
exports.ListChannels$ = ListChannels$;
|
|
1302
499
|
exports.ListChannelsCommand = ListChannelsCommand;
|
|
1303
|
-
exports.ListChannelsRequest$ = ListChannelsRequest$;
|
|
1304
|
-
exports.ListChannelsResponse$ = ListChannelsResponse$;
|
|
1305
|
-
exports.ListHarvestJobs$ = ListHarvestJobs$;
|
|
1306
500
|
exports.ListHarvestJobsCommand = ListHarvestJobsCommand;
|
|
1307
|
-
exports.ListHarvestJobsRequest$ = ListHarvestJobsRequest$;
|
|
1308
|
-
exports.ListHarvestJobsResponse$ = ListHarvestJobsResponse$;
|
|
1309
|
-
exports.ListOriginEndpoints$ = ListOriginEndpoints$;
|
|
1310
501
|
exports.ListOriginEndpointsCommand = ListOriginEndpointsCommand;
|
|
1311
|
-
exports.ListOriginEndpointsRequest$ = ListOriginEndpointsRequest$;
|
|
1312
|
-
exports.ListOriginEndpointsResponse$ = ListOriginEndpointsResponse$;
|
|
1313
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1314
502
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1315
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1316
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1317
503
|
exports.ManifestLayout = ManifestLayout;
|
|
1318
504
|
exports.MediaPackage = MediaPackage;
|
|
1319
505
|
exports.MediaPackageClient = MediaPackageClient;
|
|
1320
|
-
exports.MediaPackageServiceException = MediaPackageServiceException;
|
|
1321
|
-
exports.MediaPackageServiceException$ = MediaPackageServiceException$;
|
|
1322
|
-
exports.MssEncryption$ = MssEncryption$;
|
|
1323
|
-
exports.MssPackage$ = MssPackage$;
|
|
1324
|
-
exports.NotFoundException = NotFoundException;
|
|
1325
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1326
|
-
exports.OriginEndpoint$ = OriginEndpoint$;
|
|
1327
506
|
exports.Origination = Origination;
|
|
1328
507
|
exports.PlaylistType = PlaylistType;
|
|
1329
508
|
exports.PresetSpeke20Audio = PresetSpeke20Audio;
|
|
1330
509
|
exports.PresetSpeke20Video = PresetSpeke20Video;
|
|
1331
510
|
exports.Profile = Profile;
|
|
1332
|
-
exports.RotateChannelCredentials$ = RotateChannelCredentials$;
|
|
1333
511
|
exports.RotateChannelCredentialsCommand = RotateChannelCredentialsCommand;
|
|
1334
|
-
exports.RotateChannelCredentialsRequest$ = RotateChannelCredentialsRequest$;
|
|
1335
|
-
exports.RotateChannelCredentialsResponse$ = RotateChannelCredentialsResponse$;
|
|
1336
|
-
exports.RotateIngestEndpointCredentials$ = RotateIngestEndpointCredentials$;
|
|
1337
512
|
exports.RotateIngestEndpointCredentialsCommand = RotateIngestEndpointCredentialsCommand;
|
|
1338
|
-
exports.RotateIngestEndpointCredentialsRequest$ = RotateIngestEndpointCredentialsRequest$;
|
|
1339
|
-
exports.RotateIngestEndpointCredentialsResponse$ = RotateIngestEndpointCredentialsResponse$;
|
|
1340
|
-
exports.S3Destination$ = S3Destination$;
|
|
1341
513
|
exports.SegmentTemplateFormat = SegmentTemplateFormat;
|
|
1342
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1343
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1344
|
-
exports.SpekeKeyProvider$ = SpekeKeyProvider$;
|
|
1345
514
|
exports.Status = Status;
|
|
1346
515
|
exports.StreamOrder = StreamOrder;
|
|
1347
|
-
exports.StreamSelection$ = StreamSelection$;
|
|
1348
|
-
exports.TagResource$ = TagResource$;
|
|
1349
516
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1350
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1351
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1352
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1353
|
-
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
1354
|
-
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
1355
|
-
exports.UntagResource$ = UntagResource$;
|
|
1356
517
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1357
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1358
|
-
exports.UpdateChannel$ = UpdateChannel$;
|
|
1359
518
|
exports.UpdateChannelCommand = UpdateChannelCommand;
|
|
1360
|
-
exports.UpdateChannelRequest$ = UpdateChannelRequest$;
|
|
1361
|
-
exports.UpdateChannelResponse$ = UpdateChannelResponse$;
|
|
1362
|
-
exports.UpdateOriginEndpoint$ = UpdateOriginEndpoint$;
|
|
1363
519
|
exports.UpdateOriginEndpointCommand = UpdateOriginEndpointCommand;
|
|
1364
|
-
exports.UpdateOriginEndpointRequest$ = UpdateOriginEndpointRequest$;
|
|
1365
|
-
exports.UpdateOriginEndpointResponse$ = UpdateOriginEndpointResponse$;
|
|
1366
520
|
exports.UtcTiming = UtcTiming;
|
|
1367
521
|
exports.__AdTriggersElement = __AdTriggersElement;
|
|
1368
522
|
exports.__PeriodTriggersElement = __PeriodTriggersElement;
|
|
1369
523
|
exports.paginateListChannels = paginateListChannels;
|
|
1370
524
|
exports.paginateListHarvestJobs = paginateListHarvestJobs;
|
|
1371
525
|
exports.paginateListOriginEndpoints = paginateListOriginEndpoints;
|
|
526
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
527
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
528
|
+
enumerable: true,
|
|
529
|
+
get: function () { return schemas_0[k]; }
|
|
530
|
+
});
|
|
531
|
+
});
|
|
532
|
+
Object.keys(errors).forEach(function (k) {
|
|
533
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
534
|
+
enumerable: true,
|
|
535
|
+
get: function () { return errors[k]; }
|
|
536
|
+
});
|
|
537
|
+
});
|