@alicloud/ehpcinstant20230701 1.0.1 → 1.0.3
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 +899 -85
- package/dist/client.js +127 -85
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +971 -109
package/dist/client.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
2
|
*/
|
|
4
3
|
import * as $Util from '@alicloud/tea-util';
|
|
5
4
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
@@ -7,7 +6,18 @@ import * as $tea from '@alicloud/tea-typescript';
|
|
|
7
6
|
export declare class AddImageRequest extends $tea.Model {
|
|
8
7
|
containerImageSpec?: AddImageRequestContainerImageSpec;
|
|
9
8
|
description?: string;
|
|
9
|
+
/**
|
|
10
|
+
* @example
|
|
11
|
+
* V1.0
|
|
12
|
+
*/
|
|
10
13
|
imageVersion?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* This parameter is required.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* app-image
|
|
20
|
+
*/
|
|
11
21
|
name?: string;
|
|
12
22
|
VMImageSpec?: AddImageRequestVMImageSpec;
|
|
13
23
|
static names(): {
|
|
@@ -23,7 +33,18 @@ export declare class AddImageRequest extends $tea.Model {
|
|
|
23
33
|
export declare class AddImageShrinkRequest extends $tea.Model {
|
|
24
34
|
containerImageSpecShrink?: string;
|
|
25
35
|
description?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* V1.0
|
|
39
|
+
*/
|
|
26
40
|
imageVersion?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @remarks
|
|
43
|
+
* This parameter is required.
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* app-image
|
|
47
|
+
*/
|
|
27
48
|
name?: string;
|
|
28
49
|
VMImageSpecShrink?: string;
|
|
29
50
|
static names(): {
|
|
@@ -37,8 +58,20 @@ export declare class AddImageShrinkRequest extends $tea.Model {
|
|
|
37
58
|
});
|
|
38
59
|
}
|
|
39
60
|
export declare class AddImageResponseBody extends $tea.Model {
|
|
61
|
+
/**
|
|
62
|
+
* @example
|
|
63
|
+
* m-bp1akkkr1rkxtb******
|
|
64
|
+
*/
|
|
40
65
|
imageId?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @example
|
|
68
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
69
|
+
*/
|
|
41
70
|
requestId?: string;
|
|
71
|
+
/**
|
|
72
|
+
* @example
|
|
73
|
+
* True
|
|
74
|
+
*/
|
|
42
75
|
success?: boolean;
|
|
43
76
|
static names(): {
|
|
44
77
|
[key: string]: string;
|
|
@@ -68,8 +101,24 @@ export declare class AddImageResponse extends $tea.Model {
|
|
|
68
101
|
}
|
|
69
102
|
export declare class CreateJobRequest extends $tea.Model {
|
|
70
103
|
deploymentPolicy?: CreateJobRequestDeploymentPolicy;
|
|
104
|
+
/**
|
|
105
|
+
* @example
|
|
106
|
+
* Demo
|
|
107
|
+
*/
|
|
71
108
|
jobDescription?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @remarks
|
|
111
|
+
* This parameter is required.
|
|
112
|
+
*
|
|
113
|
+
* @example
|
|
114
|
+
* testjob
|
|
115
|
+
*/
|
|
72
116
|
jobName?: string;
|
|
117
|
+
jobScheduler?: string;
|
|
118
|
+
/**
|
|
119
|
+
* @remarks
|
|
120
|
+
* This parameter is required.
|
|
121
|
+
*/
|
|
73
122
|
tasks?: CreateJobRequestTasks[];
|
|
74
123
|
static names(): {
|
|
75
124
|
[key: string]: string;
|
|
@@ -83,8 +132,24 @@ export declare class CreateJobRequest extends $tea.Model {
|
|
|
83
132
|
}
|
|
84
133
|
export declare class CreateJobShrinkRequest extends $tea.Model {
|
|
85
134
|
deploymentPolicyShrink?: string;
|
|
135
|
+
/**
|
|
136
|
+
* @example
|
|
137
|
+
* Demo
|
|
138
|
+
*/
|
|
86
139
|
jobDescription?: string;
|
|
140
|
+
/**
|
|
141
|
+
* @remarks
|
|
142
|
+
* This parameter is required.
|
|
143
|
+
*
|
|
144
|
+
* @example
|
|
145
|
+
* testjob
|
|
146
|
+
*/
|
|
87
147
|
jobName?: string;
|
|
148
|
+
jobScheduler?: string;
|
|
149
|
+
/**
|
|
150
|
+
* @remarks
|
|
151
|
+
* This parameter is required.
|
|
152
|
+
*/
|
|
88
153
|
tasksShrink?: string;
|
|
89
154
|
static names(): {
|
|
90
155
|
[key: string]: string;
|
|
@@ -97,7 +162,15 @@ export declare class CreateJobShrinkRequest extends $tea.Model {
|
|
|
97
162
|
});
|
|
98
163
|
}
|
|
99
164
|
export declare class CreateJobResponseBody extends $tea.Model {
|
|
165
|
+
/**
|
|
166
|
+
* @example
|
|
167
|
+
* job-xxxx
|
|
168
|
+
*/
|
|
100
169
|
jobId?: string;
|
|
170
|
+
/**
|
|
171
|
+
* @example
|
|
172
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
173
|
+
*/
|
|
101
174
|
requestId?: string;
|
|
102
175
|
tasks?: CreateJobResponseBodyTasks[];
|
|
103
176
|
static names(): {
|
|
@@ -153,6 +226,10 @@ export declare class DeleteJobsShrinkRequest extends $tea.Model {
|
|
|
153
226
|
});
|
|
154
227
|
}
|
|
155
228
|
export declare class DeleteJobsResponseBody extends $tea.Model {
|
|
229
|
+
/**
|
|
230
|
+
* @example
|
|
231
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
232
|
+
*/
|
|
156
233
|
requestId?: string;
|
|
157
234
|
static names(): {
|
|
158
235
|
[key: string]: string;
|
|
@@ -182,8 +259,20 @@ export declare class DeleteJobsResponse extends $tea.Model {
|
|
|
182
259
|
}
|
|
183
260
|
export declare class DescribeJobMetricDataRequest extends $tea.Model {
|
|
184
261
|
arrayIndex?: number[];
|
|
262
|
+
/**
|
|
263
|
+
* @example
|
|
264
|
+
* job-xxxxx
|
|
265
|
+
*/
|
|
185
266
|
jobId?: string;
|
|
267
|
+
/**
|
|
268
|
+
* @example
|
|
269
|
+
* cpu_utilization
|
|
270
|
+
*/
|
|
186
271
|
metricName?: string;
|
|
272
|
+
/**
|
|
273
|
+
* @example
|
|
274
|
+
* Task0
|
|
275
|
+
*/
|
|
187
276
|
taskName?: string;
|
|
188
277
|
static names(): {
|
|
189
278
|
[key: string]: string;
|
|
@@ -197,8 +286,20 @@ export declare class DescribeJobMetricDataRequest extends $tea.Model {
|
|
|
197
286
|
}
|
|
198
287
|
export declare class DescribeJobMetricDataShrinkRequest extends $tea.Model {
|
|
199
288
|
arrayIndexShrink?: string;
|
|
289
|
+
/**
|
|
290
|
+
* @example
|
|
291
|
+
* job-xxxxx
|
|
292
|
+
*/
|
|
200
293
|
jobId?: string;
|
|
294
|
+
/**
|
|
295
|
+
* @example
|
|
296
|
+
* cpu_utilization
|
|
297
|
+
*/
|
|
201
298
|
metricName?: string;
|
|
299
|
+
/**
|
|
300
|
+
* @example
|
|
301
|
+
* Task0
|
|
302
|
+
*/
|
|
202
303
|
taskName?: string;
|
|
203
304
|
static names(): {
|
|
204
305
|
[key: string]: string;
|
|
@@ -211,8 +312,20 @@ export declare class DescribeJobMetricDataShrinkRequest extends $tea.Model {
|
|
|
211
312
|
});
|
|
212
313
|
}
|
|
213
314
|
export declare class DescribeJobMetricDataResponseBody extends $tea.Model {
|
|
315
|
+
/**
|
|
316
|
+
* @example
|
|
317
|
+
* [{"timestamp":1709540685000,"Minimum":28.45,"Maximum":28.45,"Average":28.45}]
|
|
318
|
+
*/
|
|
214
319
|
dataPoints?: string;
|
|
320
|
+
/**
|
|
321
|
+
* @example
|
|
322
|
+
* 15
|
|
323
|
+
*/
|
|
215
324
|
period?: number;
|
|
325
|
+
/**
|
|
326
|
+
* @example
|
|
327
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
328
|
+
*/
|
|
216
329
|
requestId?: string;
|
|
217
330
|
static names(): {
|
|
218
331
|
[key: string]: string;
|
|
@@ -242,7 +355,15 @@ export declare class DescribeJobMetricDataResponse extends $tea.Model {
|
|
|
242
355
|
}
|
|
243
356
|
export declare class DescribeJobMetricLastRequest extends $tea.Model {
|
|
244
357
|
arrayIndex?: number[];
|
|
358
|
+
/**
|
|
359
|
+
* @example
|
|
360
|
+
* job-xxxxx
|
|
361
|
+
*/
|
|
245
362
|
jobId?: string;
|
|
363
|
+
/**
|
|
364
|
+
* @example
|
|
365
|
+
* Task0
|
|
366
|
+
*/
|
|
246
367
|
taskName?: string;
|
|
247
368
|
static names(): {
|
|
248
369
|
[key: string]: string;
|
|
@@ -256,7 +377,15 @@ export declare class DescribeJobMetricLastRequest extends $tea.Model {
|
|
|
256
377
|
}
|
|
257
378
|
export declare class DescribeJobMetricLastShrinkRequest extends $tea.Model {
|
|
258
379
|
arrayIndexShrink?: string;
|
|
380
|
+
/**
|
|
381
|
+
* @example
|
|
382
|
+
* job-xxxxx
|
|
383
|
+
*/
|
|
259
384
|
jobId?: string;
|
|
385
|
+
/**
|
|
386
|
+
* @example
|
|
387
|
+
* Task0
|
|
388
|
+
*/
|
|
260
389
|
taskName?: string;
|
|
261
390
|
static names(): {
|
|
262
391
|
[key: string]: string;
|
|
@@ -270,6 +399,10 @@ export declare class DescribeJobMetricLastShrinkRequest extends $tea.Model {
|
|
|
270
399
|
}
|
|
271
400
|
export declare class DescribeJobMetricLastResponseBody extends $tea.Model {
|
|
272
401
|
metrics?: DescribeJobMetricLastResponseBodyMetrics[];
|
|
402
|
+
/**
|
|
403
|
+
* @example
|
|
404
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
405
|
+
*/
|
|
273
406
|
requestId?: string;
|
|
274
407
|
static names(): {
|
|
275
408
|
[key: string]: string;
|
|
@@ -298,7 +431,16 @@ export declare class DescribeJobMetricLastResponse extends $tea.Model {
|
|
|
298
431
|
});
|
|
299
432
|
}
|
|
300
433
|
export declare class GetImageRequest extends $tea.Model {
|
|
434
|
+
imageCategory?: string;
|
|
435
|
+
/**
|
|
436
|
+
* @remarks
|
|
437
|
+
* This parameter is required.
|
|
438
|
+
*
|
|
439
|
+
* @example
|
|
440
|
+
* m-2ze74g5mvy4pjg*****
|
|
441
|
+
*/
|
|
301
442
|
imageId?: string;
|
|
443
|
+
imageType?: string;
|
|
302
444
|
static names(): {
|
|
303
445
|
[key: string]: string;
|
|
304
446
|
};
|
|
@@ -311,8 +453,20 @@ export declare class GetImageRequest extends $tea.Model {
|
|
|
311
453
|
}
|
|
312
454
|
export declare class GetImageResponseBody extends $tea.Model {
|
|
313
455
|
image?: GetImageResponseBodyImage;
|
|
456
|
+
/**
|
|
457
|
+
* @example
|
|
458
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
459
|
+
*/
|
|
314
460
|
requestId?: string;
|
|
461
|
+
/**
|
|
462
|
+
* @example
|
|
463
|
+
* true
|
|
464
|
+
*/
|
|
315
465
|
success?: boolean;
|
|
466
|
+
/**
|
|
467
|
+
* @example
|
|
468
|
+
* 10
|
|
469
|
+
*/
|
|
316
470
|
totalCount?: number;
|
|
317
471
|
static names(): {
|
|
318
472
|
[key: string]: string;
|
|
@@ -341,6 +495,10 @@ export declare class GetImageResponse extends $tea.Model {
|
|
|
341
495
|
});
|
|
342
496
|
}
|
|
343
497
|
export declare class GetJobRequest extends $tea.Model {
|
|
498
|
+
/**
|
|
499
|
+
* @example
|
|
500
|
+
* job-xxxx
|
|
501
|
+
*/
|
|
344
502
|
jobId?: string;
|
|
345
503
|
static names(): {
|
|
346
504
|
[key: string]: string;
|
|
@@ -354,6 +512,10 @@ export declare class GetJobRequest extends $tea.Model {
|
|
|
354
512
|
}
|
|
355
513
|
export declare class GetJobResponseBody extends $tea.Model {
|
|
356
514
|
jobInfo?: GetJobResponseBodyJobInfo;
|
|
515
|
+
/**
|
|
516
|
+
* @example
|
|
517
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
518
|
+
*/
|
|
357
519
|
requestId?: string;
|
|
358
520
|
static names(): {
|
|
359
521
|
[key: string]: string;
|
|
@@ -383,7 +545,15 @@ export declare class GetJobResponse extends $tea.Model {
|
|
|
383
545
|
}
|
|
384
546
|
export declare class ListExecutorsRequest extends $tea.Model {
|
|
385
547
|
filter?: ListExecutorsRequestFilter;
|
|
548
|
+
/**
|
|
549
|
+
* @example
|
|
550
|
+
* 1
|
|
551
|
+
*/
|
|
386
552
|
pageNumber?: string;
|
|
553
|
+
/**
|
|
554
|
+
* @example
|
|
555
|
+
* 50
|
|
556
|
+
*/
|
|
387
557
|
pageSize?: string;
|
|
388
558
|
static names(): {
|
|
389
559
|
[key: string]: string;
|
|
@@ -397,7 +567,15 @@ export declare class ListExecutorsRequest extends $tea.Model {
|
|
|
397
567
|
}
|
|
398
568
|
export declare class ListExecutorsShrinkRequest extends $tea.Model {
|
|
399
569
|
filterShrink?: string;
|
|
570
|
+
/**
|
|
571
|
+
* @example
|
|
572
|
+
* 1
|
|
573
|
+
*/
|
|
400
574
|
pageNumber?: string;
|
|
575
|
+
/**
|
|
576
|
+
* @example
|
|
577
|
+
* 50
|
|
578
|
+
*/
|
|
401
579
|
pageSize?: string;
|
|
402
580
|
static names(): {
|
|
403
581
|
[key: string]: string;
|
|
@@ -411,9 +589,25 @@ export declare class ListExecutorsShrinkRequest extends $tea.Model {
|
|
|
411
589
|
}
|
|
412
590
|
export declare class ListExecutorsResponseBody extends $tea.Model {
|
|
413
591
|
executors?: ListExecutorsResponseBodyExecutors[];
|
|
592
|
+
/**
|
|
593
|
+
* @example
|
|
594
|
+
* 1
|
|
595
|
+
*/
|
|
414
596
|
pageNumber?: string;
|
|
597
|
+
/**
|
|
598
|
+
* @example
|
|
599
|
+
* 50
|
|
600
|
+
*/
|
|
415
601
|
pageSize?: string;
|
|
602
|
+
/**
|
|
603
|
+
* @example
|
|
604
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
605
|
+
*/
|
|
416
606
|
requestId?: string;
|
|
607
|
+
/**
|
|
608
|
+
* @example
|
|
609
|
+
* 40
|
|
610
|
+
*/
|
|
417
611
|
totalCount?: string;
|
|
418
612
|
static names(): {
|
|
419
613
|
[key: string]: string;
|
|
@@ -442,9 +636,19 @@ export declare class ListExecutorsResponse extends $tea.Model {
|
|
|
442
636
|
});
|
|
443
637
|
}
|
|
444
638
|
export declare class ListImagesRequest extends $tea.Model {
|
|
639
|
+
imageCategory?: string;
|
|
445
640
|
imageIds?: string[];
|
|
446
641
|
imageNames?: string[];
|
|
642
|
+
imageType?: string;
|
|
643
|
+
/**
|
|
644
|
+
* @example
|
|
645
|
+
* 1
|
|
646
|
+
*/
|
|
447
647
|
pageNumber?: number;
|
|
648
|
+
/**
|
|
649
|
+
* @example
|
|
650
|
+
* 10
|
|
651
|
+
*/
|
|
448
652
|
pageSize?: number;
|
|
449
653
|
static names(): {
|
|
450
654
|
[key: string]: string;
|
|
@@ -457,9 +661,19 @@ export declare class ListImagesRequest extends $tea.Model {
|
|
|
457
661
|
});
|
|
458
662
|
}
|
|
459
663
|
export declare class ListImagesShrinkRequest extends $tea.Model {
|
|
664
|
+
imageCategory?: string;
|
|
460
665
|
imageIdsShrink?: string;
|
|
461
666
|
imageNamesShrink?: string;
|
|
667
|
+
imageType?: string;
|
|
668
|
+
/**
|
|
669
|
+
* @example
|
|
670
|
+
* 1
|
|
671
|
+
*/
|
|
462
672
|
pageNumber?: number;
|
|
673
|
+
/**
|
|
674
|
+
* @example
|
|
675
|
+
* 10
|
|
676
|
+
*/
|
|
463
677
|
pageSize?: number;
|
|
464
678
|
static names(): {
|
|
465
679
|
[key: string]: string;
|
|
@@ -473,10 +687,30 @@ export declare class ListImagesShrinkRequest extends $tea.Model {
|
|
|
473
687
|
}
|
|
474
688
|
export declare class ListImagesResponseBody extends $tea.Model {
|
|
475
689
|
images?: ListImagesResponseBodyImages[];
|
|
690
|
+
/**
|
|
691
|
+
* @example
|
|
692
|
+
* 1
|
|
693
|
+
*/
|
|
476
694
|
pageNumber?: number;
|
|
695
|
+
/**
|
|
696
|
+
* @example
|
|
697
|
+
* 20
|
|
698
|
+
*/
|
|
477
699
|
pageSize?: number;
|
|
700
|
+
/**
|
|
701
|
+
* @example
|
|
702
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
703
|
+
*/
|
|
478
704
|
requestId?: string;
|
|
705
|
+
/**
|
|
706
|
+
* @example
|
|
707
|
+
* true
|
|
708
|
+
*/
|
|
479
709
|
success?: boolean;
|
|
710
|
+
/**
|
|
711
|
+
* @example
|
|
712
|
+
* 1
|
|
713
|
+
*/
|
|
480
714
|
totalCount?: number;
|
|
481
715
|
static names(): {
|
|
482
716
|
[key: string]: string;
|
|
@@ -505,9 +739,25 @@ export declare class ListImagesResponse extends $tea.Model {
|
|
|
505
739
|
});
|
|
506
740
|
}
|
|
507
741
|
export declare class ListJobExecutorsRequest extends $tea.Model {
|
|
742
|
+
/**
|
|
743
|
+
* @example
|
|
744
|
+
* job-xxx
|
|
745
|
+
*/
|
|
508
746
|
jobId?: string;
|
|
747
|
+
/**
|
|
748
|
+
* @example
|
|
749
|
+
* 1
|
|
750
|
+
*/
|
|
509
751
|
pageNumber?: string;
|
|
752
|
+
/**
|
|
753
|
+
* @example
|
|
754
|
+
* 10
|
|
755
|
+
*/
|
|
510
756
|
pageSize?: string;
|
|
757
|
+
/**
|
|
758
|
+
* @example
|
|
759
|
+
* task0
|
|
760
|
+
*/
|
|
511
761
|
taskName?: string;
|
|
512
762
|
static names(): {
|
|
513
763
|
[key: string]: string;
|
|
@@ -521,11 +771,35 @@ export declare class ListJobExecutorsRequest extends $tea.Model {
|
|
|
521
771
|
}
|
|
522
772
|
export declare class ListJobExecutorsResponseBody extends $tea.Model {
|
|
523
773
|
executors?: ListJobExecutorsResponseBodyExecutors[];
|
|
774
|
+
/**
|
|
775
|
+
* @example
|
|
776
|
+
* job-xxxx
|
|
777
|
+
*/
|
|
524
778
|
jobId?: string;
|
|
779
|
+
/**
|
|
780
|
+
* @example
|
|
781
|
+
* 1
|
|
782
|
+
*/
|
|
525
783
|
pageNumber?: string;
|
|
784
|
+
/**
|
|
785
|
+
* @example
|
|
786
|
+
* 10
|
|
787
|
+
*/
|
|
526
788
|
pageSize?: string;
|
|
789
|
+
/**
|
|
790
|
+
* @example
|
|
791
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
792
|
+
*/
|
|
527
793
|
requestId?: string;
|
|
794
|
+
/**
|
|
795
|
+
* @example
|
|
796
|
+
* task0
|
|
797
|
+
*/
|
|
528
798
|
taskName?: string;
|
|
799
|
+
/**
|
|
800
|
+
* @example
|
|
801
|
+
* 50
|
|
802
|
+
*/
|
|
529
803
|
totalCount?: string;
|
|
530
804
|
static names(): {
|
|
531
805
|
[key: string]: string;
|
|
@@ -555,7 +829,15 @@ export declare class ListJobExecutorsResponse extends $tea.Model {
|
|
|
555
829
|
}
|
|
556
830
|
export declare class ListJobsRequest extends $tea.Model {
|
|
557
831
|
filter?: ListJobsRequestFilter;
|
|
832
|
+
/**
|
|
833
|
+
* @example
|
|
834
|
+
* 1
|
|
835
|
+
*/
|
|
558
836
|
pageNumber?: string;
|
|
837
|
+
/**
|
|
838
|
+
* @example
|
|
839
|
+
* 50
|
|
840
|
+
*/
|
|
559
841
|
pageSize?: string;
|
|
560
842
|
sortBy?: ListJobsRequestSortBy;
|
|
561
843
|
static names(): {
|
|
@@ -570,7 +852,15 @@ export declare class ListJobsRequest extends $tea.Model {
|
|
|
570
852
|
}
|
|
571
853
|
export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
572
854
|
filterShrink?: string;
|
|
855
|
+
/**
|
|
856
|
+
* @example
|
|
857
|
+
* 1
|
|
858
|
+
*/
|
|
573
859
|
pageNumber?: string;
|
|
860
|
+
/**
|
|
861
|
+
* @example
|
|
862
|
+
* 50
|
|
863
|
+
*/
|
|
574
864
|
pageSize?: string;
|
|
575
865
|
sortByShrink?: string;
|
|
576
866
|
static names(): {
|
|
@@ -585,9 +875,25 @@ export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
|
585
875
|
}
|
|
586
876
|
export declare class ListJobsResponseBody extends $tea.Model {
|
|
587
877
|
jobList?: ListJobsResponseBodyJobList[];
|
|
878
|
+
/**
|
|
879
|
+
* @example
|
|
880
|
+
* 1
|
|
881
|
+
*/
|
|
588
882
|
pageNumber?: number;
|
|
883
|
+
/**
|
|
884
|
+
* @example
|
|
885
|
+
* 10
|
|
886
|
+
*/
|
|
589
887
|
pageSize?: number;
|
|
888
|
+
/**
|
|
889
|
+
* @example
|
|
890
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
891
|
+
*/
|
|
590
892
|
requestId?: string;
|
|
893
|
+
/**
|
|
894
|
+
* @example
|
|
895
|
+
* 1
|
|
896
|
+
*/
|
|
591
897
|
totalCount?: number;
|
|
592
898
|
static names(): {
|
|
593
899
|
[key: string]: string;
|
|
@@ -616,6 +922,13 @@ export declare class ListJobsResponse extends $tea.Model {
|
|
|
616
922
|
});
|
|
617
923
|
}
|
|
618
924
|
export declare class RemoveImageRequest extends $tea.Model {
|
|
925
|
+
/**
|
|
926
|
+
* @remarks
|
|
927
|
+
* This parameter is required.
|
|
928
|
+
*
|
|
929
|
+
* @example
|
|
930
|
+
* m-bp14wakr1rkxtb******
|
|
931
|
+
*/
|
|
619
932
|
imageId?: string;
|
|
620
933
|
static names(): {
|
|
621
934
|
[key: string]: string;
|
|
@@ -628,7 +941,15 @@ export declare class RemoveImageRequest extends $tea.Model {
|
|
|
628
941
|
});
|
|
629
942
|
}
|
|
630
943
|
export declare class RemoveImageResponseBody extends $tea.Model {
|
|
944
|
+
/**
|
|
945
|
+
* @example
|
|
946
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
947
|
+
*/
|
|
631
948
|
requestId?: string;
|
|
949
|
+
/**
|
|
950
|
+
* @example
|
|
951
|
+
* true
|
|
952
|
+
*/
|
|
632
953
|
success?: boolean;
|
|
633
954
|
static names(): {
|
|
634
955
|
[key: string]: string;
|
|
@@ -657,8 +978,20 @@ export declare class RemoveImageResponse extends $tea.Model {
|
|
|
657
978
|
});
|
|
658
979
|
}
|
|
659
980
|
export declare class AddImageRequestContainerImageSpecRegistryCredential extends $tea.Model {
|
|
981
|
+
/**
|
|
982
|
+
* @example
|
|
983
|
+
* userpassword
|
|
984
|
+
*/
|
|
660
985
|
password?: string;
|
|
986
|
+
/**
|
|
987
|
+
* @example
|
|
988
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
989
|
+
*/
|
|
661
990
|
server?: string;
|
|
991
|
+
/**
|
|
992
|
+
* @example
|
|
993
|
+
* username
|
|
994
|
+
*/
|
|
662
995
|
userName?: string;
|
|
663
996
|
static names(): {
|
|
664
997
|
[key: string]: string;
|
|
@@ -671,10 +1004,26 @@ export declare class AddImageRequestContainerImageSpecRegistryCredential extends
|
|
|
671
1004
|
});
|
|
672
1005
|
}
|
|
673
1006
|
export declare class AddImageRequestContainerImageSpec extends $tea.Model {
|
|
1007
|
+
/**
|
|
1008
|
+
* @example
|
|
1009
|
+
* True
|
|
1010
|
+
*/
|
|
674
1011
|
isACREnterprise?: boolean;
|
|
1012
|
+
/**
|
|
1013
|
+
* @example
|
|
1014
|
+
* True
|
|
1015
|
+
*/
|
|
675
1016
|
isACRRegistry?: boolean;
|
|
676
1017
|
registryCredential?: AddImageRequestContainerImageSpecRegistryCredential;
|
|
1018
|
+
/**
|
|
1019
|
+
* @example
|
|
1020
|
+
* cri-xyz795ygf8k9****
|
|
1021
|
+
*/
|
|
677
1022
|
registryCriId?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* @example
|
|
1025
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc_open/nginx:latest
|
|
1026
|
+
*/
|
|
678
1027
|
registryUrl?: string;
|
|
679
1028
|
static names(): {
|
|
680
1029
|
[key: string]: string;
|
|
@@ -687,6 +1036,10 @@ export declare class AddImageRequestContainerImageSpec extends $tea.Model {
|
|
|
687
1036
|
});
|
|
688
1037
|
}
|
|
689
1038
|
export declare class AddImageRequestVMImageSpec extends $tea.Model {
|
|
1039
|
+
/**
|
|
1040
|
+
* @example
|
|
1041
|
+
* m-bp1akkkr1rkxtb******
|
|
1042
|
+
*/
|
|
690
1043
|
imageId?: string;
|
|
691
1044
|
static names(): {
|
|
692
1045
|
[key: string]: string;
|
|
@@ -711,6 +1064,10 @@ export declare class CreateJobRequestDeploymentPolicyNetwork extends $tea.Model
|
|
|
711
1064
|
});
|
|
712
1065
|
}
|
|
713
1066
|
export declare class CreateJobRequestDeploymentPolicy extends $tea.Model {
|
|
1067
|
+
/**
|
|
1068
|
+
* @example
|
|
1069
|
+
* Dedicated
|
|
1070
|
+
*/
|
|
714
1071
|
allocationSpec?: string;
|
|
715
1072
|
network?: CreateJobRequestDeploymentPolicyNetwork;
|
|
716
1073
|
static names(): {
|
|
@@ -724,8 +1081,20 @@ export declare class CreateJobRequestDeploymentPolicy extends $tea.Model {
|
|
|
724
1081
|
});
|
|
725
1082
|
}
|
|
726
1083
|
export declare class CreateJobRequestTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
1084
|
+
/**
|
|
1085
|
+
* @example
|
|
1086
|
+
* 9
|
|
1087
|
+
*/
|
|
727
1088
|
indexEnd?: number;
|
|
1089
|
+
/**
|
|
1090
|
+
* @example
|
|
1091
|
+
* 0
|
|
1092
|
+
*/
|
|
728
1093
|
indexStart?: number;
|
|
1094
|
+
/**
|
|
1095
|
+
* @example
|
|
1096
|
+
* 1
|
|
1097
|
+
*/
|
|
729
1098
|
indexStep?: number;
|
|
730
1099
|
static names(): {
|
|
731
1100
|
[key: string]: string;
|
|
@@ -739,6 +1108,10 @@ export declare class CreateJobRequestTasksExecutorPolicyArraySpec extends $tea.M
|
|
|
739
1108
|
}
|
|
740
1109
|
export declare class CreateJobRequestTasksExecutorPolicy extends $tea.Model {
|
|
741
1110
|
arraySpec?: CreateJobRequestTasksExecutorPolicyArraySpec;
|
|
1111
|
+
/**
|
|
1112
|
+
* @example
|
|
1113
|
+
* 1
|
|
1114
|
+
*/
|
|
742
1115
|
maxCount?: number;
|
|
743
1116
|
static names(): {
|
|
744
1117
|
[key: string]: string;
|
|
@@ -751,7 +1124,15 @@ export declare class CreateJobRequestTasksExecutorPolicy extends $tea.Model {
|
|
|
751
1124
|
});
|
|
752
1125
|
}
|
|
753
1126
|
export declare class CreateJobRequestTasksTaskSpecResourceDisks extends $tea.Model {
|
|
1127
|
+
/**
|
|
1128
|
+
* @example
|
|
1129
|
+
* 40
|
|
1130
|
+
*/
|
|
754
1131
|
size?: number;
|
|
1132
|
+
/**
|
|
1133
|
+
* @example
|
|
1134
|
+
* System
|
|
1135
|
+
*/
|
|
755
1136
|
type?: string;
|
|
756
1137
|
static names(): {
|
|
757
1138
|
[key: string]: string;
|
|
@@ -764,8 +1145,16 @@ export declare class CreateJobRequestTasksTaskSpecResourceDisks extends $tea.Mod
|
|
|
764
1145
|
});
|
|
765
1146
|
}
|
|
766
1147
|
export declare class CreateJobRequestTasksTaskSpecResource extends $tea.Model {
|
|
1148
|
+
/**
|
|
1149
|
+
* @example
|
|
1150
|
+
* 2
|
|
1151
|
+
*/
|
|
767
1152
|
cores?: number;
|
|
768
1153
|
disks?: CreateJobRequestTasksTaskSpecResourceDisks[];
|
|
1154
|
+
/**
|
|
1155
|
+
* @example
|
|
1156
|
+
* 4
|
|
1157
|
+
*/
|
|
769
1158
|
memory?: number;
|
|
770
1159
|
static names(): {
|
|
771
1160
|
[key: string]: string;
|
|
@@ -778,7 +1167,15 @@ export declare class CreateJobRequestTasksTaskSpecResource extends $tea.Model {
|
|
|
778
1167
|
});
|
|
779
1168
|
}
|
|
780
1169
|
export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars extends $tea.Model {
|
|
1170
|
+
/**
|
|
1171
|
+
* @example
|
|
1172
|
+
* PATH
|
|
1173
|
+
*/
|
|
781
1174
|
name?: string;
|
|
1175
|
+
/**
|
|
1176
|
+
* @example
|
|
1177
|
+
* /usr/local/bin
|
|
1178
|
+
*/
|
|
782
1179
|
value?: string;
|
|
783
1180
|
static names(): {
|
|
784
1181
|
[key: string]: string;
|
|
@@ -791,9 +1188,21 @@ export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironme
|
|
|
791
1188
|
});
|
|
792
1189
|
}
|
|
793
1190
|
export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends $tea.Model {
|
|
1191
|
+
appId?: string;
|
|
794
1192
|
command?: string[];
|
|
795
1193
|
environmentVars?: CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars[];
|
|
1194
|
+
/**
|
|
1195
|
+
* @remarks
|
|
1196
|
+
* This parameter is required.
|
|
1197
|
+
*
|
|
1198
|
+
* @example
|
|
1199
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc/hpl:latest
|
|
1200
|
+
*/
|
|
796
1201
|
image?: string;
|
|
1202
|
+
/**
|
|
1203
|
+
* @example
|
|
1204
|
+
* /usr/local/
|
|
1205
|
+
*/
|
|
797
1206
|
workingDir?: string;
|
|
798
1207
|
static names(): {
|
|
799
1208
|
[key: string]: string;
|
|
@@ -806,8 +1215,24 @@ export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends
|
|
|
806
1215
|
});
|
|
807
1216
|
}
|
|
808
1217
|
export declare class CreateJobRequestTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
1218
|
+
appId?: string;
|
|
1219
|
+
/**
|
|
1220
|
+
* @remarks
|
|
1221
|
+
* This parameter is required.
|
|
1222
|
+
*
|
|
1223
|
+
* @example
|
|
1224
|
+
* m-xxxx
|
|
1225
|
+
*/
|
|
809
1226
|
image?: string;
|
|
1227
|
+
/**
|
|
1228
|
+
* @example
|
|
1229
|
+
* ZWNobyBoZWxsbyBlY3Mh
|
|
1230
|
+
*/
|
|
810
1231
|
prologScript?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* @example
|
|
1234
|
+
* ZWNobyBoZWxsbyBlY3Mh
|
|
1235
|
+
*/
|
|
811
1236
|
script?: string;
|
|
812
1237
|
static names(): {
|
|
813
1238
|
[key: string]: string;
|
|
@@ -833,8 +1258,20 @@ export declare class CreateJobRequestTasksTaskSpecTaskExecutor extends $tea.Mode
|
|
|
833
1258
|
});
|
|
834
1259
|
}
|
|
835
1260
|
export declare class CreateJobRequestTasksTaskSpecVolumeMount extends $tea.Model {
|
|
1261
|
+
/**
|
|
1262
|
+
* @example
|
|
1263
|
+
* {"server":"xxxxx-xxxxx.cn-heyuan.nas.aliyuncs.com","vers":"3","path":"/data","options":"nolock,tcp,noresvport"}
|
|
1264
|
+
*/
|
|
836
1265
|
mountOptions?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* @example
|
|
1268
|
+
* /mnt
|
|
1269
|
+
*/
|
|
837
1270
|
mountPath?: string;
|
|
1271
|
+
/**
|
|
1272
|
+
* @example
|
|
1273
|
+
* alicloud/nas
|
|
1274
|
+
*/
|
|
838
1275
|
volumeDriver?: string;
|
|
839
1276
|
static names(): {
|
|
840
1277
|
[key: string]: string;
|
|
@@ -848,6 +1285,10 @@ export declare class CreateJobRequestTasksTaskSpecVolumeMount extends $tea.Model
|
|
|
848
1285
|
}
|
|
849
1286
|
export declare class CreateJobRequestTasksTaskSpec extends $tea.Model {
|
|
850
1287
|
resource?: CreateJobRequestTasksTaskSpecResource;
|
|
1288
|
+
/**
|
|
1289
|
+
* @remarks
|
|
1290
|
+
* This parameter is required.
|
|
1291
|
+
*/
|
|
851
1292
|
taskExecutor?: CreateJobRequestTasksTaskSpecTaskExecutor[];
|
|
852
1293
|
volumeMount?: CreateJobRequestTasksTaskSpecVolumeMount[];
|
|
853
1294
|
static names(): {
|
|
@@ -862,8 +1303,16 @@ export declare class CreateJobRequestTasksTaskSpec extends $tea.Model {
|
|
|
862
1303
|
}
|
|
863
1304
|
export declare class CreateJobRequestTasks extends $tea.Model {
|
|
864
1305
|
executorPolicy?: CreateJobRequestTasksExecutorPolicy;
|
|
1306
|
+
/**
|
|
1307
|
+
* @example
|
|
1308
|
+
* task0
|
|
1309
|
+
*/
|
|
865
1310
|
taskName?: string;
|
|
866
1311
|
taskSpec?: CreateJobRequestTasksTaskSpec;
|
|
1312
|
+
/**
|
|
1313
|
+
* @example
|
|
1314
|
+
* true
|
|
1315
|
+
*/
|
|
867
1316
|
taskSustainable?: boolean;
|
|
868
1317
|
static names(): {
|
|
869
1318
|
[key: string]: string;
|
|
@@ -890,6 +1339,10 @@ export declare class CreateJobResponseBodyTasks extends $tea.Model {
|
|
|
890
1339
|
}
|
|
891
1340
|
export declare class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
892
1341
|
arrayIndex?: number[];
|
|
1342
|
+
/**
|
|
1343
|
+
* @example
|
|
1344
|
+
* task0
|
|
1345
|
+
*/
|
|
893
1346
|
taskName?: string;
|
|
894
1347
|
static names(): {
|
|
895
1348
|
[key: string]: string;
|
|
@@ -902,6 +1355,10 @@ export declare class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
|
902
1355
|
});
|
|
903
1356
|
}
|
|
904
1357
|
export declare class DeleteJobsRequestJobSpec extends $tea.Model {
|
|
1358
|
+
/**
|
|
1359
|
+
* @example
|
|
1360
|
+
* job-xxxx
|
|
1361
|
+
*/
|
|
905
1362
|
jobId?: string;
|
|
906
1363
|
taskSpec?: DeleteJobsRequestJobSpecTaskSpec[];
|
|
907
1364
|
static names(): {
|
|
@@ -915,7 +1372,15 @@ export declare class DeleteJobsRequestJobSpec extends $tea.Model {
|
|
|
915
1372
|
});
|
|
916
1373
|
}
|
|
917
1374
|
export declare class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model {
|
|
1375
|
+
/**
|
|
1376
|
+
* @example
|
|
1377
|
+
* 1
|
|
1378
|
+
*/
|
|
918
1379
|
arrayIndex?: number;
|
|
1380
|
+
/**
|
|
1381
|
+
* @example
|
|
1382
|
+
* {"memory_utilization": 37.42,"cpu_utilization": 1.008, "disk_utilization": 3.562}
|
|
1383
|
+
*/
|
|
919
1384
|
metric?: string;
|
|
920
1385
|
static names(): {
|
|
921
1386
|
[key: string]: string;
|
|
@@ -928,8 +1393,20 @@ export declare class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model
|
|
|
928
1393
|
});
|
|
929
1394
|
}
|
|
930
1395
|
export declare class GetImageResponseBodyImageContainerImageSpecRegistryCredential extends $tea.Model {
|
|
1396
|
+
/**
|
|
1397
|
+
* @example
|
|
1398
|
+
* userpassword
|
|
1399
|
+
*/
|
|
931
1400
|
password?: string;
|
|
1401
|
+
/**
|
|
1402
|
+
* @example
|
|
1403
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
1404
|
+
*/
|
|
932
1405
|
server?: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* @example
|
|
1408
|
+
* username
|
|
1409
|
+
*/
|
|
933
1410
|
userName?: string;
|
|
934
1411
|
static names(): {
|
|
935
1412
|
[key: string]: string;
|
|
@@ -942,10 +1419,26 @@ export declare class GetImageResponseBodyImageContainerImageSpecRegistryCredenti
|
|
|
942
1419
|
});
|
|
943
1420
|
}
|
|
944
1421
|
export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Model {
|
|
1422
|
+
/**
|
|
1423
|
+
* @example
|
|
1424
|
+
* True
|
|
1425
|
+
*/
|
|
945
1426
|
isACREnterprise?: boolean;
|
|
1427
|
+
/**
|
|
1428
|
+
* @example
|
|
1429
|
+
* True
|
|
1430
|
+
*/
|
|
946
1431
|
isACRRegistry?: boolean;
|
|
947
1432
|
registryCredential?: GetImageResponseBodyImageContainerImageSpecRegistryCredential;
|
|
1433
|
+
/**
|
|
1434
|
+
* @example
|
|
1435
|
+
* cri-xyz795ygf8k9****
|
|
1436
|
+
*/
|
|
948
1437
|
registryCriId?: string;
|
|
1438
|
+
/**
|
|
1439
|
+
* @example
|
|
1440
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc_open/nginx:latest
|
|
1441
|
+
*/
|
|
949
1442
|
registryUrl?: string;
|
|
950
1443
|
static names(): {
|
|
951
1444
|
[key: string]: string;
|
|
@@ -958,9 +1451,25 @@ export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Mo
|
|
|
958
1451
|
});
|
|
959
1452
|
}
|
|
960
1453
|
export declare class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
1454
|
+
/**
|
|
1455
|
+
* @example
|
|
1456
|
+
* x86_64
|
|
1457
|
+
*/
|
|
961
1458
|
architecture?: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* @example
|
|
1461
|
+
* m-uf60twafjtaart******
|
|
1462
|
+
*/
|
|
962
1463
|
imageId?: string;
|
|
1464
|
+
/**
|
|
1465
|
+
* @example
|
|
1466
|
+
* CentOS 7.6 64 bit
|
|
1467
|
+
*/
|
|
963
1468
|
osTag?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* @example
|
|
1471
|
+
* CentOS
|
|
1472
|
+
*/
|
|
964
1473
|
platform?: string;
|
|
965
1474
|
static names(): {
|
|
966
1475
|
[key: string]: string;
|
|
@@ -973,13 +1482,38 @@ export declare class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
|
973
1482
|
});
|
|
974
1483
|
}
|
|
975
1484
|
export declare class GetImageResponseBodyImage extends $tea.Model {
|
|
1485
|
+
appId?: string;
|
|
976
1486
|
containerImageSpec?: GetImageResponseBodyImageContainerImageSpec;
|
|
1487
|
+
/**
|
|
1488
|
+
* @example
|
|
1489
|
+
* 2022-12-23T09:51:39Z
|
|
1490
|
+
*/
|
|
977
1491
|
createTime?: string;
|
|
978
1492
|
description?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* @remarks
|
|
1495
|
+
* This parameter is required.
|
|
1496
|
+
*
|
|
1497
|
+
* @example
|
|
1498
|
+
* VM
|
|
1499
|
+
*/
|
|
979
1500
|
imageType?: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* @example
|
|
1503
|
+
* app-image
|
|
1504
|
+
*/
|
|
980
1505
|
name?: string;
|
|
1506
|
+
/**
|
|
1507
|
+
* @example
|
|
1508
|
+
* 40 GiB
|
|
1509
|
+
*/
|
|
981
1510
|
size?: string;
|
|
1511
|
+
status?: string;
|
|
982
1512
|
VMImageSpec?: GetImageResponseBodyImageVMImageSpec;
|
|
1513
|
+
/**
|
|
1514
|
+
* @example
|
|
1515
|
+
* v1.0
|
|
1516
|
+
*/
|
|
983
1517
|
version?: string;
|
|
984
1518
|
static names(): {
|
|
985
1519
|
[key: string]: string;
|
|
@@ -1004,6 +1538,10 @@ export declare class GetJobResponseBodyJobInfoDeploymentPolicyNetwork extends $t
|
|
|
1004
1538
|
});
|
|
1005
1539
|
}
|
|
1006
1540
|
export declare class GetJobResponseBodyJobInfoDeploymentPolicy extends $tea.Model {
|
|
1541
|
+
/**
|
|
1542
|
+
* @example
|
|
1543
|
+
* Dedicated
|
|
1544
|
+
*/
|
|
1007
1545
|
allocationSpec?: string;
|
|
1008
1546
|
network?: GetJobResponseBodyJobInfoDeploymentPolicyNetwork;
|
|
1009
1547
|
static names(): {
|
|
@@ -1017,8 +1555,20 @@ export declare class GetJobResponseBodyJobInfoDeploymentPolicy extends $tea.Mode
|
|
|
1017
1555
|
});
|
|
1018
1556
|
}
|
|
1019
1557
|
export declare class GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
1558
|
+
/**
|
|
1559
|
+
* @example
|
|
1560
|
+
* 9
|
|
1561
|
+
*/
|
|
1020
1562
|
indexEnd?: number;
|
|
1563
|
+
/**
|
|
1564
|
+
* @example
|
|
1565
|
+
* 0
|
|
1566
|
+
*/
|
|
1021
1567
|
indexStart?: number;
|
|
1568
|
+
/**
|
|
1569
|
+
* @example
|
|
1570
|
+
* 1
|
|
1571
|
+
*/
|
|
1022
1572
|
indexStep?: number;
|
|
1023
1573
|
static names(): {
|
|
1024
1574
|
[key: string]: string;
|
|
@@ -1032,6 +1582,10 @@ export declare class GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec exten
|
|
|
1032
1582
|
}
|
|
1033
1583
|
export declare class GetJobResponseBodyJobInfoTasksExecutorPolicy extends $tea.Model {
|
|
1034
1584
|
arraySpec?: GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec;
|
|
1585
|
+
/**
|
|
1586
|
+
* @example
|
|
1587
|
+
* 10
|
|
1588
|
+
*/
|
|
1035
1589
|
maxCount?: number;
|
|
1036
1590
|
static names(): {
|
|
1037
1591
|
[key: string]: string;
|
|
@@ -1044,11 +1598,35 @@ export declare class GetJobResponseBodyJobInfoTasksExecutorPolicy extends $tea.M
|
|
|
1044
1598
|
});
|
|
1045
1599
|
}
|
|
1046
1600
|
export declare class GetJobResponseBodyJobInfoTasksExecutorStatus extends $tea.Model {
|
|
1601
|
+
/**
|
|
1602
|
+
* @example
|
|
1603
|
+
* 0
|
|
1604
|
+
*/
|
|
1047
1605
|
arrayId?: number;
|
|
1606
|
+
/**
|
|
1607
|
+
* @example
|
|
1608
|
+
* 2024-02-04 13:54:10
|
|
1609
|
+
*/
|
|
1048
1610
|
createTime?: string;
|
|
1611
|
+
/**
|
|
1612
|
+
* @example
|
|
1613
|
+
* 2024-02-04 13:54:10
|
|
1614
|
+
*/
|
|
1049
1615
|
endTime?: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* @example
|
|
1618
|
+
* 2024-02-04 13:54:10
|
|
1619
|
+
*/
|
|
1050
1620
|
startTime?: string;
|
|
1621
|
+
/**
|
|
1622
|
+
* @example
|
|
1623
|
+
* Running
|
|
1624
|
+
*/
|
|
1051
1625
|
status?: string;
|
|
1626
|
+
/**
|
|
1627
|
+
* @example
|
|
1628
|
+
* Creating executor
|
|
1629
|
+
*/
|
|
1052
1630
|
statusReason?: string;
|
|
1053
1631
|
static names(): {
|
|
1054
1632
|
[key: string]: string;
|
|
@@ -1061,7 +1639,15 @@ export declare class GetJobResponseBodyJobInfoTasksExecutorStatus extends $tea.M
|
|
|
1061
1639
|
});
|
|
1062
1640
|
}
|
|
1063
1641
|
export declare class GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks extends $tea.Model {
|
|
1642
|
+
/**
|
|
1643
|
+
* @example
|
|
1644
|
+
* 100
|
|
1645
|
+
*/
|
|
1064
1646
|
size?: number;
|
|
1647
|
+
/**
|
|
1648
|
+
* @example
|
|
1649
|
+
* System
|
|
1650
|
+
*/
|
|
1065
1651
|
type?: string;
|
|
1066
1652
|
static names(): {
|
|
1067
1653
|
[key: string]: string;
|
|
@@ -1074,8 +1660,16 @@ export declare class GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks extends
|
|
|
1074
1660
|
});
|
|
1075
1661
|
}
|
|
1076
1662
|
export declare class GetJobResponseBodyJobInfoTasksTaskSpecResource extends $tea.Model {
|
|
1663
|
+
/**
|
|
1664
|
+
* @example
|
|
1665
|
+
* 1
|
|
1666
|
+
*/
|
|
1077
1667
|
cores?: number;
|
|
1078
1668
|
disks?: GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks[];
|
|
1669
|
+
/**
|
|
1670
|
+
* @example
|
|
1671
|
+
* 4
|
|
1672
|
+
*/
|
|
1079
1673
|
memory?: number;
|
|
1080
1674
|
static names(): {
|
|
1081
1675
|
[key: string]: string;
|
|
@@ -1088,8 +1682,20 @@ export declare class GetJobResponseBodyJobInfoTasksTaskSpecResource extends $tea
|
|
|
1088
1682
|
});
|
|
1089
1683
|
}
|
|
1090
1684
|
export declare class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
1685
|
+
/**
|
|
1686
|
+
* @example
|
|
1687
|
+
* m-xxxx
|
|
1688
|
+
*/
|
|
1091
1689
|
image?: string;
|
|
1690
|
+
/**
|
|
1691
|
+
* @example
|
|
1692
|
+
* ZWNobyAiMTIzNCIgPiBgZGF0ZSArJXNg
|
|
1693
|
+
*/
|
|
1092
1694
|
prologScript?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* @example
|
|
1697
|
+
* ZWNobyAiMTIzNCIgPiBgZGF0ZSArJXNg
|
|
1698
|
+
*/
|
|
1093
1699
|
script?: string;
|
|
1094
1700
|
static names(): {
|
|
1095
1701
|
[key: string]: string;
|
|
@@ -1129,8 +1735,16 @@ export declare class GetJobResponseBodyJobInfoTasksTaskSpec extends $tea.Model {
|
|
|
1129
1735
|
export declare class GetJobResponseBodyJobInfoTasks extends $tea.Model {
|
|
1130
1736
|
executorPolicy?: GetJobResponseBodyJobInfoTasksExecutorPolicy;
|
|
1131
1737
|
executorStatus?: GetJobResponseBodyJobInfoTasksExecutorStatus[];
|
|
1738
|
+
/**
|
|
1739
|
+
* @example
|
|
1740
|
+
* task0
|
|
1741
|
+
*/
|
|
1132
1742
|
taskName?: string;
|
|
1133
1743
|
taskSpec?: GetJobResponseBodyJobInfoTasksTaskSpec;
|
|
1744
|
+
/**
|
|
1745
|
+
* @example
|
|
1746
|
+
* true
|
|
1747
|
+
*/
|
|
1134
1748
|
taskSustainable?: boolean;
|
|
1135
1749
|
static names(): {
|
|
1136
1750
|
[key: string]: string;
|
|
@@ -1143,13 +1757,42 @@ export declare class GetJobResponseBodyJobInfoTasks extends $tea.Model {
|
|
|
1143
1757
|
});
|
|
1144
1758
|
}
|
|
1145
1759
|
export declare class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
1760
|
+
/**
|
|
1761
|
+
* @example
|
|
1762
|
+
* 2024-03-05 20:00:46
|
|
1763
|
+
*/
|
|
1146
1764
|
createTime?: string;
|
|
1147
1765
|
deploymentPolicy?: GetJobResponseBodyJobInfoDeploymentPolicy;
|
|
1766
|
+
/**
|
|
1767
|
+
* @example
|
|
1768
|
+
* 2024-03-05 20:01:48
|
|
1769
|
+
*/
|
|
1148
1770
|
endTime?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* @example
|
|
1773
|
+
* Demo
|
|
1774
|
+
*/
|
|
1149
1775
|
jobDescription?: string;
|
|
1776
|
+
/**
|
|
1777
|
+
* @example
|
|
1778
|
+
* job-xxxx
|
|
1779
|
+
*/
|
|
1150
1780
|
jobId?: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* @example
|
|
1783
|
+
* testJob
|
|
1784
|
+
*/
|
|
1151
1785
|
jobName?: string;
|
|
1786
|
+
jobScheduler?: string;
|
|
1787
|
+
/**
|
|
1788
|
+
* @example
|
|
1789
|
+
* 2024-03-05 20:00:48
|
|
1790
|
+
*/
|
|
1152
1791
|
startTime?: string;
|
|
1792
|
+
/**
|
|
1793
|
+
* @example
|
|
1794
|
+
* Succeed
|
|
1795
|
+
*/
|
|
1153
1796
|
status?: string;
|
|
1154
1797
|
tasks?: GetJobResponseBodyJobInfoTasks[];
|
|
1155
1798
|
static names(): {
|
|
@@ -1165,8 +1808,20 @@ export declare class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
|
1165
1808
|
export declare class ListExecutorsRequestFilter extends $tea.Model {
|
|
1166
1809
|
executorIds?: string[];
|
|
1167
1810
|
ipAddresses?: string[];
|
|
1811
|
+
/**
|
|
1812
|
+
* @example
|
|
1813
|
+
* testJob
|
|
1814
|
+
*/
|
|
1168
1815
|
jobName?: string;
|
|
1816
|
+
/**
|
|
1817
|
+
* @example
|
|
1818
|
+
* 1703819914
|
|
1819
|
+
*/
|
|
1169
1820
|
timeCreatedAfter?: number;
|
|
1821
|
+
/**
|
|
1822
|
+
* @example
|
|
1823
|
+
* 1703820113
|
|
1824
|
+
*/
|
|
1170
1825
|
timeCreatedBefore?: number;
|
|
1171
1826
|
static names(): {
|
|
1172
1827
|
[key: string]: string;
|
|
@@ -1179,16 +1834,52 @@ export declare class ListExecutorsRequestFilter extends $tea.Model {
|
|
|
1179
1834
|
});
|
|
1180
1835
|
}
|
|
1181
1836
|
export declare class ListExecutorsResponseBodyExecutors extends $tea.Model {
|
|
1837
|
+
/**
|
|
1838
|
+
* @example
|
|
1839
|
+
* 0
|
|
1840
|
+
*/
|
|
1182
1841
|
arrayIndex?: number;
|
|
1842
|
+
/**
|
|
1843
|
+
* @example
|
|
1844
|
+
* 2024-02-20 10:04:10
|
|
1845
|
+
*/
|
|
1183
1846
|
createTime?: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* @example
|
|
1849
|
+
* 2024-02-20 10:04:18
|
|
1850
|
+
*/
|
|
1184
1851
|
endTime?: string;
|
|
1852
|
+
/**
|
|
1853
|
+
* @example
|
|
1854
|
+
* job-xxxx-task0-1
|
|
1855
|
+
*/
|
|
1185
1856
|
executorId?: string;
|
|
1186
1857
|
hostName?: string[];
|
|
1187
1858
|
ipAddress?: string[];
|
|
1859
|
+
/**
|
|
1860
|
+
* @example
|
|
1861
|
+
* job-hy1nggvyukuvkr******
|
|
1862
|
+
*/
|
|
1188
1863
|
jobId?: string;
|
|
1864
|
+
/**
|
|
1865
|
+
* @example
|
|
1866
|
+
* testJob
|
|
1867
|
+
*/
|
|
1189
1868
|
jobName?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* @example
|
|
1871
|
+
* Running
|
|
1872
|
+
*/
|
|
1190
1873
|
status?: string;
|
|
1874
|
+
/**
|
|
1875
|
+
* @example
|
|
1876
|
+
* Succeeded to release executor resource
|
|
1877
|
+
*/
|
|
1191
1878
|
statusReason?: string;
|
|
1879
|
+
/**
|
|
1880
|
+
* @example
|
|
1881
|
+
* task0
|
|
1882
|
+
*/
|
|
1192
1883
|
taskName?: string;
|
|
1193
1884
|
static names(): {
|
|
1194
1885
|
[key: string]: string;
|
|
@@ -1201,11 +1892,42 @@ export declare class ListExecutorsResponseBodyExecutors extends $tea.Model {
|
|
|
1201
1892
|
});
|
|
1202
1893
|
}
|
|
1203
1894
|
export declare class ListImagesResponseBodyImages extends $tea.Model {
|
|
1895
|
+
/**
|
|
1896
|
+
* @remarks
|
|
1897
|
+
* This parameter is required.
|
|
1898
|
+
*/
|
|
1899
|
+
appId?: string;
|
|
1900
|
+
/**
|
|
1901
|
+
* @example
|
|
1902
|
+
* 2022-12-09T07:06:34Z
|
|
1903
|
+
*/
|
|
1204
1904
|
createTime?: string;
|
|
1205
1905
|
description?: string;
|
|
1906
|
+
/**
|
|
1907
|
+
* @remarks
|
|
1908
|
+
* This parameter is required.
|
|
1909
|
+
*
|
|
1910
|
+
* @example
|
|
1911
|
+
* m-bp181x855551ww5yq****
|
|
1912
|
+
*/
|
|
1206
1913
|
imageId?: string;
|
|
1914
|
+
/**
|
|
1915
|
+
* @remarks
|
|
1916
|
+
* This parameter is required.
|
|
1917
|
+
*
|
|
1918
|
+
* @example
|
|
1919
|
+
* VM
|
|
1920
|
+
*/
|
|
1207
1921
|
imageType?: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* @example
|
|
1924
|
+
* app-image
|
|
1925
|
+
*/
|
|
1208
1926
|
name?: string;
|
|
1927
|
+
/**
|
|
1928
|
+
* @example
|
|
1929
|
+
* v1.0
|
|
1930
|
+
*/
|
|
1209
1931
|
version?: string;
|
|
1210
1932
|
static names(): {
|
|
1211
1933
|
[key: string]: string;
|
|
@@ -1218,12 +1940,32 @@ export declare class ListImagesResponseBodyImages extends $tea.Model {
|
|
|
1218
1940
|
});
|
|
1219
1941
|
}
|
|
1220
1942
|
export declare class ListJobExecutorsResponseBodyExecutors extends $tea.Model {
|
|
1943
|
+
/**
|
|
1944
|
+
* @example
|
|
1945
|
+
* 0
|
|
1946
|
+
*/
|
|
1221
1947
|
arrayIndex?: number;
|
|
1948
|
+
/**
|
|
1949
|
+
* @example
|
|
1950
|
+
* 2024-02-20 10:04:10
|
|
1951
|
+
*/
|
|
1222
1952
|
createTime?: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* @example
|
|
1955
|
+
* 2024-02-20 10:04:18
|
|
1956
|
+
*/
|
|
1223
1957
|
endTime?: string;
|
|
1224
1958
|
hostName?: string[];
|
|
1225
1959
|
ipAddress?: string[];
|
|
1960
|
+
/**
|
|
1961
|
+
* @example
|
|
1962
|
+
* Running
|
|
1963
|
+
*/
|
|
1226
1964
|
status?: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* @example
|
|
1967
|
+
* Creating executor
|
|
1968
|
+
*/
|
|
1227
1969
|
statusReason?: string;
|
|
1228
1970
|
static names(): {
|
|
1229
1971
|
[key: string]: string;
|
|
@@ -1236,10 +1978,30 @@ export declare class ListJobExecutorsResponseBodyExecutors extends $tea.Model {
|
|
|
1236
1978
|
});
|
|
1237
1979
|
}
|
|
1238
1980
|
export declare class ListJobsRequestFilter extends $tea.Model {
|
|
1981
|
+
/**
|
|
1982
|
+
* @example
|
|
1983
|
+
* job-xxxx
|
|
1984
|
+
*/
|
|
1239
1985
|
jobId?: string;
|
|
1986
|
+
/**
|
|
1987
|
+
* @example
|
|
1988
|
+
* testJob
|
|
1989
|
+
*/
|
|
1240
1990
|
jobName?: string;
|
|
1991
|
+
/**
|
|
1992
|
+
* @example
|
|
1993
|
+
* Running
|
|
1994
|
+
*/
|
|
1241
1995
|
status?: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* @example
|
|
1998
|
+
* 1703819914
|
|
1999
|
+
*/
|
|
1242
2000
|
timeCreatedAfter?: number;
|
|
2001
|
+
/**
|
|
2002
|
+
* @example
|
|
2003
|
+
* 1703820113
|
|
2004
|
+
*/
|
|
1243
2005
|
timeCreatedBefore?: number;
|
|
1244
2006
|
static names(): {
|
|
1245
2007
|
[key: string]: string;
|
|
@@ -1252,7 +2014,15 @@ export declare class ListJobsRequestFilter extends $tea.Model {
|
|
|
1252
2014
|
});
|
|
1253
2015
|
}
|
|
1254
2016
|
export declare class ListJobsRequestSortBy extends $tea.Model {
|
|
2017
|
+
/**
|
|
2018
|
+
* @example
|
|
2019
|
+
* time_start
|
|
2020
|
+
*/
|
|
1255
2021
|
label?: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* @example
|
|
2024
|
+
* ASC
|
|
2025
|
+
*/
|
|
1256
2026
|
order?: string;
|
|
1257
2027
|
static names(): {
|
|
1258
2028
|
[key: string]: string;
|
|
@@ -1265,16 +2035,60 @@ export declare class ListJobsRequestSortBy extends $tea.Model {
|
|
|
1265
2035
|
});
|
|
1266
2036
|
}
|
|
1267
2037
|
export declare class ListJobsResponseBodyJobList extends $tea.Model {
|
|
2038
|
+
/**
|
|
2039
|
+
* @example
|
|
2040
|
+
* 2024-01-25 12:29:21
|
|
2041
|
+
*/
|
|
1268
2042
|
createTime?: string;
|
|
2043
|
+
/**
|
|
2044
|
+
* @example
|
|
2045
|
+
* 2024-01-25 12:35:23
|
|
2046
|
+
*/
|
|
1269
2047
|
endTime?: string;
|
|
2048
|
+
/**
|
|
2049
|
+
* @example
|
|
2050
|
+
* 1
|
|
2051
|
+
*/
|
|
1270
2052
|
executorCount?: number;
|
|
2053
|
+
/**
|
|
2054
|
+
* @example
|
|
2055
|
+
* Demo
|
|
2056
|
+
*/
|
|
1271
2057
|
jobDescription?: string;
|
|
2058
|
+
/**
|
|
2059
|
+
* @example
|
|
2060
|
+
* job-xxx
|
|
2061
|
+
*/
|
|
1272
2062
|
jobId?: string;
|
|
2063
|
+
/**
|
|
2064
|
+
* @example
|
|
2065
|
+
* testJob
|
|
2066
|
+
*/
|
|
1273
2067
|
jobName?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* @example
|
|
2070
|
+
* 129**********
|
|
2071
|
+
*/
|
|
1274
2072
|
ownerUid?: string;
|
|
2073
|
+
/**
|
|
2074
|
+
* @example
|
|
2075
|
+
* 2024-01-25 12:29:23
|
|
2076
|
+
*/
|
|
1275
2077
|
startTime?: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* @example
|
|
2080
|
+
* Running
|
|
2081
|
+
*/
|
|
1276
2082
|
status?: string;
|
|
2083
|
+
/**
|
|
2084
|
+
* @example
|
|
2085
|
+
* 1
|
|
2086
|
+
*/
|
|
1277
2087
|
taskCount?: number;
|
|
2088
|
+
/**
|
|
2089
|
+
* @example
|
|
2090
|
+
* true
|
|
2091
|
+
*/
|
|
1278
2092
|
taskSustainable?: boolean;
|
|
1279
2093
|
static names(): {
|
|
1280
2094
|
[key: string]: string;
|
|
@@ -1292,183 +2106,183 @@ export default class Client extends OpenApi {
|
|
|
1292
2106
|
[key: string]: string;
|
|
1293
2107
|
}, endpoint: string): string;
|
|
1294
2108
|
/**
|
|
1295
|
-
*
|
|
2109
|
+
* 添加托管侧用户自定义镜像
|
|
1296
2110
|
*
|
|
1297
|
-
* @param tmpReq AddImageRequest
|
|
1298
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1299
|
-
* @
|
|
2111
|
+
* @param tmpReq - AddImageRequest
|
|
2112
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2113
|
+
* @returns AddImageResponse
|
|
1300
2114
|
*/
|
|
1301
2115
|
addImageWithOptions(tmpReq: AddImageRequest, runtime: $Util.RuntimeOptions): Promise<AddImageResponse>;
|
|
1302
2116
|
/**
|
|
1303
|
-
*
|
|
2117
|
+
* 添加托管侧用户自定义镜像
|
|
1304
2118
|
*
|
|
1305
|
-
* @param request AddImageRequest
|
|
1306
|
-
* @
|
|
2119
|
+
* @param request - AddImageRequest
|
|
2120
|
+
* @returns AddImageResponse
|
|
1307
2121
|
*/
|
|
1308
2122
|
addImage(request: AddImageRequest): Promise<AddImageResponse>;
|
|
1309
2123
|
/**
|
|
1310
|
-
*
|
|
2124
|
+
* 提交任务
|
|
1311
2125
|
*
|
|
1312
|
-
* @param tmpReq CreateJobRequest
|
|
1313
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1314
|
-
* @
|
|
2126
|
+
* @param tmpReq - CreateJobRequest
|
|
2127
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2128
|
+
* @returns CreateJobResponse
|
|
1315
2129
|
*/
|
|
1316
2130
|
createJobWithOptions(tmpReq: CreateJobRequest, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse>;
|
|
1317
2131
|
/**
|
|
1318
|
-
*
|
|
2132
|
+
* 提交任务
|
|
1319
2133
|
*
|
|
1320
|
-
* @param request CreateJobRequest
|
|
1321
|
-
* @
|
|
2134
|
+
* @param request - CreateJobRequest
|
|
2135
|
+
* @returns CreateJobResponse
|
|
1322
2136
|
*/
|
|
1323
2137
|
createJob(request: CreateJobRequest): Promise<CreateJobResponse>;
|
|
1324
2138
|
/**
|
|
1325
|
-
*
|
|
2139
|
+
* 删除作业
|
|
1326
2140
|
*
|
|
1327
|
-
* @param tmpReq DeleteJobsRequest
|
|
1328
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1329
|
-
* @
|
|
2141
|
+
* @param tmpReq - DeleteJobsRequest
|
|
2142
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2143
|
+
* @returns DeleteJobsResponse
|
|
1330
2144
|
*/
|
|
1331
2145
|
deleteJobsWithOptions(tmpReq: DeleteJobsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteJobsResponse>;
|
|
1332
2146
|
/**
|
|
1333
|
-
*
|
|
2147
|
+
* 删除作业
|
|
1334
2148
|
*
|
|
1335
|
-
* @param request DeleteJobsRequest
|
|
1336
|
-
* @
|
|
2149
|
+
* @param request - DeleteJobsRequest
|
|
2150
|
+
* @returns DeleteJobsResponse
|
|
1337
2151
|
*/
|
|
1338
2152
|
deleteJobs(request: DeleteJobsRequest): Promise<DeleteJobsResponse>;
|
|
1339
2153
|
/**
|
|
1340
|
-
*
|
|
2154
|
+
* 查询作业性能数据
|
|
1341
2155
|
*
|
|
1342
|
-
* @param tmpReq DescribeJobMetricDataRequest
|
|
1343
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1344
|
-
* @
|
|
2156
|
+
* @param tmpReq - DescribeJobMetricDataRequest
|
|
2157
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2158
|
+
* @returns DescribeJobMetricDataResponse
|
|
1345
2159
|
*/
|
|
1346
2160
|
describeJobMetricDataWithOptions(tmpReq: DescribeJobMetricDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobMetricDataResponse>;
|
|
1347
2161
|
/**
|
|
1348
|
-
*
|
|
2162
|
+
* 查询作业性能数据
|
|
1349
2163
|
*
|
|
1350
|
-
* @param request DescribeJobMetricDataRequest
|
|
1351
|
-
* @
|
|
2164
|
+
* @param request - DescribeJobMetricDataRequest
|
|
2165
|
+
* @returns DescribeJobMetricDataResponse
|
|
1352
2166
|
*/
|
|
1353
2167
|
describeJobMetricData(request: DescribeJobMetricDataRequest): Promise<DescribeJobMetricDataResponse>;
|
|
1354
2168
|
/**
|
|
1355
|
-
*
|
|
2169
|
+
* 查询作业即时监控项
|
|
1356
2170
|
*
|
|
1357
|
-
* @param tmpReq DescribeJobMetricLastRequest
|
|
1358
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1359
|
-
* @
|
|
2171
|
+
* @param tmpReq - DescribeJobMetricLastRequest
|
|
2172
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2173
|
+
* @returns DescribeJobMetricLastResponse
|
|
1360
2174
|
*/
|
|
1361
2175
|
describeJobMetricLastWithOptions(tmpReq: DescribeJobMetricLastRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobMetricLastResponse>;
|
|
1362
2176
|
/**
|
|
1363
|
-
*
|
|
2177
|
+
* 查询作业即时监控项
|
|
1364
2178
|
*
|
|
1365
|
-
* @param request DescribeJobMetricLastRequest
|
|
1366
|
-
* @
|
|
2179
|
+
* @param request - DescribeJobMetricLastRequest
|
|
2180
|
+
* @returns DescribeJobMetricLastResponse
|
|
1367
2181
|
*/
|
|
1368
2182
|
describeJobMetricLast(request: DescribeJobMetricLastRequest): Promise<DescribeJobMetricLastResponse>;
|
|
1369
2183
|
/**
|
|
1370
|
-
*
|
|
2184
|
+
* 查询托管侧镜像详情。
|
|
1371
2185
|
*
|
|
1372
|
-
* @param request GetImageRequest
|
|
1373
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1374
|
-
* @
|
|
2186
|
+
* @param request - GetImageRequest
|
|
2187
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2188
|
+
* @returns GetImageResponse
|
|
1375
2189
|
*/
|
|
1376
2190
|
getImageWithOptions(request: GetImageRequest, runtime: $Util.RuntimeOptions): Promise<GetImageResponse>;
|
|
1377
2191
|
/**
|
|
1378
|
-
*
|
|
2192
|
+
* 查询托管侧镜像详情。
|
|
1379
2193
|
*
|
|
1380
|
-
* @param request GetImageRequest
|
|
1381
|
-
* @
|
|
2194
|
+
* @param request - GetImageRequest
|
|
2195
|
+
* @returns GetImageResponse
|
|
1382
2196
|
*/
|
|
1383
2197
|
getImage(request: GetImageRequest): Promise<GetImageResponse>;
|
|
1384
2198
|
/**
|
|
1385
|
-
*
|
|
2199
|
+
* 查询作业详情
|
|
1386
2200
|
*
|
|
1387
|
-
* @param request GetJobRequest
|
|
1388
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1389
|
-
* @
|
|
2201
|
+
* @param request - GetJobRequest
|
|
2202
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2203
|
+
* @returns GetJobResponse
|
|
1390
2204
|
*/
|
|
1391
2205
|
getJobWithOptions(request: GetJobRequest, runtime: $Util.RuntimeOptions): Promise<GetJobResponse>;
|
|
1392
2206
|
/**
|
|
1393
|
-
*
|
|
2207
|
+
* 查询作业详情
|
|
1394
2208
|
*
|
|
1395
|
-
* @param request GetJobRequest
|
|
1396
|
-
* @
|
|
2209
|
+
* @param request - GetJobRequest
|
|
2210
|
+
* @returns GetJobResponse
|
|
1397
2211
|
*/
|
|
1398
2212
|
getJob(request: GetJobRequest): Promise<GetJobResponse>;
|
|
1399
2213
|
/**
|
|
1400
|
-
*
|
|
2214
|
+
* 查询全局Executor信息
|
|
1401
2215
|
*
|
|
1402
|
-
* @param tmpReq ListExecutorsRequest
|
|
1403
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1404
|
-
* @
|
|
2216
|
+
* @param tmpReq - ListExecutorsRequest
|
|
2217
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2218
|
+
* @returns ListExecutorsResponse
|
|
1405
2219
|
*/
|
|
1406
2220
|
listExecutorsWithOptions(tmpReq: ListExecutorsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutorsResponse>;
|
|
1407
2221
|
/**
|
|
1408
|
-
*
|
|
2222
|
+
* 查询全局Executor信息
|
|
1409
2223
|
*
|
|
1410
|
-
* @param request ListExecutorsRequest
|
|
1411
|
-
* @
|
|
2224
|
+
* @param request - ListExecutorsRequest
|
|
2225
|
+
* @returns ListExecutorsResponse
|
|
1412
2226
|
*/
|
|
1413
2227
|
listExecutors(request: ListExecutorsRequest): Promise<ListExecutorsResponse>;
|
|
1414
2228
|
/**
|
|
1415
|
-
*
|
|
2229
|
+
* 查看托管侧镜像列表
|
|
1416
2230
|
*
|
|
1417
|
-
* @param tmpReq ListImagesRequest
|
|
1418
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1419
|
-
* @
|
|
2231
|
+
* @param tmpReq - ListImagesRequest
|
|
2232
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2233
|
+
* @returns ListImagesResponse
|
|
1420
2234
|
*/
|
|
1421
2235
|
listImagesWithOptions(tmpReq: ListImagesRequest, runtime: $Util.RuntimeOptions): Promise<ListImagesResponse>;
|
|
1422
2236
|
/**
|
|
1423
|
-
*
|
|
2237
|
+
* 查看托管侧镜像列表
|
|
1424
2238
|
*
|
|
1425
|
-
* @param request ListImagesRequest
|
|
1426
|
-
* @
|
|
2239
|
+
* @param request - ListImagesRequest
|
|
2240
|
+
* @returns ListImagesResponse
|
|
1427
2241
|
*/
|
|
1428
2242
|
listImages(request: ListImagesRequest): Promise<ListImagesResponse>;
|
|
1429
2243
|
/**
|
|
1430
|
-
*
|
|
2244
|
+
* 查询作业Executor信息
|
|
1431
2245
|
*
|
|
1432
|
-
* @param request ListJobExecutorsRequest
|
|
1433
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1434
|
-
* @
|
|
2246
|
+
* @param request - ListJobExecutorsRequest
|
|
2247
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2248
|
+
* @returns ListJobExecutorsResponse
|
|
1435
2249
|
*/
|
|
1436
2250
|
listJobExecutorsWithOptions(request: ListJobExecutorsRequest, runtime: $Util.RuntimeOptions): Promise<ListJobExecutorsResponse>;
|
|
1437
2251
|
/**
|
|
1438
|
-
*
|
|
2252
|
+
* 查询作业Executor信息
|
|
1439
2253
|
*
|
|
1440
|
-
* @param request ListJobExecutorsRequest
|
|
1441
|
-
* @
|
|
2254
|
+
* @param request - ListJobExecutorsRequest
|
|
2255
|
+
* @returns ListJobExecutorsResponse
|
|
1442
2256
|
*/
|
|
1443
2257
|
listJobExecutors(request: ListJobExecutorsRequest): Promise<ListJobExecutorsResponse>;
|
|
1444
2258
|
/**
|
|
1445
|
-
*
|
|
2259
|
+
* 查询作业列表
|
|
1446
2260
|
*
|
|
1447
|
-
* @param tmpReq ListJobsRequest
|
|
1448
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1449
|
-
* @
|
|
2261
|
+
* @param tmpReq - ListJobsRequest
|
|
2262
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2263
|
+
* @returns ListJobsResponse
|
|
1450
2264
|
*/
|
|
1451
2265
|
listJobsWithOptions(tmpReq: ListJobsRequest, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse>;
|
|
1452
2266
|
/**
|
|
1453
|
-
*
|
|
2267
|
+
* 查询作业列表
|
|
1454
2268
|
*
|
|
1455
|
-
* @param request ListJobsRequest
|
|
1456
|
-
* @
|
|
2269
|
+
* @param request - ListJobsRequest
|
|
2270
|
+
* @returns ListJobsResponse
|
|
1457
2271
|
*/
|
|
1458
2272
|
listJobs(request: ListJobsRequest): Promise<ListJobsResponse>;
|
|
1459
2273
|
/**
|
|
1460
|
-
*
|
|
2274
|
+
* 移除托管侧镜像信息。
|
|
1461
2275
|
*
|
|
1462
|
-
* @param request RemoveImageRequest
|
|
1463
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1464
|
-
* @
|
|
2276
|
+
* @param request - RemoveImageRequest
|
|
2277
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2278
|
+
* @returns RemoveImageResponse
|
|
1465
2279
|
*/
|
|
1466
2280
|
removeImageWithOptions(request: RemoveImageRequest, runtime: $Util.RuntimeOptions): Promise<RemoveImageResponse>;
|
|
1467
2281
|
/**
|
|
1468
|
-
*
|
|
2282
|
+
* 移除托管侧镜像信息。
|
|
1469
2283
|
*
|
|
1470
|
-
* @param request RemoveImageRequest
|
|
1471
|
-
* @
|
|
2284
|
+
* @param request - RemoveImageRequest
|
|
2285
|
+
* @returns RemoveImageResponse
|
|
1472
2286
|
*/
|
|
1473
2287
|
removeImage(request: RemoveImageRequest): Promise<RemoveImageResponse>;
|
|
1474
2288
|
}
|