@alicloud/ehpcinstant20230701 1.1.2 → 1.3.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/client.d.ts +779 -24
- package/dist/client.js +888 -16
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1352 -57
package/dist/client.d.ts
CHANGED
|
@@ -201,6 +201,91 @@ export declare class CreateJobResponse extends $tea.Model {
|
|
|
201
201
|
[key: string]: any;
|
|
202
202
|
});
|
|
203
203
|
}
|
|
204
|
+
export declare class CreatePoolRequest extends $tea.Model {
|
|
205
|
+
/**
|
|
206
|
+
* @remarks
|
|
207
|
+
* This parameter is required.
|
|
208
|
+
*
|
|
209
|
+
* @example
|
|
210
|
+
* PoolTest
|
|
211
|
+
*/
|
|
212
|
+
poolName?: string;
|
|
213
|
+
/**
|
|
214
|
+
* @example
|
|
215
|
+
* 1
|
|
216
|
+
*/
|
|
217
|
+
priority?: number;
|
|
218
|
+
resourceLimits?: CreatePoolRequestResourceLimits;
|
|
219
|
+
static names(): {
|
|
220
|
+
[key: string]: string;
|
|
221
|
+
};
|
|
222
|
+
static types(): {
|
|
223
|
+
[key: string]: any;
|
|
224
|
+
};
|
|
225
|
+
constructor(map?: {
|
|
226
|
+
[key: string]: any;
|
|
227
|
+
});
|
|
228
|
+
}
|
|
229
|
+
export declare class CreatePoolShrinkRequest extends $tea.Model {
|
|
230
|
+
/**
|
|
231
|
+
* @remarks
|
|
232
|
+
* This parameter is required.
|
|
233
|
+
*
|
|
234
|
+
* @example
|
|
235
|
+
* PoolTest
|
|
236
|
+
*/
|
|
237
|
+
poolName?: string;
|
|
238
|
+
/**
|
|
239
|
+
* @example
|
|
240
|
+
* 1
|
|
241
|
+
*/
|
|
242
|
+
priority?: number;
|
|
243
|
+
resourceLimitsShrink?: string;
|
|
244
|
+
static names(): {
|
|
245
|
+
[key: string]: string;
|
|
246
|
+
};
|
|
247
|
+
static types(): {
|
|
248
|
+
[key: string]: any;
|
|
249
|
+
};
|
|
250
|
+
constructor(map?: {
|
|
251
|
+
[key: string]: any;
|
|
252
|
+
});
|
|
253
|
+
}
|
|
254
|
+
export declare class CreatePoolResponseBody extends $tea.Model {
|
|
255
|
+
/**
|
|
256
|
+
* @remarks
|
|
257
|
+
* Id of the request
|
|
258
|
+
*
|
|
259
|
+
* @example
|
|
260
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
261
|
+
*/
|
|
262
|
+
requestId?: string;
|
|
263
|
+
static names(): {
|
|
264
|
+
[key: string]: string;
|
|
265
|
+
};
|
|
266
|
+
static types(): {
|
|
267
|
+
[key: string]: any;
|
|
268
|
+
};
|
|
269
|
+
constructor(map?: {
|
|
270
|
+
[key: string]: any;
|
|
271
|
+
});
|
|
272
|
+
}
|
|
273
|
+
export declare class CreatePoolResponse extends $tea.Model {
|
|
274
|
+
headers?: {
|
|
275
|
+
[key: string]: string;
|
|
276
|
+
};
|
|
277
|
+
statusCode?: number;
|
|
278
|
+
body?: CreatePoolResponseBody;
|
|
279
|
+
static names(): {
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
};
|
|
282
|
+
static types(): {
|
|
283
|
+
[key: string]: any;
|
|
284
|
+
};
|
|
285
|
+
constructor(map?: {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
});
|
|
288
|
+
}
|
|
204
289
|
export declare class DeleteJobsRequest extends $tea.Model {
|
|
205
290
|
executorIds?: string[];
|
|
206
291
|
jobSpec?: DeleteJobsRequestJobSpec[];
|
|
@@ -259,6 +344,60 @@ export declare class DeleteJobsResponse extends $tea.Model {
|
|
|
259
344
|
[key: string]: any;
|
|
260
345
|
});
|
|
261
346
|
}
|
|
347
|
+
export declare class DeletePoolRequest extends $tea.Model {
|
|
348
|
+
/**
|
|
349
|
+
* @remarks
|
|
350
|
+
* This parameter is required.
|
|
351
|
+
*
|
|
352
|
+
* @example
|
|
353
|
+
* PoolTest
|
|
354
|
+
*/
|
|
355
|
+
poolName?: string;
|
|
356
|
+
static names(): {
|
|
357
|
+
[key: string]: string;
|
|
358
|
+
};
|
|
359
|
+
static types(): {
|
|
360
|
+
[key: string]: any;
|
|
361
|
+
};
|
|
362
|
+
constructor(map?: {
|
|
363
|
+
[key: string]: any;
|
|
364
|
+
});
|
|
365
|
+
}
|
|
366
|
+
export declare class DeletePoolResponseBody extends $tea.Model {
|
|
367
|
+
/**
|
|
368
|
+
* @remarks
|
|
369
|
+
* Id of the request
|
|
370
|
+
*
|
|
371
|
+
* @example
|
|
372
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
373
|
+
*/
|
|
374
|
+
requestId?: string;
|
|
375
|
+
static names(): {
|
|
376
|
+
[key: string]: string;
|
|
377
|
+
};
|
|
378
|
+
static types(): {
|
|
379
|
+
[key: string]: any;
|
|
380
|
+
};
|
|
381
|
+
constructor(map?: {
|
|
382
|
+
[key: string]: any;
|
|
383
|
+
});
|
|
384
|
+
}
|
|
385
|
+
export declare class DeletePoolResponse extends $tea.Model {
|
|
386
|
+
headers?: {
|
|
387
|
+
[key: string]: string;
|
|
388
|
+
};
|
|
389
|
+
statusCode?: number;
|
|
390
|
+
body?: DeletePoolResponseBody;
|
|
391
|
+
static names(): {
|
|
392
|
+
[key: string]: string;
|
|
393
|
+
};
|
|
394
|
+
static types(): {
|
|
395
|
+
[key: string]: any;
|
|
396
|
+
};
|
|
397
|
+
constructor(map?: {
|
|
398
|
+
[key: string]: any;
|
|
399
|
+
});
|
|
400
|
+
}
|
|
262
401
|
export declare class DescribeJobMetricDataRequest extends $tea.Model {
|
|
263
402
|
arrayIndex?: number[];
|
|
264
403
|
/**
|
|
@@ -432,6 +571,98 @@ export declare class DescribeJobMetricLastResponse extends $tea.Model {
|
|
|
432
571
|
[key: string]: any;
|
|
433
572
|
});
|
|
434
573
|
}
|
|
574
|
+
export declare class GetAppVersionsRequest extends $tea.Model {
|
|
575
|
+
/**
|
|
576
|
+
* @remarks
|
|
577
|
+
* This parameter is required.
|
|
578
|
+
*
|
|
579
|
+
* @example
|
|
580
|
+
* V-Ray
|
|
581
|
+
*/
|
|
582
|
+
appName?: string;
|
|
583
|
+
/**
|
|
584
|
+
* @example
|
|
585
|
+
* Public
|
|
586
|
+
*/
|
|
587
|
+
imageCategory?: string;
|
|
588
|
+
/**
|
|
589
|
+
* @example
|
|
590
|
+
* VM
|
|
591
|
+
*/
|
|
592
|
+
imageType?: string;
|
|
593
|
+
/**
|
|
594
|
+
* @example
|
|
595
|
+
* 1
|
|
596
|
+
*/
|
|
597
|
+
pageNumber?: number;
|
|
598
|
+
/**
|
|
599
|
+
* @example
|
|
600
|
+
* 10
|
|
601
|
+
*/
|
|
602
|
+
pageSize?: number;
|
|
603
|
+
static names(): {
|
|
604
|
+
[key: string]: string;
|
|
605
|
+
};
|
|
606
|
+
static types(): {
|
|
607
|
+
[key: string]: any;
|
|
608
|
+
};
|
|
609
|
+
constructor(map?: {
|
|
610
|
+
[key: string]: any;
|
|
611
|
+
});
|
|
612
|
+
}
|
|
613
|
+
export declare class GetAppVersionsResponseBody extends $tea.Model {
|
|
614
|
+
appVersions?: GetAppVersionsResponseBodyAppVersions[];
|
|
615
|
+
/**
|
|
616
|
+
* @example
|
|
617
|
+
* 1
|
|
618
|
+
*/
|
|
619
|
+
pageNumber?: number;
|
|
620
|
+
/**
|
|
621
|
+
* @example
|
|
622
|
+
* 20
|
|
623
|
+
*/
|
|
624
|
+
pageSize?: number;
|
|
625
|
+
/**
|
|
626
|
+
* @example
|
|
627
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
628
|
+
*/
|
|
629
|
+
requestId?: string;
|
|
630
|
+
/**
|
|
631
|
+
* @example
|
|
632
|
+
* true
|
|
633
|
+
*/
|
|
634
|
+
success?: boolean;
|
|
635
|
+
/**
|
|
636
|
+
* @example
|
|
637
|
+
* 1
|
|
638
|
+
*/
|
|
639
|
+
totalCount?: number;
|
|
640
|
+
static names(): {
|
|
641
|
+
[key: string]: string;
|
|
642
|
+
};
|
|
643
|
+
static types(): {
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
};
|
|
646
|
+
constructor(map?: {
|
|
647
|
+
[key: string]: any;
|
|
648
|
+
});
|
|
649
|
+
}
|
|
650
|
+
export declare class GetAppVersionsResponse extends $tea.Model {
|
|
651
|
+
headers?: {
|
|
652
|
+
[key: string]: string;
|
|
653
|
+
};
|
|
654
|
+
statusCode?: number;
|
|
655
|
+
body?: GetAppVersionsResponseBody;
|
|
656
|
+
static names(): {
|
|
657
|
+
[key: string]: string;
|
|
658
|
+
};
|
|
659
|
+
static types(): {
|
|
660
|
+
[key: string]: any;
|
|
661
|
+
};
|
|
662
|
+
constructor(map?: {
|
|
663
|
+
[key: string]: any;
|
|
664
|
+
});
|
|
665
|
+
}
|
|
435
666
|
export declare class GetImageRequest extends $tea.Model {
|
|
436
667
|
imageCategory?: string;
|
|
437
668
|
/**
|
|
@@ -545,6 +776,61 @@ export declare class GetJobResponse extends $tea.Model {
|
|
|
545
776
|
[key: string]: any;
|
|
546
777
|
});
|
|
547
778
|
}
|
|
779
|
+
export declare class GetPoolRequest extends $tea.Model {
|
|
780
|
+
/**
|
|
781
|
+
* @remarks
|
|
782
|
+
* This parameter is required.
|
|
783
|
+
*
|
|
784
|
+
* @example
|
|
785
|
+
* PoolTest
|
|
786
|
+
*/
|
|
787
|
+
poolName?: string;
|
|
788
|
+
static names(): {
|
|
789
|
+
[key: string]: string;
|
|
790
|
+
};
|
|
791
|
+
static types(): {
|
|
792
|
+
[key: string]: any;
|
|
793
|
+
};
|
|
794
|
+
constructor(map?: {
|
|
795
|
+
[key: string]: any;
|
|
796
|
+
});
|
|
797
|
+
}
|
|
798
|
+
export declare class GetPoolResponseBody extends $tea.Model {
|
|
799
|
+
poolInfo?: GetPoolResponseBodyPoolInfo;
|
|
800
|
+
/**
|
|
801
|
+
* @remarks
|
|
802
|
+
* Id of the request
|
|
803
|
+
*
|
|
804
|
+
* @example
|
|
805
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
806
|
+
*/
|
|
807
|
+
requestId?: string;
|
|
808
|
+
static names(): {
|
|
809
|
+
[key: string]: string;
|
|
810
|
+
};
|
|
811
|
+
static types(): {
|
|
812
|
+
[key: string]: any;
|
|
813
|
+
};
|
|
814
|
+
constructor(map?: {
|
|
815
|
+
[key: string]: any;
|
|
816
|
+
});
|
|
817
|
+
}
|
|
818
|
+
export declare class GetPoolResponse extends $tea.Model {
|
|
819
|
+
headers?: {
|
|
820
|
+
[key: string]: string;
|
|
821
|
+
};
|
|
822
|
+
statusCode?: number;
|
|
823
|
+
body?: GetPoolResponseBody;
|
|
824
|
+
static names(): {
|
|
825
|
+
[key: string]: string;
|
|
826
|
+
};
|
|
827
|
+
static types(): {
|
|
828
|
+
[key: string]: any;
|
|
829
|
+
};
|
|
830
|
+
constructor(map?: {
|
|
831
|
+
[key: string]: any;
|
|
832
|
+
});
|
|
833
|
+
}
|
|
548
834
|
export declare class ListExecutorsRequest extends $tea.Model {
|
|
549
835
|
filter?: ListExecutorsRequestFilter;
|
|
550
836
|
/**
|
|
@@ -642,6 +928,7 @@ export declare class ListImagesRequest extends $tea.Model {
|
|
|
642
928
|
imageIds?: string[];
|
|
643
929
|
imageNames?: string[];
|
|
644
930
|
imageType?: string;
|
|
931
|
+
mode?: string;
|
|
645
932
|
/**
|
|
646
933
|
* @example
|
|
647
934
|
* 1
|
|
@@ -667,6 +954,7 @@ export declare class ListImagesShrinkRequest extends $tea.Model {
|
|
|
667
954
|
imageIdsShrink?: string;
|
|
668
955
|
imageNamesShrink?: string;
|
|
669
956
|
imageType?: string;
|
|
957
|
+
mode?: string;
|
|
670
958
|
/**
|
|
671
959
|
* @example
|
|
672
960
|
* 1
|
|
@@ -924,6 +1212,101 @@ export declare class ListJobsResponse extends $tea.Model {
|
|
|
924
1212
|
[key: string]: any;
|
|
925
1213
|
});
|
|
926
1214
|
}
|
|
1215
|
+
export declare class ListPoolsRequest extends $tea.Model {
|
|
1216
|
+
filter?: ListPoolsRequestFilter;
|
|
1217
|
+
/**
|
|
1218
|
+
* @example
|
|
1219
|
+
* 1
|
|
1220
|
+
*/
|
|
1221
|
+
pageNumber?: number;
|
|
1222
|
+
/**
|
|
1223
|
+
* @example
|
|
1224
|
+
* 10
|
|
1225
|
+
*/
|
|
1226
|
+
pageSize?: number;
|
|
1227
|
+
static names(): {
|
|
1228
|
+
[key: string]: string;
|
|
1229
|
+
};
|
|
1230
|
+
static types(): {
|
|
1231
|
+
[key: string]: any;
|
|
1232
|
+
};
|
|
1233
|
+
constructor(map?: {
|
|
1234
|
+
[key: string]: any;
|
|
1235
|
+
});
|
|
1236
|
+
}
|
|
1237
|
+
export declare class ListPoolsShrinkRequest extends $tea.Model {
|
|
1238
|
+
filterShrink?: string;
|
|
1239
|
+
/**
|
|
1240
|
+
* @example
|
|
1241
|
+
* 1
|
|
1242
|
+
*/
|
|
1243
|
+
pageNumber?: number;
|
|
1244
|
+
/**
|
|
1245
|
+
* @example
|
|
1246
|
+
* 10
|
|
1247
|
+
*/
|
|
1248
|
+
pageSize?: number;
|
|
1249
|
+
static names(): {
|
|
1250
|
+
[key: string]: string;
|
|
1251
|
+
};
|
|
1252
|
+
static types(): {
|
|
1253
|
+
[key: string]: any;
|
|
1254
|
+
};
|
|
1255
|
+
constructor(map?: {
|
|
1256
|
+
[key: string]: any;
|
|
1257
|
+
});
|
|
1258
|
+
}
|
|
1259
|
+
export declare class ListPoolsResponseBody extends $tea.Model {
|
|
1260
|
+
/**
|
|
1261
|
+
* @example
|
|
1262
|
+
* 1
|
|
1263
|
+
*/
|
|
1264
|
+
pageNumber?: number;
|
|
1265
|
+
/**
|
|
1266
|
+
* @example
|
|
1267
|
+
* 10
|
|
1268
|
+
*/
|
|
1269
|
+
pageSize?: number;
|
|
1270
|
+
poolList?: ListPoolsResponseBodyPoolList[];
|
|
1271
|
+
/**
|
|
1272
|
+
* @remarks
|
|
1273
|
+
* Id of the request
|
|
1274
|
+
*
|
|
1275
|
+
* @example
|
|
1276
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
1277
|
+
*/
|
|
1278
|
+
requestId?: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* @example
|
|
1281
|
+
* 2
|
|
1282
|
+
*/
|
|
1283
|
+
totalCount?: number;
|
|
1284
|
+
static names(): {
|
|
1285
|
+
[key: string]: string;
|
|
1286
|
+
};
|
|
1287
|
+
static types(): {
|
|
1288
|
+
[key: string]: any;
|
|
1289
|
+
};
|
|
1290
|
+
constructor(map?: {
|
|
1291
|
+
[key: string]: any;
|
|
1292
|
+
});
|
|
1293
|
+
}
|
|
1294
|
+
export declare class ListPoolsResponse extends $tea.Model {
|
|
1295
|
+
headers?: {
|
|
1296
|
+
[key: string]: string;
|
|
1297
|
+
};
|
|
1298
|
+
statusCode?: number;
|
|
1299
|
+
body?: ListPoolsResponseBody;
|
|
1300
|
+
static names(): {
|
|
1301
|
+
[key: string]: string;
|
|
1302
|
+
};
|
|
1303
|
+
static types(): {
|
|
1304
|
+
[key: string]: any;
|
|
1305
|
+
};
|
|
1306
|
+
constructor(map?: {
|
|
1307
|
+
[key: string]: any;
|
|
1308
|
+
});
|
|
1309
|
+
}
|
|
927
1310
|
export declare class ListTagResourcesRequest extends $tea.Model {
|
|
928
1311
|
/**
|
|
929
1312
|
* @example
|
|
@@ -1034,12 +1417,73 @@ export declare class RemoveImageResponseBody extends $tea.Model {
|
|
|
1034
1417
|
[key: string]: any;
|
|
1035
1418
|
});
|
|
1036
1419
|
}
|
|
1037
|
-
export declare class RemoveImageResponse extends $tea.Model {
|
|
1420
|
+
export declare class RemoveImageResponse extends $tea.Model {
|
|
1421
|
+
headers?: {
|
|
1422
|
+
[key: string]: string;
|
|
1423
|
+
};
|
|
1424
|
+
statusCode?: number;
|
|
1425
|
+
body?: RemoveImageResponseBody;
|
|
1426
|
+
static names(): {
|
|
1427
|
+
[key: string]: string;
|
|
1428
|
+
};
|
|
1429
|
+
static types(): {
|
|
1430
|
+
[key: string]: any;
|
|
1431
|
+
};
|
|
1432
|
+
constructor(map?: {
|
|
1433
|
+
[key: string]: any;
|
|
1434
|
+
});
|
|
1435
|
+
}
|
|
1436
|
+
export declare class TagResourcesRequest extends $tea.Model {
|
|
1437
|
+
/**
|
|
1438
|
+
* @remarks
|
|
1439
|
+
* This parameter is required.
|
|
1440
|
+
*/
|
|
1441
|
+
resourceId?: string[];
|
|
1442
|
+
/**
|
|
1443
|
+
* @remarks
|
|
1444
|
+
* This parameter is required.
|
|
1445
|
+
*
|
|
1446
|
+
* @example
|
|
1447
|
+
* Job
|
|
1448
|
+
*/
|
|
1449
|
+
resourceType?: string;
|
|
1450
|
+
/**
|
|
1451
|
+
* @remarks
|
|
1452
|
+
* This parameter is required.
|
|
1453
|
+
*/
|
|
1454
|
+
tag?: TagResourcesRequestTag[];
|
|
1455
|
+
static names(): {
|
|
1456
|
+
[key: string]: string;
|
|
1457
|
+
};
|
|
1458
|
+
static types(): {
|
|
1459
|
+
[key: string]: any;
|
|
1460
|
+
};
|
|
1461
|
+
constructor(map?: {
|
|
1462
|
+
[key: string]: any;
|
|
1463
|
+
});
|
|
1464
|
+
}
|
|
1465
|
+
export declare class TagResourcesResponseBody extends $tea.Model {
|
|
1466
|
+
/**
|
|
1467
|
+
* @example
|
|
1468
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
1469
|
+
*/
|
|
1470
|
+
requestId?: string;
|
|
1471
|
+
static names(): {
|
|
1472
|
+
[key: string]: string;
|
|
1473
|
+
};
|
|
1474
|
+
static types(): {
|
|
1475
|
+
[key: string]: any;
|
|
1476
|
+
};
|
|
1477
|
+
constructor(map?: {
|
|
1478
|
+
[key: string]: any;
|
|
1479
|
+
});
|
|
1480
|
+
}
|
|
1481
|
+
export declare class TagResourcesResponse extends $tea.Model {
|
|
1038
1482
|
headers?: {
|
|
1039
1483
|
[key: string]: string;
|
|
1040
1484
|
};
|
|
1041
1485
|
statusCode?: number;
|
|
1042
|
-
body?:
|
|
1486
|
+
body?: TagResourcesResponseBody;
|
|
1043
1487
|
static names(): {
|
|
1044
1488
|
[key: string]: string;
|
|
1045
1489
|
};
|
|
@@ -1050,7 +1494,12 @@ export declare class RemoveImageResponse extends $tea.Model {
|
|
|
1050
1494
|
[key: string]: any;
|
|
1051
1495
|
});
|
|
1052
1496
|
}
|
|
1053
|
-
export declare class
|
|
1497
|
+
export declare class UnTagResourcesRequest extends $tea.Model {
|
|
1498
|
+
/**
|
|
1499
|
+
* @example
|
|
1500
|
+
* False
|
|
1501
|
+
*/
|
|
1502
|
+
all?: boolean;
|
|
1054
1503
|
/**
|
|
1055
1504
|
* @remarks
|
|
1056
1505
|
* This parameter is required.
|
|
@@ -1064,11 +1513,7 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
1064
1513
|
* Job
|
|
1065
1514
|
*/
|
|
1066
1515
|
resourceType?: string;
|
|
1067
|
-
|
|
1068
|
-
* @remarks
|
|
1069
|
-
* This parameter is required.
|
|
1070
|
-
*/
|
|
1071
|
-
tag?: TagResourcesRequestTag[];
|
|
1516
|
+
tagKey?: string[];
|
|
1072
1517
|
static names(): {
|
|
1073
1518
|
[key: string]: string;
|
|
1074
1519
|
};
|
|
@@ -1079,7 +1524,7 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
1079
1524
|
[key: string]: any;
|
|
1080
1525
|
});
|
|
1081
1526
|
}
|
|
1082
|
-
export declare class
|
|
1527
|
+
export declare class UnTagResourcesResponseBody extends $tea.Model {
|
|
1083
1528
|
/**
|
|
1084
1529
|
* @example
|
|
1085
1530
|
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
@@ -1095,12 +1540,12 @@ export declare class TagResourcesResponseBody extends $tea.Model {
|
|
|
1095
1540
|
[key: string]: any;
|
|
1096
1541
|
});
|
|
1097
1542
|
}
|
|
1098
|
-
export declare class
|
|
1543
|
+
export declare class UnTagResourcesResponse extends $tea.Model {
|
|
1099
1544
|
headers?: {
|
|
1100
1545
|
[key: string]: string;
|
|
1101
1546
|
};
|
|
1102
1547
|
statusCode?: number;
|
|
1103
|
-
body?:
|
|
1548
|
+
body?: UnTagResourcesResponseBody;
|
|
1104
1549
|
static names(): {
|
|
1105
1550
|
[key: string]: string;
|
|
1106
1551
|
};
|
|
@@ -1111,26 +1556,46 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
1111
1556
|
[key: string]: any;
|
|
1112
1557
|
});
|
|
1113
1558
|
}
|
|
1114
|
-
export declare class
|
|
1559
|
+
export declare class UpdatePoolRequest extends $tea.Model {
|
|
1115
1560
|
/**
|
|
1561
|
+
* @remarks
|
|
1562
|
+
* This parameter is required.
|
|
1563
|
+
*
|
|
1116
1564
|
* @example
|
|
1117
|
-
*
|
|
1565
|
+
* PoolTest
|
|
1118
1566
|
*/
|
|
1119
|
-
|
|
1567
|
+
poolName?: string;
|
|
1120
1568
|
/**
|
|
1121
|
-
* @
|
|
1122
|
-
*
|
|
1569
|
+
* @example
|
|
1570
|
+
* 1
|
|
1123
1571
|
*/
|
|
1124
|
-
|
|
1572
|
+
priority?: number;
|
|
1573
|
+
resourceLimits?: UpdatePoolRequestResourceLimits;
|
|
1574
|
+
static names(): {
|
|
1575
|
+
[key: string]: string;
|
|
1576
|
+
};
|
|
1577
|
+
static types(): {
|
|
1578
|
+
[key: string]: any;
|
|
1579
|
+
};
|
|
1580
|
+
constructor(map?: {
|
|
1581
|
+
[key: string]: any;
|
|
1582
|
+
});
|
|
1583
|
+
}
|
|
1584
|
+
export declare class UpdatePoolShrinkRequest extends $tea.Model {
|
|
1125
1585
|
/**
|
|
1126
1586
|
* @remarks
|
|
1127
1587
|
* This parameter is required.
|
|
1128
1588
|
*
|
|
1129
1589
|
* @example
|
|
1130
|
-
*
|
|
1590
|
+
* PoolTest
|
|
1131
1591
|
*/
|
|
1132
|
-
|
|
1133
|
-
|
|
1592
|
+
poolName?: string;
|
|
1593
|
+
/**
|
|
1594
|
+
* @example
|
|
1595
|
+
* 1
|
|
1596
|
+
*/
|
|
1597
|
+
priority?: number;
|
|
1598
|
+
resourceLimitsShrink?: string;
|
|
1134
1599
|
static names(): {
|
|
1135
1600
|
[key: string]: string;
|
|
1136
1601
|
};
|
|
@@ -1141,10 +1606,13 @@ export declare class UnTagResourcesRequest extends $tea.Model {
|
|
|
1141
1606
|
[key: string]: any;
|
|
1142
1607
|
});
|
|
1143
1608
|
}
|
|
1144
|
-
export declare class
|
|
1609
|
+
export declare class UpdatePoolResponseBody extends $tea.Model {
|
|
1145
1610
|
/**
|
|
1611
|
+
* @remarks
|
|
1612
|
+
* Id of the request
|
|
1613
|
+
*
|
|
1146
1614
|
* @example
|
|
1147
|
-
*
|
|
1615
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
1148
1616
|
*/
|
|
1149
1617
|
requestId?: string;
|
|
1150
1618
|
static names(): {
|
|
@@ -1157,12 +1625,12 @@ export declare class UnTagResourcesResponseBody extends $tea.Model {
|
|
|
1157
1625
|
[key: string]: any;
|
|
1158
1626
|
});
|
|
1159
1627
|
}
|
|
1160
|
-
export declare class
|
|
1628
|
+
export declare class UpdatePoolResponse extends $tea.Model {
|
|
1161
1629
|
headers?: {
|
|
1162
1630
|
[key: string]: string;
|
|
1163
1631
|
};
|
|
1164
1632
|
statusCode?: number;
|
|
1165
|
-
body?:
|
|
1633
|
+
body?: UpdatePoolResponseBody;
|
|
1166
1634
|
static names(): {
|
|
1167
1635
|
[key: string]: string;
|
|
1168
1636
|
};
|
|
@@ -1552,6 +2020,22 @@ export declare class CreateJobResponseBodyTasks extends $tea.Model {
|
|
|
1552
2020
|
[key: string]: any;
|
|
1553
2021
|
});
|
|
1554
2022
|
}
|
|
2023
|
+
export declare class CreatePoolRequestResourceLimits extends $tea.Model {
|
|
2024
|
+
/**
|
|
2025
|
+
* @example
|
|
2026
|
+
* 2000
|
|
2027
|
+
*/
|
|
2028
|
+
maxExectorNum?: number;
|
|
2029
|
+
static names(): {
|
|
2030
|
+
[key: string]: string;
|
|
2031
|
+
};
|
|
2032
|
+
static types(): {
|
|
2033
|
+
[key: string]: any;
|
|
2034
|
+
};
|
|
2035
|
+
constructor(map?: {
|
|
2036
|
+
[key: string]: any;
|
|
2037
|
+
});
|
|
2038
|
+
}
|
|
1555
2039
|
export declare class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
1556
2040
|
arrayIndex?: number[];
|
|
1557
2041
|
/**
|
|
@@ -1607,6 +2091,35 @@ export declare class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model
|
|
|
1607
2091
|
[key: string]: any;
|
|
1608
2092
|
});
|
|
1609
2093
|
}
|
|
2094
|
+
export declare class GetAppVersionsResponseBodyAppVersions extends $tea.Model {
|
|
2095
|
+
/**
|
|
2096
|
+
* @remarks
|
|
2097
|
+
* This parameter is required.
|
|
2098
|
+
*
|
|
2099
|
+
* @example
|
|
2100
|
+
* m-f8z0dfa96luomqly****
|
|
2101
|
+
*/
|
|
2102
|
+
imageId?: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* @example
|
|
2105
|
+
* V-Ray
|
|
2106
|
+
*/
|
|
2107
|
+
name?: string;
|
|
2108
|
+
/**
|
|
2109
|
+
* @example
|
|
2110
|
+
* v1.0
|
|
2111
|
+
*/
|
|
2112
|
+
version?: string;
|
|
2113
|
+
static names(): {
|
|
2114
|
+
[key: string]: string;
|
|
2115
|
+
};
|
|
2116
|
+
static types(): {
|
|
2117
|
+
[key: string]: any;
|
|
2118
|
+
};
|
|
2119
|
+
constructor(map?: {
|
|
2120
|
+
[key: string]: any;
|
|
2121
|
+
});
|
|
2122
|
+
}
|
|
1610
2123
|
export declare class GetImageResponseBodyImageContainerImageSpecRegistryCredential extends $tea.Model {
|
|
1611
2124
|
/**
|
|
1612
2125
|
* @example
|
|
@@ -1634,6 +2147,7 @@ export declare class GetImageResponseBodyImageContainerImageSpecRegistryCredenti
|
|
|
1634
2147
|
});
|
|
1635
2148
|
}
|
|
1636
2149
|
export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Model {
|
|
2150
|
+
architecture?: string;
|
|
1637
2151
|
/**
|
|
1638
2152
|
* @example
|
|
1639
2153
|
* True
|
|
@@ -1644,6 +2158,8 @@ export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Mo
|
|
|
1644
2158
|
* True
|
|
1645
2159
|
*/
|
|
1646
2160
|
isACRRegistry?: boolean;
|
|
2161
|
+
osTag?: string;
|
|
2162
|
+
platform?: string;
|
|
1647
2163
|
registryCredential?: GetImageResponseBodyImageContainerImageSpecRegistryCredential;
|
|
1648
2164
|
/**
|
|
1649
2165
|
* @example
|
|
@@ -1665,6 +2181,20 @@ export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Mo
|
|
|
1665
2181
|
[key: string]: any;
|
|
1666
2182
|
});
|
|
1667
2183
|
}
|
|
2184
|
+
export declare class GetImageResponseBodyImageDocumentInfo extends $tea.Model {
|
|
2185
|
+
document?: string;
|
|
2186
|
+
documentId?: string;
|
|
2187
|
+
encodingMode?: string;
|
|
2188
|
+
static names(): {
|
|
2189
|
+
[key: string]: string;
|
|
2190
|
+
};
|
|
2191
|
+
static types(): {
|
|
2192
|
+
[key: string]: any;
|
|
2193
|
+
};
|
|
2194
|
+
constructor(map?: {
|
|
2195
|
+
[key: string]: any;
|
|
2196
|
+
});
|
|
2197
|
+
}
|
|
1668
2198
|
export declare class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
1669
2199
|
/**
|
|
1670
2200
|
* @example
|
|
@@ -1705,6 +2235,7 @@ export declare class GetImageResponseBodyImage extends $tea.Model {
|
|
|
1705
2235
|
*/
|
|
1706
2236
|
createTime?: string;
|
|
1707
2237
|
description?: string;
|
|
2238
|
+
documentInfo?: GetImageResponseBodyImageDocumentInfo;
|
|
1708
2239
|
/**
|
|
1709
2240
|
* @remarks
|
|
1710
2241
|
* This parameter is required.
|
|
@@ -2035,6 +2566,62 @@ export declare class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
|
2035
2566
|
[key: string]: any;
|
|
2036
2567
|
});
|
|
2037
2568
|
}
|
|
2569
|
+
export declare class GetPoolResponseBodyPoolInfo extends $tea.Model {
|
|
2570
|
+
/**
|
|
2571
|
+
* @example
|
|
2572
|
+
* 2024-12-01 20:00:00
|
|
2573
|
+
*/
|
|
2574
|
+
createTime?: string;
|
|
2575
|
+
/**
|
|
2576
|
+
* @example
|
|
2577
|
+
* 1
|
|
2578
|
+
*/
|
|
2579
|
+
exectorUsage?: number;
|
|
2580
|
+
/**
|
|
2581
|
+
* @example
|
|
2582
|
+
* true
|
|
2583
|
+
*/
|
|
2584
|
+
isDefault?: boolean;
|
|
2585
|
+
/**
|
|
2586
|
+
* @example
|
|
2587
|
+
* 2000
|
|
2588
|
+
*/
|
|
2589
|
+
maxExectorNum?: number;
|
|
2590
|
+
/**
|
|
2591
|
+
* @example
|
|
2592
|
+
* PoolTest
|
|
2593
|
+
*/
|
|
2594
|
+
poolName?: string;
|
|
2595
|
+
/**
|
|
2596
|
+
* @example
|
|
2597
|
+
* 1
|
|
2598
|
+
*/
|
|
2599
|
+
priority?: number;
|
|
2600
|
+
/**
|
|
2601
|
+
* @example
|
|
2602
|
+
* Fails to *** pool: ***.
|
|
2603
|
+
*/
|
|
2604
|
+
reason?: string;
|
|
2605
|
+
/**
|
|
2606
|
+
* @example
|
|
2607
|
+
* Working
|
|
2608
|
+
*/
|
|
2609
|
+
status?: string;
|
|
2610
|
+
/**
|
|
2611
|
+
* @example
|
|
2612
|
+
* 2024-12-01 20:00:00
|
|
2613
|
+
*/
|
|
2614
|
+
updateTime?: string;
|
|
2615
|
+
static names(): {
|
|
2616
|
+
[key: string]: string;
|
|
2617
|
+
};
|
|
2618
|
+
static types(): {
|
|
2619
|
+
[key: string]: any;
|
|
2620
|
+
};
|
|
2621
|
+
constructor(map?: {
|
|
2622
|
+
[key: string]: any;
|
|
2623
|
+
});
|
|
2624
|
+
}
|
|
2038
2625
|
export declare class ListExecutorsRequestFilter extends $tea.Model {
|
|
2039
2626
|
executorIds?: string[];
|
|
2040
2627
|
ipAddresses?: string[];
|
|
@@ -2182,6 +2769,7 @@ export declare class ListImagesResponseBodyImages extends $tea.Model {
|
|
|
2182
2769
|
*/
|
|
2183
2770
|
createTime?: string;
|
|
2184
2771
|
description?: string;
|
|
2772
|
+
documentId?: number;
|
|
2185
2773
|
/**
|
|
2186
2774
|
* @remarks
|
|
2187
2775
|
* This parameter is required.
|
|
@@ -2204,11 +2792,13 @@ export declare class ListImagesResponseBodyImages extends $tea.Model {
|
|
|
2204
2792
|
*/
|
|
2205
2793
|
name?: string;
|
|
2206
2794
|
osTag?: string;
|
|
2795
|
+
updateTime?: string;
|
|
2207
2796
|
/**
|
|
2208
2797
|
* @example
|
|
2209
2798
|
* v1.0
|
|
2210
2799
|
*/
|
|
2211
2800
|
version?: string;
|
|
2801
|
+
weight?: number;
|
|
2212
2802
|
static names(): {
|
|
2213
2803
|
[key: string]: string;
|
|
2214
2804
|
};
|
|
@@ -2429,6 +3019,65 @@ export declare class ListJobsResponseBodyJobList extends $tea.Model {
|
|
|
2429
3019
|
[key: string]: any;
|
|
2430
3020
|
});
|
|
2431
3021
|
}
|
|
3022
|
+
export declare class ListPoolsRequestFilter extends $tea.Model {
|
|
3023
|
+
poolName?: string[];
|
|
3024
|
+
status?: string[];
|
|
3025
|
+
/**
|
|
3026
|
+
* @example
|
|
3027
|
+
* 1703819914
|
|
3028
|
+
*/
|
|
3029
|
+
timeCreatedAfter?: number;
|
|
3030
|
+
/**
|
|
3031
|
+
* @example
|
|
3032
|
+
* 1703820113
|
|
3033
|
+
*/
|
|
3034
|
+
timeCreatedBefore?: number;
|
|
3035
|
+
static names(): {
|
|
3036
|
+
[key: string]: string;
|
|
3037
|
+
};
|
|
3038
|
+
static types(): {
|
|
3039
|
+
[key: string]: any;
|
|
3040
|
+
};
|
|
3041
|
+
constructor(map?: {
|
|
3042
|
+
[key: string]: any;
|
|
3043
|
+
});
|
|
3044
|
+
}
|
|
3045
|
+
export declare class ListPoolsResponseBodyPoolList extends $tea.Model {
|
|
3046
|
+
/**
|
|
3047
|
+
* @example
|
|
3048
|
+
* true
|
|
3049
|
+
*/
|
|
3050
|
+
isDefault?: boolean;
|
|
3051
|
+
/**
|
|
3052
|
+
* @example
|
|
3053
|
+
* 2000
|
|
3054
|
+
*/
|
|
3055
|
+
maxExectorNum?: number;
|
|
3056
|
+
/**
|
|
3057
|
+
* @example
|
|
3058
|
+
* PoolTest
|
|
3059
|
+
*/
|
|
3060
|
+
poolName?: string;
|
|
3061
|
+
/**
|
|
3062
|
+
* @example
|
|
3063
|
+
* 1
|
|
3064
|
+
*/
|
|
3065
|
+
priority?: number;
|
|
3066
|
+
/**
|
|
3067
|
+
* @example
|
|
3068
|
+
* Working
|
|
3069
|
+
*/
|
|
3070
|
+
status?: string;
|
|
3071
|
+
static names(): {
|
|
3072
|
+
[key: string]: string;
|
|
3073
|
+
};
|
|
3074
|
+
static types(): {
|
|
3075
|
+
[key: string]: any;
|
|
3076
|
+
};
|
|
3077
|
+
constructor(map?: {
|
|
3078
|
+
[key: string]: any;
|
|
3079
|
+
});
|
|
3080
|
+
}
|
|
2432
3081
|
export declare class ListTagResourcesRequestTag extends $tea.Model {
|
|
2433
3082
|
/**
|
|
2434
3083
|
* @example
|
|
@@ -2517,6 +3166,22 @@ export declare class TagResourcesRequestTag extends $tea.Model {
|
|
|
2517
3166
|
[key: string]: any;
|
|
2518
3167
|
});
|
|
2519
3168
|
}
|
|
3169
|
+
export declare class UpdatePoolRequestResourceLimits extends $tea.Model {
|
|
3170
|
+
/**
|
|
3171
|
+
* @example
|
|
3172
|
+
* 2000
|
|
3173
|
+
*/
|
|
3174
|
+
maxExectorNum?: number;
|
|
3175
|
+
static names(): {
|
|
3176
|
+
[key: string]: string;
|
|
3177
|
+
};
|
|
3178
|
+
static types(): {
|
|
3179
|
+
[key: string]: any;
|
|
3180
|
+
};
|
|
3181
|
+
constructor(map?: {
|
|
3182
|
+
[key: string]: any;
|
|
3183
|
+
});
|
|
3184
|
+
}
|
|
2520
3185
|
export default class Client extends OpenApi {
|
|
2521
3186
|
constructor(config: $OpenApi.Config);
|
|
2522
3187
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
@@ -2552,6 +3217,21 @@ export default class Client extends OpenApi {
|
|
|
2552
3217
|
* @returns CreateJobResponse
|
|
2553
3218
|
*/
|
|
2554
3219
|
createJob(request: CreateJobRequest): Promise<CreateJobResponse>;
|
|
3220
|
+
/**
|
|
3221
|
+
* 创建资源池
|
|
3222
|
+
*
|
|
3223
|
+
* @param tmpReq - CreatePoolRequest
|
|
3224
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3225
|
+
* @returns CreatePoolResponse
|
|
3226
|
+
*/
|
|
3227
|
+
createPoolWithOptions(tmpReq: CreatePoolRequest, runtime: $Util.RuntimeOptions): Promise<CreatePoolResponse>;
|
|
3228
|
+
/**
|
|
3229
|
+
* 创建资源池
|
|
3230
|
+
*
|
|
3231
|
+
* @param request - CreatePoolRequest
|
|
3232
|
+
* @returns CreatePoolResponse
|
|
3233
|
+
*/
|
|
3234
|
+
createPool(request: CreatePoolRequest): Promise<CreatePoolResponse>;
|
|
2555
3235
|
/**
|
|
2556
3236
|
* 删除作业
|
|
2557
3237
|
*
|
|
@@ -2567,6 +3247,21 @@ export default class Client extends OpenApi {
|
|
|
2567
3247
|
* @returns DeleteJobsResponse
|
|
2568
3248
|
*/
|
|
2569
3249
|
deleteJobs(request: DeleteJobsRequest): Promise<DeleteJobsResponse>;
|
|
3250
|
+
/**
|
|
3251
|
+
* 删除资源池
|
|
3252
|
+
*
|
|
3253
|
+
* @param request - DeletePoolRequest
|
|
3254
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3255
|
+
* @returns DeletePoolResponse
|
|
3256
|
+
*/
|
|
3257
|
+
deletePoolWithOptions(request: DeletePoolRequest, runtime: $Util.RuntimeOptions): Promise<DeletePoolResponse>;
|
|
3258
|
+
/**
|
|
3259
|
+
* 删除资源池
|
|
3260
|
+
*
|
|
3261
|
+
* @param request - DeletePoolRequest
|
|
3262
|
+
* @returns DeletePoolResponse
|
|
3263
|
+
*/
|
|
3264
|
+
deletePool(request: DeletePoolRequest): Promise<DeletePoolResponse>;
|
|
2570
3265
|
/**
|
|
2571
3266
|
* 查询作业性能数据
|
|
2572
3267
|
*
|
|
@@ -2597,6 +3292,21 @@ export default class Client extends OpenApi {
|
|
|
2597
3292
|
* @returns DescribeJobMetricLastResponse
|
|
2598
3293
|
*/
|
|
2599
3294
|
describeJobMetricLast(request: DescribeJobMetricLastRequest): Promise<DescribeJobMetricLastResponse>;
|
|
3295
|
+
/**
|
|
3296
|
+
* 查看应用版本列表
|
|
3297
|
+
*
|
|
3298
|
+
* @param request - GetAppVersionsRequest
|
|
3299
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3300
|
+
* @returns GetAppVersionsResponse
|
|
3301
|
+
*/
|
|
3302
|
+
getAppVersionsWithOptions(request: GetAppVersionsRequest, runtime: $Util.RuntimeOptions): Promise<GetAppVersionsResponse>;
|
|
3303
|
+
/**
|
|
3304
|
+
* 查看应用版本列表
|
|
3305
|
+
*
|
|
3306
|
+
* @param request - GetAppVersionsRequest
|
|
3307
|
+
* @returns GetAppVersionsResponse
|
|
3308
|
+
*/
|
|
3309
|
+
getAppVersions(request: GetAppVersionsRequest): Promise<GetAppVersionsResponse>;
|
|
2600
3310
|
/**
|
|
2601
3311
|
* 查询托管侧镜像详情。
|
|
2602
3312
|
*
|
|
@@ -2627,6 +3337,21 @@ export default class Client extends OpenApi {
|
|
|
2627
3337
|
* @returns GetJobResponse
|
|
2628
3338
|
*/
|
|
2629
3339
|
getJob(request: GetJobRequest): Promise<GetJobResponse>;
|
|
3340
|
+
/**
|
|
3341
|
+
* 查询队列详细信息
|
|
3342
|
+
*
|
|
3343
|
+
* @param request - GetPoolRequest
|
|
3344
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3345
|
+
* @returns GetPoolResponse
|
|
3346
|
+
*/
|
|
3347
|
+
getPoolWithOptions(request: GetPoolRequest, runtime: $Util.RuntimeOptions): Promise<GetPoolResponse>;
|
|
3348
|
+
/**
|
|
3349
|
+
* 查询队列详细信息
|
|
3350
|
+
*
|
|
3351
|
+
* @param request - GetPoolRequest
|
|
3352
|
+
* @returns GetPoolResponse
|
|
3353
|
+
*/
|
|
3354
|
+
getPool(request: GetPoolRequest): Promise<GetPoolResponse>;
|
|
2630
3355
|
/**
|
|
2631
3356
|
* 查询全局Executor信息
|
|
2632
3357
|
*
|
|
@@ -2687,6 +3412,21 @@ export default class Client extends OpenApi {
|
|
|
2687
3412
|
* @returns ListJobsResponse
|
|
2688
3413
|
*/
|
|
2689
3414
|
listJobs(request: ListJobsRequest): Promise<ListJobsResponse>;
|
|
3415
|
+
/**
|
|
3416
|
+
* 查询资源池列表
|
|
3417
|
+
*
|
|
3418
|
+
* @param tmpReq - ListPoolsRequest
|
|
3419
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3420
|
+
* @returns ListPoolsResponse
|
|
3421
|
+
*/
|
|
3422
|
+
listPoolsWithOptions(tmpReq: ListPoolsRequest, runtime: $Util.RuntimeOptions): Promise<ListPoolsResponse>;
|
|
3423
|
+
/**
|
|
3424
|
+
* 查询资源池列表
|
|
3425
|
+
*
|
|
3426
|
+
* @param request - ListPoolsRequest
|
|
3427
|
+
* @returns ListPoolsResponse
|
|
3428
|
+
*/
|
|
3429
|
+
listPools(request: ListPoolsRequest): Promise<ListPoolsResponse>;
|
|
2690
3430
|
/**
|
|
2691
3431
|
* 查询一个或多个资源已经绑定的标签列表
|
|
2692
3432
|
*
|
|
@@ -2747,4 +3487,19 @@ export default class Client extends OpenApi {
|
|
|
2747
3487
|
* @returns UnTagResourcesResponse
|
|
2748
3488
|
*/
|
|
2749
3489
|
unTagResources(request: UnTagResourcesRequest): Promise<UnTagResourcesResponse>;
|
|
3490
|
+
/**
|
|
3491
|
+
* 更新资源池
|
|
3492
|
+
*
|
|
3493
|
+
* @param tmpReq - UpdatePoolRequest
|
|
3494
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3495
|
+
* @returns UpdatePoolResponse
|
|
3496
|
+
*/
|
|
3497
|
+
updatePoolWithOptions(tmpReq: UpdatePoolRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePoolResponse>;
|
|
3498
|
+
/**
|
|
3499
|
+
* 更新资源池
|
|
3500
|
+
*
|
|
3501
|
+
* @param request - UpdatePoolRequest
|
|
3502
|
+
* @returns UpdatePoolResponse
|
|
3503
|
+
*/
|
|
3504
|
+
updatePool(request: UpdatePoolRequest): Promise<UpdatePoolResponse>;
|
|
2750
3505
|
}
|