@alicloud/ehpcinstant20230701 1.0.2 → 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 +888 -85
- package/dist/client.js +93 -85
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +922 -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;
|
|
@@ -299,6 +432,13 @@ export declare class DescribeJobMetricLastResponse extends $tea.Model {
|
|
|
299
432
|
}
|
|
300
433
|
export declare class GetImageRequest extends $tea.Model {
|
|
301
434
|
imageCategory?: string;
|
|
435
|
+
/**
|
|
436
|
+
* @remarks
|
|
437
|
+
* This parameter is required.
|
|
438
|
+
*
|
|
439
|
+
* @example
|
|
440
|
+
* m-2ze74g5mvy4pjg*****
|
|
441
|
+
*/
|
|
302
442
|
imageId?: string;
|
|
303
443
|
imageType?: string;
|
|
304
444
|
static names(): {
|
|
@@ -313,8 +453,20 @@ export declare class GetImageRequest extends $tea.Model {
|
|
|
313
453
|
}
|
|
314
454
|
export declare class GetImageResponseBody extends $tea.Model {
|
|
315
455
|
image?: GetImageResponseBodyImage;
|
|
456
|
+
/**
|
|
457
|
+
* @example
|
|
458
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
459
|
+
*/
|
|
316
460
|
requestId?: string;
|
|
461
|
+
/**
|
|
462
|
+
* @example
|
|
463
|
+
* true
|
|
464
|
+
*/
|
|
317
465
|
success?: boolean;
|
|
466
|
+
/**
|
|
467
|
+
* @example
|
|
468
|
+
* 10
|
|
469
|
+
*/
|
|
318
470
|
totalCount?: number;
|
|
319
471
|
static names(): {
|
|
320
472
|
[key: string]: string;
|
|
@@ -343,6 +495,10 @@ export declare class GetImageResponse extends $tea.Model {
|
|
|
343
495
|
});
|
|
344
496
|
}
|
|
345
497
|
export declare class GetJobRequest extends $tea.Model {
|
|
498
|
+
/**
|
|
499
|
+
* @example
|
|
500
|
+
* job-xxxx
|
|
501
|
+
*/
|
|
346
502
|
jobId?: string;
|
|
347
503
|
static names(): {
|
|
348
504
|
[key: string]: string;
|
|
@@ -356,6 +512,10 @@ export declare class GetJobRequest extends $tea.Model {
|
|
|
356
512
|
}
|
|
357
513
|
export declare class GetJobResponseBody extends $tea.Model {
|
|
358
514
|
jobInfo?: GetJobResponseBodyJobInfo;
|
|
515
|
+
/**
|
|
516
|
+
* @example
|
|
517
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
518
|
+
*/
|
|
359
519
|
requestId?: string;
|
|
360
520
|
static names(): {
|
|
361
521
|
[key: string]: string;
|
|
@@ -385,7 +545,15 @@ export declare class GetJobResponse extends $tea.Model {
|
|
|
385
545
|
}
|
|
386
546
|
export declare class ListExecutorsRequest extends $tea.Model {
|
|
387
547
|
filter?: ListExecutorsRequestFilter;
|
|
548
|
+
/**
|
|
549
|
+
* @example
|
|
550
|
+
* 1
|
|
551
|
+
*/
|
|
388
552
|
pageNumber?: string;
|
|
553
|
+
/**
|
|
554
|
+
* @example
|
|
555
|
+
* 50
|
|
556
|
+
*/
|
|
389
557
|
pageSize?: string;
|
|
390
558
|
static names(): {
|
|
391
559
|
[key: string]: string;
|
|
@@ -399,7 +567,15 @@ export declare class ListExecutorsRequest extends $tea.Model {
|
|
|
399
567
|
}
|
|
400
568
|
export declare class ListExecutorsShrinkRequest extends $tea.Model {
|
|
401
569
|
filterShrink?: string;
|
|
570
|
+
/**
|
|
571
|
+
* @example
|
|
572
|
+
* 1
|
|
573
|
+
*/
|
|
402
574
|
pageNumber?: string;
|
|
575
|
+
/**
|
|
576
|
+
* @example
|
|
577
|
+
* 50
|
|
578
|
+
*/
|
|
403
579
|
pageSize?: string;
|
|
404
580
|
static names(): {
|
|
405
581
|
[key: string]: string;
|
|
@@ -413,9 +589,25 @@ export declare class ListExecutorsShrinkRequest extends $tea.Model {
|
|
|
413
589
|
}
|
|
414
590
|
export declare class ListExecutorsResponseBody extends $tea.Model {
|
|
415
591
|
executors?: ListExecutorsResponseBodyExecutors[];
|
|
592
|
+
/**
|
|
593
|
+
* @example
|
|
594
|
+
* 1
|
|
595
|
+
*/
|
|
416
596
|
pageNumber?: string;
|
|
597
|
+
/**
|
|
598
|
+
* @example
|
|
599
|
+
* 50
|
|
600
|
+
*/
|
|
417
601
|
pageSize?: string;
|
|
602
|
+
/**
|
|
603
|
+
* @example
|
|
604
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
605
|
+
*/
|
|
418
606
|
requestId?: string;
|
|
607
|
+
/**
|
|
608
|
+
* @example
|
|
609
|
+
* 40
|
|
610
|
+
*/
|
|
419
611
|
totalCount?: string;
|
|
420
612
|
static names(): {
|
|
421
613
|
[key: string]: string;
|
|
@@ -448,7 +640,15 @@ export declare class ListImagesRequest extends $tea.Model {
|
|
|
448
640
|
imageIds?: string[];
|
|
449
641
|
imageNames?: string[];
|
|
450
642
|
imageType?: string;
|
|
643
|
+
/**
|
|
644
|
+
* @example
|
|
645
|
+
* 1
|
|
646
|
+
*/
|
|
451
647
|
pageNumber?: number;
|
|
648
|
+
/**
|
|
649
|
+
* @example
|
|
650
|
+
* 10
|
|
651
|
+
*/
|
|
452
652
|
pageSize?: number;
|
|
453
653
|
static names(): {
|
|
454
654
|
[key: string]: string;
|
|
@@ -465,7 +665,15 @@ export declare class ListImagesShrinkRequest extends $tea.Model {
|
|
|
465
665
|
imageIdsShrink?: string;
|
|
466
666
|
imageNamesShrink?: string;
|
|
467
667
|
imageType?: string;
|
|
668
|
+
/**
|
|
669
|
+
* @example
|
|
670
|
+
* 1
|
|
671
|
+
*/
|
|
468
672
|
pageNumber?: number;
|
|
673
|
+
/**
|
|
674
|
+
* @example
|
|
675
|
+
* 10
|
|
676
|
+
*/
|
|
469
677
|
pageSize?: number;
|
|
470
678
|
static names(): {
|
|
471
679
|
[key: string]: string;
|
|
@@ -479,10 +687,30 @@ export declare class ListImagesShrinkRequest extends $tea.Model {
|
|
|
479
687
|
}
|
|
480
688
|
export declare class ListImagesResponseBody extends $tea.Model {
|
|
481
689
|
images?: ListImagesResponseBodyImages[];
|
|
690
|
+
/**
|
|
691
|
+
* @example
|
|
692
|
+
* 1
|
|
693
|
+
*/
|
|
482
694
|
pageNumber?: number;
|
|
695
|
+
/**
|
|
696
|
+
* @example
|
|
697
|
+
* 20
|
|
698
|
+
*/
|
|
483
699
|
pageSize?: number;
|
|
700
|
+
/**
|
|
701
|
+
* @example
|
|
702
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
703
|
+
*/
|
|
484
704
|
requestId?: string;
|
|
705
|
+
/**
|
|
706
|
+
* @example
|
|
707
|
+
* true
|
|
708
|
+
*/
|
|
485
709
|
success?: boolean;
|
|
710
|
+
/**
|
|
711
|
+
* @example
|
|
712
|
+
* 1
|
|
713
|
+
*/
|
|
486
714
|
totalCount?: number;
|
|
487
715
|
static names(): {
|
|
488
716
|
[key: string]: string;
|
|
@@ -511,9 +739,25 @@ export declare class ListImagesResponse extends $tea.Model {
|
|
|
511
739
|
});
|
|
512
740
|
}
|
|
513
741
|
export declare class ListJobExecutorsRequest extends $tea.Model {
|
|
742
|
+
/**
|
|
743
|
+
* @example
|
|
744
|
+
* job-xxx
|
|
745
|
+
*/
|
|
514
746
|
jobId?: string;
|
|
747
|
+
/**
|
|
748
|
+
* @example
|
|
749
|
+
* 1
|
|
750
|
+
*/
|
|
515
751
|
pageNumber?: string;
|
|
752
|
+
/**
|
|
753
|
+
* @example
|
|
754
|
+
* 10
|
|
755
|
+
*/
|
|
516
756
|
pageSize?: string;
|
|
757
|
+
/**
|
|
758
|
+
* @example
|
|
759
|
+
* task0
|
|
760
|
+
*/
|
|
517
761
|
taskName?: string;
|
|
518
762
|
static names(): {
|
|
519
763
|
[key: string]: string;
|
|
@@ -527,11 +771,35 @@ export declare class ListJobExecutorsRequest extends $tea.Model {
|
|
|
527
771
|
}
|
|
528
772
|
export declare class ListJobExecutorsResponseBody extends $tea.Model {
|
|
529
773
|
executors?: ListJobExecutorsResponseBodyExecutors[];
|
|
774
|
+
/**
|
|
775
|
+
* @example
|
|
776
|
+
* job-xxxx
|
|
777
|
+
*/
|
|
530
778
|
jobId?: string;
|
|
779
|
+
/**
|
|
780
|
+
* @example
|
|
781
|
+
* 1
|
|
782
|
+
*/
|
|
531
783
|
pageNumber?: string;
|
|
784
|
+
/**
|
|
785
|
+
* @example
|
|
786
|
+
* 10
|
|
787
|
+
*/
|
|
532
788
|
pageSize?: string;
|
|
789
|
+
/**
|
|
790
|
+
* @example
|
|
791
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
792
|
+
*/
|
|
533
793
|
requestId?: string;
|
|
794
|
+
/**
|
|
795
|
+
* @example
|
|
796
|
+
* task0
|
|
797
|
+
*/
|
|
534
798
|
taskName?: string;
|
|
799
|
+
/**
|
|
800
|
+
* @example
|
|
801
|
+
* 50
|
|
802
|
+
*/
|
|
535
803
|
totalCount?: string;
|
|
536
804
|
static names(): {
|
|
537
805
|
[key: string]: string;
|
|
@@ -561,7 +829,15 @@ export declare class ListJobExecutorsResponse extends $tea.Model {
|
|
|
561
829
|
}
|
|
562
830
|
export declare class ListJobsRequest extends $tea.Model {
|
|
563
831
|
filter?: ListJobsRequestFilter;
|
|
832
|
+
/**
|
|
833
|
+
* @example
|
|
834
|
+
* 1
|
|
835
|
+
*/
|
|
564
836
|
pageNumber?: string;
|
|
837
|
+
/**
|
|
838
|
+
* @example
|
|
839
|
+
* 50
|
|
840
|
+
*/
|
|
565
841
|
pageSize?: string;
|
|
566
842
|
sortBy?: ListJobsRequestSortBy;
|
|
567
843
|
static names(): {
|
|
@@ -576,7 +852,15 @@ export declare class ListJobsRequest extends $tea.Model {
|
|
|
576
852
|
}
|
|
577
853
|
export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
578
854
|
filterShrink?: string;
|
|
855
|
+
/**
|
|
856
|
+
* @example
|
|
857
|
+
* 1
|
|
858
|
+
*/
|
|
579
859
|
pageNumber?: string;
|
|
860
|
+
/**
|
|
861
|
+
* @example
|
|
862
|
+
* 50
|
|
863
|
+
*/
|
|
580
864
|
pageSize?: string;
|
|
581
865
|
sortByShrink?: string;
|
|
582
866
|
static names(): {
|
|
@@ -591,9 +875,25 @@ export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
|
591
875
|
}
|
|
592
876
|
export declare class ListJobsResponseBody extends $tea.Model {
|
|
593
877
|
jobList?: ListJobsResponseBodyJobList[];
|
|
878
|
+
/**
|
|
879
|
+
* @example
|
|
880
|
+
* 1
|
|
881
|
+
*/
|
|
594
882
|
pageNumber?: number;
|
|
883
|
+
/**
|
|
884
|
+
* @example
|
|
885
|
+
* 10
|
|
886
|
+
*/
|
|
595
887
|
pageSize?: number;
|
|
888
|
+
/**
|
|
889
|
+
* @example
|
|
890
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
891
|
+
*/
|
|
596
892
|
requestId?: string;
|
|
893
|
+
/**
|
|
894
|
+
* @example
|
|
895
|
+
* 1
|
|
896
|
+
*/
|
|
597
897
|
totalCount?: number;
|
|
598
898
|
static names(): {
|
|
599
899
|
[key: string]: string;
|
|
@@ -622,6 +922,13 @@ export declare class ListJobsResponse extends $tea.Model {
|
|
|
622
922
|
});
|
|
623
923
|
}
|
|
624
924
|
export declare class RemoveImageRequest extends $tea.Model {
|
|
925
|
+
/**
|
|
926
|
+
* @remarks
|
|
927
|
+
* This parameter is required.
|
|
928
|
+
*
|
|
929
|
+
* @example
|
|
930
|
+
* m-bp14wakr1rkxtb******
|
|
931
|
+
*/
|
|
625
932
|
imageId?: string;
|
|
626
933
|
static names(): {
|
|
627
934
|
[key: string]: string;
|
|
@@ -634,7 +941,15 @@ export declare class RemoveImageRequest extends $tea.Model {
|
|
|
634
941
|
});
|
|
635
942
|
}
|
|
636
943
|
export declare class RemoveImageResponseBody extends $tea.Model {
|
|
944
|
+
/**
|
|
945
|
+
* @example
|
|
946
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
947
|
+
*/
|
|
637
948
|
requestId?: string;
|
|
949
|
+
/**
|
|
950
|
+
* @example
|
|
951
|
+
* true
|
|
952
|
+
*/
|
|
638
953
|
success?: boolean;
|
|
639
954
|
static names(): {
|
|
640
955
|
[key: string]: string;
|
|
@@ -663,8 +978,20 @@ export declare class RemoveImageResponse extends $tea.Model {
|
|
|
663
978
|
});
|
|
664
979
|
}
|
|
665
980
|
export declare class AddImageRequestContainerImageSpecRegistryCredential extends $tea.Model {
|
|
981
|
+
/**
|
|
982
|
+
* @example
|
|
983
|
+
* userpassword
|
|
984
|
+
*/
|
|
666
985
|
password?: string;
|
|
986
|
+
/**
|
|
987
|
+
* @example
|
|
988
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
989
|
+
*/
|
|
667
990
|
server?: string;
|
|
991
|
+
/**
|
|
992
|
+
* @example
|
|
993
|
+
* username
|
|
994
|
+
*/
|
|
668
995
|
userName?: string;
|
|
669
996
|
static names(): {
|
|
670
997
|
[key: string]: string;
|
|
@@ -677,10 +1004,26 @@ export declare class AddImageRequestContainerImageSpecRegistryCredential extends
|
|
|
677
1004
|
});
|
|
678
1005
|
}
|
|
679
1006
|
export declare class AddImageRequestContainerImageSpec extends $tea.Model {
|
|
1007
|
+
/**
|
|
1008
|
+
* @example
|
|
1009
|
+
* True
|
|
1010
|
+
*/
|
|
680
1011
|
isACREnterprise?: boolean;
|
|
1012
|
+
/**
|
|
1013
|
+
* @example
|
|
1014
|
+
* True
|
|
1015
|
+
*/
|
|
681
1016
|
isACRRegistry?: boolean;
|
|
682
1017
|
registryCredential?: AddImageRequestContainerImageSpecRegistryCredential;
|
|
1018
|
+
/**
|
|
1019
|
+
* @example
|
|
1020
|
+
* cri-xyz795ygf8k9****
|
|
1021
|
+
*/
|
|
683
1022
|
registryCriId?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* @example
|
|
1025
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc_open/nginx:latest
|
|
1026
|
+
*/
|
|
684
1027
|
registryUrl?: string;
|
|
685
1028
|
static names(): {
|
|
686
1029
|
[key: string]: string;
|
|
@@ -693,6 +1036,10 @@ export declare class AddImageRequestContainerImageSpec extends $tea.Model {
|
|
|
693
1036
|
});
|
|
694
1037
|
}
|
|
695
1038
|
export declare class AddImageRequestVMImageSpec extends $tea.Model {
|
|
1039
|
+
/**
|
|
1040
|
+
* @example
|
|
1041
|
+
* m-bp1akkkr1rkxtb******
|
|
1042
|
+
*/
|
|
696
1043
|
imageId?: string;
|
|
697
1044
|
static names(): {
|
|
698
1045
|
[key: string]: string;
|
|
@@ -717,6 +1064,10 @@ export declare class CreateJobRequestDeploymentPolicyNetwork extends $tea.Model
|
|
|
717
1064
|
});
|
|
718
1065
|
}
|
|
719
1066
|
export declare class CreateJobRequestDeploymentPolicy extends $tea.Model {
|
|
1067
|
+
/**
|
|
1068
|
+
* @example
|
|
1069
|
+
* Dedicated
|
|
1070
|
+
*/
|
|
720
1071
|
allocationSpec?: string;
|
|
721
1072
|
network?: CreateJobRequestDeploymentPolicyNetwork;
|
|
722
1073
|
static names(): {
|
|
@@ -730,8 +1081,20 @@ export declare class CreateJobRequestDeploymentPolicy extends $tea.Model {
|
|
|
730
1081
|
});
|
|
731
1082
|
}
|
|
732
1083
|
export declare class CreateJobRequestTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
1084
|
+
/**
|
|
1085
|
+
* @example
|
|
1086
|
+
* 9
|
|
1087
|
+
*/
|
|
733
1088
|
indexEnd?: number;
|
|
1089
|
+
/**
|
|
1090
|
+
* @example
|
|
1091
|
+
* 0
|
|
1092
|
+
*/
|
|
734
1093
|
indexStart?: number;
|
|
1094
|
+
/**
|
|
1095
|
+
* @example
|
|
1096
|
+
* 1
|
|
1097
|
+
*/
|
|
735
1098
|
indexStep?: number;
|
|
736
1099
|
static names(): {
|
|
737
1100
|
[key: string]: string;
|
|
@@ -745,6 +1108,10 @@ export declare class CreateJobRequestTasksExecutorPolicyArraySpec extends $tea.M
|
|
|
745
1108
|
}
|
|
746
1109
|
export declare class CreateJobRequestTasksExecutorPolicy extends $tea.Model {
|
|
747
1110
|
arraySpec?: CreateJobRequestTasksExecutorPolicyArraySpec;
|
|
1111
|
+
/**
|
|
1112
|
+
* @example
|
|
1113
|
+
* 1
|
|
1114
|
+
*/
|
|
748
1115
|
maxCount?: number;
|
|
749
1116
|
static names(): {
|
|
750
1117
|
[key: string]: string;
|
|
@@ -757,7 +1124,15 @@ export declare class CreateJobRequestTasksExecutorPolicy extends $tea.Model {
|
|
|
757
1124
|
});
|
|
758
1125
|
}
|
|
759
1126
|
export declare class CreateJobRequestTasksTaskSpecResourceDisks extends $tea.Model {
|
|
1127
|
+
/**
|
|
1128
|
+
* @example
|
|
1129
|
+
* 40
|
|
1130
|
+
*/
|
|
760
1131
|
size?: number;
|
|
1132
|
+
/**
|
|
1133
|
+
* @example
|
|
1134
|
+
* System
|
|
1135
|
+
*/
|
|
761
1136
|
type?: string;
|
|
762
1137
|
static names(): {
|
|
763
1138
|
[key: string]: string;
|
|
@@ -770,8 +1145,16 @@ export declare class CreateJobRequestTasksTaskSpecResourceDisks extends $tea.Mod
|
|
|
770
1145
|
});
|
|
771
1146
|
}
|
|
772
1147
|
export declare class CreateJobRequestTasksTaskSpecResource extends $tea.Model {
|
|
1148
|
+
/**
|
|
1149
|
+
* @example
|
|
1150
|
+
* 2
|
|
1151
|
+
*/
|
|
773
1152
|
cores?: number;
|
|
774
1153
|
disks?: CreateJobRequestTasksTaskSpecResourceDisks[];
|
|
1154
|
+
/**
|
|
1155
|
+
* @example
|
|
1156
|
+
* 4
|
|
1157
|
+
*/
|
|
775
1158
|
memory?: number;
|
|
776
1159
|
static names(): {
|
|
777
1160
|
[key: string]: string;
|
|
@@ -784,7 +1167,15 @@ export declare class CreateJobRequestTasksTaskSpecResource extends $tea.Model {
|
|
|
784
1167
|
});
|
|
785
1168
|
}
|
|
786
1169
|
export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars extends $tea.Model {
|
|
1170
|
+
/**
|
|
1171
|
+
* @example
|
|
1172
|
+
* PATH
|
|
1173
|
+
*/
|
|
787
1174
|
name?: string;
|
|
1175
|
+
/**
|
|
1176
|
+
* @example
|
|
1177
|
+
* /usr/local/bin
|
|
1178
|
+
*/
|
|
788
1179
|
value?: string;
|
|
789
1180
|
static names(): {
|
|
790
1181
|
[key: string]: string;
|
|
@@ -800,7 +1191,18 @@ export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends
|
|
|
800
1191
|
appId?: string;
|
|
801
1192
|
command?: string[];
|
|
802
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
|
+
*/
|
|
803
1201
|
image?: string;
|
|
1202
|
+
/**
|
|
1203
|
+
* @example
|
|
1204
|
+
* /usr/local/
|
|
1205
|
+
*/
|
|
804
1206
|
workingDir?: string;
|
|
805
1207
|
static names(): {
|
|
806
1208
|
[key: string]: string;
|
|
@@ -814,8 +1216,23 @@ export declare class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends
|
|
|
814
1216
|
}
|
|
815
1217
|
export declare class CreateJobRequestTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
816
1218
|
appId?: string;
|
|
1219
|
+
/**
|
|
1220
|
+
* @remarks
|
|
1221
|
+
* This parameter is required.
|
|
1222
|
+
*
|
|
1223
|
+
* @example
|
|
1224
|
+
* m-xxxx
|
|
1225
|
+
*/
|
|
817
1226
|
image?: string;
|
|
1227
|
+
/**
|
|
1228
|
+
* @example
|
|
1229
|
+
* ZWNobyBoZWxsbyBlY3Mh
|
|
1230
|
+
*/
|
|
818
1231
|
prologScript?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* @example
|
|
1234
|
+
* ZWNobyBoZWxsbyBlY3Mh
|
|
1235
|
+
*/
|
|
819
1236
|
script?: string;
|
|
820
1237
|
static names(): {
|
|
821
1238
|
[key: string]: string;
|
|
@@ -841,8 +1258,20 @@ export declare class CreateJobRequestTasksTaskSpecTaskExecutor extends $tea.Mode
|
|
|
841
1258
|
});
|
|
842
1259
|
}
|
|
843
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
|
+
*/
|
|
844
1265
|
mountOptions?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* @example
|
|
1268
|
+
* /mnt
|
|
1269
|
+
*/
|
|
845
1270
|
mountPath?: string;
|
|
1271
|
+
/**
|
|
1272
|
+
* @example
|
|
1273
|
+
* alicloud/nas
|
|
1274
|
+
*/
|
|
846
1275
|
volumeDriver?: string;
|
|
847
1276
|
static names(): {
|
|
848
1277
|
[key: string]: string;
|
|
@@ -856,6 +1285,10 @@ export declare class CreateJobRequestTasksTaskSpecVolumeMount extends $tea.Model
|
|
|
856
1285
|
}
|
|
857
1286
|
export declare class CreateJobRequestTasksTaskSpec extends $tea.Model {
|
|
858
1287
|
resource?: CreateJobRequestTasksTaskSpecResource;
|
|
1288
|
+
/**
|
|
1289
|
+
* @remarks
|
|
1290
|
+
* This parameter is required.
|
|
1291
|
+
*/
|
|
859
1292
|
taskExecutor?: CreateJobRequestTasksTaskSpecTaskExecutor[];
|
|
860
1293
|
volumeMount?: CreateJobRequestTasksTaskSpecVolumeMount[];
|
|
861
1294
|
static names(): {
|
|
@@ -870,8 +1303,16 @@ export declare class CreateJobRequestTasksTaskSpec extends $tea.Model {
|
|
|
870
1303
|
}
|
|
871
1304
|
export declare class CreateJobRequestTasks extends $tea.Model {
|
|
872
1305
|
executorPolicy?: CreateJobRequestTasksExecutorPolicy;
|
|
1306
|
+
/**
|
|
1307
|
+
* @example
|
|
1308
|
+
* task0
|
|
1309
|
+
*/
|
|
873
1310
|
taskName?: string;
|
|
874
1311
|
taskSpec?: CreateJobRequestTasksTaskSpec;
|
|
1312
|
+
/**
|
|
1313
|
+
* @example
|
|
1314
|
+
* true
|
|
1315
|
+
*/
|
|
875
1316
|
taskSustainable?: boolean;
|
|
876
1317
|
static names(): {
|
|
877
1318
|
[key: string]: string;
|
|
@@ -898,6 +1339,10 @@ export declare class CreateJobResponseBodyTasks extends $tea.Model {
|
|
|
898
1339
|
}
|
|
899
1340
|
export declare class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
900
1341
|
arrayIndex?: number[];
|
|
1342
|
+
/**
|
|
1343
|
+
* @example
|
|
1344
|
+
* task0
|
|
1345
|
+
*/
|
|
901
1346
|
taskName?: string;
|
|
902
1347
|
static names(): {
|
|
903
1348
|
[key: string]: string;
|
|
@@ -910,6 +1355,10 @@ export declare class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
|
910
1355
|
});
|
|
911
1356
|
}
|
|
912
1357
|
export declare class DeleteJobsRequestJobSpec extends $tea.Model {
|
|
1358
|
+
/**
|
|
1359
|
+
* @example
|
|
1360
|
+
* job-xxxx
|
|
1361
|
+
*/
|
|
913
1362
|
jobId?: string;
|
|
914
1363
|
taskSpec?: DeleteJobsRequestJobSpecTaskSpec[];
|
|
915
1364
|
static names(): {
|
|
@@ -923,7 +1372,15 @@ export declare class DeleteJobsRequestJobSpec extends $tea.Model {
|
|
|
923
1372
|
});
|
|
924
1373
|
}
|
|
925
1374
|
export declare class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model {
|
|
1375
|
+
/**
|
|
1376
|
+
* @example
|
|
1377
|
+
* 1
|
|
1378
|
+
*/
|
|
926
1379
|
arrayIndex?: number;
|
|
1380
|
+
/**
|
|
1381
|
+
* @example
|
|
1382
|
+
* {"memory_utilization": 37.42,"cpu_utilization": 1.008, "disk_utilization": 3.562}
|
|
1383
|
+
*/
|
|
927
1384
|
metric?: string;
|
|
928
1385
|
static names(): {
|
|
929
1386
|
[key: string]: string;
|
|
@@ -936,8 +1393,20 @@ export declare class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model
|
|
|
936
1393
|
});
|
|
937
1394
|
}
|
|
938
1395
|
export declare class GetImageResponseBodyImageContainerImageSpecRegistryCredential extends $tea.Model {
|
|
1396
|
+
/**
|
|
1397
|
+
* @example
|
|
1398
|
+
* userpassword
|
|
1399
|
+
*/
|
|
939
1400
|
password?: string;
|
|
1401
|
+
/**
|
|
1402
|
+
* @example
|
|
1403
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
1404
|
+
*/
|
|
940
1405
|
server?: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* @example
|
|
1408
|
+
* username
|
|
1409
|
+
*/
|
|
941
1410
|
userName?: string;
|
|
942
1411
|
static names(): {
|
|
943
1412
|
[key: string]: string;
|
|
@@ -950,10 +1419,26 @@ export declare class GetImageResponseBodyImageContainerImageSpecRegistryCredenti
|
|
|
950
1419
|
});
|
|
951
1420
|
}
|
|
952
1421
|
export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Model {
|
|
1422
|
+
/**
|
|
1423
|
+
* @example
|
|
1424
|
+
* True
|
|
1425
|
+
*/
|
|
953
1426
|
isACREnterprise?: boolean;
|
|
1427
|
+
/**
|
|
1428
|
+
* @example
|
|
1429
|
+
* True
|
|
1430
|
+
*/
|
|
954
1431
|
isACRRegistry?: boolean;
|
|
955
1432
|
registryCredential?: GetImageResponseBodyImageContainerImageSpecRegistryCredential;
|
|
1433
|
+
/**
|
|
1434
|
+
* @example
|
|
1435
|
+
* cri-xyz795ygf8k9****
|
|
1436
|
+
*/
|
|
956
1437
|
registryCriId?: string;
|
|
1438
|
+
/**
|
|
1439
|
+
* @example
|
|
1440
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc_open/nginx:latest
|
|
1441
|
+
*/
|
|
957
1442
|
registryUrl?: string;
|
|
958
1443
|
static names(): {
|
|
959
1444
|
[key: string]: string;
|
|
@@ -966,9 +1451,25 @@ export declare class GetImageResponseBodyImageContainerImageSpec extends $tea.Mo
|
|
|
966
1451
|
});
|
|
967
1452
|
}
|
|
968
1453
|
export declare class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
1454
|
+
/**
|
|
1455
|
+
* @example
|
|
1456
|
+
* x86_64
|
|
1457
|
+
*/
|
|
969
1458
|
architecture?: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* @example
|
|
1461
|
+
* m-uf60twafjtaart******
|
|
1462
|
+
*/
|
|
970
1463
|
imageId?: string;
|
|
1464
|
+
/**
|
|
1465
|
+
* @example
|
|
1466
|
+
* CentOS 7.6 64 bit
|
|
1467
|
+
*/
|
|
971
1468
|
osTag?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* @example
|
|
1471
|
+
* CentOS
|
|
1472
|
+
*/
|
|
972
1473
|
platform?: string;
|
|
973
1474
|
static names(): {
|
|
974
1475
|
[key: string]: string;
|
|
@@ -983,13 +1484,36 @@ export declare class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
|
983
1484
|
export declare class GetImageResponseBodyImage extends $tea.Model {
|
|
984
1485
|
appId?: string;
|
|
985
1486
|
containerImageSpec?: GetImageResponseBodyImageContainerImageSpec;
|
|
1487
|
+
/**
|
|
1488
|
+
* @example
|
|
1489
|
+
* 2022-12-23T09:51:39Z
|
|
1490
|
+
*/
|
|
986
1491
|
createTime?: string;
|
|
987
1492
|
description?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* @remarks
|
|
1495
|
+
* This parameter is required.
|
|
1496
|
+
*
|
|
1497
|
+
* @example
|
|
1498
|
+
* VM
|
|
1499
|
+
*/
|
|
988
1500
|
imageType?: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* @example
|
|
1503
|
+
* app-image
|
|
1504
|
+
*/
|
|
989
1505
|
name?: string;
|
|
1506
|
+
/**
|
|
1507
|
+
* @example
|
|
1508
|
+
* 40 GiB
|
|
1509
|
+
*/
|
|
990
1510
|
size?: string;
|
|
991
1511
|
status?: string;
|
|
992
1512
|
VMImageSpec?: GetImageResponseBodyImageVMImageSpec;
|
|
1513
|
+
/**
|
|
1514
|
+
* @example
|
|
1515
|
+
* v1.0
|
|
1516
|
+
*/
|
|
993
1517
|
version?: string;
|
|
994
1518
|
static names(): {
|
|
995
1519
|
[key: string]: string;
|
|
@@ -1014,6 +1538,10 @@ export declare class GetJobResponseBodyJobInfoDeploymentPolicyNetwork extends $t
|
|
|
1014
1538
|
});
|
|
1015
1539
|
}
|
|
1016
1540
|
export declare class GetJobResponseBodyJobInfoDeploymentPolicy extends $tea.Model {
|
|
1541
|
+
/**
|
|
1542
|
+
* @example
|
|
1543
|
+
* Dedicated
|
|
1544
|
+
*/
|
|
1017
1545
|
allocationSpec?: string;
|
|
1018
1546
|
network?: GetJobResponseBodyJobInfoDeploymentPolicyNetwork;
|
|
1019
1547
|
static names(): {
|
|
@@ -1027,8 +1555,20 @@ export declare class GetJobResponseBodyJobInfoDeploymentPolicy extends $tea.Mode
|
|
|
1027
1555
|
});
|
|
1028
1556
|
}
|
|
1029
1557
|
export declare class GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
1558
|
+
/**
|
|
1559
|
+
* @example
|
|
1560
|
+
* 9
|
|
1561
|
+
*/
|
|
1030
1562
|
indexEnd?: number;
|
|
1563
|
+
/**
|
|
1564
|
+
* @example
|
|
1565
|
+
* 0
|
|
1566
|
+
*/
|
|
1031
1567
|
indexStart?: number;
|
|
1568
|
+
/**
|
|
1569
|
+
* @example
|
|
1570
|
+
* 1
|
|
1571
|
+
*/
|
|
1032
1572
|
indexStep?: number;
|
|
1033
1573
|
static names(): {
|
|
1034
1574
|
[key: string]: string;
|
|
@@ -1042,6 +1582,10 @@ export declare class GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec exten
|
|
|
1042
1582
|
}
|
|
1043
1583
|
export declare class GetJobResponseBodyJobInfoTasksExecutorPolicy extends $tea.Model {
|
|
1044
1584
|
arraySpec?: GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec;
|
|
1585
|
+
/**
|
|
1586
|
+
* @example
|
|
1587
|
+
* 10
|
|
1588
|
+
*/
|
|
1045
1589
|
maxCount?: number;
|
|
1046
1590
|
static names(): {
|
|
1047
1591
|
[key: string]: string;
|
|
@@ -1054,11 +1598,35 @@ export declare class GetJobResponseBodyJobInfoTasksExecutorPolicy extends $tea.M
|
|
|
1054
1598
|
});
|
|
1055
1599
|
}
|
|
1056
1600
|
export declare class GetJobResponseBodyJobInfoTasksExecutorStatus extends $tea.Model {
|
|
1601
|
+
/**
|
|
1602
|
+
* @example
|
|
1603
|
+
* 0
|
|
1604
|
+
*/
|
|
1057
1605
|
arrayId?: number;
|
|
1606
|
+
/**
|
|
1607
|
+
* @example
|
|
1608
|
+
* 2024-02-04 13:54:10
|
|
1609
|
+
*/
|
|
1058
1610
|
createTime?: string;
|
|
1611
|
+
/**
|
|
1612
|
+
* @example
|
|
1613
|
+
* 2024-02-04 13:54:10
|
|
1614
|
+
*/
|
|
1059
1615
|
endTime?: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* @example
|
|
1618
|
+
* 2024-02-04 13:54:10
|
|
1619
|
+
*/
|
|
1060
1620
|
startTime?: string;
|
|
1621
|
+
/**
|
|
1622
|
+
* @example
|
|
1623
|
+
* Running
|
|
1624
|
+
*/
|
|
1061
1625
|
status?: string;
|
|
1626
|
+
/**
|
|
1627
|
+
* @example
|
|
1628
|
+
* Creating executor
|
|
1629
|
+
*/
|
|
1062
1630
|
statusReason?: string;
|
|
1063
1631
|
static names(): {
|
|
1064
1632
|
[key: string]: string;
|
|
@@ -1071,7 +1639,15 @@ export declare class GetJobResponseBodyJobInfoTasksExecutorStatus extends $tea.M
|
|
|
1071
1639
|
});
|
|
1072
1640
|
}
|
|
1073
1641
|
export declare class GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks extends $tea.Model {
|
|
1642
|
+
/**
|
|
1643
|
+
* @example
|
|
1644
|
+
* 100
|
|
1645
|
+
*/
|
|
1074
1646
|
size?: number;
|
|
1647
|
+
/**
|
|
1648
|
+
* @example
|
|
1649
|
+
* System
|
|
1650
|
+
*/
|
|
1075
1651
|
type?: string;
|
|
1076
1652
|
static names(): {
|
|
1077
1653
|
[key: string]: string;
|
|
@@ -1084,8 +1660,16 @@ export declare class GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks extends
|
|
|
1084
1660
|
});
|
|
1085
1661
|
}
|
|
1086
1662
|
export declare class GetJobResponseBodyJobInfoTasksTaskSpecResource extends $tea.Model {
|
|
1663
|
+
/**
|
|
1664
|
+
* @example
|
|
1665
|
+
* 1
|
|
1666
|
+
*/
|
|
1087
1667
|
cores?: number;
|
|
1088
1668
|
disks?: GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks[];
|
|
1669
|
+
/**
|
|
1670
|
+
* @example
|
|
1671
|
+
* 4
|
|
1672
|
+
*/
|
|
1089
1673
|
memory?: number;
|
|
1090
1674
|
static names(): {
|
|
1091
1675
|
[key: string]: string;
|
|
@@ -1098,8 +1682,20 @@ export declare class GetJobResponseBodyJobInfoTasksTaskSpecResource extends $tea
|
|
|
1098
1682
|
});
|
|
1099
1683
|
}
|
|
1100
1684
|
export declare class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
1685
|
+
/**
|
|
1686
|
+
* @example
|
|
1687
|
+
* m-xxxx
|
|
1688
|
+
*/
|
|
1101
1689
|
image?: string;
|
|
1690
|
+
/**
|
|
1691
|
+
* @example
|
|
1692
|
+
* ZWNobyAiMTIzNCIgPiBgZGF0ZSArJXNg
|
|
1693
|
+
*/
|
|
1102
1694
|
prologScript?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* @example
|
|
1697
|
+
* ZWNobyAiMTIzNCIgPiBgZGF0ZSArJXNg
|
|
1698
|
+
*/
|
|
1103
1699
|
script?: string;
|
|
1104
1700
|
static names(): {
|
|
1105
1701
|
[key: string]: string;
|
|
@@ -1139,8 +1735,16 @@ export declare class GetJobResponseBodyJobInfoTasksTaskSpec extends $tea.Model {
|
|
|
1139
1735
|
export declare class GetJobResponseBodyJobInfoTasks extends $tea.Model {
|
|
1140
1736
|
executorPolicy?: GetJobResponseBodyJobInfoTasksExecutorPolicy;
|
|
1141
1737
|
executorStatus?: GetJobResponseBodyJobInfoTasksExecutorStatus[];
|
|
1738
|
+
/**
|
|
1739
|
+
* @example
|
|
1740
|
+
* task0
|
|
1741
|
+
*/
|
|
1142
1742
|
taskName?: string;
|
|
1143
1743
|
taskSpec?: GetJobResponseBodyJobInfoTasksTaskSpec;
|
|
1744
|
+
/**
|
|
1745
|
+
* @example
|
|
1746
|
+
* true
|
|
1747
|
+
*/
|
|
1144
1748
|
taskSustainable?: boolean;
|
|
1145
1749
|
static names(): {
|
|
1146
1750
|
[key: string]: string;
|
|
@@ -1153,13 +1757,42 @@ export declare class GetJobResponseBodyJobInfoTasks extends $tea.Model {
|
|
|
1153
1757
|
});
|
|
1154
1758
|
}
|
|
1155
1759
|
export declare class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
1760
|
+
/**
|
|
1761
|
+
* @example
|
|
1762
|
+
* 2024-03-05 20:00:46
|
|
1763
|
+
*/
|
|
1156
1764
|
createTime?: string;
|
|
1157
1765
|
deploymentPolicy?: GetJobResponseBodyJobInfoDeploymentPolicy;
|
|
1766
|
+
/**
|
|
1767
|
+
* @example
|
|
1768
|
+
* 2024-03-05 20:01:48
|
|
1769
|
+
*/
|
|
1158
1770
|
endTime?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* @example
|
|
1773
|
+
* Demo
|
|
1774
|
+
*/
|
|
1159
1775
|
jobDescription?: string;
|
|
1776
|
+
/**
|
|
1777
|
+
* @example
|
|
1778
|
+
* job-xxxx
|
|
1779
|
+
*/
|
|
1160
1780
|
jobId?: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* @example
|
|
1783
|
+
* testJob
|
|
1784
|
+
*/
|
|
1161
1785
|
jobName?: string;
|
|
1786
|
+
jobScheduler?: string;
|
|
1787
|
+
/**
|
|
1788
|
+
* @example
|
|
1789
|
+
* 2024-03-05 20:00:48
|
|
1790
|
+
*/
|
|
1162
1791
|
startTime?: string;
|
|
1792
|
+
/**
|
|
1793
|
+
* @example
|
|
1794
|
+
* Succeed
|
|
1795
|
+
*/
|
|
1163
1796
|
status?: string;
|
|
1164
1797
|
tasks?: GetJobResponseBodyJobInfoTasks[];
|
|
1165
1798
|
static names(): {
|
|
@@ -1175,8 +1808,20 @@ export declare class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
|
1175
1808
|
export declare class ListExecutorsRequestFilter extends $tea.Model {
|
|
1176
1809
|
executorIds?: string[];
|
|
1177
1810
|
ipAddresses?: string[];
|
|
1811
|
+
/**
|
|
1812
|
+
* @example
|
|
1813
|
+
* testJob
|
|
1814
|
+
*/
|
|
1178
1815
|
jobName?: string;
|
|
1816
|
+
/**
|
|
1817
|
+
* @example
|
|
1818
|
+
* 1703819914
|
|
1819
|
+
*/
|
|
1179
1820
|
timeCreatedAfter?: number;
|
|
1821
|
+
/**
|
|
1822
|
+
* @example
|
|
1823
|
+
* 1703820113
|
|
1824
|
+
*/
|
|
1180
1825
|
timeCreatedBefore?: number;
|
|
1181
1826
|
static names(): {
|
|
1182
1827
|
[key: string]: string;
|
|
@@ -1189,16 +1834,52 @@ export declare class ListExecutorsRequestFilter extends $tea.Model {
|
|
|
1189
1834
|
});
|
|
1190
1835
|
}
|
|
1191
1836
|
export declare class ListExecutorsResponseBodyExecutors extends $tea.Model {
|
|
1837
|
+
/**
|
|
1838
|
+
* @example
|
|
1839
|
+
* 0
|
|
1840
|
+
*/
|
|
1192
1841
|
arrayIndex?: number;
|
|
1842
|
+
/**
|
|
1843
|
+
* @example
|
|
1844
|
+
* 2024-02-20 10:04:10
|
|
1845
|
+
*/
|
|
1193
1846
|
createTime?: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* @example
|
|
1849
|
+
* 2024-02-20 10:04:18
|
|
1850
|
+
*/
|
|
1194
1851
|
endTime?: string;
|
|
1852
|
+
/**
|
|
1853
|
+
* @example
|
|
1854
|
+
* job-xxxx-task0-1
|
|
1855
|
+
*/
|
|
1195
1856
|
executorId?: string;
|
|
1196
1857
|
hostName?: string[];
|
|
1197
1858
|
ipAddress?: string[];
|
|
1859
|
+
/**
|
|
1860
|
+
* @example
|
|
1861
|
+
* job-hy1nggvyukuvkr******
|
|
1862
|
+
*/
|
|
1198
1863
|
jobId?: string;
|
|
1864
|
+
/**
|
|
1865
|
+
* @example
|
|
1866
|
+
* testJob
|
|
1867
|
+
*/
|
|
1199
1868
|
jobName?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* @example
|
|
1871
|
+
* Running
|
|
1872
|
+
*/
|
|
1200
1873
|
status?: string;
|
|
1874
|
+
/**
|
|
1875
|
+
* @example
|
|
1876
|
+
* Succeeded to release executor resource
|
|
1877
|
+
*/
|
|
1201
1878
|
statusReason?: string;
|
|
1879
|
+
/**
|
|
1880
|
+
* @example
|
|
1881
|
+
* task0
|
|
1882
|
+
*/
|
|
1202
1883
|
taskName?: string;
|
|
1203
1884
|
static names(): {
|
|
1204
1885
|
[key: string]: string;
|
|
@@ -1211,12 +1892,42 @@ export declare class ListExecutorsResponseBodyExecutors extends $tea.Model {
|
|
|
1211
1892
|
});
|
|
1212
1893
|
}
|
|
1213
1894
|
export declare class ListImagesResponseBodyImages extends $tea.Model {
|
|
1895
|
+
/**
|
|
1896
|
+
* @remarks
|
|
1897
|
+
* This parameter is required.
|
|
1898
|
+
*/
|
|
1214
1899
|
appId?: string;
|
|
1900
|
+
/**
|
|
1901
|
+
* @example
|
|
1902
|
+
* 2022-12-09T07:06:34Z
|
|
1903
|
+
*/
|
|
1215
1904
|
createTime?: string;
|
|
1216
1905
|
description?: string;
|
|
1906
|
+
/**
|
|
1907
|
+
* @remarks
|
|
1908
|
+
* This parameter is required.
|
|
1909
|
+
*
|
|
1910
|
+
* @example
|
|
1911
|
+
* m-bp181x855551ww5yq****
|
|
1912
|
+
*/
|
|
1217
1913
|
imageId?: string;
|
|
1914
|
+
/**
|
|
1915
|
+
* @remarks
|
|
1916
|
+
* This parameter is required.
|
|
1917
|
+
*
|
|
1918
|
+
* @example
|
|
1919
|
+
* VM
|
|
1920
|
+
*/
|
|
1218
1921
|
imageType?: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* @example
|
|
1924
|
+
* app-image
|
|
1925
|
+
*/
|
|
1219
1926
|
name?: string;
|
|
1927
|
+
/**
|
|
1928
|
+
* @example
|
|
1929
|
+
* v1.0
|
|
1930
|
+
*/
|
|
1220
1931
|
version?: string;
|
|
1221
1932
|
static names(): {
|
|
1222
1933
|
[key: string]: string;
|
|
@@ -1229,12 +1940,32 @@ export declare class ListImagesResponseBodyImages extends $tea.Model {
|
|
|
1229
1940
|
});
|
|
1230
1941
|
}
|
|
1231
1942
|
export declare class ListJobExecutorsResponseBodyExecutors extends $tea.Model {
|
|
1943
|
+
/**
|
|
1944
|
+
* @example
|
|
1945
|
+
* 0
|
|
1946
|
+
*/
|
|
1232
1947
|
arrayIndex?: number;
|
|
1948
|
+
/**
|
|
1949
|
+
* @example
|
|
1950
|
+
* 2024-02-20 10:04:10
|
|
1951
|
+
*/
|
|
1233
1952
|
createTime?: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* @example
|
|
1955
|
+
* 2024-02-20 10:04:18
|
|
1956
|
+
*/
|
|
1234
1957
|
endTime?: string;
|
|
1235
1958
|
hostName?: string[];
|
|
1236
1959
|
ipAddress?: string[];
|
|
1960
|
+
/**
|
|
1961
|
+
* @example
|
|
1962
|
+
* Running
|
|
1963
|
+
*/
|
|
1237
1964
|
status?: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* @example
|
|
1967
|
+
* Creating executor
|
|
1968
|
+
*/
|
|
1238
1969
|
statusReason?: string;
|
|
1239
1970
|
static names(): {
|
|
1240
1971
|
[key: string]: string;
|
|
@@ -1247,10 +1978,30 @@ export declare class ListJobExecutorsResponseBodyExecutors extends $tea.Model {
|
|
|
1247
1978
|
});
|
|
1248
1979
|
}
|
|
1249
1980
|
export declare class ListJobsRequestFilter extends $tea.Model {
|
|
1981
|
+
/**
|
|
1982
|
+
* @example
|
|
1983
|
+
* job-xxxx
|
|
1984
|
+
*/
|
|
1250
1985
|
jobId?: string;
|
|
1986
|
+
/**
|
|
1987
|
+
* @example
|
|
1988
|
+
* testJob
|
|
1989
|
+
*/
|
|
1251
1990
|
jobName?: string;
|
|
1991
|
+
/**
|
|
1992
|
+
* @example
|
|
1993
|
+
* Running
|
|
1994
|
+
*/
|
|
1252
1995
|
status?: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* @example
|
|
1998
|
+
* 1703819914
|
|
1999
|
+
*/
|
|
1253
2000
|
timeCreatedAfter?: number;
|
|
2001
|
+
/**
|
|
2002
|
+
* @example
|
|
2003
|
+
* 1703820113
|
|
2004
|
+
*/
|
|
1254
2005
|
timeCreatedBefore?: number;
|
|
1255
2006
|
static names(): {
|
|
1256
2007
|
[key: string]: string;
|
|
@@ -1263,7 +2014,15 @@ export declare class ListJobsRequestFilter extends $tea.Model {
|
|
|
1263
2014
|
});
|
|
1264
2015
|
}
|
|
1265
2016
|
export declare class ListJobsRequestSortBy extends $tea.Model {
|
|
2017
|
+
/**
|
|
2018
|
+
* @example
|
|
2019
|
+
* time_start
|
|
2020
|
+
*/
|
|
1266
2021
|
label?: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* @example
|
|
2024
|
+
* ASC
|
|
2025
|
+
*/
|
|
1267
2026
|
order?: string;
|
|
1268
2027
|
static names(): {
|
|
1269
2028
|
[key: string]: string;
|
|
@@ -1276,16 +2035,60 @@ export declare class ListJobsRequestSortBy extends $tea.Model {
|
|
|
1276
2035
|
});
|
|
1277
2036
|
}
|
|
1278
2037
|
export declare class ListJobsResponseBodyJobList extends $tea.Model {
|
|
2038
|
+
/**
|
|
2039
|
+
* @example
|
|
2040
|
+
* 2024-01-25 12:29:21
|
|
2041
|
+
*/
|
|
1279
2042
|
createTime?: string;
|
|
2043
|
+
/**
|
|
2044
|
+
* @example
|
|
2045
|
+
* 2024-01-25 12:35:23
|
|
2046
|
+
*/
|
|
1280
2047
|
endTime?: string;
|
|
2048
|
+
/**
|
|
2049
|
+
* @example
|
|
2050
|
+
* 1
|
|
2051
|
+
*/
|
|
1281
2052
|
executorCount?: number;
|
|
2053
|
+
/**
|
|
2054
|
+
* @example
|
|
2055
|
+
* Demo
|
|
2056
|
+
*/
|
|
1282
2057
|
jobDescription?: string;
|
|
2058
|
+
/**
|
|
2059
|
+
* @example
|
|
2060
|
+
* job-xxx
|
|
2061
|
+
*/
|
|
1283
2062
|
jobId?: string;
|
|
2063
|
+
/**
|
|
2064
|
+
* @example
|
|
2065
|
+
* testJob
|
|
2066
|
+
*/
|
|
1284
2067
|
jobName?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* @example
|
|
2070
|
+
* 129**********
|
|
2071
|
+
*/
|
|
1285
2072
|
ownerUid?: string;
|
|
2073
|
+
/**
|
|
2074
|
+
* @example
|
|
2075
|
+
* 2024-01-25 12:29:23
|
|
2076
|
+
*/
|
|
1286
2077
|
startTime?: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* @example
|
|
2080
|
+
* Running
|
|
2081
|
+
*/
|
|
1287
2082
|
status?: string;
|
|
2083
|
+
/**
|
|
2084
|
+
* @example
|
|
2085
|
+
* 1
|
|
2086
|
+
*/
|
|
1288
2087
|
taskCount?: number;
|
|
2088
|
+
/**
|
|
2089
|
+
* @example
|
|
2090
|
+
* true
|
|
2091
|
+
*/
|
|
1289
2092
|
taskSustainable?: boolean;
|
|
1290
2093
|
static names(): {
|
|
1291
2094
|
[key: string]: string;
|
|
@@ -1303,183 +2106,183 @@ export default class Client extends OpenApi {
|
|
|
1303
2106
|
[key: string]: string;
|
|
1304
2107
|
}, endpoint: string): string;
|
|
1305
2108
|
/**
|
|
1306
|
-
*
|
|
2109
|
+
* 添加托管侧用户自定义镜像
|
|
1307
2110
|
*
|
|
1308
|
-
* @param tmpReq AddImageRequest
|
|
1309
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1310
|
-
* @
|
|
2111
|
+
* @param tmpReq - AddImageRequest
|
|
2112
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2113
|
+
* @returns AddImageResponse
|
|
1311
2114
|
*/
|
|
1312
2115
|
addImageWithOptions(tmpReq: AddImageRequest, runtime: $Util.RuntimeOptions): Promise<AddImageResponse>;
|
|
1313
2116
|
/**
|
|
1314
|
-
*
|
|
2117
|
+
* 添加托管侧用户自定义镜像
|
|
1315
2118
|
*
|
|
1316
|
-
* @param request AddImageRequest
|
|
1317
|
-
* @
|
|
2119
|
+
* @param request - AddImageRequest
|
|
2120
|
+
* @returns AddImageResponse
|
|
1318
2121
|
*/
|
|
1319
2122
|
addImage(request: AddImageRequest): Promise<AddImageResponse>;
|
|
1320
2123
|
/**
|
|
1321
|
-
*
|
|
2124
|
+
* 提交任务
|
|
1322
2125
|
*
|
|
1323
|
-
* @param tmpReq CreateJobRequest
|
|
1324
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1325
|
-
* @
|
|
2126
|
+
* @param tmpReq - CreateJobRequest
|
|
2127
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2128
|
+
* @returns CreateJobResponse
|
|
1326
2129
|
*/
|
|
1327
2130
|
createJobWithOptions(tmpReq: CreateJobRequest, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse>;
|
|
1328
2131
|
/**
|
|
1329
|
-
*
|
|
2132
|
+
* 提交任务
|
|
1330
2133
|
*
|
|
1331
|
-
* @param request CreateJobRequest
|
|
1332
|
-
* @
|
|
2134
|
+
* @param request - CreateJobRequest
|
|
2135
|
+
* @returns CreateJobResponse
|
|
1333
2136
|
*/
|
|
1334
2137
|
createJob(request: CreateJobRequest): Promise<CreateJobResponse>;
|
|
1335
2138
|
/**
|
|
1336
|
-
*
|
|
2139
|
+
* 删除作业
|
|
1337
2140
|
*
|
|
1338
|
-
* @param tmpReq DeleteJobsRequest
|
|
1339
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1340
|
-
* @
|
|
2141
|
+
* @param tmpReq - DeleteJobsRequest
|
|
2142
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2143
|
+
* @returns DeleteJobsResponse
|
|
1341
2144
|
*/
|
|
1342
2145
|
deleteJobsWithOptions(tmpReq: DeleteJobsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteJobsResponse>;
|
|
1343
2146
|
/**
|
|
1344
|
-
*
|
|
2147
|
+
* 删除作业
|
|
1345
2148
|
*
|
|
1346
|
-
* @param request DeleteJobsRequest
|
|
1347
|
-
* @
|
|
2149
|
+
* @param request - DeleteJobsRequest
|
|
2150
|
+
* @returns DeleteJobsResponse
|
|
1348
2151
|
*/
|
|
1349
2152
|
deleteJobs(request: DeleteJobsRequest): Promise<DeleteJobsResponse>;
|
|
1350
2153
|
/**
|
|
1351
|
-
*
|
|
2154
|
+
* 查询作业性能数据
|
|
1352
2155
|
*
|
|
1353
|
-
* @param tmpReq DescribeJobMetricDataRequest
|
|
1354
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1355
|
-
* @
|
|
2156
|
+
* @param tmpReq - DescribeJobMetricDataRequest
|
|
2157
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2158
|
+
* @returns DescribeJobMetricDataResponse
|
|
1356
2159
|
*/
|
|
1357
2160
|
describeJobMetricDataWithOptions(tmpReq: DescribeJobMetricDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobMetricDataResponse>;
|
|
1358
2161
|
/**
|
|
1359
|
-
*
|
|
2162
|
+
* 查询作业性能数据
|
|
1360
2163
|
*
|
|
1361
|
-
* @param request DescribeJobMetricDataRequest
|
|
1362
|
-
* @
|
|
2164
|
+
* @param request - DescribeJobMetricDataRequest
|
|
2165
|
+
* @returns DescribeJobMetricDataResponse
|
|
1363
2166
|
*/
|
|
1364
2167
|
describeJobMetricData(request: DescribeJobMetricDataRequest): Promise<DescribeJobMetricDataResponse>;
|
|
1365
2168
|
/**
|
|
1366
|
-
*
|
|
2169
|
+
* 查询作业即时监控项
|
|
1367
2170
|
*
|
|
1368
|
-
* @param tmpReq DescribeJobMetricLastRequest
|
|
1369
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1370
|
-
* @
|
|
2171
|
+
* @param tmpReq - DescribeJobMetricLastRequest
|
|
2172
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2173
|
+
* @returns DescribeJobMetricLastResponse
|
|
1371
2174
|
*/
|
|
1372
2175
|
describeJobMetricLastWithOptions(tmpReq: DescribeJobMetricLastRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobMetricLastResponse>;
|
|
1373
2176
|
/**
|
|
1374
|
-
*
|
|
2177
|
+
* 查询作业即时监控项
|
|
1375
2178
|
*
|
|
1376
|
-
* @param request DescribeJobMetricLastRequest
|
|
1377
|
-
* @
|
|
2179
|
+
* @param request - DescribeJobMetricLastRequest
|
|
2180
|
+
* @returns DescribeJobMetricLastResponse
|
|
1378
2181
|
*/
|
|
1379
2182
|
describeJobMetricLast(request: DescribeJobMetricLastRequest): Promise<DescribeJobMetricLastResponse>;
|
|
1380
2183
|
/**
|
|
1381
|
-
*
|
|
2184
|
+
* 查询托管侧镜像详情。
|
|
1382
2185
|
*
|
|
1383
|
-
* @param request GetImageRequest
|
|
1384
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1385
|
-
* @
|
|
2186
|
+
* @param request - GetImageRequest
|
|
2187
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2188
|
+
* @returns GetImageResponse
|
|
1386
2189
|
*/
|
|
1387
2190
|
getImageWithOptions(request: GetImageRequest, runtime: $Util.RuntimeOptions): Promise<GetImageResponse>;
|
|
1388
2191
|
/**
|
|
1389
|
-
*
|
|
2192
|
+
* 查询托管侧镜像详情。
|
|
1390
2193
|
*
|
|
1391
|
-
* @param request GetImageRequest
|
|
1392
|
-
* @
|
|
2194
|
+
* @param request - GetImageRequest
|
|
2195
|
+
* @returns GetImageResponse
|
|
1393
2196
|
*/
|
|
1394
2197
|
getImage(request: GetImageRequest): Promise<GetImageResponse>;
|
|
1395
2198
|
/**
|
|
1396
|
-
*
|
|
2199
|
+
* 查询作业详情
|
|
1397
2200
|
*
|
|
1398
|
-
* @param request GetJobRequest
|
|
1399
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1400
|
-
* @
|
|
2201
|
+
* @param request - GetJobRequest
|
|
2202
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2203
|
+
* @returns GetJobResponse
|
|
1401
2204
|
*/
|
|
1402
2205
|
getJobWithOptions(request: GetJobRequest, runtime: $Util.RuntimeOptions): Promise<GetJobResponse>;
|
|
1403
2206
|
/**
|
|
1404
|
-
*
|
|
2207
|
+
* 查询作业详情
|
|
1405
2208
|
*
|
|
1406
|
-
* @param request GetJobRequest
|
|
1407
|
-
* @
|
|
2209
|
+
* @param request - GetJobRequest
|
|
2210
|
+
* @returns GetJobResponse
|
|
1408
2211
|
*/
|
|
1409
2212
|
getJob(request: GetJobRequest): Promise<GetJobResponse>;
|
|
1410
2213
|
/**
|
|
1411
|
-
*
|
|
2214
|
+
* 查询全局Executor信息
|
|
1412
2215
|
*
|
|
1413
|
-
* @param tmpReq ListExecutorsRequest
|
|
1414
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1415
|
-
* @
|
|
2216
|
+
* @param tmpReq - ListExecutorsRequest
|
|
2217
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2218
|
+
* @returns ListExecutorsResponse
|
|
1416
2219
|
*/
|
|
1417
2220
|
listExecutorsWithOptions(tmpReq: ListExecutorsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutorsResponse>;
|
|
1418
2221
|
/**
|
|
1419
|
-
*
|
|
2222
|
+
* 查询全局Executor信息
|
|
1420
2223
|
*
|
|
1421
|
-
* @param request ListExecutorsRequest
|
|
1422
|
-
* @
|
|
2224
|
+
* @param request - ListExecutorsRequest
|
|
2225
|
+
* @returns ListExecutorsResponse
|
|
1423
2226
|
*/
|
|
1424
2227
|
listExecutors(request: ListExecutorsRequest): Promise<ListExecutorsResponse>;
|
|
1425
2228
|
/**
|
|
1426
|
-
*
|
|
2229
|
+
* 查看托管侧镜像列表
|
|
1427
2230
|
*
|
|
1428
|
-
* @param tmpReq ListImagesRequest
|
|
1429
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1430
|
-
* @
|
|
2231
|
+
* @param tmpReq - ListImagesRequest
|
|
2232
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2233
|
+
* @returns ListImagesResponse
|
|
1431
2234
|
*/
|
|
1432
2235
|
listImagesWithOptions(tmpReq: ListImagesRequest, runtime: $Util.RuntimeOptions): Promise<ListImagesResponse>;
|
|
1433
2236
|
/**
|
|
1434
|
-
*
|
|
2237
|
+
* 查看托管侧镜像列表
|
|
1435
2238
|
*
|
|
1436
|
-
* @param request ListImagesRequest
|
|
1437
|
-
* @
|
|
2239
|
+
* @param request - ListImagesRequest
|
|
2240
|
+
* @returns ListImagesResponse
|
|
1438
2241
|
*/
|
|
1439
2242
|
listImages(request: ListImagesRequest): Promise<ListImagesResponse>;
|
|
1440
2243
|
/**
|
|
1441
|
-
*
|
|
2244
|
+
* 查询作业Executor信息
|
|
1442
2245
|
*
|
|
1443
|
-
* @param request ListJobExecutorsRequest
|
|
1444
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1445
|
-
* @
|
|
2246
|
+
* @param request - ListJobExecutorsRequest
|
|
2247
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2248
|
+
* @returns ListJobExecutorsResponse
|
|
1446
2249
|
*/
|
|
1447
2250
|
listJobExecutorsWithOptions(request: ListJobExecutorsRequest, runtime: $Util.RuntimeOptions): Promise<ListJobExecutorsResponse>;
|
|
1448
2251
|
/**
|
|
1449
|
-
*
|
|
2252
|
+
* 查询作业Executor信息
|
|
1450
2253
|
*
|
|
1451
|
-
* @param request ListJobExecutorsRequest
|
|
1452
|
-
* @
|
|
2254
|
+
* @param request - ListJobExecutorsRequest
|
|
2255
|
+
* @returns ListJobExecutorsResponse
|
|
1453
2256
|
*/
|
|
1454
2257
|
listJobExecutors(request: ListJobExecutorsRequest): Promise<ListJobExecutorsResponse>;
|
|
1455
2258
|
/**
|
|
1456
|
-
*
|
|
2259
|
+
* 查询作业列表
|
|
1457
2260
|
*
|
|
1458
|
-
* @param tmpReq ListJobsRequest
|
|
1459
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1460
|
-
* @
|
|
2261
|
+
* @param tmpReq - ListJobsRequest
|
|
2262
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2263
|
+
* @returns ListJobsResponse
|
|
1461
2264
|
*/
|
|
1462
2265
|
listJobsWithOptions(tmpReq: ListJobsRequest, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse>;
|
|
1463
2266
|
/**
|
|
1464
|
-
*
|
|
2267
|
+
* 查询作业列表
|
|
1465
2268
|
*
|
|
1466
|
-
* @param request ListJobsRequest
|
|
1467
|
-
* @
|
|
2269
|
+
* @param request - ListJobsRequest
|
|
2270
|
+
* @returns ListJobsResponse
|
|
1468
2271
|
*/
|
|
1469
2272
|
listJobs(request: ListJobsRequest): Promise<ListJobsResponse>;
|
|
1470
2273
|
/**
|
|
1471
|
-
*
|
|
2274
|
+
* 移除托管侧镜像信息。
|
|
1472
2275
|
*
|
|
1473
|
-
* @param request RemoveImageRequest
|
|
1474
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
1475
|
-
* @
|
|
2276
|
+
* @param request - RemoveImageRequest
|
|
2277
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2278
|
+
* @returns RemoveImageResponse
|
|
1476
2279
|
*/
|
|
1477
2280
|
removeImageWithOptions(request: RemoveImageRequest, runtime: $Util.RuntimeOptions): Promise<RemoveImageResponse>;
|
|
1478
2281
|
/**
|
|
1479
|
-
*
|
|
2282
|
+
* 移除托管侧镜像信息。
|
|
1480
2283
|
*
|
|
1481
|
-
* @param request RemoveImageRequest
|
|
1482
|
-
* @
|
|
2284
|
+
* @param request - RemoveImageRequest
|
|
2285
|
+
* @returns RemoveImageResponse
|
|
1483
2286
|
*/
|
|
1484
2287
|
removeImage(request: RemoveImageRequest): Promise<RemoveImageResponse>;
|
|
1485
2288
|
}
|