@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
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var PCSServiceException = require('./models/PCSServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,831 +113,6 @@ class PCSClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class PCSServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, PCSServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends PCSServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends PCSServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
resourceId;
|
|
136
|
-
resourceType;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
this.resourceId = opts.resourceId;
|
|
145
|
-
this.resourceType = opts.resourceType;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends PCSServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InternalServerException",
|
|
155
|
-
$fault: "server",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ResourceNotFoundException extends PCSServiceException {
|
|
162
|
-
name = "ResourceNotFoundException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
resourceId;
|
|
165
|
-
resourceType;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.resourceId = opts.resourceId;
|
|
174
|
-
this.resourceType = opts.resourceType;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ServiceQuotaExceededException extends PCSServiceException {
|
|
178
|
-
name = "ServiceQuotaExceededException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
serviceCode;
|
|
181
|
-
resourceId;
|
|
182
|
-
resourceType;
|
|
183
|
-
quotaCode;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ServiceQuotaExceededException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
191
|
-
this.serviceCode = opts.serviceCode;
|
|
192
|
-
this.resourceId = opts.resourceId;
|
|
193
|
-
this.resourceType = opts.resourceType;
|
|
194
|
-
this.quotaCode = opts.quotaCode;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
class ThrottlingException extends PCSServiceException {
|
|
198
|
-
name = "ThrottlingException";
|
|
199
|
-
$fault = "client";
|
|
200
|
-
$retryable = {};
|
|
201
|
-
retryAfterSeconds;
|
|
202
|
-
constructor(opts) {
|
|
203
|
-
super({
|
|
204
|
-
name: "ThrottlingException",
|
|
205
|
-
$fault: "client",
|
|
206
|
-
...opts,
|
|
207
|
-
});
|
|
208
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
209
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
class ValidationException extends PCSServiceException {
|
|
213
|
-
name = "ValidationException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
reason;
|
|
216
|
-
fieldList;
|
|
217
|
-
constructor(opts) {
|
|
218
|
-
super({
|
|
219
|
-
name: "ValidationException",
|
|
220
|
-
$fault: "client",
|
|
221
|
-
...opts,
|
|
222
|
-
});
|
|
223
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
224
|
-
this.reason = opts.reason;
|
|
225
|
-
this.fieldList = opts.fieldList;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
const _A = "Accounting";
|
|
230
|
-
const _ADE = "AccessDeniedException";
|
|
231
|
-
const _AR = "AccountingRequest";
|
|
232
|
-
const _C = "Cluster";
|
|
233
|
-
const _CC = "CreateCluster";
|
|
234
|
-
const _CCNG = "CreateComputeNodeGroup";
|
|
235
|
-
const _CCNGR = "CreateComputeNodeGroupRequest";
|
|
236
|
-
const _CCNGRr = "CreateComputeNodeGroupResponse";
|
|
237
|
-
const _CCR = "CreateClusterRequest";
|
|
238
|
-
const _CCRr = "CreateClusterResponse";
|
|
239
|
-
const _CE = "ConflictException";
|
|
240
|
-
const _CL = "ClusterList";
|
|
241
|
-
const _CLT = "CustomLaunchTemplate";
|
|
242
|
-
const _CNG = "ComputeNodeGroup";
|
|
243
|
-
const _CNGC = "ComputeNodeGroupConfiguration";
|
|
244
|
-
const _CNGCL = "ComputeNodeGroupConfigurationList";
|
|
245
|
-
const _CNGL = "ComputeNodeGroupList";
|
|
246
|
-
const _CNGS = "ComputeNodeGroupSummary";
|
|
247
|
-
const _CNGSC = "ComputeNodeGroupSlurmConfiguration";
|
|
248
|
-
const _CNGSCR = "ComputeNodeGroupSlurmConfigurationRequest";
|
|
249
|
-
const _CQ = "CreateQueue";
|
|
250
|
-
const _CQR = "CreateQueueRequest";
|
|
251
|
-
const _CQRr = "CreateQueueResponse";
|
|
252
|
-
const _CS = "ClusterSummary";
|
|
253
|
-
const _CSC = "ClusterSlurmConfiguration";
|
|
254
|
-
const _CSCR = "ClusterSlurmConfigurationRequest";
|
|
255
|
-
const _DC = "DeleteCluster";
|
|
256
|
-
const _DCNG = "DeleteComputeNodeGroup";
|
|
257
|
-
const _DCNGR = "DeleteComputeNodeGroupRequest";
|
|
258
|
-
const _DCNGRe = "DeleteComputeNodeGroupResponse";
|
|
259
|
-
const _DCR = "DeleteClusterRequest";
|
|
260
|
-
const _DCRe = "DeleteClusterResponse";
|
|
261
|
-
const _DQ = "DeleteQueue";
|
|
262
|
-
const _DQR = "DeleteQueueRequest";
|
|
263
|
-
const _DQRe = "DeleteQueueResponse";
|
|
264
|
-
const _E = "Endpoint";
|
|
265
|
-
const _EI = "ErrorInfo";
|
|
266
|
-
const _EIL = "ErrorInfoList";
|
|
267
|
-
const _En = "Endpoints";
|
|
268
|
-
const _GC = "GetCluster";
|
|
269
|
-
const _GCNG = "GetComputeNodeGroup";
|
|
270
|
-
const _GCNGR = "GetComputeNodeGroupRequest";
|
|
271
|
-
const _GCNGRe = "GetComputeNodeGroupResponse";
|
|
272
|
-
const _GCR = "GetClusterRequest";
|
|
273
|
-
const _GCRe = "GetClusterResponse";
|
|
274
|
-
const _GQ = "GetQueue";
|
|
275
|
-
const _GQR = "GetQueueRequest";
|
|
276
|
-
const _GQRe = "GetQueueResponse";
|
|
277
|
-
const _IC = "InstanceConfig";
|
|
278
|
-
const _IL = "InstanceList";
|
|
279
|
-
const _ISE = "InternalServerException";
|
|
280
|
-
const _JA = "JwtAuth";
|
|
281
|
-
const _JK = "JwtKey";
|
|
282
|
-
const _LC = "ListClusters";
|
|
283
|
-
const _LCNG = "ListComputeNodeGroups";
|
|
284
|
-
const _LCNGR = "ListComputeNodeGroupsRequest";
|
|
285
|
-
const _LCNGRi = "ListComputeNodeGroupsResponse";
|
|
286
|
-
const _LCR = "ListClustersRequest";
|
|
287
|
-
const _LCRi = "ListClustersResponse";
|
|
288
|
-
const _LQ = "ListQueues";
|
|
289
|
-
const _LQR = "ListQueuesRequest";
|
|
290
|
-
const _LQRi = "ListQueuesResponse";
|
|
291
|
-
const _LTFR = "ListTagsForResource";
|
|
292
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
293
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
294
|
-
const _N = "Networking";
|
|
295
|
-
const _NR = "NetworkingRequest";
|
|
296
|
-
const _Q = "Queue";
|
|
297
|
-
const _QL = "QueueList";
|
|
298
|
-
const _QS = "QueueSummary";
|
|
299
|
-
const _QSC = "QueueSlurmConfiguration";
|
|
300
|
-
const _QSCR = "QueueSlurmConfigurationRequest";
|
|
301
|
-
const _RA = "Retry-After";
|
|
302
|
-
const _RCNGI = "RegisterComputeNodeGroupInstance";
|
|
303
|
-
const _RCNGIR = "RegisterComputeNodeGroupInstanceRequest";
|
|
304
|
-
const _RCNGIRe = "RegisterComputeNodeGroupInstanceResponse";
|
|
305
|
-
const _RNFE = "ResourceNotFoundException";
|
|
306
|
-
const _S = "Scheduler";
|
|
307
|
-
const _SAK = "SlurmAuthKey";
|
|
308
|
-
const _SC = "ScalingConfiguration";
|
|
309
|
-
const _SCR = "ScalingConfigurationRequest";
|
|
310
|
-
const _SCS = "SlurmCustomSetting";
|
|
311
|
-
const _SCSl = "SlurmCustomSettings";
|
|
312
|
-
const _SO = "SpotOptions";
|
|
313
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
314
|
-
const _SR = "SchedulerRequest";
|
|
315
|
-
const _SRR = "SlurmRestRequest";
|
|
316
|
-
const _SRl = "SlurmRest";
|
|
317
|
-
const _SS = "SharedSecret";
|
|
318
|
-
const _TE = "ThrottlingException";
|
|
319
|
-
const _TR = "TagResource";
|
|
320
|
-
const _TRR = "TagResourceRequest";
|
|
321
|
-
const _TRRa = "TagResourceResponse";
|
|
322
|
-
const _UAR = "UpdateAccountingRequest";
|
|
323
|
-
const _UC = "UpdateCluster";
|
|
324
|
-
const _UCNG = "UpdateComputeNodeGroup";
|
|
325
|
-
const _UCNGR = "UpdateComputeNodeGroupRequest";
|
|
326
|
-
const _UCNGRp = "UpdateComputeNodeGroupResponse";
|
|
327
|
-
const _UCNGSCR = "UpdateComputeNodeGroupSlurmConfigurationRequest";
|
|
328
|
-
const _UCR = "UpdateClusterRequest";
|
|
329
|
-
const _UCRp = "UpdateClusterResponse";
|
|
330
|
-
const _UCSCR = "UpdateClusterSlurmConfigurationRequest";
|
|
331
|
-
const _UQ = "UpdateQueue";
|
|
332
|
-
const _UQR = "UpdateQueueRequest";
|
|
333
|
-
const _UQRp = "UpdateQueueResponse";
|
|
334
|
-
const _UQSCR = "UpdateQueueSlurmConfigurationRequest";
|
|
335
|
-
const _UR = "UntagResource";
|
|
336
|
-
const _URR = "UntagResourceRequest";
|
|
337
|
-
const _URRn = "UntagResourceResponse";
|
|
338
|
-
const _USRR = "UpdateSlurmRestRequest";
|
|
339
|
-
const _VE = "ValidationException";
|
|
340
|
-
const _VEF = "ValidationExceptionField";
|
|
341
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
342
|
-
const _a = "arn";
|
|
343
|
-
const _aI = "amiId";
|
|
344
|
-
const _aK = "authKey";
|
|
345
|
-
const _aS = "allocationStrategy";
|
|
346
|
-
const _ac = "accounting";
|
|
347
|
-
const _bI = "bootstrapId";
|
|
348
|
-
const _c = "client";
|
|
349
|
-
const _cA = "createdAt";
|
|
350
|
-
const _cI = "clusterId";
|
|
351
|
-
const _cIl = "clusterIdentifier";
|
|
352
|
-
const _cLT = "customLaunchTemplate";
|
|
353
|
-
const _cN = "clusterName";
|
|
354
|
-
const _cNG = "computeNodeGroup";
|
|
355
|
-
const _cNGC = "computeNodeGroupConfigurations";
|
|
356
|
-
const _cNGI = "computeNodeGroupId";
|
|
357
|
-
const _cNGIo = "computeNodeGroupIdentifier";
|
|
358
|
-
const _cNGN = "computeNodeGroupName";
|
|
359
|
-
const _cNGo = "computeNodeGroups";
|
|
360
|
-
const _cT = "clientToken";
|
|
361
|
-
const _cl = "cluster";
|
|
362
|
-
const _clu = "clusters";
|
|
363
|
-
const _co = "code";
|
|
364
|
-
const _dPTID = "defaultPurgeTimeInDays";
|
|
365
|
-
const _e = "error";
|
|
366
|
-
const _eI = "errorInfo";
|
|
367
|
-
const _en = "endpoints";
|
|
368
|
-
const _fL = "fieldList";
|
|
369
|
-
const _hE = "httpError";
|
|
370
|
-
const _hH = "httpHeader";
|
|
371
|
-
const _hQ = "httpQuery";
|
|
372
|
-
const _i = "id";
|
|
373
|
-
const _iA = "ipv6Address";
|
|
374
|
-
const _iC = "instanceConfigs";
|
|
375
|
-
const _iIPA = "iamInstanceProfileArn";
|
|
376
|
-
const _iT = "instanceType";
|
|
377
|
-
const _jA = "jwtAuth";
|
|
378
|
-
const _jK = "jwtKey";
|
|
379
|
-
const _m = "message";
|
|
380
|
-
const _mA = "modifiedAt";
|
|
381
|
-
const _mIC = "minInstanceCount";
|
|
382
|
-
const _mICa = "maxInstanceCount";
|
|
383
|
-
const _mR = "maxResults";
|
|
384
|
-
const _mo = "mode";
|
|
385
|
-
const _n = "name";
|
|
386
|
-
const _nID = "nodeID";
|
|
387
|
-
const _nT = "nextToken";
|
|
388
|
-
const _nTe = "networkType";
|
|
389
|
-
const _ne = "networking";
|
|
390
|
-
const _p = "port";
|
|
391
|
-
const _pIA = "privateIpAddress";
|
|
392
|
-
const _pIAu = "publicIpAddress";
|
|
393
|
-
const _pN = "parameterName";
|
|
394
|
-
const _pO = "purchaseOption";
|
|
395
|
-
const _pV = "parameterValue";
|
|
396
|
-
const _q = "queue";
|
|
397
|
-
const _qC = "quotaCode";
|
|
398
|
-
const _qI = "queueIdentifier";
|
|
399
|
-
const _qN = "queueName";
|
|
400
|
-
const _qu = "queues";
|
|
401
|
-
const _r = "reason";
|
|
402
|
-
const _rA = "resourceArn";
|
|
403
|
-
const _rAS = "retryAfterSeconds";
|
|
404
|
-
const _rI = "resourceId";
|
|
405
|
-
const _rT = "resourceType";
|
|
406
|
-
const _s = "status";
|
|
407
|
-
const _sA = "secretArn";
|
|
408
|
-
const _sC = "slurmConfiguration";
|
|
409
|
-
const _sCS = "slurmCustomSettings";
|
|
410
|
-
const _sCc = "scalingConfiguration";
|
|
411
|
-
const _sCe = "serviceCode";
|
|
412
|
-
const _sDITIS = "scaleDownIdleTimeInSeconds";
|
|
413
|
-
const _sGI = "securityGroupIds";
|
|
414
|
-
const _sI = "subnetIds";
|
|
415
|
-
const _sO = "spotOptions";
|
|
416
|
-
const _sR = "slurmRest";
|
|
417
|
-
const _sS = "sharedSecret";
|
|
418
|
-
const _sV = "secretVersion";
|
|
419
|
-
const _sc = "scheduler";
|
|
420
|
-
const _se = "server";
|
|
421
|
-
const _si = "size";
|
|
422
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.pcs";
|
|
423
|
-
const _t = "tags";
|
|
424
|
-
const _tK = "tagKeys";
|
|
425
|
-
const _ty = "type";
|
|
426
|
-
const _v = "version";
|
|
427
|
-
const n0 = "com.amazonaws.pcs";
|
|
428
|
-
var SharedSecret = [0, n0, _SS, 8, 0];
|
|
429
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
430
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
431
|
-
[_m],
|
|
432
|
-
[0], 1
|
|
433
|
-
];
|
|
434
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
435
|
-
var Accounting$ = [3, n0, _A,
|
|
436
|
-
0,
|
|
437
|
-
[_mo, _dPTID],
|
|
438
|
-
[0, 1], 1
|
|
439
|
-
];
|
|
440
|
-
var AccountingRequest$ = [3, n0, _AR,
|
|
441
|
-
0,
|
|
442
|
-
[_mo, _dPTID],
|
|
443
|
-
[0, 1], 1
|
|
444
|
-
];
|
|
445
|
-
var Cluster$ = [3, n0, _C,
|
|
446
|
-
0,
|
|
447
|
-
[_n, _i, _a, _s, _cA, _mA, _sc, _si, _ne, _sC, _en, _eI],
|
|
448
|
-
[0, 0, 0, 0, 5, 5, () => Scheduler$, 0, () => Networking$, () => ClusterSlurmConfiguration$, () => Endpoints, () => ErrorInfoList], 9
|
|
449
|
-
];
|
|
450
|
-
var ClusterSlurmConfiguration$ = [3, n0, _CSC,
|
|
451
|
-
0,
|
|
452
|
-
[_sDITIS, _sCS, _aK, _jA, _ac, _sR],
|
|
453
|
-
[1, () => SlurmCustomSettings, () => SlurmAuthKey$, () => JwtAuth$, () => Accounting$, () => SlurmRest$]
|
|
454
|
-
];
|
|
455
|
-
var ClusterSlurmConfigurationRequest$ = [3, n0, _CSCR,
|
|
456
|
-
0,
|
|
457
|
-
[_sDITIS, _sCS, _ac, _sR],
|
|
458
|
-
[1, () => SlurmCustomSettings, () => AccountingRequest$, () => SlurmRestRequest$]
|
|
459
|
-
];
|
|
460
|
-
var ClusterSummary$ = [3, n0, _CS,
|
|
461
|
-
0,
|
|
462
|
-
[_n, _i, _a, _cA, _mA, _s],
|
|
463
|
-
[0, 0, 0, 5, 5, 0], 6
|
|
464
|
-
];
|
|
465
|
-
var ComputeNodeGroup$ = [3, n0, _CNG,
|
|
466
|
-
0,
|
|
467
|
-
[_n, _i, _a, _cI, _cA, _mA, _s, _sI, _cLT, _iIPA, _sCc, _iC, _aI, _pO, _sO, _sC, _eI],
|
|
468
|
-
[0, 0, 0, 0, 5, 5, 0, 64 | 0, () => CustomLaunchTemplate$, 0, () => ScalingConfiguration$, () => InstanceList, 0, 0, () => SpotOptions$, () => ComputeNodeGroupSlurmConfiguration$, () => ErrorInfoList], 12
|
|
469
|
-
];
|
|
470
|
-
var ComputeNodeGroupConfiguration$ = [3, n0, _CNGC,
|
|
471
|
-
0,
|
|
472
|
-
[_cNGI],
|
|
473
|
-
[0]
|
|
474
|
-
];
|
|
475
|
-
var ComputeNodeGroupSlurmConfiguration$ = [3, n0, _CNGSC,
|
|
476
|
-
0,
|
|
477
|
-
[_sCS],
|
|
478
|
-
[() => SlurmCustomSettings]
|
|
479
|
-
];
|
|
480
|
-
var ComputeNodeGroupSlurmConfigurationRequest$ = [3, n0, _CNGSCR,
|
|
481
|
-
0,
|
|
482
|
-
[_sCS],
|
|
483
|
-
[() => SlurmCustomSettings]
|
|
484
|
-
];
|
|
485
|
-
var ComputeNodeGroupSummary$ = [3, n0, _CNGS,
|
|
486
|
-
0,
|
|
487
|
-
[_n, _i, _a, _cI, _cA, _mA, _s],
|
|
488
|
-
[0, 0, 0, 0, 5, 5, 0], 7
|
|
489
|
-
];
|
|
490
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
491
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
492
|
-
[_m, _rI, _rT],
|
|
493
|
-
[0, 0, 0], 3
|
|
494
|
-
];
|
|
495
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
496
|
-
var CreateClusterRequest$ = [3, n0, _CCR,
|
|
497
|
-
0,
|
|
498
|
-
[_cN, _sc, _si, _ne, _sC, _cT, _t],
|
|
499
|
-
[0, () => SchedulerRequest$, 0, () => NetworkingRequest$, () => ClusterSlurmConfigurationRequest$, [0, 4], 128 | 0], 4
|
|
500
|
-
];
|
|
501
|
-
var CreateClusterResponse$ = [3, n0, _CCRr,
|
|
502
|
-
0,
|
|
503
|
-
[_cl],
|
|
504
|
-
[() => Cluster$]
|
|
505
|
-
];
|
|
506
|
-
var CreateComputeNodeGroupRequest$ = [3, n0, _CCNGR,
|
|
507
|
-
0,
|
|
508
|
-
[_cIl, _cNGN, _sI, _cLT, _iIPA, _sCc, _iC, _aI, _pO, _sO, _sC, _cT, _t],
|
|
509
|
-
[0, 0, 64 | 0, () => CustomLaunchTemplate$, 0, () => ScalingConfigurationRequest$, () => InstanceList, 0, 0, () => SpotOptions$, () => ComputeNodeGroupSlurmConfigurationRequest$, [0, 4], 128 | 0], 7
|
|
510
|
-
];
|
|
511
|
-
var CreateComputeNodeGroupResponse$ = [3, n0, _CCNGRr,
|
|
512
|
-
0,
|
|
513
|
-
[_cNG],
|
|
514
|
-
[() => ComputeNodeGroup$]
|
|
515
|
-
];
|
|
516
|
-
var CreateQueueRequest$ = [3, n0, _CQR,
|
|
517
|
-
0,
|
|
518
|
-
[_cIl, _qN, _cNGC, _sC, _cT, _t],
|
|
519
|
-
[0, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfigurationRequest$, [0, 4], 128 | 0], 2
|
|
520
|
-
];
|
|
521
|
-
var CreateQueueResponse$ = [3, n0, _CQRr,
|
|
522
|
-
0,
|
|
523
|
-
[_q],
|
|
524
|
-
[() => Queue$]
|
|
525
|
-
];
|
|
526
|
-
var CustomLaunchTemplate$ = [3, n0, _CLT,
|
|
527
|
-
0,
|
|
528
|
-
[_i, _v],
|
|
529
|
-
[0, 0], 2
|
|
530
|
-
];
|
|
531
|
-
var DeleteClusterRequest$ = [3, n0, _DCR,
|
|
532
|
-
0,
|
|
533
|
-
[_cIl, _cT],
|
|
534
|
-
[0, [0, 4]], 1
|
|
535
|
-
];
|
|
536
|
-
var DeleteClusterResponse$ = [3, n0, _DCRe,
|
|
537
|
-
0,
|
|
538
|
-
[],
|
|
539
|
-
[]
|
|
540
|
-
];
|
|
541
|
-
var DeleteComputeNodeGroupRequest$ = [3, n0, _DCNGR,
|
|
542
|
-
0,
|
|
543
|
-
[_cIl, _cNGIo, _cT],
|
|
544
|
-
[0, 0, [0, 4]], 2
|
|
545
|
-
];
|
|
546
|
-
var DeleteComputeNodeGroupResponse$ = [3, n0, _DCNGRe,
|
|
547
|
-
0,
|
|
548
|
-
[],
|
|
549
|
-
[]
|
|
550
|
-
];
|
|
551
|
-
var DeleteQueueRequest$ = [3, n0, _DQR,
|
|
552
|
-
0,
|
|
553
|
-
[_cIl, _qI, _cT],
|
|
554
|
-
[0, 0, [0, 4]], 2
|
|
555
|
-
];
|
|
556
|
-
var DeleteQueueResponse$ = [3, n0, _DQRe,
|
|
557
|
-
0,
|
|
558
|
-
[],
|
|
559
|
-
[]
|
|
560
|
-
];
|
|
561
|
-
var Endpoint$ = [3, n0, _E,
|
|
562
|
-
0,
|
|
563
|
-
[_ty, _pIA, _p, _pIAu, _iA],
|
|
564
|
-
[0, 0, 0, 0, 0], 3
|
|
565
|
-
];
|
|
566
|
-
var ErrorInfo$ = [3, n0, _EI,
|
|
567
|
-
0,
|
|
568
|
-
[_co, _m],
|
|
569
|
-
[0, 0]
|
|
570
|
-
];
|
|
571
|
-
var GetClusterRequest$ = [3, n0, _GCR,
|
|
572
|
-
0,
|
|
573
|
-
[_cIl],
|
|
574
|
-
[0], 1
|
|
575
|
-
];
|
|
576
|
-
var GetClusterResponse$ = [3, n0, _GCRe,
|
|
577
|
-
0,
|
|
578
|
-
[_cl],
|
|
579
|
-
[() => Cluster$]
|
|
580
|
-
];
|
|
581
|
-
var GetComputeNodeGroupRequest$ = [3, n0, _GCNGR,
|
|
582
|
-
0,
|
|
583
|
-
[_cIl, _cNGIo],
|
|
584
|
-
[0, 0], 2
|
|
585
|
-
];
|
|
586
|
-
var GetComputeNodeGroupResponse$ = [3, n0, _GCNGRe,
|
|
587
|
-
0,
|
|
588
|
-
[_cNG],
|
|
589
|
-
[() => ComputeNodeGroup$]
|
|
590
|
-
];
|
|
591
|
-
var GetQueueRequest$ = [3, n0, _GQR,
|
|
592
|
-
0,
|
|
593
|
-
[_cIl, _qI],
|
|
594
|
-
[0, 0], 2
|
|
595
|
-
];
|
|
596
|
-
var GetQueueResponse$ = [3, n0, _GQRe,
|
|
597
|
-
0,
|
|
598
|
-
[_q],
|
|
599
|
-
[() => Queue$]
|
|
600
|
-
];
|
|
601
|
-
var InstanceConfig$ = [3, n0, _IC,
|
|
602
|
-
0,
|
|
603
|
-
[_iT],
|
|
604
|
-
[0]
|
|
605
|
-
];
|
|
606
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
607
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
608
|
-
[_m],
|
|
609
|
-
[0], 1
|
|
610
|
-
];
|
|
611
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
612
|
-
var JwtAuth$ = [3, n0, _JA,
|
|
613
|
-
0,
|
|
614
|
-
[_jK],
|
|
615
|
-
[() => JwtKey$]
|
|
616
|
-
];
|
|
617
|
-
var JwtKey$ = [3, n0, _JK,
|
|
618
|
-
0,
|
|
619
|
-
[_sA, _sV],
|
|
620
|
-
[0, 0], 2
|
|
621
|
-
];
|
|
622
|
-
var ListClustersRequest$ = [3, n0, _LCR,
|
|
623
|
-
0,
|
|
624
|
-
[_nT, _mR],
|
|
625
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
626
|
-
];
|
|
627
|
-
var ListClustersResponse$ = [3, n0, _LCRi,
|
|
628
|
-
0,
|
|
629
|
-
[_clu, _nT],
|
|
630
|
-
[() => ClusterList, 0], 1
|
|
631
|
-
];
|
|
632
|
-
var ListComputeNodeGroupsRequest$ = [3, n0, _LCNGR,
|
|
633
|
-
0,
|
|
634
|
-
[_cIl, _nT, _mR],
|
|
635
|
-
[0, 0, 1], 1
|
|
636
|
-
];
|
|
637
|
-
var ListComputeNodeGroupsResponse$ = [3, n0, _LCNGRi,
|
|
638
|
-
0,
|
|
639
|
-
[_cNGo, _nT],
|
|
640
|
-
[() => ComputeNodeGroupList, 0], 1
|
|
641
|
-
];
|
|
642
|
-
var ListQueuesRequest$ = [3, n0, _LQR,
|
|
643
|
-
0,
|
|
644
|
-
[_cIl, _nT, _mR],
|
|
645
|
-
[0, 0, 1], 1
|
|
646
|
-
];
|
|
647
|
-
var ListQueuesResponse$ = [3, n0, _LQRi,
|
|
648
|
-
0,
|
|
649
|
-
[_qu, _nT],
|
|
650
|
-
[() => QueueList, 0], 1
|
|
651
|
-
];
|
|
652
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
653
|
-
0,
|
|
654
|
-
[_rA],
|
|
655
|
-
[0], 1
|
|
656
|
-
];
|
|
657
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
658
|
-
0,
|
|
659
|
-
[_t],
|
|
660
|
-
[128 | 0]
|
|
661
|
-
];
|
|
662
|
-
var Networking$ = [3, n0, _N,
|
|
663
|
-
0,
|
|
664
|
-
[_sI, _sGI, _nTe],
|
|
665
|
-
[64 | 0, 64 | 0, 0]
|
|
666
|
-
];
|
|
667
|
-
var NetworkingRequest$ = [3, n0, _NR,
|
|
668
|
-
0,
|
|
669
|
-
[_sI, _sGI, _nTe],
|
|
670
|
-
[64 | 0, 64 | 0, 0]
|
|
671
|
-
];
|
|
672
|
-
var Queue$ = [3, n0, _Q,
|
|
673
|
-
0,
|
|
674
|
-
[_n, _i, _a, _cI, _cA, _mA, _s, _cNGC, _sC, _eI],
|
|
675
|
-
[0, 0, 0, 0, 5, 5, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfiguration$, () => ErrorInfoList], 8
|
|
676
|
-
];
|
|
677
|
-
var QueueSlurmConfiguration$ = [3, n0, _QSC,
|
|
678
|
-
0,
|
|
679
|
-
[_sCS],
|
|
680
|
-
[() => SlurmCustomSettings]
|
|
681
|
-
];
|
|
682
|
-
var QueueSlurmConfigurationRequest$ = [3, n0, _QSCR,
|
|
683
|
-
0,
|
|
684
|
-
[_sCS],
|
|
685
|
-
[() => SlurmCustomSettings]
|
|
686
|
-
];
|
|
687
|
-
var QueueSummary$ = [3, n0, _QS,
|
|
688
|
-
0,
|
|
689
|
-
[_n, _i, _a, _cI, _cA, _mA, _s],
|
|
690
|
-
[0, 0, 0, 0, 5, 5, 0], 7
|
|
691
|
-
];
|
|
692
|
-
var RegisterComputeNodeGroupInstanceRequest$ = [3, n0, _RCNGIR,
|
|
693
|
-
0,
|
|
694
|
-
[_cIl, _bI],
|
|
695
|
-
[0, 0], 2
|
|
696
|
-
];
|
|
697
|
-
var RegisterComputeNodeGroupInstanceResponse$ = [3, n0, _RCNGIRe,
|
|
698
|
-
0,
|
|
699
|
-
[_nID, _sS, _en],
|
|
700
|
-
[0, [() => SharedSecret, 0], () => Endpoints], 3
|
|
701
|
-
];
|
|
702
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
703
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
704
|
-
[_m, _rI, _rT],
|
|
705
|
-
[0, 0, 0], 3
|
|
706
|
-
];
|
|
707
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
708
|
-
var ScalingConfiguration$ = [3, n0, _SC,
|
|
709
|
-
0,
|
|
710
|
-
[_mIC, _mICa],
|
|
711
|
-
[1, 1], 2
|
|
712
|
-
];
|
|
713
|
-
var ScalingConfigurationRequest$ = [3, n0, _SCR,
|
|
714
|
-
0,
|
|
715
|
-
[_mIC, _mICa],
|
|
716
|
-
[1, 1], 2
|
|
717
|
-
];
|
|
718
|
-
var Scheduler$ = [3, n0, _S,
|
|
719
|
-
0,
|
|
720
|
-
[_ty, _v],
|
|
721
|
-
[0, 0], 2
|
|
722
|
-
];
|
|
723
|
-
var SchedulerRequest$ = [3, n0, _SR,
|
|
724
|
-
0,
|
|
725
|
-
[_ty, _v],
|
|
726
|
-
[0, 0], 2
|
|
727
|
-
];
|
|
728
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
729
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
730
|
-
[_m, _sCe, _rI, _rT, _qC],
|
|
731
|
-
[0, 0, 0, 0, 0], 2
|
|
732
|
-
];
|
|
733
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
734
|
-
var SlurmAuthKey$ = [3, n0, _SAK,
|
|
735
|
-
0,
|
|
736
|
-
[_sA, _sV],
|
|
737
|
-
[0, 0], 2
|
|
738
|
-
];
|
|
739
|
-
var SlurmCustomSetting$ = [3, n0, _SCS,
|
|
740
|
-
0,
|
|
741
|
-
[_pN, _pV],
|
|
742
|
-
[0, 0], 2
|
|
743
|
-
];
|
|
744
|
-
var SlurmRest$ = [3, n0, _SRl,
|
|
745
|
-
0,
|
|
746
|
-
[_mo],
|
|
747
|
-
[0], 1
|
|
748
|
-
];
|
|
749
|
-
var SlurmRestRequest$ = [3, n0, _SRR,
|
|
750
|
-
0,
|
|
751
|
-
[_mo],
|
|
752
|
-
[0], 1
|
|
753
|
-
];
|
|
754
|
-
var SpotOptions$ = [3, n0, _SO,
|
|
755
|
-
0,
|
|
756
|
-
[_aS],
|
|
757
|
-
[0]
|
|
758
|
-
];
|
|
759
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
760
|
-
0,
|
|
761
|
-
[_rA, _t],
|
|
762
|
-
[0, 128 | 0], 2
|
|
763
|
-
];
|
|
764
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
765
|
-
0,
|
|
766
|
-
[],
|
|
767
|
-
[]
|
|
768
|
-
];
|
|
769
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
770
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
771
|
-
[_m, _rAS],
|
|
772
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
773
|
-
];
|
|
774
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
775
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
776
|
-
0,
|
|
777
|
-
[_rA, _tK],
|
|
778
|
-
[[0, 1], 64 | 0], 2
|
|
779
|
-
];
|
|
780
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
781
|
-
0,
|
|
782
|
-
[],
|
|
783
|
-
[]
|
|
784
|
-
];
|
|
785
|
-
var UpdateAccountingRequest$ = [3, n0, _UAR,
|
|
786
|
-
0,
|
|
787
|
-
[_dPTID, _mo],
|
|
788
|
-
[1, 0]
|
|
789
|
-
];
|
|
790
|
-
var UpdateClusterRequest$ = [3, n0, _UCR,
|
|
791
|
-
0,
|
|
792
|
-
[_cIl, _cT, _sC],
|
|
793
|
-
[0, [0, 4], () => UpdateClusterSlurmConfigurationRequest$], 1
|
|
794
|
-
];
|
|
795
|
-
var UpdateClusterResponse$ = [3, n0, _UCRp,
|
|
796
|
-
0,
|
|
797
|
-
[_cl],
|
|
798
|
-
[() => Cluster$]
|
|
799
|
-
];
|
|
800
|
-
var UpdateClusterSlurmConfigurationRequest$ = [3, n0, _UCSCR,
|
|
801
|
-
0,
|
|
802
|
-
[_sDITIS, _sCS, _ac, _sR],
|
|
803
|
-
[1, () => SlurmCustomSettings, () => UpdateAccountingRequest$, () => UpdateSlurmRestRequest$]
|
|
804
|
-
];
|
|
805
|
-
var UpdateComputeNodeGroupRequest$ = [3, n0, _UCNGR,
|
|
806
|
-
0,
|
|
807
|
-
[_cIl, _cNGIo, _aI, _sI, _cLT, _pO, _sO, _sCc, _iIPA, _sC, _cT],
|
|
808
|
-
[0, 0, 0, 64 | 0, () => CustomLaunchTemplate$, 0, () => SpotOptions$, () => ScalingConfigurationRequest$, 0, () => UpdateComputeNodeGroupSlurmConfigurationRequest$, [0, 4]], 2
|
|
809
|
-
];
|
|
810
|
-
var UpdateComputeNodeGroupResponse$ = [3, n0, _UCNGRp,
|
|
811
|
-
0,
|
|
812
|
-
[_cNG],
|
|
813
|
-
[() => ComputeNodeGroup$]
|
|
814
|
-
];
|
|
815
|
-
var UpdateComputeNodeGroupSlurmConfigurationRequest$ = [3, n0, _UCNGSCR,
|
|
816
|
-
0,
|
|
817
|
-
[_sCS],
|
|
818
|
-
[() => SlurmCustomSettings]
|
|
819
|
-
];
|
|
820
|
-
var UpdateQueueRequest$ = [3, n0, _UQR,
|
|
821
|
-
0,
|
|
822
|
-
[_cIl, _qI, _cNGC, _sC, _cT],
|
|
823
|
-
[0, 0, () => ComputeNodeGroupConfigurationList, () => UpdateQueueSlurmConfigurationRequest$, [0, 4]], 2
|
|
824
|
-
];
|
|
825
|
-
var UpdateQueueResponse$ = [3, n0, _UQRp,
|
|
826
|
-
0,
|
|
827
|
-
[_q],
|
|
828
|
-
[() => Queue$]
|
|
829
|
-
];
|
|
830
|
-
var UpdateQueueSlurmConfigurationRequest$ = [3, n0, _UQSCR,
|
|
831
|
-
0,
|
|
832
|
-
[_sCS],
|
|
833
|
-
[() => SlurmCustomSettings]
|
|
834
|
-
];
|
|
835
|
-
var UpdateSlurmRestRequest$ = [3, n0, _USRR,
|
|
836
|
-
0,
|
|
837
|
-
[_mo],
|
|
838
|
-
[0]
|
|
839
|
-
];
|
|
840
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
841
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
842
|
-
[_m, _r, _fL],
|
|
843
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
844
|
-
];
|
|
845
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
846
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
847
|
-
0,
|
|
848
|
-
[_n, _m],
|
|
849
|
-
[0, 0], 2
|
|
850
|
-
];
|
|
851
|
-
var PCSServiceException$ = [-3, _sm, "PCSServiceException", 0, [], []];
|
|
852
|
-
schema.TypeRegistry.for(_sm).registerError(PCSServiceException$, PCSServiceException);
|
|
853
|
-
var ClusterList = [1, n0, _CL,
|
|
854
|
-
0, () => ClusterSummary$
|
|
855
|
-
];
|
|
856
|
-
var ComputeNodeGroupConfigurationList = [1, n0, _CNGCL,
|
|
857
|
-
0, () => ComputeNodeGroupConfiguration$
|
|
858
|
-
];
|
|
859
|
-
var ComputeNodeGroupList = [1, n0, _CNGL,
|
|
860
|
-
0, () => ComputeNodeGroupSummary$
|
|
861
|
-
];
|
|
862
|
-
var Endpoints = [1, n0, _En,
|
|
863
|
-
0, () => Endpoint$
|
|
864
|
-
];
|
|
865
|
-
var ErrorInfoList = [1, n0, _EIL,
|
|
866
|
-
0, () => ErrorInfo$
|
|
867
|
-
];
|
|
868
|
-
var InstanceList = [1, n0, _IL,
|
|
869
|
-
0, () => InstanceConfig$
|
|
870
|
-
];
|
|
871
|
-
var QueueList = [1, n0, _QL,
|
|
872
|
-
0, () => QueueSummary$
|
|
873
|
-
];
|
|
874
|
-
var SlurmCustomSettings = [1, n0, _SCSl,
|
|
875
|
-
0, () => SlurmCustomSetting$
|
|
876
|
-
];
|
|
877
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
878
|
-
0, () => ValidationExceptionField$
|
|
879
|
-
];
|
|
880
|
-
var CreateCluster$ = [9, n0, _CC,
|
|
881
|
-
2, () => CreateClusterRequest$, () => CreateClusterResponse$
|
|
882
|
-
];
|
|
883
|
-
var CreateComputeNodeGroup$ = [9, n0, _CCNG,
|
|
884
|
-
2, () => CreateComputeNodeGroupRequest$, () => CreateComputeNodeGroupResponse$
|
|
885
|
-
];
|
|
886
|
-
var CreateQueue$ = [9, n0, _CQ,
|
|
887
|
-
2, () => CreateQueueRequest$, () => CreateQueueResponse$
|
|
888
|
-
];
|
|
889
|
-
var DeleteCluster$ = [9, n0, _DC,
|
|
890
|
-
2, () => DeleteClusterRequest$, () => DeleteClusterResponse$
|
|
891
|
-
];
|
|
892
|
-
var DeleteComputeNodeGroup$ = [9, n0, _DCNG,
|
|
893
|
-
2, () => DeleteComputeNodeGroupRequest$, () => DeleteComputeNodeGroupResponse$
|
|
894
|
-
];
|
|
895
|
-
var DeleteQueue$ = [9, n0, _DQ,
|
|
896
|
-
2, () => DeleteQueueRequest$, () => DeleteQueueResponse$
|
|
897
|
-
];
|
|
898
|
-
var GetCluster$ = [9, n0, _GC,
|
|
899
|
-
0, () => GetClusterRequest$, () => GetClusterResponse$
|
|
900
|
-
];
|
|
901
|
-
var GetComputeNodeGroup$ = [9, n0, _GCNG,
|
|
902
|
-
0, () => GetComputeNodeGroupRequest$, () => GetComputeNodeGroupResponse$
|
|
903
|
-
];
|
|
904
|
-
var GetQueue$ = [9, n0, _GQ,
|
|
905
|
-
0, () => GetQueueRequest$, () => GetQueueResponse$
|
|
906
|
-
];
|
|
907
|
-
var ListClusters$ = [9, n0, _LC,
|
|
908
|
-
0, () => ListClustersRequest$, () => ListClustersResponse$
|
|
909
|
-
];
|
|
910
|
-
var ListComputeNodeGroups$ = [9, n0, _LCNG,
|
|
911
|
-
0, () => ListComputeNodeGroupsRequest$, () => ListComputeNodeGroupsResponse$
|
|
912
|
-
];
|
|
913
|
-
var ListQueues$ = [9, n0, _LQ,
|
|
914
|
-
0, () => ListQueuesRequest$, () => ListQueuesResponse$
|
|
915
|
-
];
|
|
916
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
917
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
918
|
-
];
|
|
919
|
-
var RegisterComputeNodeGroupInstance$ = [9, n0, _RCNGI,
|
|
920
|
-
0, () => RegisterComputeNodeGroupInstanceRequest$, () => RegisterComputeNodeGroupInstanceResponse$
|
|
921
|
-
];
|
|
922
|
-
var TagResource$ = [9, n0, _TR,
|
|
923
|
-
2, () => TagResourceRequest$, () => TagResourceResponse$
|
|
924
|
-
];
|
|
925
|
-
var UntagResource$ = [9, n0, _UR,
|
|
926
|
-
2, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
927
|
-
];
|
|
928
|
-
var UpdateCluster$ = [9, n0, _UC,
|
|
929
|
-
2, () => UpdateClusterRequest$, () => UpdateClusterResponse$
|
|
930
|
-
];
|
|
931
|
-
var UpdateComputeNodeGroup$ = [9, n0, _UCNG,
|
|
932
|
-
2, () => UpdateComputeNodeGroupRequest$, () => UpdateComputeNodeGroupResponse$
|
|
933
|
-
];
|
|
934
|
-
var UpdateQueue$ = [9, n0, _UQ,
|
|
935
|
-
2, () => UpdateQueueRequest$, () => UpdateQueueResponse$
|
|
936
|
-
];
|
|
937
|
-
|
|
938
116
|
class CreateClusterCommand extends smithyClient.Command
|
|
939
117
|
.classBuilder()
|
|
940
118
|
.ep(commonParams)
|
|
@@ -943,7 +121,7 @@ class CreateClusterCommand extends smithyClient.Command
|
|
|
943
121
|
})
|
|
944
122
|
.s("AWSParallelComputingService", "CreateCluster", {})
|
|
945
123
|
.n("PCSClient", "CreateClusterCommand")
|
|
946
|
-
.sc(CreateCluster$)
|
|
124
|
+
.sc(schemas_0.CreateCluster$)
|
|
947
125
|
.build() {
|
|
948
126
|
}
|
|
949
127
|
|
|
@@ -955,7 +133,7 @@ class CreateComputeNodeGroupCommand extends smithyClient.Command
|
|
|
955
133
|
})
|
|
956
134
|
.s("AWSParallelComputingService", "CreateComputeNodeGroup", {})
|
|
957
135
|
.n("PCSClient", "CreateComputeNodeGroupCommand")
|
|
958
|
-
.sc(CreateComputeNodeGroup$)
|
|
136
|
+
.sc(schemas_0.CreateComputeNodeGroup$)
|
|
959
137
|
.build() {
|
|
960
138
|
}
|
|
961
139
|
|
|
@@ -967,7 +145,7 @@ class CreateQueueCommand extends smithyClient.Command
|
|
|
967
145
|
})
|
|
968
146
|
.s("AWSParallelComputingService", "CreateQueue", {})
|
|
969
147
|
.n("PCSClient", "CreateQueueCommand")
|
|
970
|
-
.sc(CreateQueue$)
|
|
148
|
+
.sc(schemas_0.CreateQueue$)
|
|
971
149
|
.build() {
|
|
972
150
|
}
|
|
973
151
|
|
|
@@ -979,7 +157,7 @@ class DeleteClusterCommand extends smithyClient.Command
|
|
|
979
157
|
})
|
|
980
158
|
.s("AWSParallelComputingService", "DeleteCluster", {})
|
|
981
159
|
.n("PCSClient", "DeleteClusterCommand")
|
|
982
|
-
.sc(DeleteCluster$)
|
|
160
|
+
.sc(schemas_0.DeleteCluster$)
|
|
983
161
|
.build() {
|
|
984
162
|
}
|
|
985
163
|
|
|
@@ -991,7 +169,7 @@ class DeleteComputeNodeGroupCommand extends smithyClient.Command
|
|
|
991
169
|
})
|
|
992
170
|
.s("AWSParallelComputingService", "DeleteComputeNodeGroup", {})
|
|
993
171
|
.n("PCSClient", "DeleteComputeNodeGroupCommand")
|
|
994
|
-
.sc(DeleteComputeNodeGroup$)
|
|
172
|
+
.sc(schemas_0.DeleteComputeNodeGroup$)
|
|
995
173
|
.build() {
|
|
996
174
|
}
|
|
997
175
|
|
|
@@ -1003,7 +181,7 @@ class DeleteQueueCommand extends smithyClient.Command
|
|
|
1003
181
|
})
|
|
1004
182
|
.s("AWSParallelComputingService", "DeleteQueue", {})
|
|
1005
183
|
.n("PCSClient", "DeleteQueueCommand")
|
|
1006
|
-
.sc(DeleteQueue$)
|
|
184
|
+
.sc(schemas_0.DeleteQueue$)
|
|
1007
185
|
.build() {
|
|
1008
186
|
}
|
|
1009
187
|
|
|
@@ -1015,7 +193,7 @@ class GetClusterCommand extends smithyClient.Command
|
|
|
1015
193
|
})
|
|
1016
194
|
.s("AWSParallelComputingService", "GetCluster", {})
|
|
1017
195
|
.n("PCSClient", "GetClusterCommand")
|
|
1018
|
-
.sc(GetCluster$)
|
|
196
|
+
.sc(schemas_0.GetCluster$)
|
|
1019
197
|
.build() {
|
|
1020
198
|
}
|
|
1021
199
|
|
|
@@ -1027,7 +205,7 @@ class GetComputeNodeGroupCommand extends smithyClient.Command
|
|
|
1027
205
|
})
|
|
1028
206
|
.s("AWSParallelComputingService", "GetComputeNodeGroup", {})
|
|
1029
207
|
.n("PCSClient", "GetComputeNodeGroupCommand")
|
|
1030
|
-
.sc(GetComputeNodeGroup$)
|
|
208
|
+
.sc(schemas_0.GetComputeNodeGroup$)
|
|
1031
209
|
.build() {
|
|
1032
210
|
}
|
|
1033
211
|
|
|
@@ -1039,7 +217,7 @@ class GetQueueCommand extends smithyClient.Command
|
|
|
1039
217
|
})
|
|
1040
218
|
.s("AWSParallelComputingService", "GetQueue", {})
|
|
1041
219
|
.n("PCSClient", "GetQueueCommand")
|
|
1042
|
-
.sc(GetQueue$)
|
|
220
|
+
.sc(schemas_0.GetQueue$)
|
|
1043
221
|
.build() {
|
|
1044
222
|
}
|
|
1045
223
|
|
|
@@ -1051,7 +229,7 @@ class ListClustersCommand extends smithyClient.Command
|
|
|
1051
229
|
})
|
|
1052
230
|
.s("AWSParallelComputingService", "ListClusters", {})
|
|
1053
231
|
.n("PCSClient", "ListClustersCommand")
|
|
1054
|
-
.sc(ListClusters$)
|
|
232
|
+
.sc(schemas_0.ListClusters$)
|
|
1055
233
|
.build() {
|
|
1056
234
|
}
|
|
1057
235
|
|
|
@@ -1063,7 +241,7 @@ class ListComputeNodeGroupsCommand extends smithyClient.Command
|
|
|
1063
241
|
})
|
|
1064
242
|
.s("AWSParallelComputingService", "ListComputeNodeGroups", {})
|
|
1065
243
|
.n("PCSClient", "ListComputeNodeGroupsCommand")
|
|
1066
|
-
.sc(ListComputeNodeGroups$)
|
|
244
|
+
.sc(schemas_0.ListComputeNodeGroups$)
|
|
1067
245
|
.build() {
|
|
1068
246
|
}
|
|
1069
247
|
|
|
@@ -1075,7 +253,7 @@ class ListQueuesCommand extends smithyClient.Command
|
|
|
1075
253
|
})
|
|
1076
254
|
.s("AWSParallelComputingService", "ListQueues", {})
|
|
1077
255
|
.n("PCSClient", "ListQueuesCommand")
|
|
1078
|
-
.sc(ListQueues$)
|
|
256
|
+
.sc(schemas_0.ListQueues$)
|
|
1079
257
|
.build() {
|
|
1080
258
|
}
|
|
1081
259
|
|
|
@@ -1087,7 +265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1087
265
|
})
|
|
1088
266
|
.s("AWSParallelComputingService", "ListTagsForResource", {})
|
|
1089
267
|
.n("PCSClient", "ListTagsForResourceCommand")
|
|
1090
|
-
.sc(ListTagsForResource$)
|
|
268
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1091
269
|
.build() {
|
|
1092
270
|
}
|
|
1093
271
|
|
|
@@ -1099,7 +277,7 @@ class RegisterComputeNodeGroupInstanceCommand extends smithyClient.Command
|
|
|
1099
277
|
})
|
|
1100
278
|
.s("AWSParallelComputingService", "RegisterComputeNodeGroupInstance", {})
|
|
1101
279
|
.n("PCSClient", "RegisterComputeNodeGroupInstanceCommand")
|
|
1102
|
-
.sc(RegisterComputeNodeGroupInstance$)
|
|
280
|
+
.sc(schemas_0.RegisterComputeNodeGroupInstance$)
|
|
1103
281
|
.build() {
|
|
1104
282
|
}
|
|
1105
283
|
|
|
@@ -1111,7 +289,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1111
289
|
})
|
|
1112
290
|
.s("AWSParallelComputingService", "TagResource", {})
|
|
1113
291
|
.n("PCSClient", "TagResourceCommand")
|
|
1114
|
-
.sc(TagResource$)
|
|
292
|
+
.sc(schemas_0.TagResource$)
|
|
1115
293
|
.build() {
|
|
1116
294
|
}
|
|
1117
295
|
|
|
@@ -1123,7 +301,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1123
301
|
})
|
|
1124
302
|
.s("AWSParallelComputingService", "UntagResource", {})
|
|
1125
303
|
.n("PCSClient", "UntagResourceCommand")
|
|
1126
|
-
.sc(UntagResource$)
|
|
304
|
+
.sc(schemas_0.UntagResource$)
|
|
1127
305
|
.build() {
|
|
1128
306
|
}
|
|
1129
307
|
|
|
@@ -1135,7 +313,7 @@ class UpdateClusterCommand extends smithyClient.Command
|
|
|
1135
313
|
})
|
|
1136
314
|
.s("AWSParallelComputingService", "UpdateCluster", {})
|
|
1137
315
|
.n("PCSClient", "UpdateClusterCommand")
|
|
1138
|
-
.sc(UpdateCluster$)
|
|
316
|
+
.sc(schemas_0.UpdateCluster$)
|
|
1139
317
|
.build() {
|
|
1140
318
|
}
|
|
1141
319
|
|
|
@@ -1147,7 +325,7 @@ class UpdateComputeNodeGroupCommand extends smithyClient.Command
|
|
|
1147
325
|
})
|
|
1148
326
|
.s("AWSParallelComputingService", "UpdateComputeNodeGroup", {})
|
|
1149
327
|
.n("PCSClient", "UpdateComputeNodeGroupCommand")
|
|
1150
|
-
.sc(UpdateComputeNodeGroup$)
|
|
328
|
+
.sc(schemas_0.UpdateComputeNodeGroup$)
|
|
1151
329
|
.build() {
|
|
1152
330
|
}
|
|
1153
331
|
|
|
@@ -1159,7 +337,7 @@ class UpdateQueueCommand extends smithyClient.Command
|
|
|
1159
337
|
})
|
|
1160
338
|
.s("AWSParallelComputingService", "UpdateQueue", {})
|
|
1161
339
|
.n("PCSClient", "UpdateQueueCommand")
|
|
1162
|
-
.sc(UpdateQueue$)
|
|
340
|
+
.sc(schemas_0.UpdateQueue$)
|
|
1163
341
|
.build() {
|
|
1164
342
|
}
|
|
1165
343
|
|
|
@@ -1286,150 +464,55 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1286
464
|
enumerable: true,
|
|
1287
465
|
get: function () { return smithyClient.Client; }
|
|
1288
466
|
});
|
|
1289
|
-
exports
|
|
1290
|
-
|
|
1291
|
-
|
|
467
|
+
Object.defineProperty(exports, "PCSServiceException", {
|
|
468
|
+
enumerable: true,
|
|
469
|
+
get: function () { return PCSServiceException.PCSServiceException; }
|
|
470
|
+
});
|
|
1292
471
|
exports.AccountingMode = AccountingMode;
|
|
1293
|
-
exports.AccountingRequest$ = AccountingRequest$;
|
|
1294
|
-
exports.Cluster$ = Cluster$;
|
|
1295
|
-
exports.ClusterSlurmConfiguration$ = ClusterSlurmConfiguration$;
|
|
1296
|
-
exports.ClusterSlurmConfigurationRequest$ = ClusterSlurmConfigurationRequest$;
|
|
1297
472
|
exports.ClusterStatus = ClusterStatus;
|
|
1298
|
-
exports.ClusterSummary$ = ClusterSummary$;
|
|
1299
|
-
exports.ComputeNodeGroup$ = ComputeNodeGroup$;
|
|
1300
|
-
exports.ComputeNodeGroupConfiguration$ = ComputeNodeGroupConfiguration$;
|
|
1301
|
-
exports.ComputeNodeGroupSlurmConfiguration$ = ComputeNodeGroupSlurmConfiguration$;
|
|
1302
|
-
exports.ComputeNodeGroupSlurmConfigurationRequest$ = ComputeNodeGroupSlurmConfigurationRequest$;
|
|
1303
473
|
exports.ComputeNodeGroupStatus = ComputeNodeGroupStatus;
|
|
1304
|
-
exports.ComputeNodeGroupSummary$ = ComputeNodeGroupSummary$;
|
|
1305
|
-
exports.ConflictException = ConflictException;
|
|
1306
|
-
exports.ConflictException$ = ConflictException$;
|
|
1307
|
-
exports.CreateCluster$ = CreateCluster$;
|
|
1308
474
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
1309
|
-
exports.CreateClusterRequest$ = CreateClusterRequest$;
|
|
1310
|
-
exports.CreateClusterResponse$ = CreateClusterResponse$;
|
|
1311
|
-
exports.CreateComputeNodeGroup$ = CreateComputeNodeGroup$;
|
|
1312
475
|
exports.CreateComputeNodeGroupCommand = CreateComputeNodeGroupCommand;
|
|
1313
|
-
exports.CreateComputeNodeGroupRequest$ = CreateComputeNodeGroupRequest$;
|
|
1314
|
-
exports.CreateComputeNodeGroupResponse$ = CreateComputeNodeGroupResponse$;
|
|
1315
|
-
exports.CreateQueue$ = CreateQueue$;
|
|
1316
476
|
exports.CreateQueueCommand = CreateQueueCommand;
|
|
1317
|
-
exports.CreateQueueRequest$ = CreateQueueRequest$;
|
|
1318
|
-
exports.CreateQueueResponse$ = CreateQueueResponse$;
|
|
1319
|
-
exports.CustomLaunchTemplate$ = CustomLaunchTemplate$;
|
|
1320
|
-
exports.DeleteCluster$ = DeleteCluster$;
|
|
1321
477
|
exports.DeleteClusterCommand = DeleteClusterCommand;
|
|
1322
|
-
exports.DeleteClusterRequest$ = DeleteClusterRequest$;
|
|
1323
|
-
exports.DeleteClusterResponse$ = DeleteClusterResponse$;
|
|
1324
|
-
exports.DeleteComputeNodeGroup$ = DeleteComputeNodeGroup$;
|
|
1325
478
|
exports.DeleteComputeNodeGroupCommand = DeleteComputeNodeGroupCommand;
|
|
1326
|
-
exports.DeleteComputeNodeGroupRequest$ = DeleteComputeNodeGroupRequest$;
|
|
1327
|
-
exports.DeleteComputeNodeGroupResponse$ = DeleteComputeNodeGroupResponse$;
|
|
1328
|
-
exports.DeleteQueue$ = DeleteQueue$;
|
|
1329
479
|
exports.DeleteQueueCommand = DeleteQueueCommand;
|
|
1330
|
-
exports.DeleteQueueRequest$ = DeleteQueueRequest$;
|
|
1331
|
-
exports.DeleteQueueResponse$ = DeleteQueueResponse$;
|
|
1332
|
-
exports.Endpoint$ = Endpoint$;
|
|
1333
480
|
exports.EndpointType = EndpointType;
|
|
1334
|
-
exports.ErrorInfo$ = ErrorInfo$;
|
|
1335
|
-
exports.GetCluster$ = GetCluster$;
|
|
1336
481
|
exports.GetClusterCommand = GetClusterCommand;
|
|
1337
|
-
exports.GetClusterRequest$ = GetClusterRequest$;
|
|
1338
|
-
exports.GetClusterResponse$ = GetClusterResponse$;
|
|
1339
|
-
exports.GetComputeNodeGroup$ = GetComputeNodeGroup$;
|
|
1340
482
|
exports.GetComputeNodeGroupCommand = GetComputeNodeGroupCommand;
|
|
1341
|
-
exports.GetComputeNodeGroupRequest$ = GetComputeNodeGroupRequest$;
|
|
1342
|
-
exports.GetComputeNodeGroupResponse$ = GetComputeNodeGroupResponse$;
|
|
1343
|
-
exports.GetQueue$ = GetQueue$;
|
|
1344
483
|
exports.GetQueueCommand = GetQueueCommand;
|
|
1345
|
-
exports.GetQueueRequest$ = GetQueueRequest$;
|
|
1346
|
-
exports.GetQueueResponse$ = GetQueueResponse$;
|
|
1347
|
-
exports.InstanceConfig$ = InstanceConfig$;
|
|
1348
|
-
exports.InternalServerException = InternalServerException;
|
|
1349
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1350
|
-
exports.JwtAuth$ = JwtAuth$;
|
|
1351
|
-
exports.JwtKey$ = JwtKey$;
|
|
1352
|
-
exports.ListClusters$ = ListClusters$;
|
|
1353
484
|
exports.ListClustersCommand = ListClustersCommand;
|
|
1354
|
-
exports.ListClustersRequest$ = ListClustersRequest$;
|
|
1355
|
-
exports.ListClustersResponse$ = ListClustersResponse$;
|
|
1356
|
-
exports.ListComputeNodeGroups$ = ListComputeNodeGroups$;
|
|
1357
485
|
exports.ListComputeNodeGroupsCommand = ListComputeNodeGroupsCommand;
|
|
1358
|
-
exports.ListComputeNodeGroupsRequest$ = ListComputeNodeGroupsRequest$;
|
|
1359
|
-
exports.ListComputeNodeGroupsResponse$ = ListComputeNodeGroupsResponse$;
|
|
1360
|
-
exports.ListQueues$ = ListQueues$;
|
|
1361
486
|
exports.ListQueuesCommand = ListQueuesCommand;
|
|
1362
|
-
exports.ListQueuesRequest$ = ListQueuesRequest$;
|
|
1363
|
-
exports.ListQueuesResponse$ = ListQueuesResponse$;
|
|
1364
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1365
487
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1366
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1367
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1368
488
|
exports.NetworkType = NetworkType;
|
|
1369
|
-
exports.Networking$ = Networking$;
|
|
1370
|
-
exports.NetworkingRequest$ = NetworkingRequest$;
|
|
1371
489
|
exports.PCS = PCS;
|
|
1372
490
|
exports.PCSClient = PCSClient;
|
|
1373
|
-
exports.PCSServiceException = PCSServiceException;
|
|
1374
|
-
exports.PCSServiceException$ = PCSServiceException$;
|
|
1375
491
|
exports.PurchaseOption = PurchaseOption;
|
|
1376
|
-
exports.Queue$ = Queue$;
|
|
1377
|
-
exports.QueueSlurmConfiguration$ = QueueSlurmConfiguration$;
|
|
1378
|
-
exports.QueueSlurmConfigurationRequest$ = QueueSlurmConfigurationRequest$;
|
|
1379
492
|
exports.QueueStatus = QueueStatus;
|
|
1380
|
-
exports.QueueSummary$ = QueueSummary$;
|
|
1381
|
-
exports.RegisterComputeNodeGroupInstance$ = RegisterComputeNodeGroupInstance$;
|
|
1382
493
|
exports.RegisterComputeNodeGroupInstanceCommand = RegisterComputeNodeGroupInstanceCommand;
|
|
1383
|
-
exports.RegisterComputeNodeGroupInstanceRequest$ = RegisterComputeNodeGroupInstanceRequest$;
|
|
1384
|
-
exports.RegisterComputeNodeGroupInstanceResponse$ = RegisterComputeNodeGroupInstanceResponse$;
|
|
1385
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1386
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1387
|
-
exports.ScalingConfiguration$ = ScalingConfiguration$;
|
|
1388
|
-
exports.ScalingConfigurationRequest$ = ScalingConfigurationRequest$;
|
|
1389
|
-
exports.Scheduler$ = Scheduler$;
|
|
1390
|
-
exports.SchedulerRequest$ = SchedulerRequest$;
|
|
1391
494
|
exports.SchedulerType = SchedulerType;
|
|
1392
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1393
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1394
495
|
exports.Size = Size;
|
|
1395
|
-
exports.SlurmAuthKey$ = SlurmAuthKey$;
|
|
1396
|
-
exports.SlurmCustomSetting$ = SlurmCustomSetting$;
|
|
1397
|
-
exports.SlurmRest$ = SlurmRest$;
|
|
1398
496
|
exports.SlurmRestMode = SlurmRestMode;
|
|
1399
|
-
exports.SlurmRestRequest$ = SlurmRestRequest$;
|
|
1400
497
|
exports.SpotAllocationStrategy = SpotAllocationStrategy;
|
|
1401
|
-
exports.SpotOptions$ = SpotOptions$;
|
|
1402
|
-
exports.TagResource$ = TagResource$;
|
|
1403
498
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1404
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1405
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1406
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1407
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1408
|
-
exports.UntagResource$ = UntagResource$;
|
|
1409
499
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1410
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1411
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1412
|
-
exports.UpdateAccountingRequest$ = UpdateAccountingRequest$;
|
|
1413
|
-
exports.UpdateCluster$ = UpdateCluster$;
|
|
1414
500
|
exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
1415
|
-
exports.UpdateClusterRequest$ = UpdateClusterRequest$;
|
|
1416
|
-
exports.UpdateClusterResponse$ = UpdateClusterResponse$;
|
|
1417
|
-
exports.UpdateClusterSlurmConfigurationRequest$ = UpdateClusterSlurmConfigurationRequest$;
|
|
1418
|
-
exports.UpdateComputeNodeGroup$ = UpdateComputeNodeGroup$;
|
|
1419
501
|
exports.UpdateComputeNodeGroupCommand = UpdateComputeNodeGroupCommand;
|
|
1420
|
-
exports.UpdateComputeNodeGroupRequest$ = UpdateComputeNodeGroupRequest$;
|
|
1421
|
-
exports.UpdateComputeNodeGroupResponse$ = UpdateComputeNodeGroupResponse$;
|
|
1422
|
-
exports.UpdateComputeNodeGroupSlurmConfigurationRequest$ = UpdateComputeNodeGroupSlurmConfigurationRequest$;
|
|
1423
|
-
exports.UpdateQueue$ = UpdateQueue$;
|
|
1424
502
|
exports.UpdateQueueCommand = UpdateQueueCommand;
|
|
1425
|
-
exports.UpdateQueueRequest$ = UpdateQueueRequest$;
|
|
1426
|
-
exports.UpdateQueueResponse$ = UpdateQueueResponse$;
|
|
1427
|
-
exports.UpdateQueueSlurmConfigurationRequest$ = UpdateQueueSlurmConfigurationRequest$;
|
|
1428
|
-
exports.UpdateSlurmRestRequest$ = UpdateSlurmRestRequest$;
|
|
1429
|
-
exports.ValidationException = ValidationException;
|
|
1430
|
-
exports.ValidationException$ = ValidationException$;
|
|
1431
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1432
503
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1433
504
|
exports.paginateListClusters = paginateListClusters;
|
|
1434
505
|
exports.paginateListComputeNodeGroups = paginateListComputeNodeGroups;
|
|
1435
506
|
exports.paginateListQueues = paginateListQueues;
|
|
507
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
508
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
509
|
+
enumerable: true,
|
|
510
|
+
get: function () { return schemas_0[k]; }
|
|
511
|
+
});
|
|
512
|
+
});
|
|
513
|
+
Object.keys(errors).forEach(function (k) {
|
|
514
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
515
|
+
enumerable: true,
|
|
516
|
+
get: function () { return errors[k]; }
|
|
517
|
+
});
|
|
518
|
+
});
|