@aws-sdk/client-mediaconvert 3.596.0 → 3.599.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.
Files changed (35) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +73 -3
  3. package/dist-es/MediaConvert.js +2 -0
  4. package/dist-es/commands/SearchJobsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/pagination/SearchJobsPaginator.js +4 -0
  7. package/dist-es/pagination/index.js +1 -0
  8. package/dist-es/protocols/Aws_restJson1.js +45 -0
  9. package/dist-types/MediaConvert.d.ts +8 -0
  10. package/dist-types/MediaConvertClient.d.ts +3 -2
  11. package/dist-types/commands/CreateJobCommand.d.ts +12 -0
  12. package/dist-types/commands/CreateJobTemplateCommand.d.ts +4 -0
  13. package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
  14. package/dist-types/commands/GetJobCommand.d.ts +6 -0
  15. package/dist-types/commands/GetJobTemplateCommand.d.ts +2 -0
  16. package/dist-types/commands/ListJobTemplatesCommand.d.ts +2 -0
  17. package/dist-types/commands/ListJobsCommand.d.ts +6 -0
  18. package/dist-types/commands/SearchJobsCommand.d.ts +1603 -0
  19. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +4 -0
  20. package/dist-types/commands/index.d.ts +1 -0
  21. package/dist-types/models/models_0.d.ts +33 -1
  22. package/dist-types/models/models_2.d.ts +50 -0
  23. package/dist-types/pagination/SearchJobsPaginator.d.ts +7 -0
  24. package/dist-types/pagination/index.d.ts +1 -0
  25. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  26. package/dist-types/ts3.4/MediaConvert.d.ts +18 -0
  27. package/dist-types/ts3.4/MediaConvertClient.d.ts +6 -0
  28. package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +36 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +6 -0
  31. package/dist-types/ts3.4/models/models_2.d.ts +12 -0
  32. package/dist-types/ts3.4/pagination/SearchJobsPaginator.d.ts +11 -0
  33. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  35. package/package.json +37 -37
package/README.md CHANGED
@@ -386,6 +386,14 @@ PutPolicy
386
386
 
387
387
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/mediaconvert/command/PutPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-mediaconvert/Interface/PutPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-mediaconvert/Interface/PutPolicyCommandOutput/)
388
388
 
389
+ </details>
390
+ <details>
391
+ <summary>
392
+ SearchJobs
393
+ </summary>
394
+
395
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/mediaconvert/command/SearchJobsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-mediaconvert/Interface/SearchJobsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-mediaconvert/Interface/SearchJobsCommandOutput/)
396
+
389
397
  </details>
390
398
  <details>
391
399
  <summary>
package/dist-cjs/index.js CHANGED
@@ -412,6 +412,7 @@ __export(src_exports, {
412
412
  SampleRangeConversion: () => SampleRangeConversion,
413
413
  ScalingBehavior: () => ScalingBehavior,
414
414
  SccDestinationFramerate: () => SccDestinationFramerate,
415
+ SearchJobsCommand: () => SearchJobsCommand,
415
416
  SimulateReservedQueue: () => SimulateReservedQueue,
416
417
  SrtStylePassthrough: () => SrtStylePassthrough,
417
418
  StatusUpdateInterval: () => StatusUpdateInterval,
@@ -484,7 +485,8 @@ __export(src_exports, {
484
485
  paginateListJobTemplates: () => paginateListJobTemplates,
485
486
  paginateListJobs: () => paginateListJobs,
486
487
  paginateListPresets: () => paginateListPresets,
487
- paginateListQueues: () => paginateListQueues
488
+ paginateListQueues: () => paginateListQueues,
489
+ paginateSearchJobs: () => paginateSearchJobs
488
490
  });
489
491
  module.exports = __toCommonJS(src_exports);
490
492
 
@@ -2216,6 +2218,22 @@ var se_PutPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
2216
2218
  b.m("PUT").h(headers).b(body);
2217
2219
  return b.build();
2218
2220
  }, "se_PutPolicyCommand");
2221
+ var se_SearchJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
2222
+ const b = (0, import_core.requestBuilder)(input, context);
2223
+ const headers = {};
2224
+ b.bp("/2017-08-29/search");
2225
+ const query = (0, import_smithy_client.map)({
2226
+ [_iF]: [, input[_IF]],
2227
+ [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
2228
+ [_nT]: [, input[_NT]],
2229
+ [_o]: [, input[_O]],
2230
+ [_q]: [, input[_Q]],
2231
+ [_s]: [, input[_S]]
2232
+ });
2233
+ let body;
2234
+ b.m("GET").h(headers).q(query).b(body);
2235
+ return b.build();
2236
+ }, "se_SearchJobsCommand");
2219
2237
  var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
2220
2238
  const b = (0, import_core.requestBuilder)(input, context);
2221
2239
  const headers = {
@@ -2606,6 +2624,21 @@ var de_PutPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
2606
2624
  Object.assign(contents, doc);
2607
2625
  return contents;
2608
2626
  }, "de_PutPolicyCommand");
2627
+ var de_SearchJobsCommand = /* @__PURE__ */ __name(async (output, context) => {
2628
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2629
+ return de_CommandError(output, context);
2630
+ }
2631
+ const contents = (0, import_smithy_client.map)({
2632
+ $metadata: deserializeMetadata(output)
2633
+ });
2634
+ const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
2635
+ const doc = (0, import_smithy_client.take)(data, {
2636
+ Jobs: [, (_) => de___listOfJob(_, context), `jobs`],
2637
+ NextToken: [, import_smithy_client.expectString, `nextToken`]
2638
+ });
2639
+ Object.assign(contents, doc);
2640
+ return contents;
2641
+ }, "de_SearchJobsCommand");
2609
2642
  var de_TagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
2610
2643
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2611
2644
  return de_CommandError(output, context);
@@ -3252,6 +3285,7 @@ var se_CmafGroupSettings = /* @__PURE__ */ __name((input, context) => {
3252
3285
  baseUrl: [, , `BaseUrl`],
3253
3286
  clientCache: [, , `ClientCache`],
3254
3287
  codecSpecification: [, , `CodecSpecification`],
3288
+ dashIFrameTrickPlayNameModifier: [, , `DashIFrameTrickPlayNameModifier`],
3255
3289
  dashManifestStyle: [, , `DashManifestStyle`],
3256
3290
  destination: [, , `Destination`],
3257
3291
  destinationSettings: [, (_) => se_DestinationSettings(_, context), `DestinationSettings`],
@@ -3363,6 +3397,7 @@ var se_DashIsoGroupSettings = /* @__PURE__ */ __name((input, context) => {
3363
3397
  additionalManifests: [, (_) => se___listOfDashAdditionalManifest(_, context), `AdditionalManifests`],
3364
3398
  audioChannelConfigSchemeIdUri: [, , `AudioChannelConfigSchemeIdUri`],
3365
3399
  baseUrl: [, , `BaseUrl`],
3400
+ dashIFrameTrickPlayNameModifier: [, , `DashIFrameTrickPlayNameModifier`],
3366
3401
  dashManifestStyle: [, , `DashManifestStyle`],
3367
3402
  destination: [, , `Destination`],
3368
3403
  destinationSettings: [, (_) => se_DestinationSettings(_, context), `DestinationSettings`],
@@ -3934,7 +3969,11 @@ var se_InputTemplate = /* @__PURE__ */ __name((input, context) => {
3934
3969
  }, "se_InputTemplate");
3935
3970
  var se_InputVideoGenerator = /* @__PURE__ */ __name((input, context) => {
3936
3971
  return (0, import_smithy_client.take)(input, {
3937
- duration: [, , `Duration`]
3972
+ channels: [, , `Channels`],
3973
+ duration: [, , `Duration`],
3974
+ framerateDenominator: [, , `FramerateDenominator`],
3975
+ framerateNumerator: [, , `FramerateNumerator`],
3976
+ sampleRate: [, , `SampleRate`]
3938
3977
  });
3939
3978
  }, "se_InputVideoGenerator");
3940
3979
  var se_InsertableImage = /* @__PURE__ */ __name((input, context) => {
@@ -5314,6 +5353,7 @@ var de_CmafGroupSettings = /* @__PURE__ */ __name((output, context) => {
5314
5353
  BaseUrl: [, import_smithy_client.expectString, `baseUrl`],
5315
5354
  ClientCache: [, import_smithy_client.expectString, `clientCache`],
5316
5355
  CodecSpecification: [, import_smithy_client.expectString, `codecSpecification`],
5356
+ DashIFrameTrickPlayNameModifier: [, import_smithy_client.expectString, `dashIFrameTrickPlayNameModifier`],
5317
5357
  DashManifestStyle: [, import_smithy_client.expectString, `dashManifestStyle`],
5318
5358
  Destination: [, import_smithy_client.expectString, `destination`],
5319
5359
  DestinationSettings: [, (_) => de_DestinationSettings(_, context), `destinationSettings`],
@@ -5425,6 +5465,7 @@ var de_DashIsoGroupSettings = /* @__PURE__ */ __name((output, context) => {
5425
5465
  AdditionalManifests: [, (_) => de___listOfDashAdditionalManifest(_, context), `additionalManifests`],
5426
5466
  AudioChannelConfigSchemeIdUri: [, import_smithy_client.expectString, `audioChannelConfigSchemeIdUri`],
5427
5467
  BaseUrl: [, import_smithy_client.expectString, `baseUrl`],
5468
+ DashIFrameTrickPlayNameModifier: [, import_smithy_client.expectString, `dashIFrameTrickPlayNameModifier`],
5428
5469
  DashManifestStyle: [, import_smithy_client.expectString, `dashManifestStyle`],
5429
5470
  Destination: [, import_smithy_client.expectString, `destination`],
5430
5471
  DestinationSettings: [, (_) => de_DestinationSettings(_, context), `destinationSettings`],
@@ -6013,7 +6054,11 @@ var de_InputTemplate = /* @__PURE__ */ __name((output, context) => {
6013
6054
  }, "de_InputTemplate");
6014
6055
  var de_InputVideoGenerator = /* @__PURE__ */ __name((output, context) => {
6015
6056
  return (0, import_smithy_client.take)(output, {
6016
- Duration: [, import_smithy_client.expectInt32, `duration`]
6057
+ Channels: [, import_smithy_client.expectInt32, `channels`],
6058
+ Duration: [, import_smithy_client.expectInt32, `duration`],
6059
+ FramerateDenominator: [, import_smithy_client.expectInt32, `framerateDenominator`],
6060
+ FramerateNumerator: [, import_smithy_client.expectInt32, `framerateNumerator`],
6061
+ SampleRate: [, import_smithy_client.expectInt32, `sampleRate`]
6017
6062
  });
6018
6063
  }, "de_InputVideoGenerator");
6019
6064
  var de_InsertableImage = /* @__PURE__ */ __name((output, context) => {
@@ -6974,6 +7019,7 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
6974
7019
  cfId: output.headers["x-amz-cf-id"]
6975
7020
  }), "deserializeMetadata");
6976
7021
  var _C = "Category";
7022
+ var _IF = "InputFile";
6977
7023
  var _LB = "ListBy";
6978
7024
  var _MR = "MaxResults";
6979
7025
  var _NT = "NextToken";
@@ -6981,6 +7027,7 @@ var _O = "Order";
6981
7027
  var _Q = "Queue";
6982
7028
  var _S = "Status";
6983
7029
  var _c = "category";
7030
+ var _iF = "inputFile";
6984
7031
  var _lB = "listBy";
6985
7032
  var _mR = "maxResults";
6986
7033
  var _nT = "nextToken";
@@ -7353,6 +7400,22 @@ var _PutPolicyCommand = class _PutPolicyCommand extends import_smithy_client.Com
7353
7400
  __name(_PutPolicyCommand, "PutPolicyCommand");
7354
7401
  var PutPolicyCommand = _PutPolicyCommand;
7355
7402
 
7403
+ // src/commands/SearchJobsCommand.ts
7404
+
7405
+
7406
+
7407
+ var _SearchJobsCommand = class _SearchJobsCommand extends import_smithy_client.Command.classBuilder().ep({
7408
+ ...commonParams
7409
+ }).m(function(Command, cs, config, o) {
7410
+ return [
7411
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
7412
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
7413
+ ];
7414
+ }).s("MediaConvert", "SearchJobs", {}).n("MediaConvertClient", "SearchJobsCommand").f(void 0, void 0).ser(se_SearchJobsCommand).de(de_SearchJobsCommand).build() {
7415
+ };
7416
+ __name(_SearchJobsCommand, "SearchJobsCommand");
7417
+ var SearchJobsCommand = _SearchJobsCommand;
7418
+
7356
7419
  // src/commands/TagResourceCommand.ts
7357
7420
 
7358
7421
 
@@ -7458,6 +7521,7 @@ var commands = {
7458
7521
  ListQueuesCommand,
7459
7522
  ListTagsForResourceCommand,
7460
7523
  PutPolicyCommand,
7524
+ SearchJobsCommand,
7461
7525
  TagResourceCommand,
7462
7526
  UntagResourceCommand,
7463
7527
  UpdateJobTemplateCommand,
@@ -7490,6 +7554,10 @@ var paginateListPresets = (0, import_core.createPaginator)(MediaConvertClient, L
7490
7554
 
7491
7555
  var paginateListQueues = (0, import_core.createPaginator)(MediaConvertClient, ListQueuesCommand, "NextToken", "NextToken", "MaxResults");
7492
7556
 
7557
+ // src/pagination/SearchJobsPaginator.ts
7558
+
7559
+ var paginateSearchJobs = (0, import_core.createPaginator)(MediaConvertClient, SearchJobsCommand, "NextToken", "NextToken", "MaxResults");
7560
+
7493
7561
  // src/models/models_0.ts
7494
7562
  var RequiredFlag = {
7495
7563
  DISABLED: "DISABLED",
@@ -8682,6 +8750,7 @@ var CmfcScte35Esam = {
8682
8750
  ListQueuesCommand,
8683
8751
  ListTagsForResourceCommand,
8684
8752
  PutPolicyCommand,
8753
+ SearchJobsCommand,
8685
8754
  TagResourceCommand,
8686
8755
  UntagResourceCommand,
8687
8756
  UpdateJobTemplateCommand,
@@ -8692,6 +8761,7 @@ var CmfcScte35Esam = {
8692
8761
  paginateListJobs,
8693
8762
  paginateListPresets,
8694
8763
  paginateListQueues,
8764
+ paginateSearchJobs,
8695
8765
  RequiredFlag,
8696
8766
  AudioChannelTag,
8697
8767
  AudioNormalizationAlgorithm,
@@ -22,6 +22,7 @@ import { ListPresetsCommand } from "./commands/ListPresetsCommand";
22
22
  import { ListQueuesCommand } from "./commands/ListQueuesCommand";
23
23
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
24
24
  import { PutPolicyCommand } from "./commands/PutPolicyCommand";
25
+ import { SearchJobsCommand } from "./commands/SearchJobsCommand";
25
26
  import { TagResourceCommand } from "./commands/TagResourceCommand";
26
27
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
27
28
  import { UpdateJobTemplateCommand, } from "./commands/UpdateJobTemplateCommand";
@@ -52,6 +53,7 @@ const commands = {
52
53
  ListQueuesCommand,
53
54
  ListTagsForResourceCommand,
54
55
  PutPolicyCommand,
56
+ SearchJobsCommand,
55
57
  TagResourceCommand,
56
58
  UntagResourceCommand,
57
59
  UpdateJobTemplateCommand,
@@ -0,0 +1,24 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_SearchJobsCommand, se_SearchJobsCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class SearchJobsCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("MediaConvert", "SearchJobs", {})
19
+ .n("MediaConvertClient", "SearchJobsCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_SearchJobsCommand)
22
+ .de(de_SearchJobsCommand)
23
+ .build() {
24
+ }
@@ -21,6 +21,7 @@ export * from "./ListPresetsCommand";
21
21
  export * from "./ListQueuesCommand";
22
22
  export * from "./ListTagsForResourceCommand";
23
23
  export * from "./PutPolicyCommand";
24
+ export * from "./SearchJobsCommand";
24
25
  export * from "./TagResourceCommand";
25
26
  export * from "./UntagResourceCommand";
26
27
  export * from "./UpdateJobTemplateCommand";
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { SearchJobsCommand } from "../commands/SearchJobsCommand";
3
+ import { MediaConvertClient } from "../MediaConvertClient";
4
+ export const paginateSearchJobs = createPaginator(MediaConvertClient, SearchJobsCommand, "NextToken", "NextToken", "MaxResults");
@@ -4,3 +4,4 @@ export * from "./ListJobTemplatesPaginator";
4
4
  export * from "./ListJobsPaginator";
5
5
  export * from "./ListPresetsPaginator";
6
6
  export * from "./ListQueuesPaginator";
7
+ export * from "./SearchJobsPaginator";
@@ -299,6 +299,22 @@ export const se_PutPolicyCommand = async (input, context) => {
299
299
  b.m("PUT").h(headers).b(body);
300
300
  return b.build();
301
301
  };
302
+ export const se_SearchJobsCommand = async (input, context) => {
303
+ const b = rb(input, context);
304
+ const headers = {};
305
+ b.bp("/2017-08-29/search");
306
+ const query = map({
307
+ [_iF]: [, input[_IF]],
308
+ [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
309
+ [_nT]: [, input[_NT]],
310
+ [_o]: [, input[_O]],
311
+ [_q]: [, input[_Q]],
312
+ [_s]: [, input[_S]],
313
+ });
314
+ let body;
315
+ b.m("GET").h(headers).q(query).b(body);
316
+ return b.build();
317
+ };
302
318
  export const se_TagResourceCommand = async (input, context) => {
303
319
  const b = rb(input, context);
304
320
  const headers = {
@@ -679,6 +695,21 @@ export const de_PutPolicyCommand = async (output, context) => {
679
695
  Object.assign(contents, doc);
680
696
  return contents;
681
697
  };
698
+ export const de_SearchJobsCommand = async (output, context) => {
699
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
700
+ return de_CommandError(output, context);
701
+ }
702
+ const contents = map({
703
+ $metadata: deserializeMetadata(output),
704
+ });
705
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
706
+ const doc = take(data, {
707
+ Jobs: [, (_) => de___listOfJob(_, context), `jobs`],
708
+ NextToken: [, __expectString, `nextToken`],
709
+ });
710
+ Object.assign(contents, doc);
711
+ return contents;
712
+ };
682
713
  export const de_TagResourceCommand = async (output, context) => {
683
714
  if (output.statusCode !== 200 && output.statusCode >= 300) {
684
715
  return de_CommandError(output, context);
@@ -1373,6 +1404,7 @@ const se_CmafGroupSettings = (input, context) => {
1373
1404
  baseUrl: [, , `BaseUrl`],
1374
1405
  clientCache: [, , `ClientCache`],
1375
1406
  codecSpecification: [, , `CodecSpecification`],
1407
+ dashIFrameTrickPlayNameModifier: [, , `DashIFrameTrickPlayNameModifier`],
1376
1408
  dashManifestStyle: [, , `DashManifestStyle`],
1377
1409
  destination: [, , `Destination`],
1378
1410
  destinationSettings: [, (_) => se_DestinationSettings(_, context), `DestinationSettings`],
@@ -1484,6 +1516,7 @@ const se_DashIsoGroupSettings = (input, context) => {
1484
1516
  additionalManifests: [, (_) => se___listOfDashAdditionalManifest(_, context), `AdditionalManifests`],
1485
1517
  audioChannelConfigSchemeIdUri: [, , `AudioChannelConfigSchemeIdUri`],
1486
1518
  baseUrl: [, , `BaseUrl`],
1519
+ dashIFrameTrickPlayNameModifier: [, , `DashIFrameTrickPlayNameModifier`],
1487
1520
  dashManifestStyle: [, , `DashManifestStyle`],
1488
1521
  destination: [, , `Destination`],
1489
1522
  destinationSettings: [, (_) => se_DestinationSettings(_, context), `DestinationSettings`],
@@ -2055,7 +2088,11 @@ const se_InputTemplate = (input, context) => {
2055
2088
  };
2056
2089
  const se_InputVideoGenerator = (input, context) => {
2057
2090
  return take(input, {
2091
+ channels: [, , `Channels`],
2058
2092
  duration: [, , `Duration`],
2093
+ framerateDenominator: [, , `FramerateDenominator`],
2094
+ framerateNumerator: [, , `FramerateNumerator`],
2095
+ sampleRate: [, , `SampleRate`],
2059
2096
  });
2060
2097
  };
2061
2098
  const se_InsertableImage = (input, context) => {
@@ -3501,6 +3538,7 @@ const de_CmafGroupSettings = (output, context) => {
3501
3538
  BaseUrl: [, __expectString, `baseUrl`],
3502
3539
  ClientCache: [, __expectString, `clientCache`],
3503
3540
  CodecSpecification: [, __expectString, `codecSpecification`],
3541
+ DashIFrameTrickPlayNameModifier: [, __expectString, `dashIFrameTrickPlayNameModifier`],
3504
3542
  DashManifestStyle: [, __expectString, `dashManifestStyle`],
3505
3543
  Destination: [, __expectString, `destination`],
3506
3544
  DestinationSettings: [, (_) => de_DestinationSettings(_, context), `destinationSettings`],
@@ -3612,6 +3650,7 @@ const de_DashIsoGroupSettings = (output, context) => {
3612
3650
  AdditionalManifests: [, (_) => de___listOfDashAdditionalManifest(_, context), `additionalManifests`],
3613
3651
  AudioChannelConfigSchemeIdUri: [, __expectString, `audioChannelConfigSchemeIdUri`],
3614
3652
  BaseUrl: [, __expectString, `baseUrl`],
3653
+ DashIFrameTrickPlayNameModifier: [, __expectString, `dashIFrameTrickPlayNameModifier`],
3615
3654
  DashManifestStyle: [, __expectString, `dashManifestStyle`],
3616
3655
  Destination: [, __expectString, `destination`],
3617
3656
  DestinationSettings: [, (_) => de_DestinationSettings(_, context), `destinationSettings`],
@@ -4200,7 +4239,11 @@ const de_InputTemplate = (output, context) => {
4200
4239
  };
4201
4240
  const de_InputVideoGenerator = (output, context) => {
4202
4241
  return take(output, {
4242
+ Channels: [, __expectInt32, `channels`],
4203
4243
  Duration: [, __expectInt32, `duration`],
4244
+ FramerateDenominator: [, __expectInt32, `framerateDenominator`],
4245
+ FramerateNumerator: [, __expectInt32, `framerateNumerator`],
4246
+ SampleRate: [, __expectInt32, `sampleRate`],
4204
4247
  });
4205
4248
  };
4206
4249
  const de_InsertableImage = (output, context) => {
@@ -5167,6 +5210,7 @@ const isSerializableHeaderValue = (value) => value !== undefined &&
5167
5210
  (!Object.getOwnPropertyNames(value).includes("length") || value.length != 0) &&
5168
5211
  (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0);
5169
5212
  const _C = "Category";
5213
+ const _IF = "InputFile";
5170
5214
  const _LB = "ListBy";
5171
5215
  const _MR = "MaxResults";
5172
5216
  const _NT = "NextToken";
@@ -5174,6 +5218,7 @@ const _O = "Order";
5174
5218
  const _Q = "Queue";
5175
5219
  const _S = "Status";
5176
5220
  const _c = "category";
5221
+ const _iF = "inputFile";
5177
5222
  const _lB = "listBy";
5178
5223
  const _mR = "maxResults";
5179
5224
  const _nT = "nextToken";
@@ -22,6 +22,7 @@ import { ListPresetsCommandInput, ListPresetsCommandOutput } from "./commands/Li
22
22
  import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
23
23
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
24
24
  import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
25
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
25
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
27
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
28
  import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "./commands/UpdateJobTemplateCommand";
@@ -174,6 +175,13 @@ export interface MediaConvert {
174
175
  putPolicy(args: PutPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutPolicyCommandOutput>;
175
176
  putPolicy(args: PutPolicyCommandInput, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
176
177
  putPolicy(args: PutPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
178
+ /**
179
+ * @see {@link SearchJobsCommand}
180
+ */
181
+ searchJobs(): Promise<SearchJobsCommandOutput>;
182
+ searchJobs(args: SearchJobsCommandInput, options?: __HttpHandlerOptions): Promise<SearchJobsCommandOutput>;
183
+ searchJobs(args: SearchJobsCommandInput, cb: (err: any, data?: SearchJobsCommandOutput) => void): void;
184
+ searchJobs(args: SearchJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchJobsCommandOutput) => void): void;
177
185
  /**
178
186
  * @see {@link TagResourceCommand}
179
187
  */
@@ -30,6 +30,7 @@ import { ListPresetsCommandInput, ListPresetsCommandOutput } from "./commands/Li
30
30
  import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
31
31
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
32
32
  import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
33
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
33
34
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
34
35
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
35
36
  import { UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput } from "./commands/UpdateJobTemplateCommand";
@@ -41,11 +42,11 @@ export { __Client };
41
42
  /**
42
43
  * @public
43
44
  */
44
- export type ServiceInputTypes = AssociateCertificateCommandInput | CancelJobCommandInput | CreateJobCommandInput | CreateJobTemplateCommandInput | CreatePresetCommandInput | CreateQueueCommandInput | DeleteJobTemplateCommandInput | DeletePolicyCommandInput | DeletePresetCommandInput | DeleteQueueCommandInput | DescribeEndpointsCommandInput | DisassociateCertificateCommandInput | GetJobCommandInput | GetJobTemplateCommandInput | GetPolicyCommandInput | GetPresetCommandInput | GetQueueCommandInput | ListJobTemplatesCommandInput | ListJobsCommandInput | ListPresetsCommandInput | ListQueuesCommandInput | ListTagsForResourceCommandInput | PutPolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateJobTemplateCommandInput | UpdatePresetCommandInput | UpdateQueueCommandInput;
45
+ export type ServiceInputTypes = AssociateCertificateCommandInput | CancelJobCommandInput | CreateJobCommandInput | CreateJobTemplateCommandInput | CreatePresetCommandInput | CreateQueueCommandInput | DeleteJobTemplateCommandInput | DeletePolicyCommandInput | DeletePresetCommandInput | DeleteQueueCommandInput | DescribeEndpointsCommandInput | DisassociateCertificateCommandInput | GetJobCommandInput | GetJobTemplateCommandInput | GetPolicyCommandInput | GetPresetCommandInput | GetQueueCommandInput | ListJobTemplatesCommandInput | ListJobsCommandInput | ListPresetsCommandInput | ListQueuesCommandInput | ListTagsForResourceCommandInput | PutPolicyCommandInput | SearchJobsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateJobTemplateCommandInput | UpdatePresetCommandInput | UpdateQueueCommandInput;
45
46
  /**
46
47
  * @public
47
48
  */
48
- export type ServiceOutputTypes = AssociateCertificateCommandOutput | CancelJobCommandOutput | CreateJobCommandOutput | CreateJobTemplateCommandOutput | CreatePresetCommandOutput | CreateQueueCommandOutput | DeleteJobTemplateCommandOutput | DeletePolicyCommandOutput | DeletePresetCommandOutput | DeleteQueueCommandOutput | DescribeEndpointsCommandOutput | DisassociateCertificateCommandOutput | GetJobCommandOutput | GetJobTemplateCommandOutput | GetPolicyCommandOutput | GetPresetCommandOutput | GetQueueCommandOutput | ListJobTemplatesCommandOutput | ListJobsCommandOutput | ListPresetsCommandOutput | ListQueuesCommandOutput | ListTagsForResourceCommandOutput | PutPolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateJobTemplateCommandOutput | UpdatePresetCommandOutput | UpdateQueueCommandOutput;
49
+ export type ServiceOutputTypes = AssociateCertificateCommandOutput | CancelJobCommandOutput | CreateJobCommandOutput | CreateJobTemplateCommandOutput | CreatePresetCommandOutput | CreateQueueCommandOutput | DeleteJobTemplateCommandOutput | DeletePolicyCommandOutput | DeletePresetCommandOutput | DeleteQueueCommandOutput | DescribeEndpointsCommandOutput | DisassociateCertificateCommandOutput | GetJobCommandOutput | GetJobTemplateCommandOutput | GetPolicyCommandOutput | GetPresetCommandOutput | GetQueueCommandOutput | ListJobTemplatesCommandOutput | ListJobsCommandOutput | ListPresetsCommandOutput | ListQueuesCommandOutput | ListTagsForResourceCommandOutput | PutPolicyCommandOutput | SearchJobsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateJobTemplateCommandOutput | UpdatePresetCommandOutput | UpdateQueueCommandOutput;
49
50
  /**
50
51
  * @public
51
52
  */
@@ -236,7 +236,11 @@ declare const CreateJobCommand_base: {
236
236
  * TimecodeSource: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
237
237
  * TimecodeStart: "STRING_VALUE",
238
238
  * VideoGenerator: { // InputVideoGenerator
239
+ * Channels: Number("int"),
239
240
  * Duration: Number("int"),
241
+ * FramerateDenominator: Number("int"),
242
+ * FramerateNumerator: Number("int"),
243
+ * SampleRate: Number("int"),
240
244
  * },
241
245
  * VideoOverlays: [ // __listOfVideoOverlay
242
246
  * { // VideoOverlay
@@ -379,6 +383,7 @@ declare const CreateJobCommand_base: {
379
383
  * BaseUrl: "STRING_VALUE",
380
384
  * ClientCache: "DISABLED" || "ENABLED",
381
385
  * CodecSpecification: "RFC_6381" || "RFC_4281",
386
+ * DashIFrameTrickPlayNameModifier: "STRING_VALUE",
382
387
  * DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
383
388
  * Destination: "STRING_VALUE",
384
389
  * DestinationSettings: { // DestinationSettings
@@ -455,6 +460,7 @@ declare const CreateJobCommand_base: {
455
460
  * ],
456
461
  * AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
457
462
  * BaseUrl: "STRING_VALUE",
463
+ * DashIFrameTrickPlayNameModifier: "STRING_VALUE",
458
464
  * DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
459
465
  * Destination: "STRING_VALUE",
460
466
  * DestinationSettings: {
@@ -1742,7 +1748,11 @@ declare const CreateJobCommand_base: {
1742
1748
  * // TimecodeSource: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
1743
1749
  * // TimecodeStart: "STRING_VALUE",
1744
1750
  * // VideoGenerator: { // InputVideoGenerator
1751
+ * // Channels: Number("int"),
1745
1752
  * // Duration: Number("int"),
1753
+ * // FramerateDenominator: Number("int"),
1754
+ * // FramerateNumerator: Number("int"),
1755
+ * // SampleRate: Number("int"),
1746
1756
  * // },
1747
1757
  * // VideoOverlays: [ // __listOfVideoOverlay
1748
1758
  * // { // VideoOverlay
@@ -1885,6 +1895,7 @@ declare const CreateJobCommand_base: {
1885
1895
  * // BaseUrl: "STRING_VALUE",
1886
1896
  * // ClientCache: "DISABLED" || "ENABLED",
1887
1897
  * // CodecSpecification: "RFC_6381" || "RFC_4281",
1898
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
1888
1899
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
1889
1900
  * // Destination: "STRING_VALUE",
1890
1901
  * // DestinationSettings: { // DestinationSettings
@@ -1961,6 +1972,7 @@ declare const CreateJobCommand_base: {
1961
1972
  * // ],
1962
1973
  * // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
1963
1974
  * // BaseUrl: "STRING_VALUE",
1975
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
1964
1976
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
1965
1977
  * // Destination: "STRING_VALUE",
1966
1978
  * // DestinationSettings: {
@@ -365,6 +365,7 @@ declare const CreateJobTemplateCommand_base: {
365
365
  * BaseUrl: "STRING_VALUE",
366
366
  * ClientCache: "DISABLED" || "ENABLED",
367
367
  * CodecSpecification: "RFC_6381" || "RFC_4281",
368
+ * DashIFrameTrickPlayNameModifier: "STRING_VALUE",
368
369
  * DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
369
370
  * Destination: "STRING_VALUE",
370
371
  * DestinationSettings: { // DestinationSettings
@@ -441,6 +442,7 @@ declare const CreateJobTemplateCommand_base: {
441
442
  * ],
442
443
  * AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
443
444
  * BaseUrl: "STRING_VALUE",
445
+ * DashIFrameTrickPlayNameModifier: "STRING_VALUE",
444
446
  * DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
445
447
  * Destination: "STRING_VALUE",
446
448
  * DestinationSettings: {
@@ -1819,6 +1821,7 @@ declare const CreateJobTemplateCommand_base: {
1819
1821
  * // BaseUrl: "STRING_VALUE",
1820
1822
  * // ClientCache: "DISABLED" || "ENABLED",
1821
1823
  * // CodecSpecification: "RFC_6381" || "RFC_4281",
1824
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
1822
1825
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
1823
1826
  * // Destination: "STRING_VALUE",
1824
1827
  * // DestinationSettings: { // DestinationSettings
@@ -1895,6 +1898,7 @@ declare const CreateJobTemplateCommand_base: {
1895
1898
  * // ],
1896
1899
  * // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
1897
1900
  * // BaseUrl: "STRING_VALUE",
1901
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
1898
1902
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
1899
1903
  * // Destination: "STRING_VALUE",
1900
1904
  * // DestinationSettings: {
@@ -27,7 +27,7 @@ declare const DescribeEndpointsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * Send an request with an empty body to the regional API endpoint to get your account API endpoint.
30
+ * Send a request with an empty body to the regional API endpoint to get your account API endpoint. Note that DescribeEndpoints is no longer required. We recommend that you send your requests directly to the regional endpoint instead.
31
31
  *
32
32
  * @deprecated DescribeEndpoints and account specific endpoints are no longer required. We recommend that you send your requests directly to the regional endpoint instead.
33
33
  * @example
@@ -279,7 +279,11 @@ declare const GetJobCommand_base: {
279
279
  * // TimecodeSource: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
280
280
  * // TimecodeStart: "STRING_VALUE",
281
281
  * // VideoGenerator: { // InputVideoGenerator
282
+ * // Channels: Number("int"),
282
283
  * // Duration: Number("int"),
284
+ * // FramerateDenominator: Number("int"),
285
+ * // FramerateNumerator: Number("int"),
286
+ * // SampleRate: Number("int"),
283
287
  * // },
284
288
  * // VideoOverlays: [ // __listOfVideoOverlay
285
289
  * // { // VideoOverlay
@@ -422,6 +426,7 @@ declare const GetJobCommand_base: {
422
426
  * // BaseUrl: "STRING_VALUE",
423
427
  * // ClientCache: "DISABLED" || "ENABLED",
424
428
  * // CodecSpecification: "RFC_6381" || "RFC_4281",
429
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
425
430
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
426
431
  * // Destination: "STRING_VALUE",
427
432
  * // DestinationSettings: { // DestinationSettings
@@ -498,6 +503,7 @@ declare const GetJobCommand_base: {
498
503
  * // ],
499
504
  * // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
500
505
  * // BaseUrl: "STRING_VALUE",
506
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
501
507
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
502
508
  * // Destination: "STRING_VALUE",
503
509
  * // DestinationSettings: {
@@ -374,6 +374,7 @@ declare const GetJobTemplateCommand_base: {
374
374
  * // BaseUrl: "STRING_VALUE",
375
375
  * // ClientCache: "DISABLED" || "ENABLED",
376
376
  * // CodecSpecification: "RFC_6381" || "RFC_4281",
377
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
377
378
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
378
379
  * // Destination: "STRING_VALUE",
379
380
  * // DestinationSettings: { // DestinationSettings
@@ -450,6 +451,7 @@ declare const GetJobTemplateCommand_base: {
450
451
  * // ],
451
452
  * // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
452
453
  * // BaseUrl: "STRING_VALUE",
454
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
453
455
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
454
456
  * // Destination: "STRING_VALUE",
455
457
  * // DestinationSettings: {
@@ -379,6 +379,7 @@ declare const ListJobTemplatesCommand_base: {
379
379
  * // BaseUrl: "STRING_VALUE",
380
380
  * // ClientCache: "DISABLED" || "ENABLED",
381
381
  * // CodecSpecification: "RFC_6381" || "RFC_4281",
382
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
382
383
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
383
384
  * // Destination: "STRING_VALUE",
384
385
  * // DestinationSettings: { // DestinationSettings
@@ -455,6 +456,7 @@ declare const ListJobTemplatesCommand_base: {
455
456
  * // ],
456
457
  * // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
457
458
  * // BaseUrl: "STRING_VALUE",
459
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
458
460
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
459
461
  * // Destination: "STRING_VALUE",
460
462
  * // DestinationSettings: {
@@ -284,7 +284,11 @@ declare const ListJobsCommand_base: {
284
284
  * // TimecodeSource: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
285
285
  * // TimecodeStart: "STRING_VALUE",
286
286
  * // VideoGenerator: { // InputVideoGenerator
287
+ * // Channels: Number("int"),
287
288
  * // Duration: Number("int"),
289
+ * // FramerateDenominator: Number("int"),
290
+ * // FramerateNumerator: Number("int"),
291
+ * // SampleRate: Number("int"),
288
292
  * // },
289
293
  * // VideoOverlays: [ // __listOfVideoOverlay
290
294
  * // { // VideoOverlay
@@ -427,6 +431,7 @@ declare const ListJobsCommand_base: {
427
431
  * // BaseUrl: "STRING_VALUE",
428
432
  * // ClientCache: "DISABLED" || "ENABLED",
429
433
  * // CodecSpecification: "RFC_6381" || "RFC_4281",
434
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
430
435
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
431
436
  * // Destination: "STRING_VALUE",
432
437
  * // DestinationSettings: { // DestinationSettings
@@ -503,6 +508,7 @@ declare const ListJobsCommand_base: {
503
508
  * // ],
504
509
  * // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
505
510
  * // BaseUrl: "STRING_VALUE",
511
+ * // DashIFrameTrickPlayNameModifier: "STRING_VALUE",
506
512
  * // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
507
513
  * // Destination: "STRING_VALUE",
508
514
  * // DestinationSettings: {