@aws-sdk/client-pcs 3.987.0 → 3.988.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 +38 -955
- package/dist-cjs/models/PCSServiceException.js +12 -0
- package/dist-cjs/models/errors.js +119 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +728 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +62 -56
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultPCSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2023-02-10",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.pcs",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2023-02-10",
|
|
30
32
|
serviceTarget: "AWSParallelComputingService",
|
|
31
33
|
},
|
|
@@ -175,12 +175,12 @@ const _rA = "resourceArn";
|
|
|
175
175
|
const _rAS = "retryAfterSeconds";
|
|
176
176
|
const _rI = "resourceId";
|
|
177
177
|
const _rT = "resourceType";
|
|
178
|
-
const _s = "
|
|
178
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.pcs";
|
|
179
179
|
const _sA = "secretArn";
|
|
180
|
-
const _sC = "
|
|
180
|
+
const _sC = "serviceCode";
|
|
181
181
|
const _sCS = "slurmCustomSettings";
|
|
182
182
|
const _sCc = "scalingConfiguration";
|
|
183
|
-
const
|
|
183
|
+
const _sCl = "slurmConfiguration";
|
|
184
184
|
const _sDITIS = "scaleDownIdleTimeInSeconds";
|
|
185
185
|
const _sGI = "securityGroupIds";
|
|
186
186
|
const _sI = "subnetIds";
|
|
@@ -191,7 +191,7 @@ const _sV = "secretVersion";
|
|
|
191
191
|
const _sc = "scheduler";
|
|
192
192
|
const _se = "server";
|
|
193
193
|
const _si = "size";
|
|
194
|
-
const
|
|
194
|
+
const _st = "status";
|
|
195
195
|
const _t = "tags";
|
|
196
196
|
const _tK = "tagKeys";
|
|
197
197
|
const _ty = "type";
|
|
@@ -200,13 +200,57 @@ const n0 = "com.amazonaws.pcs";
|
|
|
200
200
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
201
201
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
202
202
|
import { PCSServiceException } from "../models/PCSServiceException";
|
|
203
|
-
|
|
203
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
204
|
+
export var PCSServiceException$ = [-3, _s, "PCSServiceException", 0, [], []];
|
|
205
|
+
_s_registry.registerError(PCSServiceException$, PCSServiceException);
|
|
206
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
204
207
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
205
208
|
{ [_e]: _c, [_hE]: 403 },
|
|
206
209
|
[_m],
|
|
207
210
|
[0], 1
|
|
208
211
|
];
|
|
209
|
-
|
|
212
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
213
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
214
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
215
|
+
[_m, _rI, _rT],
|
|
216
|
+
[0, 0, 0], 3
|
|
217
|
+
];
|
|
218
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
219
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
220
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
221
|
+
[_m],
|
|
222
|
+
[0], 1
|
|
223
|
+
];
|
|
224
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
225
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
226
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
227
|
+
[_m, _rI, _rT],
|
|
228
|
+
[0, 0, 0], 3
|
|
229
|
+
];
|
|
230
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
231
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
232
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
233
|
+
[_m, _sC, _rI, _rT, _qC],
|
|
234
|
+
[0, 0, 0, 0, 0], 2
|
|
235
|
+
];
|
|
236
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
237
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
238
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
239
|
+
[_m, _rAS],
|
|
240
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
241
|
+
];
|
|
242
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
243
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
244
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
245
|
+
[_m, _r, _fL],
|
|
246
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
247
|
+
];
|
|
248
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
249
|
+
export const errorTypeRegistries = [
|
|
250
|
+
_s_registry,
|
|
251
|
+
n0_registry,
|
|
252
|
+
];
|
|
253
|
+
var SharedSecret = [0, n0, _SS, 8, 0];
|
|
210
254
|
export var Accounting$ = [3, n0, _A,
|
|
211
255
|
0,
|
|
212
256
|
[_mo, _dPTID],
|
|
@@ -219,7 +263,7 @@ export var AccountingRequest$ = [3, n0, _AR,
|
|
|
219
263
|
];
|
|
220
264
|
export var Cluster$ = [3, n0, _C,
|
|
221
265
|
0,
|
|
222
|
-
[_n, _i, _a,
|
|
266
|
+
[_n, _i, _a, _st, _cA, _mA, _sc, _si, _ne, _sCl, _en, _eI],
|
|
223
267
|
[0, 0, 0, 0, 5, 5, () => Scheduler$, 0, () => Networking$, () => ClusterSlurmConfiguration$, () => Endpoints, () => ErrorInfoList], 9
|
|
224
268
|
];
|
|
225
269
|
export var ClusterSlurmConfiguration$ = [3, n0, _CSC,
|
|
@@ -234,12 +278,12 @@ export var ClusterSlurmConfigurationRequest$ = [3, n0, _CSCR,
|
|
|
234
278
|
];
|
|
235
279
|
export var ClusterSummary$ = [3, n0, _CS,
|
|
236
280
|
0,
|
|
237
|
-
[_n, _i, _a, _cA, _mA,
|
|
281
|
+
[_n, _i, _a, _cA, _mA, _st],
|
|
238
282
|
[0, 0, 0, 5, 5, 0], 6
|
|
239
283
|
];
|
|
240
284
|
export var ComputeNodeGroup$ = [3, n0, _CNG,
|
|
241
285
|
0,
|
|
242
|
-
[_n, _i, _a, _cI, _cA, _mA,
|
|
286
|
+
[_n, _i, _a, _cI, _cA, _mA, _st, _sI, _cLT, _iIPA, _sCc, _iC, _aI, _pO, _sO, _sCl, _eI],
|
|
243
287
|
[0, 0, 0, 0, 5, 5, 0, 64 | 0, () => CustomLaunchTemplate$, 0, () => ScalingConfiguration$, () => InstanceList, 0, 0, () => SpotOptions$, () => ComputeNodeGroupSlurmConfiguration$, () => ErrorInfoList], 12
|
|
244
288
|
];
|
|
245
289
|
export var ComputeNodeGroupConfiguration$ = [3, n0, _CNGC,
|
|
@@ -259,18 +303,12 @@ export var ComputeNodeGroupSlurmConfigurationRequest$ = [3, n0, _CNGSCR,
|
|
|
259
303
|
];
|
|
260
304
|
export var ComputeNodeGroupSummary$ = [3, n0, _CNGS,
|
|
261
305
|
0,
|
|
262
|
-
[_n, _i, _a, _cI, _cA, _mA,
|
|
306
|
+
[_n, _i, _a, _cI, _cA, _mA, _st],
|
|
263
307
|
[0, 0, 0, 0, 5, 5, 0], 7
|
|
264
308
|
];
|
|
265
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
266
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
267
|
-
[_m, _rI, _rT],
|
|
268
|
-
[0, 0, 0], 3
|
|
269
|
-
];
|
|
270
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
271
309
|
export var CreateClusterRequest$ = [3, n0, _CCR,
|
|
272
310
|
0,
|
|
273
|
-
[_cN, _sc, _si, _ne,
|
|
311
|
+
[_cN, _sc, _si, _ne, _sCl, _cT, _t],
|
|
274
312
|
[0, () => SchedulerRequest$, 0, () => NetworkingRequest$, () => ClusterSlurmConfigurationRequest$, [0, 4], 128 | 0], 4
|
|
275
313
|
];
|
|
276
314
|
export var CreateClusterResponse$ = [3, n0, _CCRr,
|
|
@@ -280,7 +318,7 @@ export var CreateClusterResponse$ = [3, n0, _CCRr,
|
|
|
280
318
|
];
|
|
281
319
|
export var CreateComputeNodeGroupRequest$ = [3, n0, _CCNGR,
|
|
282
320
|
0,
|
|
283
|
-
[_cIl, _cNGN, _sI, _cLT, _iIPA, _sCc, _iC, _aI, _pO, _sO,
|
|
321
|
+
[_cIl, _cNGN, _sI, _cLT, _iIPA, _sCc, _iC, _aI, _pO, _sO, _sCl, _cT, _t],
|
|
284
322
|
[0, 0, 64 | 0, () => CustomLaunchTemplate$, 0, () => ScalingConfigurationRequest$, () => InstanceList, 0, 0, () => SpotOptions$, () => ComputeNodeGroupSlurmConfigurationRequest$, [0, 4], 128 | 0], 7
|
|
285
323
|
];
|
|
286
324
|
export var CreateComputeNodeGroupResponse$ = [3, n0, _CCNGRr,
|
|
@@ -290,7 +328,7 @@ export var CreateComputeNodeGroupResponse$ = [3, n0, _CCNGRr,
|
|
|
290
328
|
];
|
|
291
329
|
export var CreateQueueRequest$ = [3, n0, _CQR,
|
|
292
330
|
0,
|
|
293
|
-
[_cIl, _qN, _cNGC,
|
|
331
|
+
[_cIl, _qN, _cNGC, _sCl, _cT, _t],
|
|
294
332
|
[0, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfigurationRequest$, [0, 4], 128 | 0], 2
|
|
295
333
|
];
|
|
296
334
|
export var CreateQueueResponse$ = [3, n0, _CQRr,
|
|
@@ -378,12 +416,6 @@ export var InstanceConfig$ = [3, n0, _IC,
|
|
|
378
416
|
[_iT],
|
|
379
417
|
[0]
|
|
380
418
|
];
|
|
381
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
382
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
383
|
-
[_m],
|
|
384
|
-
[0], 1
|
|
385
|
-
];
|
|
386
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
387
419
|
export var JwtAuth$ = [3, n0, _JA,
|
|
388
420
|
0,
|
|
389
421
|
[_jK],
|
|
@@ -446,7 +478,7 @@ export var NetworkingRequest$ = [3, n0, _NR,
|
|
|
446
478
|
];
|
|
447
479
|
export var Queue$ = [3, n0, _Q,
|
|
448
480
|
0,
|
|
449
|
-
[_n, _i, _a, _cI, _cA, _mA,
|
|
481
|
+
[_n, _i, _a, _cI, _cA, _mA, _st, _cNGC, _sCl, _eI],
|
|
450
482
|
[0, 0, 0, 0, 5, 5, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfiguration$, () => ErrorInfoList], 8
|
|
451
483
|
];
|
|
452
484
|
export var QueueSlurmConfiguration$ = [3, n0, _QSC,
|
|
@@ -461,7 +493,7 @@ export var QueueSlurmConfigurationRequest$ = [3, n0, _QSCR,
|
|
|
461
493
|
];
|
|
462
494
|
export var QueueSummary$ = [3, n0, _QS,
|
|
463
495
|
0,
|
|
464
|
-
[_n, _i, _a, _cI, _cA, _mA,
|
|
496
|
+
[_n, _i, _a, _cI, _cA, _mA, _st],
|
|
465
497
|
[0, 0, 0, 0, 5, 5, 0], 7
|
|
466
498
|
];
|
|
467
499
|
export var RegisterComputeNodeGroupInstanceRequest$ = [3, n0, _RCNGIR,
|
|
@@ -474,12 +506,6 @@ export var RegisterComputeNodeGroupInstanceResponse$ = [3, n0, _RCNGIRe,
|
|
|
474
506
|
[_nID, _sS, _en],
|
|
475
507
|
[0, [() => SharedSecret, 0], () => Endpoints], 3
|
|
476
508
|
];
|
|
477
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
478
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
479
|
-
[_m, _rI, _rT],
|
|
480
|
-
[0, 0, 0], 3
|
|
481
|
-
];
|
|
482
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
483
509
|
export var ScalingConfiguration$ = [3, n0, _SC,
|
|
484
510
|
0,
|
|
485
511
|
[_mIC, _mICa],
|
|
@@ -500,12 +526,6 @@ export var SchedulerRequest$ = [3, n0, _SR,
|
|
|
500
526
|
[_ty, _v],
|
|
501
527
|
[0, 0], 2
|
|
502
528
|
];
|
|
503
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
504
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
505
|
-
[_m, _sCe, _rI, _rT, _qC],
|
|
506
|
-
[0, 0, 0, 0, 0], 2
|
|
507
|
-
];
|
|
508
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
509
529
|
export var SlurmAuthKey$ = [3, n0, _SAK,
|
|
510
530
|
0,
|
|
511
531
|
[_sA, _sV],
|
|
@@ -541,12 +561,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
541
561
|
[],
|
|
542
562
|
[]
|
|
543
563
|
];
|
|
544
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
545
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
546
|
-
[_m, _rAS],
|
|
547
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
548
|
-
];
|
|
549
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
550
564
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
551
565
|
0,
|
|
552
566
|
[_rA, _tK],
|
|
@@ -564,7 +578,7 @@ export var UpdateAccountingRequest$ = [3, n0, _UAR,
|
|
|
564
578
|
];
|
|
565
579
|
export var UpdateClusterRequest$ = [3, n0, _UCR,
|
|
566
580
|
0,
|
|
567
|
-
[_cIl, _cT,
|
|
581
|
+
[_cIl, _cT, _sCl],
|
|
568
582
|
[0, [0, 4], () => UpdateClusterSlurmConfigurationRequest$], 1
|
|
569
583
|
];
|
|
570
584
|
export var UpdateClusterResponse$ = [3, n0, _UCRp,
|
|
@@ -579,7 +593,7 @@ export var UpdateClusterSlurmConfigurationRequest$ = [3, n0, _UCSCR,
|
|
|
579
593
|
];
|
|
580
594
|
export var UpdateComputeNodeGroupRequest$ = [3, n0, _UCNGR,
|
|
581
595
|
0,
|
|
582
|
-
[_cIl, _cNGIo, _aI, _sI, _cLT, _pO, _sO, _sCc, _iIPA,
|
|
596
|
+
[_cIl, _cNGIo, _aI, _sI, _cLT, _pO, _sO, _sCc, _iIPA, _sCl, _cT],
|
|
583
597
|
[0, 0, 0, 64 | 0, () => CustomLaunchTemplate$, 0, () => SpotOptions$, () => ScalingConfigurationRequest$, 0, () => UpdateComputeNodeGroupSlurmConfigurationRequest$, [0, 4]], 2
|
|
584
598
|
];
|
|
585
599
|
export var UpdateComputeNodeGroupResponse$ = [3, n0, _UCNGRp,
|
|
@@ -594,7 +608,7 @@ export var UpdateComputeNodeGroupSlurmConfigurationRequest$ = [3, n0, _UCNGSCR,
|
|
|
594
608
|
];
|
|
595
609
|
export var UpdateQueueRequest$ = [3, n0, _UQR,
|
|
596
610
|
0,
|
|
597
|
-
[_cIl, _qI, _cNGC,
|
|
611
|
+
[_cIl, _qI, _cNGC, _sCl, _cT],
|
|
598
612
|
[0, 0, () => ComputeNodeGroupConfigurationList, () => UpdateQueueSlurmConfigurationRequest$, [0, 4]], 2
|
|
599
613
|
];
|
|
600
614
|
export var UpdateQueueResponse$ = [3, n0, _UQRp,
|
|
@@ -612,19 +626,11 @@ export var UpdateSlurmRestRequest$ = [3, n0, _USRR,
|
|
|
612
626
|
[_mo],
|
|
613
627
|
[0]
|
|
614
628
|
];
|
|
615
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
616
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
617
|
-
[_m, _r, _fL],
|
|
618
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
619
|
-
];
|
|
620
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
621
629
|
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
622
630
|
0,
|
|
623
631
|
[_n, _m],
|
|
624
632
|
[0, 0], 2
|
|
625
633
|
];
|
|
626
|
-
export var PCSServiceException$ = [-3, _sm, "PCSServiceException", 0, [], []];
|
|
627
|
-
TypeRegistry.for(_sm).registerError(PCSServiceException$, PCSServiceException);
|
|
628
634
|
var ClusterList = [1, n0, _CL,
|
|
629
635
|
0, () => ClusterSummary$
|
|
630
636
|
];
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var PCSServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
7
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
8
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
9
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
10
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
11
|
+
/**
|
|
12
|
+
* TypeRegistry instances containing modeled errors.
|
|
13
|
+
* @internal
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
17
|
export declare var Accounting$: StaticStructureSchema;
|
|
4
18
|
export declare var AccountingRequest$: StaticStructureSchema;
|
|
5
19
|
export declare var Cluster$: StaticStructureSchema;
|
|
@@ -11,7 +25,6 @@ export declare var ComputeNodeGroupConfiguration$: StaticStructureSchema;
|
|
|
11
25
|
export declare var ComputeNodeGroupSlurmConfiguration$: StaticStructureSchema;
|
|
12
26
|
export declare var ComputeNodeGroupSlurmConfigurationRequest$: StaticStructureSchema;
|
|
13
27
|
export declare var ComputeNodeGroupSummary$: StaticStructureSchema;
|
|
14
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
15
28
|
export declare var CreateClusterRequest$: StaticStructureSchema;
|
|
16
29
|
export declare var CreateClusterResponse$: StaticStructureSchema;
|
|
17
30
|
export declare var CreateComputeNodeGroupRequest$: StaticStructureSchema;
|
|
@@ -34,7 +47,6 @@ export declare var GetComputeNodeGroupResponse$: StaticStructureSchema;
|
|
|
34
47
|
export declare var GetQueueRequest$: StaticStructureSchema;
|
|
35
48
|
export declare var GetQueueResponse$: StaticStructureSchema;
|
|
36
49
|
export declare var InstanceConfig$: StaticStructureSchema;
|
|
37
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
38
50
|
export declare var JwtAuth$: StaticStructureSchema;
|
|
39
51
|
export declare var JwtKey$: StaticStructureSchema;
|
|
40
52
|
export declare var ListClustersRequest$: StaticStructureSchema;
|
|
@@ -53,12 +65,10 @@ export declare var QueueSlurmConfigurationRequest$: StaticStructureSchema;
|
|
|
53
65
|
export declare var QueueSummary$: StaticStructureSchema;
|
|
54
66
|
export declare var RegisterComputeNodeGroupInstanceRequest$: StaticStructureSchema;
|
|
55
67
|
export declare var RegisterComputeNodeGroupInstanceResponse$: StaticStructureSchema;
|
|
56
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
57
68
|
export declare var ScalingConfiguration$: StaticStructureSchema;
|
|
58
69
|
export declare var ScalingConfigurationRequest$: StaticStructureSchema;
|
|
59
70
|
export declare var Scheduler$: StaticStructureSchema;
|
|
60
71
|
export declare var SchedulerRequest$: StaticStructureSchema;
|
|
61
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
62
72
|
export declare var SlurmAuthKey$: StaticStructureSchema;
|
|
63
73
|
export declare var SlurmCustomSetting$: StaticStructureSchema;
|
|
64
74
|
export declare var SlurmRest$: StaticStructureSchema;
|
|
@@ -66,7 +76,6 @@ export declare var SlurmRestRequest$: StaticStructureSchema;
|
|
|
66
76
|
export declare var SpotOptions$: StaticStructureSchema;
|
|
67
77
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
68
78
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
69
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
70
79
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
71
80
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
72
81
|
export declare var UpdateAccountingRequest$: StaticStructureSchema;
|
|
@@ -80,9 +89,7 @@ export declare var UpdateQueueRequest$: StaticStructureSchema;
|
|
|
80
89
|
export declare var UpdateQueueResponse$: StaticStructureSchema;
|
|
81
90
|
export declare var UpdateQueueSlurmConfigurationRequest$: StaticStructureSchema;
|
|
82
91
|
export declare var UpdateSlurmRestRequest$: StaticStructureSchema;
|
|
83
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
84
92
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
85
|
-
export declare var PCSServiceException$: StaticErrorSchema;
|
|
86
93
|
export declare var CreateCluster$: StaticOperationSchema;
|
|
87
94
|
export declare var CreateComputeNodeGroup$: StaticOperationSchema;
|
|
88
95
|
export declare var CreateQueue$: StaticOperationSchema;
|
|
@@ -1,9 +1,18 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var PCSServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
10
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
12
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
14
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
15
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
7
16
|
export declare var Accounting$: StaticStructureSchema;
|
|
8
17
|
export declare var AccountingRequest$: StaticStructureSchema;
|
|
9
18
|
export declare var Cluster$: StaticStructureSchema;
|
|
@@ -15,7 +24,6 @@ export declare var ComputeNodeGroupConfiguration$: StaticStructureSchema;
|
|
|
15
24
|
export declare var ComputeNodeGroupSlurmConfiguration$: StaticStructureSchema;
|
|
16
25
|
export declare var ComputeNodeGroupSlurmConfigurationRequest$: StaticStructureSchema;
|
|
17
26
|
export declare var ComputeNodeGroupSummary$: StaticStructureSchema;
|
|
18
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
19
27
|
export declare var CreateClusterRequest$: StaticStructureSchema;
|
|
20
28
|
export declare var CreateClusterResponse$: StaticStructureSchema;
|
|
21
29
|
export declare var CreateComputeNodeGroupRequest$: StaticStructureSchema;
|
|
@@ -38,7 +46,6 @@ export declare var GetComputeNodeGroupResponse$: StaticStructureSchema;
|
|
|
38
46
|
export declare var GetQueueRequest$: StaticStructureSchema;
|
|
39
47
|
export declare var GetQueueResponse$: StaticStructureSchema;
|
|
40
48
|
export declare var InstanceConfig$: StaticStructureSchema;
|
|
41
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
42
49
|
export declare var JwtAuth$: StaticStructureSchema;
|
|
43
50
|
export declare var JwtKey$: StaticStructureSchema;
|
|
44
51
|
export declare var ListClustersRequest$: StaticStructureSchema;
|
|
@@ -57,12 +64,10 @@ export declare var QueueSlurmConfigurationRequest$: StaticStructureSchema;
|
|
|
57
64
|
export declare var QueueSummary$: StaticStructureSchema;
|
|
58
65
|
export declare var RegisterComputeNodeGroupInstanceRequest$: StaticStructureSchema;
|
|
59
66
|
export declare var RegisterComputeNodeGroupInstanceResponse$: StaticStructureSchema;
|
|
60
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
61
67
|
export declare var ScalingConfiguration$: StaticStructureSchema;
|
|
62
68
|
export declare var ScalingConfigurationRequest$: StaticStructureSchema;
|
|
63
69
|
export declare var Scheduler$: StaticStructureSchema;
|
|
64
70
|
export declare var SchedulerRequest$: StaticStructureSchema;
|
|
65
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
66
71
|
export declare var SlurmAuthKey$: StaticStructureSchema;
|
|
67
72
|
export declare var SlurmCustomSetting$: StaticStructureSchema;
|
|
68
73
|
export declare var SlurmRest$: StaticStructureSchema;
|
|
@@ -70,7 +75,6 @@ export declare var SlurmRestRequest$: StaticStructureSchema;
|
|
|
70
75
|
export declare var SpotOptions$: StaticStructureSchema;
|
|
71
76
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
72
77
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
73
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
74
78
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
75
79
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
76
80
|
export declare var UpdateAccountingRequest$: StaticStructureSchema;
|
|
@@ -84,9 +88,7 @@ export declare var UpdateQueueRequest$: StaticStructureSchema;
|
|
|
84
88
|
export declare var UpdateQueueResponse$: StaticStructureSchema;
|
|
85
89
|
export declare var UpdateQueueSlurmConfigurationRequest$: StaticStructureSchema;
|
|
86
90
|
export declare var UpdateSlurmRestRequest$: StaticStructureSchema;
|
|
87
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
88
91
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
89
|
-
export declare var PCSServiceException$: StaticErrorSchema;
|
|
90
92
|
export declare var CreateCluster$: StaticOperationSchema;
|
|
91
93
|
export declare var CreateComputeNodeGroup$: StaticOperationSchema;
|
|
92
94
|
export declare var CreateQueue$: StaticOperationSchema;
|
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.988.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-pcs",
|
|
@@ -21,38 +21,38 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|