@aws-sdk/client-pcs 3.808.0 → 3.811.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 -18
- package/dist-cjs/models/models_0.js +5 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-types/PCS.d.ts +1 -18
- package/dist-types/PCSClient.d.ts +1 -18
- package/dist-types/commands/CreateClusterCommand.d.ts +13 -91
- package/dist-types/commands/CreateComputeNodeGroupCommand.d.ts +6 -93
- package/dist-types/commands/CreateQueueCommand.d.ts +6 -86
- package/dist-types/commands/DeleteClusterCommand.d.ts +5 -65
- package/dist-types/commands/DeleteComputeNodeGroupCommand.d.ts +5 -65
- package/dist-types/commands/DeleteQueueCommand.d.ts +5 -66
- package/dist-types/commands/GetClusterCommand.d.ts +9 -66
- package/dist-types/commands/GetComputeNodeGroupCommand.d.ts +5 -66
- package/dist-types/commands/GetQueueCommand.d.ts +5 -65
- package/dist-types/commands/ListClustersCommand.d.ts +4 -63
- package/dist-types/commands/ListComputeNodeGroupsCommand.d.ts +4 -63
- package/dist-types/commands/ListQueuesCommand.d.ts +4 -63
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -5
- package/dist-types/commands/RegisterComputeNodeGroupInstanceCommand.d.ts +2 -23
- package/dist-types/commands/TagResourceCommand.d.ts +3 -30
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -7
- package/dist-types/commands/UpdateComputeNodeGroupCommand.d.ts +6 -87
- package/dist-types/commands/UpdateQueueCommand.d.ts +6 -86
- package/dist-types/index.d.ts +1 -18
- package/dist-types/models/models_0.d.ts +137 -550
- package/dist-types/ts3.4/models/models_0.d.ts +16 -0
- package/package.json +12 -12
|
@@ -7,6 +7,20 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
+
export declare const AccountingMode: {
|
|
11
|
+
readonly NONE: "NONE";
|
|
12
|
+
readonly STANDARD: "STANDARD";
|
|
13
|
+
};
|
|
14
|
+
export type AccountingMode =
|
|
15
|
+
(typeof AccountingMode)[keyof typeof AccountingMode];
|
|
16
|
+
export interface Accounting {
|
|
17
|
+
mode: AccountingMode | undefined;
|
|
18
|
+
defaultPurgeTimeInDays?: number | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface AccountingRequest {
|
|
21
|
+
mode: AccountingMode | undefined;
|
|
22
|
+
defaultPurgeTimeInDays?: number | undefined;
|
|
23
|
+
}
|
|
10
24
|
export declare class ConflictException extends __BaseException {
|
|
11
25
|
readonly name: "ConflictException";
|
|
12
26
|
readonly $fault: "client";
|
|
@@ -239,6 +253,7 @@ export type Size = (typeof Size)[keyof typeof Size];
|
|
|
239
253
|
export interface ClusterSlurmConfigurationRequest {
|
|
240
254
|
scaleDownIdleTimeInSeconds?: number | undefined;
|
|
241
255
|
slurmCustomSettings?: SlurmCustomSetting[] | undefined;
|
|
256
|
+
accounting?: AccountingRequest | undefined;
|
|
242
257
|
}
|
|
243
258
|
export interface CreateClusterRequest {
|
|
244
259
|
clusterName: string | undefined;
|
|
@@ -276,6 +291,7 @@ export interface ClusterSlurmConfiguration {
|
|
|
276
291
|
scaleDownIdleTimeInSeconds?: number | undefined;
|
|
277
292
|
slurmCustomSettings?: SlurmCustomSetting[] | undefined;
|
|
278
293
|
authKey?: SlurmAuthKey | undefined;
|
|
294
|
+
accounting?: Accounting | undefined;
|
|
279
295
|
}
|
|
280
296
|
export declare const ClusterStatus: {
|
|
281
297
|
readonly ACTIVE: "ACTIVE";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pcs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pcs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.811.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.810.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.810.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.804.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.804.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.804.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.810.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.808.0",
|
|
30
30
|
"@aws-sdk/types": "3.804.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.808.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.804.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.810.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.2",
|
|
35
|
-
"@smithy/core": "^3.3.
|
|
35
|
+
"@smithy/core": "^3.3.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
37
|
"@smithy/hash-node": "^4.0.2",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.2",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.6",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.7",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.5",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.2",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.1",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.4",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.0",
|
|
47
|
-
"@smithy/smithy-client": "^4.2.
|
|
47
|
+
"@smithy/smithy-client": "^4.2.6",
|
|
48
48
|
"@smithy/types": "^4.2.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.2",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.14",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.4",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.2",
|
|
57
57
|
"@smithy/util-retry": "^4.0.3",
|