@aws-sdk/client-mediaconvert 3.52.0 → 3.54.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  3. package/dist-cjs/index.js +3 -0
  4. package/dist-cjs/models/MediaConvertServiceException.js +11 -0
  5. package/dist-cjs/models/models_0.js +13 -13
  6. package/dist-cjs/models/models_1.js +101 -18
  7. package/dist-cjs/models/models_2.js +13 -1
  8. package/dist-cjs/protocols/Aws_restJson1.js +396 -1366
  9. package/dist-es/commands/TagResourceCommand.js +1 -1
  10. package/dist-es/index.js +1 -0
  11. package/dist-es/models/MediaConvertServiceException.js +12 -0
  12. package/dist-es/models/models_0.js +10 -10
  13. package/dist-es/models/models_1.js +90 -9
  14. package/dist-es/models/models_2.js +8 -0
  15. package/dist-es/protocols/Aws_restJson1.js +779 -1489
  16. package/dist-types/MediaConvertClient.d.ts +2 -2
  17. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  18. package/dist-types/index.d.ts +1 -0
  19. package/dist-types/models/MediaConvertServiceException.d.ts +10 -0
  20. package/dist-types/models/models_0.d.ts +22 -14
  21. package/dist-types/models/models_1.d.ts +61 -54
  22. package/dist-types/models/models_2.d.ts +26 -0
  23. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  24. package/dist-types/runtimeConfig.d.ts +1 -1
  25. package/dist-types/runtimeConfig.native.d.ts +1 -1
  26. package/dist-types/ts3.4/MediaConvertClient.d.ts +2 -2
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/index.d.ts +1 -0
  29. package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +6 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +12 -8
  31. package/dist-types/ts3.4/models/models_1.d.ts +41 -38
  32. package/dist-types/ts3.4/models/models_2.d.ts +18 -0
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  36. package/package.json +27 -27
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
4
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_2";
5
5
  import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
6
6
  var TagResourceCommand = (function (_super) {
7
7
  __extends(TagResourceCommand, _super);
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./MediaConvertClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { MediaConvertServiceException } from "./models/MediaConvertServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var MediaConvertServiceException = (function (_super) {
4
+ __extends(MediaConvertServiceException, _super);
5
+ function MediaConvertServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, MediaConvertServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return MediaConvertServiceException;
11
+ }(__ServiceException));
12
+ export { MediaConvertServiceException };
@@ -1055,6 +1055,11 @@ export var ColorSpaceUsage;
1055
1055
  ColorSpaceUsage["FALLBACK"] = "FALLBACK";
1056
1056
  ColorSpaceUsage["FORCE"] = "FORCE";
1057
1057
  })(ColorSpaceUsage || (ColorSpaceUsage = {}));
1058
+ export var EmbeddedTimecodeOverride;
1059
+ (function (EmbeddedTimecodeOverride) {
1060
+ EmbeddedTimecodeOverride["NONE"] = "NONE";
1061
+ EmbeddedTimecodeOverride["USE_MDPM"] = "USE_MDPM";
1062
+ })(EmbeddedTimecodeOverride || (EmbeddedTimecodeOverride = {}));
1058
1063
  export var Hdr10Metadata;
1059
1064
  (function (Hdr10Metadata) {
1060
1065
  Hdr10Metadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1446,6 +1451,11 @@ export var HlsCaptionLanguageSetting;
1446
1451
  HlsCaptionLanguageSetting["NONE"] = "NONE";
1447
1452
  HlsCaptionLanguageSetting["OMIT"] = "OMIT";
1448
1453
  })(HlsCaptionLanguageSetting || (HlsCaptionLanguageSetting = {}));
1454
+ export var HlsCaptionSegmentLengthControl;
1455
+ (function (HlsCaptionSegmentLengthControl) {
1456
+ HlsCaptionSegmentLengthControl["LARGE_SEGMENTS"] = "LARGE_SEGMENTS";
1457
+ HlsCaptionSegmentLengthControl["MATCH_VIDEO"] = "MATCH_VIDEO";
1458
+ })(HlsCaptionSegmentLengthControl || (HlsCaptionSegmentLengthControl = {}));
1449
1459
  export var HlsClientCache;
1450
1460
  (function (HlsClientCache) {
1451
1461
  HlsClientCache["DISABLED"] = "DISABLED";
@@ -1769,13 +1779,3 @@ export var M3u8NielsenId3;
1769
1779
  M3u8NielsenId3["INSERT"] = "INSERT";
1770
1780
  M3u8NielsenId3["NONE"] = "NONE";
1771
1781
  })(M3u8NielsenId3 || (M3u8NielsenId3 = {}));
1772
- export var M3u8PcrControl;
1773
- (function (M3u8PcrControl) {
1774
- M3u8PcrControl["CONFIGURED_PCR_PERIOD"] = "CONFIGURED_PCR_PERIOD";
1775
- M3u8PcrControl["PCR_EVERY_PES_PACKET"] = "PCR_EVERY_PES_PACKET";
1776
- })(M3u8PcrControl || (M3u8PcrControl = {}));
1777
- export var M3u8Scte35Source;
1778
- (function (M3u8Scte35Source) {
1779
- M3u8Scte35Source["NONE"] = "NONE";
1780
- M3u8Scte35Source["PASSTHROUGH"] = "PASSTHROUGH";
1781
- })(M3u8Scte35Source || (M3u8Scte35Source = {}));
@@ -1,4 +1,15 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
3
+ export var M3u8PcrControl;
4
+ (function (M3u8PcrControl) {
5
+ M3u8PcrControl["CONFIGURED_PCR_PERIOD"] = "CONFIGURED_PCR_PERIOD";
6
+ M3u8PcrControl["PCR_EVERY_PES_PACKET"] = "PCR_EVERY_PES_PACKET";
7
+ })(M3u8PcrControl || (M3u8PcrControl = {}));
8
+ export var M3u8Scte35Source;
9
+ (function (M3u8Scte35Source) {
10
+ M3u8Scte35Source["NONE"] = "NONE";
11
+ M3u8Scte35Source["PASSTHROUGH"] = "PASSTHROUGH";
12
+ })(M3u8Scte35Source || (M3u8Scte35Source = {}));
2
13
  export var TimedMetadata;
3
14
  (function (TimedMetadata) {
4
15
  TimedMetadata["NONE"] = "NONE";
@@ -1310,6 +1321,84 @@ export var AssociateCertificateResponse;
1310
1321
  (function (AssociateCertificateResponse) {
1311
1322
  AssociateCertificateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1312
1323
  })(AssociateCertificateResponse || (AssociateCertificateResponse = {}));
1324
+ var BadRequestException = (function (_super) {
1325
+ __extends(BadRequestException, _super);
1326
+ function BadRequestException(opts) {
1327
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
1328
+ _this.name = "BadRequestException";
1329
+ _this.$fault = "client";
1330
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
1331
+ _this.Message = opts.Message;
1332
+ return _this;
1333
+ }
1334
+ return BadRequestException;
1335
+ }(__BaseException));
1336
+ export { BadRequestException };
1337
+ var ConflictException = (function (_super) {
1338
+ __extends(ConflictException, _super);
1339
+ function ConflictException(opts) {
1340
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
1341
+ _this.name = "ConflictException";
1342
+ _this.$fault = "client";
1343
+ Object.setPrototypeOf(_this, ConflictException.prototype);
1344
+ _this.Message = opts.Message;
1345
+ return _this;
1346
+ }
1347
+ return ConflictException;
1348
+ }(__BaseException));
1349
+ export { ConflictException };
1350
+ var ForbiddenException = (function (_super) {
1351
+ __extends(ForbiddenException, _super);
1352
+ function ForbiddenException(opts) {
1353
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
1354
+ _this.name = "ForbiddenException";
1355
+ _this.$fault = "client";
1356
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
1357
+ _this.Message = opts.Message;
1358
+ return _this;
1359
+ }
1360
+ return ForbiddenException;
1361
+ }(__BaseException));
1362
+ export { ForbiddenException };
1363
+ var InternalServerErrorException = (function (_super) {
1364
+ __extends(InternalServerErrorException, _super);
1365
+ function InternalServerErrorException(opts) {
1366
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
1367
+ _this.name = "InternalServerErrorException";
1368
+ _this.$fault = "server";
1369
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
1370
+ _this.Message = opts.Message;
1371
+ return _this;
1372
+ }
1373
+ return InternalServerErrorException;
1374
+ }(__BaseException));
1375
+ export { InternalServerErrorException };
1376
+ var NotFoundException = (function (_super) {
1377
+ __extends(NotFoundException, _super);
1378
+ function NotFoundException(opts) {
1379
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
1380
+ _this.name = "NotFoundException";
1381
+ _this.$fault = "client";
1382
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
1383
+ _this.Message = opts.Message;
1384
+ return _this;
1385
+ }
1386
+ return NotFoundException;
1387
+ }(__BaseException));
1388
+ export { NotFoundException };
1389
+ var TooManyRequestsException = (function (_super) {
1390
+ __extends(TooManyRequestsException, _super);
1391
+ function TooManyRequestsException(opts) {
1392
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
1393
+ _this.name = "TooManyRequestsException";
1394
+ _this.$fault = "client";
1395
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
1396
+ _this.Message = opts.Message;
1397
+ return _this;
1398
+ }
1399
+ return TooManyRequestsException;
1400
+ }(__BaseException));
1401
+ export { TooManyRequestsException };
1313
1402
  export var CancelJobRequest;
1314
1403
  (function (CancelJobRequest) {
1315
1404
  CancelJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1530,11 +1619,3 @@ export var PutPolicyResponse;
1530
1619
  (function (PutPolicyResponse) {
1531
1620
  PutPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1532
1621
  })(PutPolicyResponse || (PutPolicyResponse = {}));
1533
- export var TagResourceRequest;
1534
- (function (TagResourceRequest) {
1535
- TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1536
- })(TagResourceRequest || (TagResourceRequest = {}));
1537
- export var TagResourceResponse;
1538
- (function (TagResourceResponse) {
1539
- TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1540
- })(TagResourceResponse || (TagResourceResponse = {}));
@@ -1,4 +1,12 @@
1
1
  import { __assign } from "tslib";
2
+ export var TagResourceRequest;
3
+ (function (TagResourceRequest) {
4
+ TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
5
+ })(TagResourceRequest || (TagResourceRequest = {}));
6
+ export var TagResourceResponse;
7
+ (function (TagResourceResponse) {
8
+ TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
+ })(TagResourceResponse || (TagResourceResponse = {}));
2
10
  export var UntagResourceRequest;
3
11
  (function (UntagResourceRequest) {
4
12
  UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };