@aws-sdk/client-mediaconvert 3.325.0 → 3.326.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/dist-types/commands/AssociateCertificateCommand.d.ts +4 -0
- package/dist-types/commands/CancelJobCommand.d.ts +4 -0
- package/dist-types/commands/CreateJobCommand.d.ts +1439 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +781 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +25 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +11 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +4 -0
- package/dist-types/commands/GetJobCommand.d.ts +1439 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +10 -0
- package/dist-types/commands/GetPresetCommand.d.ts +781 -0
- package/dist-types/commands/GetQueueCommand.d.ts +25 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1379 -0
- package/dist-types/commands/ListJobsCommand.d.ts +1442 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +784 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +28 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +781 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +25 -0
- package/package.json +3 -3
|
@@ -38,6 +38,29 @@ export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateQueueCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateQueueResponse
|
|
42
|
+
* // Queue: { // Queue
|
|
43
|
+
* // Arn: "STRING_VALUE",
|
|
44
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // Description: "STRING_VALUE",
|
|
46
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
47
|
+
* // Name: "STRING_VALUE", // required
|
|
48
|
+
* // PricingPlan: "ON_DEMAND" || "RESERVED",
|
|
49
|
+
* // ProgressingJobsCount: Number("int"),
|
|
50
|
+
* // ReservationPlan: { // ReservationPlan
|
|
51
|
+
* // Commitment: "ONE_YEAR",
|
|
52
|
+
* // ExpiresAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // PurchasedAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // RenewalType: "AUTO_RENEW" || "EXPIRE",
|
|
55
|
+
* // ReservedSlots: Number("int"),
|
|
56
|
+
* // Status: "ACTIVE" || "EXPIRED",
|
|
57
|
+
* // },
|
|
58
|
+
* // Status: "ACTIVE" || "PAUSED",
|
|
59
|
+
* // SubmittedJobsCount: Number("int"),
|
|
60
|
+
* // Type: "SYSTEM" || "CUSTOM",
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
41
64
|
* ```
|
|
42
65
|
*
|
|
43
66
|
* @param UpdateQueueCommandInput - {@link UpdateQueueCommandInput}
|
|
@@ -64,6 +87,8 @@ export interface UpdateQueueCommandOutput extends UpdateQueueResponse, __Metadat
|
|
|
64
87
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
65
88
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
66
89
|
*
|
|
90
|
+
* @throws {@link MediaConvertServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
67
92
|
*
|
|
68
93
|
*/
|
|
69
94
|
export declare class UpdateQueueCommand extends $Command<UpdateQueueCommandInput, UpdateQueueCommandOutput, MediaConvertClientResolvedConfig> {
|
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.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|