@aws-sdk/client-mediaconvert 3.300.0 → 3.303.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-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +187 -187
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +184 -184
- package/dist-types/commands/CreatePresetCommand.d.ts +94 -94
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -3
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +183 -183
- package/dist-types/commands/UpdatePresetCommand.d.ts +93 -93
- package/dist-types/commands/UpdateQueueCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -1,30 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.QueueListBy = exports.PresetListBy = exports.Order = exports.JobTemplateListBy = exports.InputPolicy = void 0;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
var QueueListBy;
|
|
27
|
-
(function (QueueListBy) {
|
|
28
|
-
QueueListBy["CREATION_DATE"] = "CREATION_DATE";
|
|
29
|
-
QueueListBy["NAME"] = "NAME";
|
|
30
|
-
})(QueueListBy = exports.QueueListBy || (exports.QueueListBy = {}));
|
|
4
|
+
exports.InputPolicy = {
|
|
5
|
+
ALLOWED: "ALLOWED",
|
|
6
|
+
DISALLOWED: "DISALLOWED",
|
|
7
|
+
};
|
|
8
|
+
exports.JobTemplateListBy = {
|
|
9
|
+
CREATION_DATE: "CREATION_DATE",
|
|
10
|
+
NAME: "NAME",
|
|
11
|
+
SYSTEM: "SYSTEM",
|
|
12
|
+
};
|
|
13
|
+
exports.Order = {
|
|
14
|
+
ASCENDING: "ASCENDING",
|
|
15
|
+
DESCENDING: "DESCENDING",
|
|
16
|
+
};
|
|
17
|
+
exports.PresetListBy = {
|
|
18
|
+
CREATION_DATE: "CREATION_DATE",
|
|
19
|
+
NAME: "NAME",
|
|
20
|
+
SYSTEM: "SYSTEM",
|
|
21
|
+
};
|
|
22
|
+
exports.QueueListBy = {
|
|
23
|
+
CREATION_DATE: "CREATION_DATE",
|
|
24
|
+
NAME: "NAME",
|
|
25
|
+
};
|