@aws-sdk/client-mediaconvert 3.168.0 → 3.170.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 (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MediaConvert.d.ts +508 -145
  3. package/dist-types/ts3.4/MediaConvertClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +35 -18
  23. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +3 -3
  37. package/dist-types/ts3.4/models/models_0.d.ts +2930 -2849
  38. package/dist-types/ts3.4/models/models_1.d.ts +2735 -2642
  39. package/dist-types/ts3.4/models/models_2.d.ts +237 -204
  40. package/dist-types/ts3.4/pagination/DescribeEndpointsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListPresetsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  52. package/package.json +34 -34
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_2";
5
- export interface UpdatePresetCommandInput extends UpdatePresetRequest {
6
- }
7
- export interface UpdatePresetCommandOutput extends UpdatePresetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdatePresetCommand extends $Command<UpdatePresetCommandInput, UpdatePresetCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: UpdatePresetCommandInput;
12
- constructor(input: UpdatePresetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePresetCommandInput, UpdatePresetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConvertClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConvertClient";
13
+ import { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_2";
14
+ export interface UpdatePresetCommandInput extends UpdatePresetRequest {}
15
+ export interface UpdatePresetCommandOutput
16
+ extends UpdatePresetResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class UpdatePresetCommand extends $Command<
20
+ UpdatePresetCommandInput,
21
+ UpdatePresetCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: UpdatePresetCommandInput;
25
+ constructor(input: UpdatePresetCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdatePresetCommandInput, UpdatePresetCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_2";
5
- export interface UpdateQueueCommandInput extends UpdateQueueRequest {
6
- }
7
- export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateQueueCommand extends $Command<UpdateQueueCommandInput, UpdateQueueCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: UpdateQueueCommandInput;
12
- constructor(input: UpdateQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateQueueCommandInput, UpdateQueueCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConvertClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConvertClient";
13
+ import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_2";
14
+ export interface UpdateQueueCommandInput extends UpdateQueueRequest {}
15
+ export interface UpdateQueueCommandOutput
16
+ extends UpdateQueueResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class UpdateQueueCommand extends $Command<
20
+ UpdateQueueCommandInput,
21
+ UpdateQueueCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateQueueCommandInput;
25
+ constructor(input: UpdateQueueCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdateQueueCommandInput, UpdateQueueCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,28 +1,28 @@
1
- export * from "./AssociateCertificateCommand";
2
- export * from "./CancelJobCommand";
3
- export * from "./CreateJobCommand";
4
- export * from "./CreateJobTemplateCommand";
5
- export * from "./CreatePresetCommand";
6
- export * from "./CreateQueueCommand";
7
- export * from "./DeleteJobTemplateCommand";
8
- export * from "./DeletePolicyCommand";
9
- export * from "./DeletePresetCommand";
10
- export * from "./DeleteQueueCommand";
11
- export * from "./DescribeEndpointsCommand";
12
- export * from "./DisassociateCertificateCommand";
13
- export * from "./GetJobCommand";
14
- export * from "./GetJobTemplateCommand";
15
- export * from "./GetPolicyCommand";
16
- export * from "./GetPresetCommand";
17
- export * from "./GetQueueCommand";
18
- export * from "./ListJobTemplatesCommand";
19
- export * from "./ListJobsCommand";
20
- export * from "./ListPresetsCommand";
21
- export * from "./ListQueuesCommand";
22
- export * from "./ListTagsForResourceCommand";
23
- export * from "./PutPolicyCommand";
24
- export * from "./TagResourceCommand";
25
- export * from "./UntagResourceCommand";
26
- export * from "./UpdateJobTemplateCommand";
27
- export * from "./UpdatePresetCommand";
28
- export * from "./UpdateQueueCommand";
1
+ export * from "./AssociateCertificateCommand";
2
+ export * from "./CancelJobCommand";
3
+ export * from "./CreateJobCommand";
4
+ export * from "./CreateJobTemplateCommand";
5
+ export * from "./CreatePresetCommand";
6
+ export * from "./CreateQueueCommand";
7
+ export * from "./DeleteJobTemplateCommand";
8
+ export * from "./DeletePolicyCommand";
9
+ export * from "./DeletePresetCommand";
10
+ export * from "./DeleteQueueCommand";
11
+ export * from "./DescribeEndpointsCommand";
12
+ export * from "./DisassociateCertificateCommand";
13
+ export * from "./GetJobCommand";
14
+ export * from "./GetJobTemplateCommand";
15
+ export * from "./GetPolicyCommand";
16
+ export * from "./GetPresetCommand";
17
+ export * from "./GetQueueCommand";
18
+ export * from "./ListJobTemplatesCommand";
19
+ export * from "./ListJobsCommand";
20
+ export * from "./ListPresetsCommand";
21
+ export * from "./ListQueuesCommand";
22
+ export * from "./ListTagsForResourceCommand";
23
+ export * from "./PutPolicyCommand";
24
+ export * from "./TagResourceCommand";
25
+ export * from "./UntagResourceCommand";
26
+ export * from "./UpdateJobTemplateCommand";
27
+ export * from "./UpdatePresetCommand";
28
+ export * from "./UpdateQueueCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./MediaConvert";
2
- export * from "./MediaConvertClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { MediaConvertServiceException } from "./models/MediaConvertServiceException";
1
+ export * from "./MediaConvert";
2
+ export * from "./MediaConvertClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { MediaConvertServiceException } from "./models/MediaConvertServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class MediaConvertServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class MediaConvertServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1,3 +1,3 @@
1
- export * from "./models_0";
2
- export * from "./models_1";
3
- export * from "./models_2";
1
+ export * from "./models_0";
2
+ export * from "./models_1";
3
+ export * from "./models_2";