@aws-sdk/client-mediaconvert 3.913.0 → 3.916.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/README.md +16 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +178 -0
- package/dist-es/MediaConvert.js +4 -0
- package/dist-es/commands/GetJobsQueryResultsCommand.js +22 -0
- package/dist-es/commands/StartJobsQueryCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +32 -0
- package/dist-es/protocols/Aws_restJson1.js +105 -1
- package/dist-types/MediaConvert.d.ts +15 -0
- package/dist-types/MediaConvertClient.d.ts +4 -2
- package/dist-types/commands/AssociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/CancelJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateJobCommand.d.ts +17 -10
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/CreatePresetCommand.d.ts +13 -10
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +3 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetJobCommand.d.ts +10 -5
- package/dist-types/commands/GetJobTemplateCommand.d.ts +8 -5
- package/dist-types/commands/GetJobsQueryResultsCommand.d.ts +1727 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetPresetCommand.d.ts +8 -5
- package/dist-types/commands/GetQueueCommand.d.ts +3 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +8 -5
- package/dist-types/commands/ListJobsCommand.d.ts +10 -5
- package/dist-types/commands/ListPresetsCommand.d.ts +8 -5
- package/dist-types/commands/ListQueuesCommand.d.ts +3 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListVersionsCommand.d.ts +3 -0
- package/dist-types/commands/ProbeCommand.d.ts +20 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +3 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +10 -5
- package/dist-types/commands/StartJobsQueryCommand.d.ts +105 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +13 -10
- package/dist-types/commands/UpdatePresetCommand.d.ts +13 -10
- package/dist-types/commands/UpdateQueueCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +21 -10
- package/dist-types/models/models_1.d.ts +8 -8
- package/dist-types/models/models_2.d.ts +205 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +35 -0
- package/dist-types/ts3.4/MediaConvertClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetJobsQueryResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartJobsQueryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +65 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +33 -33
|
@@ -140,6 +140,21 @@ export interface JobEngineVersion {
|
|
|
140
140
|
ExpirationDate?: Date | undefined;
|
|
141
141
|
Version?: string | undefined;
|
|
142
142
|
}
|
|
143
|
+
export declare const JobsQueryFilterKey: {
|
|
144
|
+
readonly audioCodec: "audioCodec";
|
|
145
|
+
readonly fileInput: "fileInput";
|
|
146
|
+
readonly jobEngineVersionRequested: "jobEngineVersionRequested";
|
|
147
|
+
readonly jobEngineVersionUsed: "jobEngineVersionUsed";
|
|
148
|
+
readonly queue: "queue";
|
|
149
|
+
readonly status: "status";
|
|
150
|
+
readonly videoCodec: "videoCodec";
|
|
151
|
+
};
|
|
152
|
+
export type JobsQueryFilterKey =
|
|
153
|
+
(typeof JobsQueryFilterKey)[keyof typeof JobsQueryFilterKey];
|
|
154
|
+
export interface JobsQueryFilter {
|
|
155
|
+
Key?: JobsQueryFilterKey | undefined;
|
|
156
|
+
Values?: string[] | undefined;
|
|
157
|
+
}
|
|
143
158
|
export interface JobTemplateSettings {
|
|
144
159
|
AdAvailOffset?: number | undefined;
|
|
145
160
|
AvailBlanking?: AvailBlanking | undefined;
|
|
@@ -229,12 +244,15 @@ export declare const Codec: {
|
|
|
229
244
|
readonly MJPEG: "MJPEG";
|
|
230
245
|
readonly MP3: "MP3";
|
|
231
246
|
readonly MP4V: "MP4V";
|
|
247
|
+
readonly MPEG1: "MPEG1";
|
|
232
248
|
readonly MPEG2: "MPEG2";
|
|
233
249
|
readonly OPUS: "OPUS";
|
|
234
250
|
readonly PCM: "PCM";
|
|
235
251
|
readonly PRORES: "PRORES";
|
|
252
|
+
readonly QTRLE: "QTRLE";
|
|
236
253
|
readonly THEORA: "THEORA";
|
|
237
254
|
readonly UNKNOWN: "UNKNOWN";
|
|
255
|
+
readonly VFW: "VFW";
|
|
238
256
|
readonly VORBIS: "VORBIS";
|
|
239
257
|
readonly VP8: "VP8";
|
|
240
258
|
readonly VP9: "VP9";
|
|
@@ -315,9 +333,23 @@ export declare const TransferCharacteristics: {
|
|
|
315
333
|
};
|
|
316
334
|
export type TransferCharacteristics =
|
|
317
335
|
(typeof TransferCharacteristics)[keyof typeof TransferCharacteristics];
|
|
336
|
+
export interface CodecMetadata {
|
|
337
|
+
BitDepth?: number | undefined;
|
|
338
|
+
ChromaSubsampling?: string | undefined;
|
|
339
|
+
CodedFrameRate?: FrameRate | undefined;
|
|
340
|
+
ColorPrimaries?: ColorPrimaries | undefined;
|
|
341
|
+
Height?: number | undefined;
|
|
342
|
+
Level?: string | undefined;
|
|
343
|
+
MatrixCoefficients?: MatrixCoefficients | undefined;
|
|
344
|
+
Profile?: string | undefined;
|
|
345
|
+
ScanType?: string | undefined;
|
|
346
|
+
TransferCharacteristics?: TransferCharacteristics | undefined;
|
|
347
|
+
Width?: number | undefined;
|
|
348
|
+
}
|
|
318
349
|
export interface VideoProperties {
|
|
319
350
|
BitDepth?: number | undefined;
|
|
320
351
|
BitRate?: number | undefined;
|
|
352
|
+
CodecMetadata?: CodecMetadata | undefined;
|
|
321
353
|
ColorPrimaries?: ColorPrimaries | undefined;
|
|
322
354
|
FrameRate?: FrameRate | undefined;
|
|
323
355
|
Height?: number | undefined;
|
|
@@ -447,6 +479,14 @@ export declare class NotFoundException extends __BaseException {
|
|
|
447
479
|
Message?: string | undefined;
|
|
448
480
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
449
481
|
}
|
|
482
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
483
|
+
readonly name: "ServiceQuotaExceededException";
|
|
484
|
+
readonly $fault: "client";
|
|
485
|
+
Message?: string | undefined;
|
|
486
|
+
constructor(
|
|
487
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
488
|
+
);
|
|
489
|
+
}
|
|
450
490
|
export declare class TooManyRequestsException extends __BaseException {
|
|
451
491
|
readonly name: "TooManyRequestsException";
|
|
452
492
|
readonly $fault: "client";
|
|
@@ -564,6 +604,22 @@ export interface GetJobRequest {
|
|
|
564
604
|
export interface GetJobResponse {
|
|
565
605
|
Job?: Job | undefined;
|
|
566
606
|
}
|
|
607
|
+
export interface GetJobsQueryResultsRequest {
|
|
608
|
+
Id: string | undefined;
|
|
609
|
+
}
|
|
610
|
+
export declare const JobsQueryStatus: {
|
|
611
|
+
readonly COMPLETE: "COMPLETE";
|
|
612
|
+
readonly ERROR: "ERROR";
|
|
613
|
+
readonly PROGRESSING: "PROGRESSING";
|
|
614
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
615
|
+
};
|
|
616
|
+
export type JobsQueryStatus =
|
|
617
|
+
(typeof JobsQueryStatus)[keyof typeof JobsQueryStatus];
|
|
618
|
+
export interface GetJobsQueryResultsResponse {
|
|
619
|
+
Jobs?: Job[] | undefined;
|
|
620
|
+
NextToken?: string | undefined;
|
|
621
|
+
Status?: JobsQueryStatus | undefined;
|
|
622
|
+
}
|
|
567
623
|
export interface GetJobTemplateRequest {
|
|
568
624
|
Name: string | undefined;
|
|
569
625
|
}
|
|
@@ -706,6 +762,15 @@ export interface SearchJobsResponse {
|
|
|
706
762
|
Jobs?: Job[] | undefined;
|
|
707
763
|
NextToken?: string | undefined;
|
|
708
764
|
}
|
|
765
|
+
export interface StartJobsQueryRequest {
|
|
766
|
+
FilterList?: JobsQueryFilter[] | undefined;
|
|
767
|
+
MaxResults?: number | undefined;
|
|
768
|
+
NextToken?: string | undefined;
|
|
769
|
+
Order?: Order | undefined;
|
|
770
|
+
}
|
|
771
|
+
export interface StartJobsQueryResponse {
|
|
772
|
+
Id?: string | undefined;
|
|
773
|
+
}
|
|
709
774
|
export interface TagResourceRequest {
|
|
710
775
|
Arn: string | undefined;
|
|
711
776
|
Tags: Record<string, string> | undefined;
|
|
@@ -59,6 +59,10 @@ import {
|
|
|
59
59
|
GetJobCommandInput,
|
|
60
60
|
GetJobCommandOutput,
|
|
61
61
|
} from "../commands/GetJobCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetJobsQueryResultsCommandInput,
|
|
64
|
+
GetJobsQueryResultsCommandOutput,
|
|
65
|
+
} from "../commands/GetJobsQueryResultsCommand";
|
|
62
66
|
import {
|
|
63
67
|
GetJobTemplateCommandInput,
|
|
64
68
|
GetJobTemplateCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
SearchJobsCommandInput,
|
|
112
116
|
SearchJobsCommandOutput,
|
|
113
117
|
} from "../commands/SearchJobsCommand";
|
|
118
|
+
import {
|
|
119
|
+
StartJobsQueryCommandInput,
|
|
120
|
+
StartJobsQueryCommandOutput,
|
|
121
|
+
} from "../commands/StartJobsQueryCommand";
|
|
114
122
|
import {
|
|
115
123
|
TagResourceCommandInput,
|
|
116
124
|
TagResourceCommandOutput,
|
|
@@ -187,6 +195,10 @@ export declare const se_GetJobCommand: (
|
|
|
187
195
|
input: GetJobCommandInput,
|
|
188
196
|
context: __SerdeContext
|
|
189
197
|
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_GetJobsQueryResultsCommand: (
|
|
199
|
+
input: GetJobsQueryResultsCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
190
202
|
export declare const se_GetJobTemplateCommand: (
|
|
191
203
|
input: GetJobTemplateCommandInput,
|
|
192
204
|
context: __SerdeContext
|
|
@@ -239,6 +251,10 @@ export declare const se_SearchJobsCommand: (
|
|
|
239
251
|
input: SearchJobsCommandInput,
|
|
240
252
|
context: __SerdeContext
|
|
241
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const se_StartJobsQueryCommand: (
|
|
255
|
+
input: StartJobsQueryCommandInput,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<__HttpRequest>;
|
|
242
258
|
export declare const se_TagResourceCommand: (
|
|
243
259
|
input: TagResourceCommandInput,
|
|
244
260
|
context: __SerdeContext
|
|
@@ -315,6 +331,10 @@ export declare const de_GetJobCommand: (
|
|
|
315
331
|
output: __HttpResponse,
|
|
316
332
|
context: __SerdeContext
|
|
317
333
|
) => Promise<GetJobCommandOutput>;
|
|
334
|
+
export declare const de_GetJobsQueryResultsCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<GetJobsQueryResultsCommandOutput>;
|
|
318
338
|
export declare const de_GetJobTemplateCommand: (
|
|
319
339
|
output: __HttpResponse,
|
|
320
340
|
context: __SerdeContext
|
|
@@ -367,6 +387,10 @@ export declare const de_SearchJobsCommand: (
|
|
|
367
387
|
output: __HttpResponse,
|
|
368
388
|
context: __SerdeContext
|
|
369
389
|
) => Promise<SearchJobsCommandOutput>;
|
|
390
|
+
export declare const de_StartJobsQueryCommand: (
|
|
391
|
+
output: __HttpResponse,
|
|
392
|
+
context: __SerdeContext
|
|
393
|
+
) => Promise<StartJobsQueryCommandOutput>;
|
|
370
394
|
export declare const de_TagResourceCommand: (
|
|
371
395
|
output: __HttpResponse,
|
|
372
396
|
context: __SerdeContext
|
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.
|
|
4
|
+
"version": "3.916.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,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.916.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.916.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.914.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.914.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
30
|
+
"@aws-sdk/types": "3.914.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.916.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.914.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.916.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.0",
|
|
35
|
+
"@smithy/core": "^3.17.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.4",
|
|
37
|
+
"@smithy/hash-node": "^4.2.3",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.3",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.3",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.5",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.5",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.3",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.3",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.3",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.3",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.3",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.1",
|
|
48
|
+
"@smithy/types": "^4.8.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.3",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.4",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.6",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.3",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.3",
|
|
57
|
+
"@smithy/util-retry": "^4.2.3",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"@smithy/uuid": "^1.1.0",
|
|
60
60
|
"tslib": "^2.6.2"
|