@aws-sdk/client-deadline 3.956.0 → 3.958.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -118
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +2009 -3199
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/pagination/index.js +3 -3
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +1800 -2988
- package/dist-es/waiters/index.js +3 -3
- package/dist-es/waiters/waitForFleetActive.js +3 -3
- package/dist-es/waiters/waitForJobCreateComplete.js +6 -6
- package/dist-es/waiters/waitForLicenseEndpointDeleted.js +1 -1
- package/dist-es/waiters/waitForLicenseEndpointValid.js +2 -2
- package/dist-es/waiters/waitForQueueFleetAssociationStopped.js +1 -1
- package/dist-es/waiters/waitForQueueLimitAssociationStopped.js +1 -1
- package/dist-es/waiters/waitForQueueScheduling.js +1 -1
- package/dist-es/waiters/waitForQueueSchedulingBlocked.js +1 -1
- package/dist-types/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/waiters/index.d.ts +3 -3
- package/dist-types/waiters/index.d.ts +3 -3
- package/package.json +13 -13
package/dist-es/waiters/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export * from "./waitForFleetActive";
|
|
2
2
|
export * from "./waitForJobCreateComplete";
|
|
3
|
-
export * from "./waitForLicenseEndpointDeleted";
|
|
4
3
|
export * from "./waitForLicenseEndpointValid";
|
|
4
|
+
export * from "./waitForLicenseEndpointDeleted";
|
|
5
|
+
export * from "./waitForQueueSchedulingBlocked";
|
|
6
|
+
export * from "./waitForQueueScheduling";
|
|
5
7
|
export * from "./waitForQueueFleetAssociationStopped";
|
|
6
8
|
export * from "./waitForQueueLimitAssociationStopped";
|
|
7
|
-
export * from "./waitForQueueScheduling";
|
|
8
|
-
export * from "./waitForQueueSchedulingBlocked";
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetFleetCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "ACTIVE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.status;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetJobCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.lifecycleStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "CREATE_COMPLETE") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.lifecycleStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "UPDATE_IN_PROGRESS") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.lifecycleStatus;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
@@ -33,7 +33,7 @@ const checkState = async (client, input) => {
|
|
|
33
33
|
}
|
|
34
34
|
catch (e) { }
|
|
35
35
|
try {
|
|
36
|
-
|
|
36
|
+
let returnComparator = () => {
|
|
37
37
|
return result.lifecycleStatus;
|
|
38
38
|
};
|
|
39
39
|
if (returnComparator() === "UPDATE_SUCCEEDED") {
|
|
@@ -42,7 +42,7 @@ const checkState = async (client, input) => {
|
|
|
42
42
|
}
|
|
43
43
|
catch (e) { }
|
|
44
44
|
try {
|
|
45
|
-
|
|
45
|
+
let returnComparator = () => {
|
|
46
46
|
return result.lifecycleStatus;
|
|
47
47
|
};
|
|
48
48
|
if (returnComparator() === "UPLOAD_FAILED") {
|
|
@@ -51,7 +51,7 @@ const checkState = async (client, input) => {
|
|
|
51
51
|
}
|
|
52
52
|
catch (e) { }
|
|
53
53
|
try {
|
|
54
|
-
|
|
54
|
+
let returnComparator = () => {
|
|
55
55
|
return result.lifecycleStatus;
|
|
56
56
|
};
|
|
57
57
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetLicenseEndpointCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "NOT_READY") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetLicenseEndpointCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "READY") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "NOT_READY") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetQueueFleetAssociationCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "STOPPED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetQueueLimitAssociationCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "STOPPED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetQueueCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "SCHEDULING") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetQueueCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "SCHEDULING_BLOCKED") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./GetSessionsStatisticsAggregationPaginator";
|
|
2
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./GetSessionsStatisticsAggregationPaginator";
|
|
3
3
|
export * from "./ListAvailableMeteredProductsPaginator";
|
|
4
4
|
export * from "./ListBudgetsPaginator";
|
|
5
5
|
export * from "./ListFarmMembersPaginator";
|
|
@@ -19,12 +19,12 @@ export * from "./ListQueueLimitAssociationsPaginator";
|
|
|
19
19
|
export * from "./ListQueueMembersPaginator";
|
|
20
20
|
export * from "./ListQueuesPaginator";
|
|
21
21
|
export * from "./ListSessionActionsPaginator";
|
|
22
|
-
export * from "./ListSessionsForWorkerPaginator";
|
|
23
22
|
export * from "./ListSessionsPaginator";
|
|
23
|
+
export * from "./ListSessionsForWorkerPaginator";
|
|
24
24
|
export * from "./ListStepConsumersPaginator";
|
|
25
25
|
export * from "./ListStepDependenciesPaginator";
|
|
26
26
|
export * from "./ListStepsPaginator";
|
|
27
|
-
export * from "./ListStorageProfilesForQueuePaginator";
|
|
28
27
|
export * from "./ListStorageProfilesPaginator";
|
|
28
|
+
export * from "./ListStorageProfilesForQueuePaginator";
|
|
29
29
|
export * from "./ListTasksPaginator";
|
|
30
30
|
export * from "./ListWorkersPaginator";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./GetSessionsStatisticsAggregationPaginator";
|
|
2
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./GetSessionsStatisticsAggregationPaginator";
|
|
3
3
|
export * from "./ListAvailableMeteredProductsPaginator";
|
|
4
4
|
export * from "./ListBudgetsPaginator";
|
|
5
5
|
export * from "./ListFarmMembersPaginator";
|
|
@@ -19,12 +19,12 @@ export * from "./ListQueueLimitAssociationsPaginator";
|
|
|
19
19
|
export * from "./ListQueueMembersPaginator";
|
|
20
20
|
export * from "./ListQueuesPaginator";
|
|
21
21
|
export * from "./ListSessionActionsPaginator";
|
|
22
|
-
export * from "./ListSessionsForWorkerPaginator";
|
|
23
22
|
export * from "./ListSessionsPaginator";
|
|
23
|
+
export * from "./ListSessionsForWorkerPaginator";
|
|
24
24
|
export * from "./ListStepConsumersPaginator";
|
|
25
25
|
export * from "./ListStepDependenciesPaginator";
|
|
26
26
|
export * from "./ListStepsPaginator";
|
|
27
|
-
export * from "./ListStorageProfilesForQueuePaginator";
|
|
28
27
|
export * from "./ListStorageProfilesPaginator";
|
|
28
|
+
export * from "./ListStorageProfilesForQueuePaginator";
|
|
29
29
|
export * from "./ListTasksPaginator";
|
|
30
30
|
export * from "./ListWorkersPaginator";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export * from "./waitForFleetActive";
|
|
2
2
|
export * from "./waitForJobCreateComplete";
|
|
3
|
-
export * from "./waitForLicenseEndpointDeleted";
|
|
4
3
|
export * from "./waitForLicenseEndpointValid";
|
|
4
|
+
export * from "./waitForLicenseEndpointDeleted";
|
|
5
|
+
export * from "./waitForQueueSchedulingBlocked";
|
|
6
|
+
export * from "./waitForQueueScheduling";
|
|
5
7
|
export * from "./waitForQueueFleetAssociationStopped";
|
|
6
8
|
export * from "./waitForQueueLimitAssociationStopped";
|
|
7
|
-
export * from "./waitForQueueScheduling";
|
|
8
|
-
export * from "./waitForQueueSchedulingBlocked";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export * from "./waitForFleetActive";
|
|
2
2
|
export * from "./waitForJobCreateComplete";
|
|
3
|
-
export * from "./waitForLicenseEndpointDeleted";
|
|
4
3
|
export * from "./waitForLicenseEndpointValid";
|
|
4
|
+
export * from "./waitForLicenseEndpointDeleted";
|
|
5
|
+
export * from "./waitForQueueSchedulingBlocked";
|
|
6
|
+
export * from "./waitForQueueScheduling";
|
|
5
7
|
export * from "./waitForQueueFleetAssociationStopped";
|
|
6
8
|
export * from "./waitForQueueLimitAssociationStopped";
|
|
7
|
-
export * from "./waitForQueueScheduling";
|
|
8
|
-
export * from "./waitForQueueSchedulingBlocked";
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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.958.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",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
-
"build:include:deps": "
|
|
9
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
12
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
@@ -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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/core": "3.957.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.958.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.957.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.957.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.957.0",
|
|
31
|
+
"@aws-sdk/types": "3.957.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.957.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.957.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.957.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.5",
|
|
36
36
|
"@smithy/core": "^3.20.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.8",
|