@aws-sdk/client-deadline 3.1036.0 → 3.1038.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 +1 -1
- 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/ts3.4/Deadline.d.ts +11 -10
- 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
|
}
|
|
@@ -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>
|
|
@@ -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.1038.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.6",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.37",
|
|
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.36",
|
|
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.22",
|
|
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.6",
|
|
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.5",
|
|
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": {
|