@aws-sdk/client-deadline 3.1037.0 → 3.1039.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/index.js +2 -1
- package/dist-es/models/enums.js +1 -0
- package/dist-es/waiters/waitForLicenseEndpointDeleted.js +2 -2
- package/dist-es/waiters/waitForLicenseEndpointValid.js +1 -1
- package/dist-types/Deadline.d.ts +11 -10
- package/dist-types/commands/CreateFleetCommand.d.ts +1 -1
- package/dist-types/commands/GetFleetCommand.d.ts +1 -1
- package/dist-types/commands/ListFleetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +6 -6
- package/dist-types/models/models_1.d.ts +5 -5
- package/dist-types/ts3.4/Deadline.d.ts +11 -10
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForFleetActive.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForJobComplete.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForJobCreateComplete.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForJobSucceeded.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForLicenseEndpointDeleted.d.ts +10 -3
- package/dist-types/ts3.4/waiters/waitForLicenseEndpointValid.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForQueueFleetAssociationStopped.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForQueueLimitAssociationStopped.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForQueueScheduling.d.ts +7 -3
- package/dist-types/ts3.4/waiters/waitForQueueSchedulingBlocked.d.ts +7 -3
- package/dist-types/waiters/waitForFleetActive.d.ts +4 -3
- package/dist-types/waiters/waitForJobComplete.d.ts +4 -3
- package/dist-types/waiters/waitForJobCreateComplete.d.ts +4 -3
- package/dist-types/waiters/waitForJobSucceeded.d.ts +4 -3
- package/dist-types/waiters/waitForLicenseEndpointDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForLicenseEndpointValid.d.ts +4 -3
- package/dist-types/waiters/waitForQueueFleetAssociationStopped.d.ts +4 -3
- package/dist-types/waiters/waitForQueueLimitAssociationStopped.d.ts +4 -3
- package/dist-types/waiters/waitForQueueScheduling.d.ts +4 -3
- package/dist-types/waiters/waitForQueueSchedulingBlocked.d.ts +4 -3
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1938,7 +1938,7 @@ const checkState$5 = async (client, input) => {
|
|
|
1938
1938
|
}
|
|
1939
1939
|
catch (exception) {
|
|
1940
1940
|
reason = exception;
|
|
1941
|
-
if (exception.name
|
|
1941
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
1942
1942
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1943
1943
|
}
|
|
1944
1944
|
}
|
|
@@ -2289,6 +2289,7 @@ const AcceleratorName = {
|
|
|
2289
2289
|
A10G: "a10g",
|
|
2290
2290
|
L4: "l4",
|
|
2291
2291
|
L40S: "l40s",
|
|
2292
|
+
RTX_PRO_SERVER_6000: "rtx-pro-server-6000",
|
|
2292
2293
|
T4: "t4",
|
|
2293
2294
|
};
|
|
2294
2295
|
const AcceleratorType = {
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { GetLicenseEndpointCommand } from "../commands/GetLicenseEndpointCommand";
|
|
2
|
+
import { GetLicenseEndpointCommand, } from "../commands/GetLicenseEndpointCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -17,7 +17,7 @@ const checkState = async (client, input) => {
|
|
|
17
17
|
}
|
|
18
18
|
catch (exception) {
|
|
19
19
|
reason = exception;
|
|
20
|
-
if (exception.name
|
|
20
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { GetLicenseEndpointCommand } from "../commands/GetLicenseEndpointCommand";
|
|
2
|
+
import { GetLicenseEndpointCommand, } from "../commands/GetLicenseEndpointCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
package/dist-types/Deadline.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ import { type UpdateTaskCommandInput, type UpdateTaskCommandOutput } from "./com
|
|
|
124
124
|
import { type UpdateWorkerCommandInput, type UpdateWorkerCommandOutput } from "./commands/UpdateWorkerCommand";
|
|
125
125
|
import { type UpdateWorkerScheduleCommandInput, type UpdateWorkerScheduleCommandOutput } from "./commands/UpdateWorkerScheduleCommand";
|
|
126
126
|
import { DeadlineClient } from "./DeadlineClient";
|
|
127
|
+
import type { ResourceNotFoundException } from "./models/errors";
|
|
127
128
|
export interface Deadline {
|
|
128
129
|
/**
|
|
129
130
|
* @see {@link AssociateMemberToFarmCommand}
|
|
@@ -1075,61 +1076,61 @@ export interface Deadline {
|
|
|
1075
1076
|
* @param args - command input.
|
|
1076
1077
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1077
1078
|
*/
|
|
1078
|
-
waitUntilFleetActive(args: GetFleetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1079
|
+
waitUntilFleetActive(args: GetFleetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetFleetCommandOutput>>;
|
|
1079
1080
|
/**
|
|
1080
1081
|
* @see {@link GetJobCommand}
|
|
1081
1082
|
* @param args - command input.
|
|
1082
1083
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1083
1084
|
*/
|
|
1084
|
-
waitUntilJobCreateComplete(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1085
|
+
waitUntilJobCreateComplete(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetJobCommandOutput>>;
|
|
1085
1086
|
/**
|
|
1086
1087
|
* @see {@link GetJobCommand}
|
|
1087
1088
|
* @param args - command input.
|
|
1088
1089
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1089
1090
|
*/
|
|
1090
|
-
waitUntilJobComplete(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1091
|
+
waitUntilJobComplete(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetJobCommandOutput>>;
|
|
1091
1092
|
/**
|
|
1092
1093
|
* @see {@link GetJobCommand}
|
|
1093
1094
|
* @param args - command input.
|
|
1094
1095
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1095
1096
|
*/
|
|
1096
|
-
waitUntilJobSucceeded(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1097
|
+
waitUntilJobSucceeded(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetJobCommandOutput>>;
|
|
1097
1098
|
/**
|
|
1098
1099
|
* @see {@link GetLicenseEndpointCommand}
|
|
1099
1100
|
* @param args - command input.
|
|
1100
1101
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1101
1102
|
*/
|
|
1102
|
-
waitUntilLicenseEndpointValid(args: GetLicenseEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1103
|
+
waitUntilLicenseEndpointValid(args: GetLicenseEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetLicenseEndpointCommandOutput>>;
|
|
1103
1104
|
/**
|
|
1104
1105
|
* @see {@link GetLicenseEndpointCommand}
|
|
1105
1106
|
* @param args - command input.
|
|
1106
1107
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1107
1108
|
*/
|
|
1108
|
-
waitUntilLicenseEndpointDeleted(args: GetLicenseEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1109
|
+
waitUntilLicenseEndpointDeleted(args: GetLicenseEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
1109
1110
|
/**
|
|
1110
1111
|
* @see {@link GetQueueCommand}
|
|
1111
1112
|
* @param args - command input.
|
|
1112
1113
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1113
1114
|
*/
|
|
1114
|
-
waitUntilQueueSchedulingBlocked(args: GetQueueCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1115
|
+
waitUntilQueueSchedulingBlocked(args: GetQueueCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
1115
1116
|
/**
|
|
1116
1117
|
* @see {@link GetQueueCommand}
|
|
1117
1118
|
* @param args - command input.
|
|
1118
1119
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1119
1120
|
*/
|
|
1120
|
-
waitUntilQueueScheduling(args: GetQueueCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1121
|
+
waitUntilQueueScheduling(args: GetQueueCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
1121
1122
|
/**
|
|
1122
1123
|
* @see {@link GetQueueFleetAssociationCommand}
|
|
1123
1124
|
* @param args - command input.
|
|
1124
1125
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1125
1126
|
*/
|
|
1126
|
-
waitUntilQueueFleetAssociationStopped(args: GetQueueFleetAssociationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1127
|
+
waitUntilQueueFleetAssociationStopped(args: GetQueueFleetAssociationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetQueueFleetAssociationCommandOutput>>;
|
|
1127
1128
|
/**
|
|
1128
1129
|
* @see {@link GetQueueLimitAssociationCommand}
|
|
1129
1130
|
* @param args - command input.
|
|
1130
1131
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1131
1132
|
*/
|
|
1132
|
-
waitUntilQueueLimitAssociationStopped(args: GetQueueLimitAssociationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult
|
|
1133
|
+
waitUntilQueueLimitAssociationStopped(args: GetQueueLimitAssociationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult<GetQueueLimitAssociationCommandOutput>>;
|
|
1133
1134
|
}
|
|
1134
1135
|
/**
|
|
1135
1136
|
* <p>The Amazon Web Services Deadline Cloud API provides infrastructure and centralized management for your projects. Use the Deadline Cloud API to onboard users, assign projects, and attach permissions specific to their job function.</p> <p>With Deadline Cloud, content production teams can deploy resources for their workforce securely in the cloud, reducing the costs of added physical infrastructure. Keep your content production operations secure, while allowing your contributors to access the tools they need, such as scalable high-speed storage, licenses, and cost management services.</p>
|
|
@@ -113,7 +113,7 @@ declare const CreateFleetCommand_base: {
|
|
|
113
113
|
* acceleratorCapabilities: { // AcceleratorCapabilities
|
|
114
114
|
* selections: [ // AcceleratorSelections // required
|
|
115
115
|
* { // AcceleratorSelection
|
|
116
|
-
* name: "t4" || "a10g" || "l4" || "l40s", // required
|
|
116
|
+
* name: "t4" || "a10g" || "l4" || "l40s" || "rtx-pro-server-6000", // required
|
|
117
117
|
* runtime: "STRING_VALUE",
|
|
118
118
|
* },
|
|
119
119
|
* ],
|
|
@@ -122,7 +122,7 @@ declare const GetFleetCommand_base: {
|
|
|
122
122
|
* // acceleratorCapabilities: { // AcceleratorCapabilities
|
|
123
123
|
* // selections: [ // AcceleratorSelections // required
|
|
124
124
|
* // { // AcceleratorSelection
|
|
125
|
-
* // name: "t4" || "a10g" || "l4" || "l40s", // required
|
|
125
|
+
* // name: "t4" || "a10g" || "l4" || "l40s" || "rtx-pro-server-6000", // required
|
|
126
126
|
* // runtime: "STRING_VALUE",
|
|
127
127
|
* // },
|
|
128
128
|
* // ],
|
|
@@ -128,7 +128,7 @@ declare const ListFleetsCommand_base: {
|
|
|
128
128
|
* // acceleratorCapabilities: { // AcceleratorCapabilities
|
|
129
129
|
* // selections: [ // AcceleratorSelections // required
|
|
130
130
|
* // { // AcceleratorSelection
|
|
131
|
-
* // name: "t4" || "a10g" || "l4" || "l40s", // required
|
|
131
|
+
* // name: "t4" || "a10g" || "l4" || "l40s" || "rtx-pro-server-6000", // required
|
|
132
132
|
* // runtime: "STRING_VALUE",
|
|
133
133
|
* // },
|
|
134
134
|
* // ],
|
|
@@ -114,7 +114,7 @@ declare const UpdateFleetCommand_base: {
|
|
|
114
114
|
* acceleratorCapabilities: { // AcceleratorCapabilities
|
|
115
115
|
* selections: [ // AcceleratorSelections // required
|
|
116
116
|
* { // AcceleratorSelection
|
|
117
|
-
* name: "t4" || "a10g" || "l4" || "l40s", // required
|
|
117
|
+
* name: "t4" || "a10g" || "l4" || "l40s" || "rtx-pro-server-6000", // required
|
|
118
118
|
* runtime: "STRING_VALUE",
|
|
119
119
|
* },
|
|
120
120
|
* ],
|
|
@@ -22,18 +22,18 @@ export interface AcceleratorCountRange {
|
|
|
22
22
|
*/
|
|
23
23
|
export interface AcceleratorSelection {
|
|
24
24
|
/**
|
|
25
|
-
* <p>The name of the chip used by the GPU accelerator.</p> <p>The available GPU accelerators are:</p> <ul> <li> <p> <code>t4</code> - NVIDIA T4 Tensor Core GPU (16 GiB memory)</p> </li> <li> <p> <code>a10g</code> - NVIDIA A10G Tensor Core GPU (24 GiB memory)</p> </li> <li> <p> <code>l4</code> - NVIDIA L4 Tensor Core GPU (24 GiB memory)</p> </li> <li> <p> <code>l40s</code> - NVIDIA L40S Tensor Core GPU (48 GiB memory)</p> </li> </ul>
|
|
25
|
+
* <p>The name of the chip used by the GPU accelerator.</p> <p>The available GPU accelerators are:</p> <ul> <li> <p> <code>t4</code> - NVIDIA T4 Tensor Core GPU (16 GiB memory)</p> </li> <li> <p> <code>a10g</code> - NVIDIA A10G Tensor Core GPU (24 GiB memory)</p> </li> <li> <p> <code>l4</code> - NVIDIA L4 Tensor Core GPU (24 GiB memory)</p> </li> <li> <p> <code>l40s</code> - NVIDIA L40S Tensor Core GPU (48 GiB memory)</p> </li> <li> <p> <code>rtx-pro-server-6000</code> - NVIDIA RTX PRO Server 6000 GPU (96 GiB memory)</p> </li> </ul>
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
28
|
name: AcceleratorName | undefined;
|
|
29
29
|
/**
|
|
30
|
-
* <p>Specifies the runtime driver to use for the GPU accelerator. You must use the same runtime for all GPUs in a fleet. </p> <p>You can choose from the following runtimes:</p> <ul> <li> <p> <code>latest</code> - Use the latest runtime available for the chip. If you specify <code>latest</code> and a new version of the runtime is released, the new version of the runtime is used.</p> </li> <li> <p> <code>grid:r570</code> - <a href="https://docs.nvidia.com/vgpu/18.0/index.html">NVIDIA vGPU software 18</a> </p> </li> <li> <p> <code>grid:r535</code> - <a href="https://docs.nvidia.com/vgpu/16.0/index.html">NVIDIA vGPU software 16</a> </p> </li> </ul> <p>If you don't specify a runtime, Amazon Web Services Deadline Cloud uses <code>latest</code> as the default. However, if you have multiple accelerators and specify <code>latest</code> for some and leave others blank, Amazon Web Services Deadline Cloud raises an exception.</p> <important> <p>Not all runtimes are compatible with all accelerator types:</p> <ul> <li> <p> <code>t4</code> and <code>a10g</code>: Support all runtimes (<code>grid:r570</code>, <code>grid:r535</code>)</p> </li> <li> <p> <code>l4</code> and <code>l40s</code>: Only support <code>grid:r570</code> and newer</p> </li> </ul> <p>All accelerators in a fleet must use the same runtime version. You cannot mix different runtime versions within a single fleet.</p> </important> <note> <p>When you specify <code>latest</code>, it resolves to <code>grid:
|
|
30
|
+
* <p>Specifies the runtime driver to use for the GPU accelerator. You must use the same runtime for all GPUs in a fleet. </p> <p>You can choose from the following runtimes:</p> <ul> <li> <p> <code>latest</code> - Use the latest runtime available for the chip. If you specify <code>latest</code> and a new version of the runtime is released, the new version of the runtime is used.</p> </li> <li> <p> <code>grid:r580</code> - <a href="https://docs.nvidia.com/vgpu/19.0/index.html">NVIDIA vGPU software 19</a> </p> </li> <li> <p> <code>grid:r570</code> - <a href="https://docs.nvidia.com/vgpu/18.0/index.html">NVIDIA vGPU software 18</a> </p> </li> <li> <p> <code>grid:r535</code> - <a href="https://docs.nvidia.com/vgpu/16.0/index.html">NVIDIA vGPU software 16</a> </p> </li> </ul> <p>If you don't specify a runtime, Amazon Web Services Deadline Cloud uses <code>latest</code> as the default. However, if you have multiple accelerators and specify <code>latest</code> for some and leave others blank, Amazon Web Services Deadline Cloud raises an exception.</p> <important> <p>Not all runtimes are compatible with all accelerator types:</p> <ul> <li> <p> <code>t4</code> and <code>a10g</code>: Support all runtimes (<code>grid:r580</code>, <code>grid:r570</code>, <code>grid:r535</code>)</p> </li> <li> <p> <code>l4</code> and <code>l40s</code>: Only support <code>grid:r570</code> and newer</p> </li> <li> <p> <code>rtx-pro-server-6000</code>: Only supports <code>grid:r580</code> </p> </li> </ul> <p>All accelerators in a fleet must use the same runtime version. You cannot mix different runtime versions within a single fleet.</p> </important> <note> <p>When you specify <code>latest</code>, it resolves to <code>grid:r580</code> for all currently supported accelerators.</p> </note>
|
|
31
31
|
* @public
|
|
32
32
|
*/
|
|
33
33
|
runtime?: string | undefined;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
-
* <p>Provides information about the GPU accelerators used for jobs processed by a fleet.</p> <important> <p>Accelerator capabilities cannot be used with wait-and-save fleets. If you specify accelerator capabilities, you must use either spot or on-demand instance market options.</p> </important> <note> <p>Each accelerator type maps to specific EC2 instance families:</p> <ul> <li> <p> <code>t4</code>: Uses G4dn instance family</p> </li> <li> <p> <code>a10g</code>: Uses G5 instance family</p> </li> <li> <p> <code>l4</code>: Uses G6 and Gr6 instance families</p> </li> <li> <p> <code>l40s</code>: Uses G6e instance family</p> </li> </ul> </note>
|
|
36
|
+
* <p>Provides information about the GPU accelerators used for jobs processed by a fleet.</p> <important> <p>Accelerator capabilities cannot be used with wait-and-save fleets. If you specify accelerator capabilities, you must use either spot or on-demand instance market options.</p> </important> <note> <p>Each accelerator type maps to specific EC2 instance families:</p> <ul> <li> <p> <code>t4</code>: Uses G4dn instance family</p> </li> <li> <p> <code>a10g</code>: Uses G5 instance family</p> </li> <li> <p> <code>l4</code>: Uses G6 and Gr6 instance families</p> </li> <li> <p> <code>l40s</code>: Uses G6e instance family</p> </li> <li> <p> <code>rtx-pro-server-6000</code>: Uses G7e instance family</p> </li> </ul> </note>
|
|
37
37
|
* @public
|
|
38
38
|
*/
|
|
39
39
|
export interface AcceleratorCapabilities {
|
|
@@ -3700,7 +3700,7 @@ export interface CustomerManagedAutoScalingConfiguration {
|
|
|
3700
3700
|
*/
|
|
3701
3701
|
workerIdleDurationSeconds?: number | undefined;
|
|
3702
3702
|
/**
|
|
3703
|
-
* <p>The number of workers that can be added per minute to the fleet. The default is
|
|
3703
|
+
* <p>The number of workers that can be added per minute to the fleet. The default is 10 workers per minute.</p>
|
|
3704
3704
|
* @public
|
|
3705
3705
|
*/
|
|
3706
3706
|
scaleOutWorkersPerMinute?: number | undefined;
|
|
@@ -3872,7 +3872,7 @@ export interface ServiceManagedEc2AutoScalingConfiguration {
|
|
|
3872
3872
|
*/
|
|
3873
3873
|
workerIdleDurationSeconds?: number | undefined;
|
|
3874
3874
|
/**
|
|
3875
|
-
* <p>The number of workers that can be added per minute to the fleet. The default is
|
|
3875
|
+
* <p>The number of workers that can be added per minute to the fleet. The default is 10 workers per minute.</p>
|
|
3876
3876
|
* @public
|
|
3877
3877
|
*/
|
|
3878
3878
|
scaleOutWorkersPerMinute?: number | undefined;
|
|
@@ -4346,7 +4346,7 @@ export interface CreateMonitorRequest {
|
|
|
4346
4346
|
*/
|
|
4347
4347
|
identityCenterInstanceArn: string | undefined;
|
|
4348
4348
|
/**
|
|
4349
|
-
* The AWS
|
|
4349
|
+
* <p>The AWS Region where IAM Identity Center is enabled. Required when IAM Identity Center is in a different Region than the monitor.</p>
|
|
4350
4350
|
* @public
|
|
4351
4351
|
*/
|
|
4352
4352
|
identityCenterRegion?: string | undefined;
|
|
@@ -1589,7 +1589,7 @@ export interface GetMonitorResponse {
|
|
|
1589
1589
|
*/
|
|
1590
1590
|
identityCenterInstanceArn: string | undefined;
|
|
1591
1591
|
/**
|
|
1592
|
-
* The AWS
|
|
1592
|
+
* <p>The AWS Region where IAM Identity Center is enabled.</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
1595
|
identityCenterRegion?: string | undefined;
|
|
@@ -1624,7 +1624,7 @@ export interface GetMonitorResponse {
|
|
|
1624
1624
|
*/
|
|
1625
1625
|
export interface GetMonitorSettingsRequest {
|
|
1626
1626
|
/**
|
|
1627
|
-
* <p>The unique identifier of the monitor. This ID is returned by the <code>CreateMonitor</code> operation, and is included in the response to the <code>
|
|
1627
|
+
* <p>The unique identifier of the monitor. This ID is returned by the <code>CreateMonitor</code> operation, and is included in the response to the <code>ListMonitors</code> operation.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
1630
|
monitorId: string | undefined;
|
|
@@ -1634,7 +1634,7 @@ export interface GetMonitorSettingsRequest {
|
|
|
1634
1634
|
*/
|
|
1635
1635
|
export interface GetMonitorSettingsResponse {
|
|
1636
1636
|
/**
|
|
1637
|
-
*
|
|
1637
|
+
* <p>The monitor settings as key-value pairs.</p>
|
|
1638
1638
|
* @public
|
|
1639
1639
|
*/
|
|
1640
1640
|
settings: Record<string, string> | undefined;
|
|
@@ -1691,7 +1691,7 @@ export interface MonitorSummary {
|
|
|
1691
1691
|
*/
|
|
1692
1692
|
identityCenterInstanceArn: string | undefined;
|
|
1693
1693
|
/**
|
|
1694
|
-
* The AWS
|
|
1694
|
+
* <p>The AWS Region where IAM Identity Center is enabled.</p>
|
|
1695
1695
|
* @public
|
|
1696
1696
|
*/
|
|
1697
1697
|
identityCenterRegion?: string | undefined;
|
|
@@ -1777,7 +1777,7 @@ export interface UpdateMonitorSettingsRequest {
|
|
|
1777
1777
|
*/
|
|
1778
1778
|
monitorId: string | undefined;
|
|
1779
1779
|
/**
|
|
1780
|
-
*
|
|
1780
|
+
* <p>The monitor settings to update as key-value pairs. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.</p>
|
|
1781
1781
|
* @public
|
|
1782
1782
|
*/
|
|
1783
1783
|
settings: Record<string, string> | undefined;
|
|
@@ -498,6 +498,7 @@ import {
|
|
|
498
498
|
UpdateWorkerScheduleCommandOutput,
|
|
499
499
|
} from "./commands/UpdateWorkerScheduleCommand";
|
|
500
500
|
import { DeadlineClient } from "./DeadlineClient";
|
|
501
|
+
import { ResourceNotFoundException } from "./models/errors";
|
|
501
502
|
export interface Deadline {
|
|
502
503
|
associateMemberToFarm(
|
|
503
504
|
args: AssociateMemberToFarmCommandInput,
|
|
@@ -2319,7 +2320,7 @@ export interface Deadline {
|
|
|
2319
2320
|
WaiterConfiguration<Deadline>,
|
|
2320
2321
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2321
2322
|
>
|
|
2322
|
-
): Promise<WaiterResult
|
|
2323
|
+
): Promise<WaiterResult<GetFleetCommandOutput>>;
|
|
2323
2324
|
waitUntilJobCreateComplete(
|
|
2324
2325
|
args: GetJobCommandInput,
|
|
2325
2326
|
waiterConfig:
|
|
@@ -2328,7 +2329,7 @@ export interface Deadline {
|
|
|
2328
2329
|
WaiterConfiguration<Deadline>,
|
|
2329
2330
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2330
2331
|
>
|
|
2331
|
-
): Promise<WaiterResult
|
|
2332
|
+
): Promise<WaiterResult<GetJobCommandOutput>>;
|
|
2332
2333
|
waitUntilJobComplete(
|
|
2333
2334
|
args: GetJobCommandInput,
|
|
2334
2335
|
waiterConfig:
|
|
@@ -2337,7 +2338,7 @@ export interface Deadline {
|
|
|
2337
2338
|
WaiterConfiguration<Deadline>,
|
|
2338
2339
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2339
2340
|
>
|
|
2340
|
-
): Promise<WaiterResult
|
|
2341
|
+
): Promise<WaiterResult<GetJobCommandOutput>>;
|
|
2341
2342
|
waitUntilJobSucceeded(
|
|
2342
2343
|
args: GetJobCommandInput,
|
|
2343
2344
|
waiterConfig:
|
|
@@ -2346,7 +2347,7 @@ export interface Deadline {
|
|
|
2346
2347
|
WaiterConfiguration<Deadline>,
|
|
2347
2348
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2348
2349
|
>
|
|
2349
|
-
): Promise<WaiterResult
|
|
2350
|
+
): Promise<WaiterResult<GetJobCommandOutput>>;
|
|
2350
2351
|
waitUntilLicenseEndpointValid(
|
|
2351
2352
|
args: GetLicenseEndpointCommandInput,
|
|
2352
2353
|
waiterConfig:
|
|
@@ -2355,7 +2356,7 @@ export interface Deadline {
|
|
|
2355
2356
|
WaiterConfiguration<Deadline>,
|
|
2356
2357
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2357
2358
|
>
|
|
2358
|
-
): Promise<WaiterResult
|
|
2359
|
+
): Promise<WaiterResult<GetLicenseEndpointCommandOutput>>;
|
|
2359
2360
|
waitUntilLicenseEndpointDeleted(
|
|
2360
2361
|
args: GetLicenseEndpointCommandInput,
|
|
2361
2362
|
waiterConfig:
|
|
@@ -2364,7 +2365,7 @@ export interface Deadline {
|
|
|
2364
2365
|
WaiterConfiguration<Deadline>,
|
|
2365
2366
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2366
2367
|
>
|
|
2367
|
-
): Promise<WaiterResult
|
|
2368
|
+
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
2368
2369
|
waitUntilQueueSchedulingBlocked(
|
|
2369
2370
|
args: GetQueueCommandInput,
|
|
2370
2371
|
waiterConfig:
|
|
@@ -2373,7 +2374,7 @@ export interface Deadline {
|
|
|
2373
2374
|
WaiterConfiguration<Deadline>,
|
|
2374
2375
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2375
2376
|
>
|
|
2376
|
-
): Promise<WaiterResult
|
|
2377
|
+
): Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
2377
2378
|
waitUntilQueueScheduling(
|
|
2378
2379
|
args: GetQueueCommandInput,
|
|
2379
2380
|
waiterConfig:
|
|
@@ -2382,7 +2383,7 @@ export interface Deadline {
|
|
|
2382
2383
|
WaiterConfiguration<Deadline>,
|
|
2383
2384
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2384
2385
|
>
|
|
2385
|
-
): Promise<WaiterResult
|
|
2386
|
+
): Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
2386
2387
|
waitUntilQueueFleetAssociationStopped(
|
|
2387
2388
|
args: GetQueueFleetAssociationCommandInput,
|
|
2388
2389
|
waiterConfig:
|
|
@@ -2391,7 +2392,7 @@ export interface Deadline {
|
|
|
2391
2392
|
WaiterConfiguration<Deadline>,
|
|
2392
2393
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2393
2394
|
>
|
|
2394
|
-
): Promise<WaiterResult
|
|
2395
|
+
): Promise<WaiterResult<GetQueueFleetAssociationCommandOutput>>;
|
|
2395
2396
|
waitUntilQueueLimitAssociationStopped(
|
|
2396
2397
|
args: GetQueueLimitAssociationCommandInput,
|
|
2397
2398
|
waiterConfig:
|
|
@@ -2400,6 +2401,6 @@ export interface Deadline {
|
|
|
2400
2401
|
WaiterConfiguration<Deadline>,
|
|
2401
2402
|
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2402
2403
|
>
|
|
2403
|
-
): Promise<WaiterResult
|
|
2404
|
+
): Promise<WaiterResult<GetQueueLimitAssociationCommandOutput>>;
|
|
2404
2405
|
}
|
|
2405
2406
|
export declare class Deadline extends DeadlineClient implements Deadline {}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetFleetCommandInput,
|
|
4
|
+
GetFleetCommandOutput,
|
|
5
|
+
} from "../commands/GetFleetCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForFleetActive: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetFleetCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetFleetCommandOutput | DeadlineServiceException>>;
|
|
8
12
|
export declare const waitUntilFleetActive: (
|
|
9
13
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
14
|
input: GetFleetCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetFleetCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetJobCommandInput,
|
|
4
|
+
GetJobCommandOutput,
|
|
5
|
+
} from "../commands/GetJobCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForJobComplete: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetJobCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetJobCommandOutput | DeadlineServiceException>>;
|
|
8
12
|
export declare const waitUntilJobComplete: (
|
|
9
13
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
14
|
input: GetJobCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetJobCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetJobCommandInput,
|
|
4
|
+
GetJobCommandOutput,
|
|
5
|
+
} from "../commands/GetJobCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForJobCreateComplete: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetJobCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetJobCommandOutput | DeadlineServiceException>>;
|
|
8
12
|
export declare const waitUntilJobCreateComplete: (
|
|
9
13
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
14
|
input: GetJobCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetJobCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetJobCommandInput,
|
|
4
|
+
GetJobCommandOutput,
|
|
5
|
+
} from "../commands/GetJobCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForJobSucceeded: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetJobCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetJobCommandOutput | DeadlineServiceException>>;
|
|
8
12
|
export declare const waitUntilJobSucceeded: (
|
|
9
13
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
14
|
input: GetJobCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetJobCommandOutput>>;
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetLicenseEndpointCommandInput,
|
|
4
|
+
GetLicenseEndpointCommandOutput,
|
|
5
|
+
} from "../commands/GetLicenseEndpointCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
8
|
+
import { ResourceNotFoundException } from "../models/errors";
|
|
4
9
|
export declare const waitForLicenseEndpointDeleted: (
|
|
5
10
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
11
|
input: GetLicenseEndpointCommandInput
|
|
7
|
-
) => Promise<
|
|
12
|
+
) => Promise<
|
|
13
|
+
WaiterResult<GetLicenseEndpointCommandOutput | DeadlineServiceException>
|
|
14
|
+
>;
|
|
8
15
|
export declare const waitUntilLicenseEndpointDeleted: (
|
|
9
16
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
17
|
input: GetLicenseEndpointCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
18
|
+
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetLicenseEndpointCommandInput,
|
|
4
|
+
GetLicenseEndpointCommandOutput,
|
|
5
|
+
} from "../commands/GetLicenseEndpointCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForLicenseEndpointValid: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetLicenseEndpointCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetLicenseEndpointCommandOutput | DeadlineServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilLicenseEndpointValid: (
|
|
9
15
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
16
|
input: GetLicenseEndpointCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<GetLicenseEndpointCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetQueueFleetAssociationCommandInput,
|
|
4
|
+
GetQueueFleetAssociationCommandOutput,
|
|
5
|
+
} from "../commands/GetQueueFleetAssociationCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForQueueFleetAssociationStopped: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetQueueFleetAssociationCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetQueueFleetAssociationCommandOutput | DeadlineServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilQueueFleetAssociationStopped: (
|
|
9
15
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
16
|
input: GetQueueFleetAssociationCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<GetQueueFleetAssociationCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetQueueLimitAssociationCommandInput,
|
|
4
|
+
GetQueueLimitAssociationCommandOutput,
|
|
5
|
+
} from "../commands/GetQueueLimitAssociationCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForQueueLimitAssociationStopped: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetQueueLimitAssociationCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetQueueLimitAssociationCommandOutput | DeadlineServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilQueueLimitAssociationStopped: (
|
|
9
15
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
16
|
input: GetQueueLimitAssociationCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<GetQueueLimitAssociationCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetQueueCommandInput,
|
|
4
|
+
GetQueueCommandOutput,
|
|
5
|
+
} from "../commands/GetQueueCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForQueueScheduling: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetQueueCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetQueueCommandOutput | DeadlineServiceException>>;
|
|
8
12
|
export declare const waitUntilQueueScheduling: (
|
|
9
13
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
14
|
input: GetQueueCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetQueueCommandInput,
|
|
4
|
+
GetQueueCommandOutput,
|
|
5
|
+
} from "../commands/GetQueueCommand";
|
|
3
6
|
import { DeadlineClient } from "../DeadlineClient";
|
|
7
|
+
import { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
8
|
export declare const waitForQueueSchedulingBlocked: (
|
|
5
9
|
params: WaiterConfiguration<DeadlineClient>,
|
|
6
10
|
input: GetQueueCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetQueueCommandOutput | DeadlineServiceException>>;
|
|
8
12
|
export declare const waitUntilQueueSchedulingBlocked: (
|
|
9
13
|
params: WaiterConfiguration<DeadlineClient>,
|
|
10
14
|
input: GetQueueCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetFleetCommandInput } from "../commands/GetFleetCommand";
|
|
2
|
+
import { type GetFleetCommandInput, type GetFleetCommandOutput } from "../commands/GetFleetCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a Fleet is activated. Use this after invoking CreateFleet or UpdateFleet.
|
|
6
7
|
* @deprecated Use waitUntilFleetActive instead. waitForFleetActive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForFleetActive: (params: WaiterConfiguration<DeadlineClient>, input: GetFleetCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForFleetActive: (params: WaiterConfiguration<DeadlineClient>, input: GetFleetCommandInput) => Promise<WaiterResult<GetFleetCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a Fleet is activated. Use this after invoking CreateFleet or UpdateFleet.
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetFleetCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilFleetActive: (params: WaiterConfiguration<DeadlineClient>, input: GetFleetCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilFleetActive: (params: WaiterConfiguration<DeadlineClient>, input: GetFleetCommandInput) => Promise<WaiterResult<GetFleetCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetJobCommandInput } from "../commands/GetJobCommand";
|
|
2
|
+
import { type GetJobCommandInput, type GetJobCommandOutput } from "../commands/GetJobCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a job reaches any terminal status. Waits up to 1 hour by default.
|
|
6
7
|
* @deprecated Use waitUntilJobComplete instead. waitForJobComplete does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForJobComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForJobComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult<GetJobCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a job reaches any terminal status. Waits up to 1 hour by default.
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetJobCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilJobComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilJobComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult<GetJobCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetJobCommandInput } from "../commands/GetJobCommand";
|
|
2
|
+
import { type GetJobCommandInput, type GetJobCommandOutput } from "../commands/GetJobCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a job is created. Use this after invoking CreateJob.
|
|
6
7
|
* @deprecated Use waitUntilJobCreateComplete instead. waitForJobCreateComplete does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForJobCreateComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForJobCreateComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult<GetJobCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a job is created. Use this after invoking CreateJob.
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetJobCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilJobCreateComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilJobCreateComplete: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult<GetJobCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetJobCommandInput } from "../commands/GetJobCommand";
|
|
2
|
+
import { type GetJobCommandInput, type GetJobCommandOutput } from "../commands/GetJobCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a job has succeeded. Fails if the job reaches a non-successful terminal status. Waits up to 1 hour by default.
|
|
6
7
|
* @deprecated Use waitUntilJobSucceeded instead. waitForJobSucceeded does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForJobSucceeded: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForJobSucceeded: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult<GetJobCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a job has succeeded. Fails if the job reaches a non-successful terminal status. Waits up to 1 hour by default.
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetJobCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilJobSucceeded: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilJobSucceeded: (params: WaiterConfiguration<DeadlineClient>, input: GetJobCommandInput) => Promise<WaiterResult<GetJobCommandOutput>>;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetLicenseEndpointCommandInput } from "../commands/GetLicenseEndpointCommand";
|
|
2
|
+
import { type GetLicenseEndpointCommandInput, type GetLicenseEndpointCommandOutput } from "../commands/GetLicenseEndpointCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
5
|
+
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
6
|
/**
|
|
5
7
|
* Wait until a LicenseEndpoint is Deleted. Use this after invoking DeleteLicenseEndpoint.
|
|
6
8
|
* @deprecated Use waitUntilLicenseEndpointDeleted instead. waitForLicenseEndpointDeleted does not throw error in non-success cases.
|
|
7
9
|
*/
|
|
8
|
-
export declare const waitForLicenseEndpointDeleted: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult
|
|
10
|
+
export declare const waitForLicenseEndpointDeleted: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult<GetLicenseEndpointCommandOutput | DeadlineServiceException>>;
|
|
9
11
|
/**
|
|
10
12
|
* Wait until a LicenseEndpoint is Deleted. Use this after invoking DeleteLicenseEndpoint.
|
|
11
13
|
* @param params - Waiter configuration options.
|
|
12
14
|
* @param input - The input to GetLicenseEndpointCommand for polling.
|
|
13
15
|
*/
|
|
14
|
-
export declare const waitUntilLicenseEndpointDeleted: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult
|
|
16
|
+
export declare const waitUntilLicenseEndpointDeleted: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetLicenseEndpointCommandInput } from "../commands/GetLicenseEndpointCommand";
|
|
2
|
+
import { type GetLicenseEndpointCommandInput, type GetLicenseEndpointCommandOutput } from "../commands/GetLicenseEndpointCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a LicenseEndpoint is Ready. Use this after invoking CreateLicenseEndpoint.
|
|
6
7
|
* @deprecated Use waitUntilLicenseEndpointValid instead. waitForLicenseEndpointValid does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForLicenseEndpointValid: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForLicenseEndpointValid: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult<GetLicenseEndpointCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a LicenseEndpoint is Ready. Use this after invoking CreateLicenseEndpoint.
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetLicenseEndpointCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilLicenseEndpointValid: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilLicenseEndpointValid: (params: WaiterConfiguration<DeadlineClient>, input: GetLicenseEndpointCommandInput) => Promise<WaiterResult<GetLicenseEndpointCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetQueueFleetAssociationCommandInput } from "../commands/GetQueueFleetAssociationCommand";
|
|
2
|
+
import { type GetQueueFleetAssociationCommandInput, type GetQueueFleetAssociationCommandOutput } from "../commands/GetQueueFleetAssociationCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a QueueFleetAssociation is stopped. Use this after setting the status to STOP_SCHEDULING_AND_COMPLETE_TASKS or STOP_SCHEDULING_AND_CANCEL_TASKS to wait for a QueueFleetAssociation to reach STOPPED
|
|
6
7
|
* @deprecated Use waitUntilQueueFleetAssociationStopped instead. waitForQueueFleetAssociationStopped does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForQueueFleetAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueFleetAssociationCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForQueueFleetAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueFleetAssociationCommandInput) => Promise<WaiterResult<GetQueueFleetAssociationCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a QueueFleetAssociation is stopped. Use this after setting the status to STOP_SCHEDULING_AND_COMPLETE_TASKS or STOP_SCHEDULING_AND_CANCEL_TASKS to wait for a QueueFleetAssociation to reach STOPPED
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetQueueFleetAssociationCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilQueueFleetAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueFleetAssociationCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilQueueFleetAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueFleetAssociationCommandInput) => Promise<WaiterResult<GetQueueFleetAssociationCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetQueueLimitAssociationCommandInput } from "../commands/GetQueueLimitAssociationCommand";
|
|
2
|
+
import { type GetQueueLimitAssociationCommandInput, type GetQueueLimitAssociationCommandOutput } from "../commands/GetQueueLimitAssociationCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a QueueLimitAssociation is stopped. Use this after setting the status to STOP_LIMIT_USAGE_AND_COMPLETE_TASKS or STOP_LIMIT_USAGE_AND_CANCEL_TASKS to wait for a QueueLimitAssociation to reach STOPPED
|
|
6
7
|
* @deprecated Use waitUntilQueueLimitAssociationStopped instead. waitForQueueLimitAssociationStopped does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForQueueLimitAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueLimitAssociationCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForQueueLimitAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueLimitAssociationCommandInput) => Promise<WaiterResult<GetQueueLimitAssociationCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a QueueLimitAssociation is stopped. Use this after setting the status to STOP_LIMIT_USAGE_AND_COMPLETE_TASKS or STOP_LIMIT_USAGE_AND_CANCEL_TASKS to wait for a QueueLimitAssociation to reach STOPPED
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetQueueLimitAssociationCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilQueueLimitAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueLimitAssociationCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilQueueLimitAssociationStopped: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueLimitAssociationCommandInput) => Promise<WaiterResult<GetQueueLimitAssociationCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetQueueCommandInput } from "../commands/GetQueueCommand";
|
|
2
|
+
import { type GetQueueCommandInput, type GetQueueCommandOutput } from "../commands/GetQueueCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilQueueScheduling instead. waitForQueueScheduling does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForQueueScheduling: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForQueueScheduling: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult<GetQueueCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetQueueCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilQueueScheduling: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilQueueScheduling: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult<GetQueueCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetQueueCommandInput } from "../commands/GetQueueCommand";
|
|
2
|
+
import { type GetQueueCommandInput, type GetQueueCommandOutput } from "../commands/GetQueueCommand";
|
|
3
3
|
import type { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
import type { DeadlineServiceException } from "../models/DeadlineServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilQueueSchedulingBlocked instead. waitForQueueSchedulingBlocked does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForQueueSchedulingBlocked: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForQueueSchedulingBlocked: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult<GetQueueCommandOutput | DeadlineServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetQueueCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilQueueSchedulingBlocked: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilQueueSchedulingBlocked: (params: WaiterConfiguration<DeadlineClient>, input: GetQueueCommandInput) => Promise<WaiterResult<GetQueueCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-deadline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Deadline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1039.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-deadline",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.7",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.38",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.37",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.23",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
36
|
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
41
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.7",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
58
|
+
"@smithy/util-retry": "^4.3.6",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.
|
|
60
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|