@aws-sdk/client-mediaconvert 3.533.0 → 3.536.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 (63) hide show
  1. package/dist-types/MediaConvert.d.ts +8 -1
  2. package/dist-types/MediaConvertClient.d.ts +1 -1
  3. package/dist-types/commands/AssociateCertificateCommand.d.ts +2 -1
  4. package/dist-types/commands/CancelJobCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateJobCommand.d.ts +2 -1
  6. package/dist-types/commands/CreateJobTemplateCommand.d.ts +2 -1
  7. package/dist-types/commands/CreatePresetCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateQueueCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +2 -1
  10. package/dist-types/commands/DeletePolicyCommand.d.ts +2 -1
  11. package/dist-types/commands/DeletePresetCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteQueueCommand.d.ts +2 -1
  13. package/dist-types/commands/DescribeEndpointsCommand.d.ts +4 -3
  14. package/dist-types/commands/DisassociateCertificateCommand.d.ts +2 -1
  15. package/dist-types/commands/GetJobCommand.d.ts +2 -1
  16. package/dist-types/commands/GetJobTemplateCommand.d.ts +2 -1
  17. package/dist-types/commands/GetPolicyCommand.d.ts +2 -1
  18. package/dist-types/commands/GetPresetCommand.d.ts +2 -1
  19. package/dist-types/commands/GetQueueCommand.d.ts +2 -1
  20. package/dist-types/commands/ListJobTemplatesCommand.d.ts +2 -1
  21. package/dist-types/commands/ListJobsCommand.d.ts +2 -1
  22. package/dist-types/commands/ListPresetsCommand.d.ts +2 -1
  23. package/dist-types/commands/ListQueuesCommand.d.ts +2 -1
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  25. package/dist-types/commands/PutPolicyCommand.d.ts +2 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  28. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +2 -1
  29. package/dist-types/commands/UpdatePresetCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateQueueCommand.d.ts +2 -1
  31. package/dist-types/models/models_0.d.ts +709 -709
  32. package/dist-types/models/models_1.d.ts +659 -659
  33. package/dist-types/models/models_2.d.ts +126 -126
  34. package/dist-types/ts3.4/MediaConvert.d.ts +7 -0
  35. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +7 -0
  48. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +9 -0
  55. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +9 -0
  56. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  57. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +9 -0
  58. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  59. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  60. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +9 -0
  61. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +9 -0
  62. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +9 -0
  63. package/package.json +40 -40
@@ -204,6 +204,7 @@ export interface MediaConvert {
204
204
  options: __HttpHandlerOptions,
205
205
  cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void
206
206
  ): void;
207
+ deletePolicy(): Promise<DeletePolicyCommandOutput>;
207
208
  deletePolicy(
208
209
  args: DeletePolicyCommandInput,
209
210
  options?: __HttpHandlerOptions
@@ -243,6 +244,7 @@ export interface MediaConvert {
243
244
  options: __HttpHandlerOptions,
244
245
  cb: (err: any, data?: DeleteQueueCommandOutput) => void
245
246
  ): void;
247
+ describeEndpoints(): Promise<DescribeEndpointsCommandOutput>;
246
248
  describeEndpoints(
247
249
  args: DescribeEndpointsCommandInput,
248
250
  options?: __HttpHandlerOptions
@@ -295,6 +297,7 @@ export interface MediaConvert {
295
297
  options: __HttpHandlerOptions,
296
298
  cb: (err: any, data?: GetJobTemplateCommandOutput) => void
297
299
  ): void;
300
+ getPolicy(): Promise<GetPolicyCommandOutput>;
298
301
  getPolicy(
299
302
  args: GetPolicyCommandInput,
300
303
  options?: __HttpHandlerOptions
@@ -334,6 +337,7 @@ export interface MediaConvert {
334
337
  options: __HttpHandlerOptions,
335
338
  cb: (err: any, data?: GetQueueCommandOutput) => void
336
339
  ): void;
340
+ listJobs(): Promise<ListJobsCommandOutput>;
337
341
  listJobs(
338
342
  args: ListJobsCommandInput,
339
343
  options?: __HttpHandlerOptions
@@ -347,6 +351,7 @@ export interface MediaConvert {
347
351
  options: __HttpHandlerOptions,
348
352
  cb: (err: any, data?: ListJobsCommandOutput) => void
349
353
  ): void;
354
+ listJobTemplates(): Promise<ListJobTemplatesCommandOutput>;
350
355
  listJobTemplates(
351
356
  args: ListJobTemplatesCommandInput,
352
357
  options?: __HttpHandlerOptions
@@ -360,6 +365,7 @@ export interface MediaConvert {
360
365
  options: __HttpHandlerOptions,
361
366
  cb: (err: any, data?: ListJobTemplatesCommandOutput) => void
362
367
  ): void;
368
+ listPresets(): Promise<ListPresetsCommandOutput>;
363
369
  listPresets(
364
370
  args: ListPresetsCommandInput,
365
371
  options?: __HttpHandlerOptions
@@ -373,6 +379,7 @@ export interface MediaConvert {
373
379
  options: __HttpHandlerOptions,
374
380
  cb: (err: any, data?: ListPresetsCommandOutput) => void
375
381
  ): void;
382
+ listQueues(): Promise<ListQueuesCommandOutput>;
376
383
  listQueues(
377
384
  args: ListQueuesCommandInput,
378
385
  options?: __HttpHandlerOptions
@@ -25,6 +25,15 @@ declare const AssociateCertificateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: AssociateCertificateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ AssociateCertificateCommandInput,
32
+ AssociateCertificateCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class AssociateCertificateCommand extends AssociateCertificateCommand_base {}
@@ -21,6 +21,15 @@ declare const CancelJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CancelJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CancelJobCommandInput,
28
+ CancelJobCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CancelJobCommand extends CancelJobCommand_base {}
@@ -21,6 +21,15 @@ declare const CreateJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CreateJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateJobCommandInput,
28
+ CreateJobCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreateJobCommand extends CreateJobCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateJobTemplateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateJobTemplateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateJobTemplateCommandInput,
32
+ CreateJobTemplateCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateJobTemplateCommand extends CreateJobTemplateCommand_base {}
@@ -21,6 +21,15 @@ declare const CreatePresetCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CreatePresetCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreatePresetCommandInput,
28
+ CreatePresetCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreatePresetCommand extends CreatePresetCommand_base {}
@@ -21,6 +21,15 @@ declare const CreateQueueCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CreateQueueCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateQueueCommandInput,
28
+ CreateQueueCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CreateQueueCommand extends CreateQueueCommand_base {}
@@ -25,6 +25,15 @@ declare const DeleteJobTemplateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeleteJobTemplateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteJobTemplateCommandInput,
32
+ DeleteJobTemplateCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeleteJobTemplateCommand extends DeleteJobTemplateCommand_base {}
@@ -21,6 +21,15 @@ declare const DeletePolicyCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [DeletePolicyCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeletePolicyCommandInput,
28
+ DeletePolicyCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DeletePolicyCommand extends DeletePolicyCommand_base {}
@@ -21,6 +21,15 @@ declare const DeletePresetCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DeletePresetCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeletePresetCommandInput,
28
+ DeletePresetCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DeletePresetCommand extends DeletePresetCommand_base {}
@@ -21,6 +21,15 @@ declare const DeleteQueueCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DeleteQueueCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteQueueCommandInput,
28
+ DeleteQueueCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DeleteQueueCommand extends DeleteQueueCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeEndpointsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [DescribeEndpointsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeEndpointsCommandInput,
32
+ DescribeEndpointsCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeEndpointsCommand extends DescribeEndpointsCommand_base {}
@@ -25,6 +25,15 @@ declare const DisassociateCertificateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DisassociateCertificateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DisassociateCertificateCommandInput,
32
+ DisassociateCertificateCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DisassociateCertificateCommand extends DisassociateCertificateCommand_base {}
@@ -17,6 +17,13 @@ declare const GetJobCommand_base: {
17
17
  ServiceInputTypes,
18
18
  ServiceOutputTypes
19
19
  >;
20
+ new (__0_0: GetJobCommandInput): import("@smithy/smithy-client").CommandImpl<
21
+ GetJobCommandInput,
22
+ GetJobCommandOutput,
23
+ MediaConvertClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
20
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
21
28
  };
22
29
  export declare class GetJobCommand extends GetJobCommand_base {}
@@ -24,6 +24,15 @@ declare const GetJobTemplateCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: GetJobTemplateCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetJobTemplateCommandInput,
31
+ GetJobTemplateCommandOutput,
32
+ MediaConvertClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetJobTemplateCommand extends GetJobTemplateCommand_base {}
@@ -21,6 +21,15 @@ declare const GetPolicyCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [GetPolicyCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ GetPolicyCommandInput,
28
+ GetPolicyCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class GetPolicyCommand extends GetPolicyCommand_base {}
@@ -21,6 +21,15 @@ declare const GetPresetCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: GetPresetCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ GetPresetCommandInput,
28
+ GetPresetCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class GetPresetCommand extends GetPresetCommand_base {}
@@ -21,6 +21,15 @@ declare const GetQueueCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: GetQueueCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ GetQueueCommandInput,
28
+ GetQueueCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class GetQueueCommand extends GetQueueCommand_base {}
@@ -24,6 +24,15 @@ declare const ListJobTemplatesCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [ListJobTemplatesCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ListJobTemplatesCommandInput,
31
+ ListJobTemplatesCommandOutput,
32
+ MediaConvertClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class ListJobTemplatesCommand extends ListJobTemplatesCommand_base {}
@@ -21,6 +21,15 @@ declare const ListJobsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListJobsCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListJobsCommandInput,
28
+ ListJobsCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListJobsCommand extends ListJobsCommand_base {}
@@ -21,6 +21,15 @@ declare const ListPresetsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListPresetsCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListPresetsCommandInput,
28
+ ListPresetsCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListPresetsCommand extends ListPresetsCommand_base {}
@@ -21,6 +21,15 @@ declare const ListQueuesCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListQueuesCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListQueuesCommandInput,
28
+ ListQueuesCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListQueuesCommand extends ListQueuesCommand_base {}
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ListTagsForResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -21,6 +21,15 @@ declare const PutPolicyCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: PutPolicyCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ PutPolicyCommandInput,
28
+ PutPolicyCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class PutPolicyCommand extends PutPolicyCommand_base {}
@@ -21,6 +21,15 @@ declare const TagResourceCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: TagResourceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ TagResourceCommandInput,
28
+ TagResourceCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -24,6 +24,15 @@ declare const UntagResourceCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: UntagResourceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UntagResourceCommandInput,
31
+ UntagResourceCommandOutput,
32
+ MediaConvertClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateJobTemplateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateJobTemplateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateJobTemplateCommandInput,
32
+ UpdateJobTemplateCommandOutput,
33
+ MediaConvertClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateJobTemplateCommand extends UpdateJobTemplateCommand_base {}
@@ -21,6 +21,15 @@ declare const UpdatePresetCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: UpdatePresetCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ UpdatePresetCommandInput,
28
+ UpdatePresetCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class UpdatePresetCommand extends UpdatePresetCommand_base {}
@@ -21,6 +21,15 @@ declare const UpdateQueueCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: UpdateQueueCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ UpdateQueueCommandInput,
28
+ UpdateQueueCommandOutput,
29
+ MediaConvertClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class UpdateQueueCommand extends UpdateQueueCommand_base {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediaconvert",
3
3
  "description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
4
- "version": "3.533.0",
4
+ "version": "3.536.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
@@ -20,48 +20,48 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "tslib": "^2.5.0",
23
+ "@aws-sdk/client-sts": "3.535.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.535.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.535.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.535.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2",
61
61
  "uuid": "^9.0.1"
62
62
  },
63
63
  "devDependencies": {
64
- "@smithy/service-client-documentation-generator": "^2.1.1",
64
+ "@smithy/service-client-documentation-generator": "^2.2.0",
65
65
  "@tsconfig/node14": "1.0.3",
66
66
  "@types/node": "^14.14.31",
67
67
  "@types/uuid": "^9.0.4",