@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/src/client.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
3
|
*/
|
|
5
4
|
import Util, * as $Util from '@alicloud/tea-util';
|
|
6
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
@@ -11,7 +10,18 @@ import * as $tea from '@alicloud/tea-typescript';
|
|
|
11
10
|
export class AddImageRequest extends $tea.Model {
|
|
12
11
|
containerImageSpec?: AddImageRequestContainerImageSpec;
|
|
13
12
|
description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* V1.0
|
|
16
|
+
*/
|
|
14
17
|
imageVersion?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @remarks
|
|
20
|
+
* This parameter is required.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* app-image
|
|
24
|
+
*/
|
|
15
25
|
name?: string;
|
|
16
26
|
VMImageSpec?: AddImageRequestVMImageSpec;
|
|
17
27
|
static names(): { [key: string]: string } {
|
|
@@ -42,7 +52,18 @@ export class AddImageRequest extends $tea.Model {
|
|
|
42
52
|
export class AddImageShrinkRequest extends $tea.Model {
|
|
43
53
|
containerImageSpecShrink?: string;
|
|
44
54
|
description?: string;
|
|
55
|
+
/**
|
|
56
|
+
* @example
|
|
57
|
+
* V1.0
|
|
58
|
+
*/
|
|
45
59
|
imageVersion?: string;
|
|
60
|
+
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* This parameter is required.
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* app-image
|
|
66
|
+
*/
|
|
46
67
|
name?: string;
|
|
47
68
|
VMImageSpecShrink?: string;
|
|
48
69
|
static names(): { [key: string]: string } {
|
|
@@ -71,8 +92,20 @@ export class AddImageShrinkRequest extends $tea.Model {
|
|
|
71
92
|
}
|
|
72
93
|
|
|
73
94
|
export class AddImageResponseBody extends $tea.Model {
|
|
95
|
+
/**
|
|
96
|
+
* @example
|
|
97
|
+
* m-bp1akkkr1rkxtb******
|
|
98
|
+
*/
|
|
74
99
|
imageId?: string;
|
|
100
|
+
/**
|
|
101
|
+
* @example
|
|
102
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
103
|
+
*/
|
|
75
104
|
requestId?: string;
|
|
105
|
+
/**
|
|
106
|
+
* @example
|
|
107
|
+
* True
|
|
108
|
+
*/
|
|
76
109
|
success?: boolean;
|
|
77
110
|
static names(): { [key: string]: string } {
|
|
78
111
|
return {
|
|
@@ -122,14 +155,31 @@ export class AddImageResponse extends $tea.Model {
|
|
|
122
155
|
|
|
123
156
|
export class CreateJobRequest extends $tea.Model {
|
|
124
157
|
deploymentPolicy?: CreateJobRequestDeploymentPolicy;
|
|
158
|
+
/**
|
|
159
|
+
* @example
|
|
160
|
+
* Demo
|
|
161
|
+
*/
|
|
125
162
|
jobDescription?: string;
|
|
163
|
+
/**
|
|
164
|
+
* @remarks
|
|
165
|
+
* This parameter is required.
|
|
166
|
+
*
|
|
167
|
+
* @example
|
|
168
|
+
* testjob
|
|
169
|
+
*/
|
|
126
170
|
jobName?: string;
|
|
171
|
+
jobScheduler?: string;
|
|
172
|
+
/**
|
|
173
|
+
* @remarks
|
|
174
|
+
* This parameter is required.
|
|
175
|
+
*/
|
|
127
176
|
tasks?: CreateJobRequestTasks[];
|
|
128
177
|
static names(): { [key: string]: string } {
|
|
129
178
|
return {
|
|
130
179
|
deploymentPolicy: 'DeploymentPolicy',
|
|
131
180
|
jobDescription: 'JobDescription',
|
|
132
181
|
jobName: 'JobName',
|
|
182
|
+
jobScheduler: 'JobScheduler',
|
|
133
183
|
tasks: 'Tasks',
|
|
134
184
|
};
|
|
135
185
|
}
|
|
@@ -139,6 +189,7 @@ export class CreateJobRequest extends $tea.Model {
|
|
|
139
189
|
deploymentPolicy: CreateJobRequestDeploymentPolicy,
|
|
140
190
|
jobDescription: 'string',
|
|
141
191
|
jobName: 'string',
|
|
192
|
+
jobScheduler: 'string',
|
|
142
193
|
tasks: { 'type': 'array', 'itemType': CreateJobRequestTasks },
|
|
143
194
|
};
|
|
144
195
|
}
|
|
@@ -150,14 +201,31 @@ export class CreateJobRequest extends $tea.Model {
|
|
|
150
201
|
|
|
151
202
|
export class CreateJobShrinkRequest extends $tea.Model {
|
|
152
203
|
deploymentPolicyShrink?: string;
|
|
204
|
+
/**
|
|
205
|
+
* @example
|
|
206
|
+
* Demo
|
|
207
|
+
*/
|
|
153
208
|
jobDescription?: string;
|
|
209
|
+
/**
|
|
210
|
+
* @remarks
|
|
211
|
+
* This parameter is required.
|
|
212
|
+
*
|
|
213
|
+
* @example
|
|
214
|
+
* testjob
|
|
215
|
+
*/
|
|
154
216
|
jobName?: string;
|
|
217
|
+
jobScheduler?: string;
|
|
218
|
+
/**
|
|
219
|
+
* @remarks
|
|
220
|
+
* This parameter is required.
|
|
221
|
+
*/
|
|
155
222
|
tasksShrink?: string;
|
|
156
223
|
static names(): { [key: string]: string } {
|
|
157
224
|
return {
|
|
158
225
|
deploymentPolicyShrink: 'DeploymentPolicy',
|
|
159
226
|
jobDescription: 'JobDescription',
|
|
160
227
|
jobName: 'JobName',
|
|
228
|
+
jobScheduler: 'JobScheduler',
|
|
161
229
|
tasksShrink: 'Tasks',
|
|
162
230
|
};
|
|
163
231
|
}
|
|
@@ -167,6 +235,7 @@ export class CreateJobShrinkRequest extends $tea.Model {
|
|
|
167
235
|
deploymentPolicyShrink: 'string',
|
|
168
236
|
jobDescription: 'string',
|
|
169
237
|
jobName: 'string',
|
|
238
|
+
jobScheduler: 'string',
|
|
170
239
|
tasksShrink: 'string',
|
|
171
240
|
};
|
|
172
241
|
}
|
|
@@ -177,7 +246,15 @@ export class CreateJobShrinkRequest extends $tea.Model {
|
|
|
177
246
|
}
|
|
178
247
|
|
|
179
248
|
export class CreateJobResponseBody extends $tea.Model {
|
|
249
|
+
/**
|
|
250
|
+
* @example
|
|
251
|
+
* job-xxxx
|
|
252
|
+
*/
|
|
180
253
|
jobId?: string;
|
|
254
|
+
/**
|
|
255
|
+
* @example
|
|
256
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
257
|
+
*/
|
|
181
258
|
requestId?: string;
|
|
182
259
|
tasks?: CreateJobResponseBodyTasks[];
|
|
183
260
|
static names(): { [key: string]: string } {
|
|
@@ -271,6 +348,10 @@ export class DeleteJobsShrinkRequest extends $tea.Model {
|
|
|
271
348
|
}
|
|
272
349
|
|
|
273
350
|
export class DeleteJobsResponseBody extends $tea.Model {
|
|
351
|
+
/**
|
|
352
|
+
* @example
|
|
353
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
354
|
+
*/
|
|
274
355
|
requestId?: string;
|
|
275
356
|
static names(): { [key: string]: string } {
|
|
276
357
|
return {
|
|
@@ -316,8 +397,20 @@ export class DeleteJobsResponse extends $tea.Model {
|
|
|
316
397
|
|
|
317
398
|
export class DescribeJobMetricDataRequest extends $tea.Model {
|
|
318
399
|
arrayIndex?: number[];
|
|
400
|
+
/**
|
|
401
|
+
* @example
|
|
402
|
+
* job-xxxxx
|
|
403
|
+
*/
|
|
319
404
|
jobId?: string;
|
|
405
|
+
/**
|
|
406
|
+
* @example
|
|
407
|
+
* cpu_utilization
|
|
408
|
+
*/
|
|
320
409
|
metricName?: string;
|
|
410
|
+
/**
|
|
411
|
+
* @example
|
|
412
|
+
* Task0
|
|
413
|
+
*/
|
|
321
414
|
taskName?: string;
|
|
322
415
|
static names(): { [key: string]: string } {
|
|
323
416
|
return {
|
|
@@ -344,8 +437,20 @@ export class DescribeJobMetricDataRequest extends $tea.Model {
|
|
|
344
437
|
|
|
345
438
|
export class DescribeJobMetricDataShrinkRequest extends $tea.Model {
|
|
346
439
|
arrayIndexShrink?: string;
|
|
440
|
+
/**
|
|
441
|
+
* @example
|
|
442
|
+
* job-xxxxx
|
|
443
|
+
*/
|
|
347
444
|
jobId?: string;
|
|
445
|
+
/**
|
|
446
|
+
* @example
|
|
447
|
+
* cpu_utilization
|
|
448
|
+
*/
|
|
348
449
|
metricName?: string;
|
|
450
|
+
/**
|
|
451
|
+
* @example
|
|
452
|
+
* Task0
|
|
453
|
+
*/
|
|
349
454
|
taskName?: string;
|
|
350
455
|
static names(): { [key: string]: string } {
|
|
351
456
|
return {
|
|
@@ -371,8 +476,20 @@ export class DescribeJobMetricDataShrinkRequest extends $tea.Model {
|
|
|
371
476
|
}
|
|
372
477
|
|
|
373
478
|
export class DescribeJobMetricDataResponseBody extends $tea.Model {
|
|
479
|
+
/**
|
|
480
|
+
* @example
|
|
481
|
+
* [{"timestamp":1709540685000,"Minimum":28.45,"Maximum":28.45,"Average":28.45}]
|
|
482
|
+
*/
|
|
374
483
|
dataPoints?: string;
|
|
484
|
+
/**
|
|
485
|
+
* @example
|
|
486
|
+
* 15
|
|
487
|
+
*/
|
|
375
488
|
period?: number;
|
|
489
|
+
/**
|
|
490
|
+
* @example
|
|
491
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
492
|
+
*/
|
|
376
493
|
requestId?: string;
|
|
377
494
|
static names(): { [key: string]: string } {
|
|
378
495
|
return {
|
|
@@ -422,7 +539,15 @@ export class DescribeJobMetricDataResponse extends $tea.Model {
|
|
|
422
539
|
|
|
423
540
|
export class DescribeJobMetricLastRequest extends $tea.Model {
|
|
424
541
|
arrayIndex?: number[];
|
|
542
|
+
/**
|
|
543
|
+
* @example
|
|
544
|
+
* job-xxxxx
|
|
545
|
+
*/
|
|
425
546
|
jobId?: string;
|
|
547
|
+
/**
|
|
548
|
+
* @example
|
|
549
|
+
* Task0
|
|
550
|
+
*/
|
|
426
551
|
taskName?: string;
|
|
427
552
|
static names(): { [key: string]: string } {
|
|
428
553
|
return {
|
|
@@ -447,7 +572,15 @@ export class DescribeJobMetricLastRequest extends $tea.Model {
|
|
|
447
572
|
|
|
448
573
|
export class DescribeJobMetricLastShrinkRequest extends $tea.Model {
|
|
449
574
|
arrayIndexShrink?: string;
|
|
575
|
+
/**
|
|
576
|
+
* @example
|
|
577
|
+
* job-xxxxx
|
|
578
|
+
*/
|
|
450
579
|
jobId?: string;
|
|
580
|
+
/**
|
|
581
|
+
* @example
|
|
582
|
+
* Task0
|
|
583
|
+
*/
|
|
451
584
|
taskName?: string;
|
|
452
585
|
static names(): { [key: string]: string } {
|
|
453
586
|
return {
|
|
@@ -472,6 +605,10 @@ export class DescribeJobMetricLastShrinkRequest extends $tea.Model {
|
|
|
472
605
|
|
|
473
606
|
export class DescribeJobMetricLastResponseBody extends $tea.Model {
|
|
474
607
|
metrics?: DescribeJobMetricLastResponseBodyMetrics[];
|
|
608
|
+
/**
|
|
609
|
+
* @example
|
|
610
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
611
|
+
*/
|
|
475
612
|
requestId?: string;
|
|
476
613
|
static names(): { [key: string]: string } {
|
|
477
614
|
return {
|
|
@@ -518,16 +655,29 @@ export class DescribeJobMetricLastResponse extends $tea.Model {
|
|
|
518
655
|
}
|
|
519
656
|
|
|
520
657
|
export class GetImageRequest extends $tea.Model {
|
|
658
|
+
imageCategory?: string;
|
|
659
|
+
/**
|
|
660
|
+
* @remarks
|
|
661
|
+
* This parameter is required.
|
|
662
|
+
*
|
|
663
|
+
* @example
|
|
664
|
+
* m-2ze74g5mvy4pjg*****
|
|
665
|
+
*/
|
|
521
666
|
imageId?: string;
|
|
667
|
+
imageType?: string;
|
|
522
668
|
static names(): { [key: string]: string } {
|
|
523
669
|
return {
|
|
670
|
+
imageCategory: 'ImageCategory',
|
|
524
671
|
imageId: 'ImageId',
|
|
672
|
+
imageType: 'ImageType',
|
|
525
673
|
};
|
|
526
674
|
}
|
|
527
675
|
|
|
528
676
|
static types(): { [key: string]: any } {
|
|
529
677
|
return {
|
|
678
|
+
imageCategory: 'string',
|
|
530
679
|
imageId: 'string',
|
|
680
|
+
imageType: 'string',
|
|
531
681
|
};
|
|
532
682
|
}
|
|
533
683
|
|
|
@@ -538,8 +688,20 @@ export class GetImageRequest extends $tea.Model {
|
|
|
538
688
|
|
|
539
689
|
export class GetImageResponseBody extends $tea.Model {
|
|
540
690
|
image?: GetImageResponseBodyImage;
|
|
691
|
+
/**
|
|
692
|
+
* @example
|
|
693
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
694
|
+
*/
|
|
541
695
|
requestId?: string;
|
|
696
|
+
/**
|
|
697
|
+
* @example
|
|
698
|
+
* true
|
|
699
|
+
*/
|
|
542
700
|
success?: boolean;
|
|
701
|
+
/**
|
|
702
|
+
* @example
|
|
703
|
+
* 10
|
|
704
|
+
*/
|
|
543
705
|
totalCount?: number;
|
|
544
706
|
static names(): { [key: string]: string } {
|
|
545
707
|
return {
|
|
@@ -590,6 +752,10 @@ export class GetImageResponse extends $tea.Model {
|
|
|
590
752
|
}
|
|
591
753
|
|
|
592
754
|
export class GetJobRequest extends $tea.Model {
|
|
755
|
+
/**
|
|
756
|
+
* @example
|
|
757
|
+
* job-xxxx
|
|
758
|
+
*/
|
|
593
759
|
jobId?: string;
|
|
594
760
|
static names(): { [key: string]: string } {
|
|
595
761
|
return {
|
|
@@ -610,6 +776,10 @@ export class GetJobRequest extends $tea.Model {
|
|
|
610
776
|
|
|
611
777
|
export class GetJobResponseBody extends $tea.Model {
|
|
612
778
|
jobInfo?: GetJobResponseBodyJobInfo;
|
|
779
|
+
/**
|
|
780
|
+
* @example
|
|
781
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
782
|
+
*/
|
|
613
783
|
requestId?: string;
|
|
614
784
|
static names(): { [key: string]: string } {
|
|
615
785
|
return {
|
|
@@ -657,7 +827,15 @@ export class GetJobResponse extends $tea.Model {
|
|
|
657
827
|
|
|
658
828
|
export class ListExecutorsRequest extends $tea.Model {
|
|
659
829
|
filter?: ListExecutorsRequestFilter;
|
|
830
|
+
/**
|
|
831
|
+
* @example
|
|
832
|
+
* 1
|
|
833
|
+
*/
|
|
660
834
|
pageNumber?: string;
|
|
835
|
+
/**
|
|
836
|
+
* @example
|
|
837
|
+
* 50
|
|
838
|
+
*/
|
|
661
839
|
pageSize?: string;
|
|
662
840
|
static names(): { [key: string]: string } {
|
|
663
841
|
return {
|
|
@@ -682,7 +860,15 @@ export class ListExecutorsRequest extends $tea.Model {
|
|
|
682
860
|
|
|
683
861
|
export class ListExecutorsShrinkRequest extends $tea.Model {
|
|
684
862
|
filterShrink?: string;
|
|
863
|
+
/**
|
|
864
|
+
* @example
|
|
865
|
+
* 1
|
|
866
|
+
*/
|
|
685
867
|
pageNumber?: string;
|
|
868
|
+
/**
|
|
869
|
+
* @example
|
|
870
|
+
* 50
|
|
871
|
+
*/
|
|
686
872
|
pageSize?: string;
|
|
687
873
|
static names(): { [key: string]: string } {
|
|
688
874
|
return {
|
|
@@ -707,9 +893,25 @@ export class ListExecutorsShrinkRequest extends $tea.Model {
|
|
|
707
893
|
|
|
708
894
|
export class ListExecutorsResponseBody extends $tea.Model {
|
|
709
895
|
executors?: ListExecutorsResponseBodyExecutors[];
|
|
896
|
+
/**
|
|
897
|
+
* @example
|
|
898
|
+
* 1
|
|
899
|
+
*/
|
|
710
900
|
pageNumber?: string;
|
|
901
|
+
/**
|
|
902
|
+
* @example
|
|
903
|
+
* 50
|
|
904
|
+
*/
|
|
711
905
|
pageSize?: string;
|
|
906
|
+
/**
|
|
907
|
+
* @example
|
|
908
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
909
|
+
*/
|
|
712
910
|
requestId?: string;
|
|
911
|
+
/**
|
|
912
|
+
* @example
|
|
913
|
+
* 40
|
|
914
|
+
*/
|
|
713
915
|
totalCount?: string;
|
|
714
916
|
static names(): { [key: string]: string } {
|
|
715
917
|
return {
|
|
@@ -762,14 +964,26 @@ export class ListExecutorsResponse extends $tea.Model {
|
|
|
762
964
|
}
|
|
763
965
|
|
|
764
966
|
export class ListImagesRequest extends $tea.Model {
|
|
967
|
+
imageCategory?: string;
|
|
765
968
|
imageIds?: string[];
|
|
766
969
|
imageNames?: string[];
|
|
970
|
+
imageType?: string;
|
|
971
|
+
/**
|
|
972
|
+
* @example
|
|
973
|
+
* 1
|
|
974
|
+
*/
|
|
767
975
|
pageNumber?: number;
|
|
976
|
+
/**
|
|
977
|
+
* @example
|
|
978
|
+
* 10
|
|
979
|
+
*/
|
|
768
980
|
pageSize?: number;
|
|
769
981
|
static names(): { [key: string]: string } {
|
|
770
982
|
return {
|
|
983
|
+
imageCategory: 'ImageCategory',
|
|
771
984
|
imageIds: 'ImageIds',
|
|
772
985
|
imageNames: 'ImageNames',
|
|
986
|
+
imageType: 'ImageType',
|
|
773
987
|
pageNumber: 'PageNumber',
|
|
774
988
|
pageSize: 'PageSize',
|
|
775
989
|
};
|
|
@@ -777,8 +991,10 @@ export class ListImagesRequest extends $tea.Model {
|
|
|
777
991
|
|
|
778
992
|
static types(): { [key: string]: any } {
|
|
779
993
|
return {
|
|
994
|
+
imageCategory: 'string',
|
|
780
995
|
imageIds: { 'type': 'array', 'itemType': 'string' },
|
|
781
996
|
imageNames: { 'type': 'array', 'itemType': 'string' },
|
|
997
|
+
imageType: 'string',
|
|
782
998
|
pageNumber: 'number',
|
|
783
999
|
pageSize: 'number',
|
|
784
1000
|
};
|
|
@@ -790,14 +1006,26 @@ export class ListImagesRequest extends $tea.Model {
|
|
|
790
1006
|
}
|
|
791
1007
|
|
|
792
1008
|
export class ListImagesShrinkRequest extends $tea.Model {
|
|
1009
|
+
imageCategory?: string;
|
|
793
1010
|
imageIdsShrink?: string;
|
|
794
1011
|
imageNamesShrink?: string;
|
|
1012
|
+
imageType?: string;
|
|
1013
|
+
/**
|
|
1014
|
+
* @example
|
|
1015
|
+
* 1
|
|
1016
|
+
*/
|
|
795
1017
|
pageNumber?: number;
|
|
1018
|
+
/**
|
|
1019
|
+
* @example
|
|
1020
|
+
* 10
|
|
1021
|
+
*/
|
|
796
1022
|
pageSize?: number;
|
|
797
1023
|
static names(): { [key: string]: string } {
|
|
798
1024
|
return {
|
|
1025
|
+
imageCategory: 'ImageCategory',
|
|
799
1026
|
imageIdsShrink: 'ImageIds',
|
|
800
1027
|
imageNamesShrink: 'ImageNames',
|
|
1028
|
+
imageType: 'ImageType',
|
|
801
1029
|
pageNumber: 'PageNumber',
|
|
802
1030
|
pageSize: 'PageSize',
|
|
803
1031
|
};
|
|
@@ -805,8 +1033,10 @@ export class ListImagesShrinkRequest extends $tea.Model {
|
|
|
805
1033
|
|
|
806
1034
|
static types(): { [key: string]: any } {
|
|
807
1035
|
return {
|
|
1036
|
+
imageCategory: 'string',
|
|
808
1037
|
imageIdsShrink: 'string',
|
|
809
1038
|
imageNamesShrink: 'string',
|
|
1039
|
+
imageType: 'string',
|
|
810
1040
|
pageNumber: 'number',
|
|
811
1041
|
pageSize: 'number',
|
|
812
1042
|
};
|
|
@@ -819,10 +1049,30 @@ export class ListImagesShrinkRequest extends $tea.Model {
|
|
|
819
1049
|
|
|
820
1050
|
export class ListImagesResponseBody extends $tea.Model {
|
|
821
1051
|
images?: ListImagesResponseBodyImages[];
|
|
1052
|
+
/**
|
|
1053
|
+
* @example
|
|
1054
|
+
* 1
|
|
1055
|
+
*/
|
|
822
1056
|
pageNumber?: number;
|
|
1057
|
+
/**
|
|
1058
|
+
* @example
|
|
1059
|
+
* 20
|
|
1060
|
+
*/
|
|
823
1061
|
pageSize?: number;
|
|
1062
|
+
/**
|
|
1063
|
+
* @example
|
|
1064
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
1065
|
+
*/
|
|
824
1066
|
requestId?: string;
|
|
1067
|
+
/**
|
|
1068
|
+
* @example
|
|
1069
|
+
* true
|
|
1070
|
+
*/
|
|
825
1071
|
success?: boolean;
|
|
1072
|
+
/**
|
|
1073
|
+
* @example
|
|
1074
|
+
* 1
|
|
1075
|
+
*/
|
|
826
1076
|
totalCount?: number;
|
|
827
1077
|
static names(): { [key: string]: string } {
|
|
828
1078
|
return {
|
|
@@ -877,9 +1127,25 @@ export class ListImagesResponse extends $tea.Model {
|
|
|
877
1127
|
}
|
|
878
1128
|
|
|
879
1129
|
export class ListJobExecutorsRequest extends $tea.Model {
|
|
1130
|
+
/**
|
|
1131
|
+
* @example
|
|
1132
|
+
* job-xxx
|
|
1133
|
+
*/
|
|
880
1134
|
jobId?: string;
|
|
1135
|
+
/**
|
|
1136
|
+
* @example
|
|
1137
|
+
* 1
|
|
1138
|
+
*/
|
|
881
1139
|
pageNumber?: string;
|
|
1140
|
+
/**
|
|
1141
|
+
* @example
|
|
1142
|
+
* 10
|
|
1143
|
+
*/
|
|
882
1144
|
pageSize?: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* @example
|
|
1147
|
+
* task0
|
|
1148
|
+
*/
|
|
883
1149
|
taskName?: string;
|
|
884
1150
|
static names(): { [key: string]: string } {
|
|
885
1151
|
return {
|
|
@@ -906,11 +1172,35 @@ export class ListJobExecutorsRequest extends $tea.Model {
|
|
|
906
1172
|
|
|
907
1173
|
export class ListJobExecutorsResponseBody extends $tea.Model {
|
|
908
1174
|
executors?: ListJobExecutorsResponseBodyExecutors[];
|
|
1175
|
+
/**
|
|
1176
|
+
* @example
|
|
1177
|
+
* job-xxxx
|
|
1178
|
+
*/
|
|
909
1179
|
jobId?: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* @example
|
|
1182
|
+
* 1
|
|
1183
|
+
*/
|
|
910
1184
|
pageNumber?: string;
|
|
1185
|
+
/**
|
|
1186
|
+
* @example
|
|
1187
|
+
* 10
|
|
1188
|
+
*/
|
|
911
1189
|
pageSize?: string;
|
|
1190
|
+
/**
|
|
1191
|
+
* @example
|
|
1192
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
1193
|
+
*/
|
|
912
1194
|
requestId?: string;
|
|
1195
|
+
/**
|
|
1196
|
+
* @example
|
|
1197
|
+
* task0
|
|
1198
|
+
*/
|
|
913
1199
|
taskName?: string;
|
|
1200
|
+
/**
|
|
1201
|
+
* @example
|
|
1202
|
+
* 50
|
|
1203
|
+
*/
|
|
914
1204
|
totalCount?: string;
|
|
915
1205
|
static names(): { [key: string]: string } {
|
|
916
1206
|
return {
|
|
@@ -968,7 +1258,15 @@ export class ListJobExecutorsResponse extends $tea.Model {
|
|
|
968
1258
|
|
|
969
1259
|
export class ListJobsRequest extends $tea.Model {
|
|
970
1260
|
filter?: ListJobsRequestFilter;
|
|
1261
|
+
/**
|
|
1262
|
+
* @example
|
|
1263
|
+
* 1
|
|
1264
|
+
*/
|
|
971
1265
|
pageNumber?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* @example
|
|
1268
|
+
* 50
|
|
1269
|
+
*/
|
|
972
1270
|
pageSize?: string;
|
|
973
1271
|
sortBy?: ListJobsRequestSortBy;
|
|
974
1272
|
static names(): { [key: string]: string } {
|
|
@@ -996,7 +1294,15 @@ export class ListJobsRequest extends $tea.Model {
|
|
|
996
1294
|
|
|
997
1295
|
export class ListJobsShrinkRequest extends $tea.Model {
|
|
998
1296
|
filterShrink?: string;
|
|
1297
|
+
/**
|
|
1298
|
+
* @example
|
|
1299
|
+
* 1
|
|
1300
|
+
*/
|
|
999
1301
|
pageNumber?: string;
|
|
1302
|
+
/**
|
|
1303
|
+
* @example
|
|
1304
|
+
* 50
|
|
1305
|
+
*/
|
|
1000
1306
|
pageSize?: string;
|
|
1001
1307
|
sortByShrink?: string;
|
|
1002
1308
|
static names(): { [key: string]: string } {
|
|
@@ -1024,9 +1330,25 @@ export class ListJobsShrinkRequest extends $tea.Model {
|
|
|
1024
1330
|
|
|
1025
1331
|
export class ListJobsResponseBody extends $tea.Model {
|
|
1026
1332
|
jobList?: ListJobsResponseBodyJobList[];
|
|
1333
|
+
/**
|
|
1334
|
+
* @example
|
|
1335
|
+
* 1
|
|
1336
|
+
*/
|
|
1027
1337
|
pageNumber?: number;
|
|
1338
|
+
/**
|
|
1339
|
+
* @example
|
|
1340
|
+
* 10
|
|
1341
|
+
*/
|
|
1028
1342
|
pageSize?: number;
|
|
1343
|
+
/**
|
|
1344
|
+
* @example
|
|
1345
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
1346
|
+
*/
|
|
1029
1347
|
requestId?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
* @example
|
|
1350
|
+
* 1
|
|
1351
|
+
*/
|
|
1030
1352
|
totalCount?: number;
|
|
1031
1353
|
static names(): { [key: string]: string } {
|
|
1032
1354
|
return {
|
|
@@ -1079,6 +1401,13 @@ export class ListJobsResponse extends $tea.Model {
|
|
|
1079
1401
|
}
|
|
1080
1402
|
|
|
1081
1403
|
export class RemoveImageRequest extends $tea.Model {
|
|
1404
|
+
/**
|
|
1405
|
+
* @remarks
|
|
1406
|
+
* This parameter is required.
|
|
1407
|
+
*
|
|
1408
|
+
* @example
|
|
1409
|
+
* m-bp14wakr1rkxtb******
|
|
1410
|
+
*/
|
|
1082
1411
|
imageId?: string;
|
|
1083
1412
|
static names(): { [key: string]: string } {
|
|
1084
1413
|
return {
|
|
@@ -1098,7 +1427,15 @@ export class RemoveImageRequest extends $tea.Model {
|
|
|
1098
1427
|
}
|
|
1099
1428
|
|
|
1100
1429
|
export class RemoveImageResponseBody extends $tea.Model {
|
|
1430
|
+
/**
|
|
1431
|
+
* @example
|
|
1432
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
1433
|
+
*/
|
|
1101
1434
|
requestId?: string;
|
|
1435
|
+
/**
|
|
1436
|
+
* @example
|
|
1437
|
+
* true
|
|
1438
|
+
*/
|
|
1102
1439
|
success?: boolean;
|
|
1103
1440
|
static names(): { [key: string]: string } {
|
|
1104
1441
|
return {
|
|
@@ -1145,8 +1482,20 @@ export class RemoveImageResponse extends $tea.Model {
|
|
|
1145
1482
|
}
|
|
1146
1483
|
|
|
1147
1484
|
export class AddImageRequestContainerImageSpecRegistryCredential extends $tea.Model {
|
|
1485
|
+
/**
|
|
1486
|
+
* @example
|
|
1487
|
+
* userpassword
|
|
1488
|
+
*/
|
|
1148
1489
|
password?: string;
|
|
1490
|
+
/**
|
|
1491
|
+
* @example
|
|
1492
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
1493
|
+
*/
|
|
1149
1494
|
server?: string;
|
|
1495
|
+
/**
|
|
1496
|
+
* @example
|
|
1497
|
+
* username
|
|
1498
|
+
*/
|
|
1150
1499
|
userName?: string;
|
|
1151
1500
|
static names(): { [key: string]: string } {
|
|
1152
1501
|
return {
|
|
@@ -1170,10 +1519,26 @@ export class AddImageRequestContainerImageSpecRegistryCredential extends $tea.Mo
|
|
|
1170
1519
|
}
|
|
1171
1520
|
|
|
1172
1521
|
export class AddImageRequestContainerImageSpec extends $tea.Model {
|
|
1522
|
+
/**
|
|
1523
|
+
* @example
|
|
1524
|
+
* True
|
|
1525
|
+
*/
|
|
1173
1526
|
isACREnterprise?: boolean;
|
|
1527
|
+
/**
|
|
1528
|
+
* @example
|
|
1529
|
+
* True
|
|
1530
|
+
*/
|
|
1174
1531
|
isACRRegistry?: boolean;
|
|
1175
1532
|
registryCredential?: AddImageRequestContainerImageSpecRegistryCredential;
|
|
1533
|
+
/**
|
|
1534
|
+
* @example
|
|
1535
|
+
* cri-xyz795ygf8k9****
|
|
1536
|
+
*/
|
|
1176
1537
|
registryCriId?: string;
|
|
1538
|
+
/**
|
|
1539
|
+
* @example
|
|
1540
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc_open/nginx:latest
|
|
1541
|
+
*/
|
|
1177
1542
|
registryUrl?: string;
|
|
1178
1543
|
static names(): { [key: string]: string } {
|
|
1179
1544
|
return {
|
|
@@ -1201,6 +1566,10 @@ export class AddImageRequestContainerImageSpec extends $tea.Model {
|
|
|
1201
1566
|
}
|
|
1202
1567
|
|
|
1203
1568
|
export class AddImageRequestVMImageSpec extends $tea.Model {
|
|
1569
|
+
/**
|
|
1570
|
+
* @example
|
|
1571
|
+
* m-bp1akkkr1rkxtb******
|
|
1572
|
+
*/
|
|
1204
1573
|
imageId?: string;
|
|
1205
1574
|
static names(): { [key: string]: string } {
|
|
1206
1575
|
return {
|
|
@@ -1239,6 +1608,10 @@ export class CreateJobRequestDeploymentPolicyNetwork extends $tea.Model {
|
|
|
1239
1608
|
}
|
|
1240
1609
|
|
|
1241
1610
|
export class CreateJobRequestDeploymentPolicy extends $tea.Model {
|
|
1611
|
+
/**
|
|
1612
|
+
* @example
|
|
1613
|
+
* Dedicated
|
|
1614
|
+
*/
|
|
1242
1615
|
allocationSpec?: string;
|
|
1243
1616
|
network?: CreateJobRequestDeploymentPolicyNetwork;
|
|
1244
1617
|
static names(): { [key: string]: string } {
|
|
@@ -1261,8 +1634,20 @@ export class CreateJobRequestDeploymentPolicy extends $tea.Model {
|
|
|
1261
1634
|
}
|
|
1262
1635
|
|
|
1263
1636
|
export class CreateJobRequestTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
1637
|
+
/**
|
|
1638
|
+
* @example
|
|
1639
|
+
* 9
|
|
1640
|
+
*/
|
|
1264
1641
|
indexEnd?: number;
|
|
1642
|
+
/**
|
|
1643
|
+
* @example
|
|
1644
|
+
* 0
|
|
1645
|
+
*/
|
|
1265
1646
|
indexStart?: number;
|
|
1647
|
+
/**
|
|
1648
|
+
* @example
|
|
1649
|
+
* 1
|
|
1650
|
+
*/
|
|
1266
1651
|
indexStep?: number;
|
|
1267
1652
|
static names(): { [key: string]: string } {
|
|
1268
1653
|
return {
|
|
@@ -1287,6 +1672,10 @@ export class CreateJobRequestTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
|
1287
1672
|
|
|
1288
1673
|
export class CreateJobRequestTasksExecutorPolicy extends $tea.Model {
|
|
1289
1674
|
arraySpec?: CreateJobRequestTasksExecutorPolicyArraySpec;
|
|
1675
|
+
/**
|
|
1676
|
+
* @example
|
|
1677
|
+
* 1
|
|
1678
|
+
*/
|
|
1290
1679
|
maxCount?: number;
|
|
1291
1680
|
static names(): { [key: string]: string } {
|
|
1292
1681
|
return {
|
|
@@ -1308,7 +1697,15 @@ export class CreateJobRequestTasksExecutorPolicy extends $tea.Model {
|
|
|
1308
1697
|
}
|
|
1309
1698
|
|
|
1310
1699
|
export class CreateJobRequestTasksTaskSpecResourceDisks extends $tea.Model {
|
|
1700
|
+
/**
|
|
1701
|
+
* @example
|
|
1702
|
+
* 40
|
|
1703
|
+
*/
|
|
1311
1704
|
size?: number;
|
|
1705
|
+
/**
|
|
1706
|
+
* @example
|
|
1707
|
+
* System
|
|
1708
|
+
*/
|
|
1312
1709
|
type?: string;
|
|
1313
1710
|
static names(): { [key: string]: string } {
|
|
1314
1711
|
return {
|
|
@@ -1330,8 +1727,16 @@ export class CreateJobRequestTasksTaskSpecResourceDisks extends $tea.Model {
|
|
|
1330
1727
|
}
|
|
1331
1728
|
|
|
1332
1729
|
export class CreateJobRequestTasksTaskSpecResource extends $tea.Model {
|
|
1730
|
+
/**
|
|
1731
|
+
* @example
|
|
1732
|
+
* 2
|
|
1733
|
+
*/
|
|
1333
1734
|
cores?: number;
|
|
1334
1735
|
disks?: CreateJobRequestTasksTaskSpecResourceDisks[];
|
|
1736
|
+
/**
|
|
1737
|
+
* @example
|
|
1738
|
+
* 4
|
|
1739
|
+
*/
|
|
1335
1740
|
memory?: number;
|
|
1336
1741
|
static names(): { [key: string]: string } {
|
|
1337
1742
|
return {
|
|
@@ -1355,7 +1760,15 @@ export class CreateJobRequestTasksTaskSpecResource extends $tea.Model {
|
|
|
1355
1760
|
}
|
|
1356
1761
|
|
|
1357
1762
|
export class CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars extends $tea.Model {
|
|
1763
|
+
/**
|
|
1764
|
+
* @example
|
|
1765
|
+
* PATH
|
|
1766
|
+
*/
|
|
1358
1767
|
name?: string;
|
|
1768
|
+
/**
|
|
1769
|
+
* @example
|
|
1770
|
+
* /usr/local/bin
|
|
1771
|
+
*/
|
|
1359
1772
|
value?: string;
|
|
1360
1773
|
static names(): { [key: string]: string } {
|
|
1361
1774
|
return {
|
|
@@ -1377,12 +1790,25 @@ export class CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars e
|
|
|
1377
1790
|
}
|
|
1378
1791
|
|
|
1379
1792
|
export class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends $tea.Model {
|
|
1793
|
+
appId?: string;
|
|
1380
1794
|
command?: string[];
|
|
1381
1795
|
environmentVars?: CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars[];
|
|
1796
|
+
/**
|
|
1797
|
+
* @remarks
|
|
1798
|
+
* This parameter is required.
|
|
1799
|
+
*
|
|
1800
|
+
* @example
|
|
1801
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc/hpl:latest
|
|
1802
|
+
*/
|
|
1382
1803
|
image?: string;
|
|
1804
|
+
/**
|
|
1805
|
+
* @example
|
|
1806
|
+
* /usr/local/
|
|
1807
|
+
*/
|
|
1383
1808
|
workingDir?: string;
|
|
1384
1809
|
static names(): { [key: string]: string } {
|
|
1385
1810
|
return {
|
|
1811
|
+
appId: 'AppId',
|
|
1386
1812
|
command: 'Command',
|
|
1387
1813
|
environmentVars: 'EnvironmentVars',
|
|
1388
1814
|
image: 'Image',
|
|
@@ -1392,6 +1818,7 @@ export class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends $tea.Mod
|
|
|
1392
1818
|
|
|
1393
1819
|
static types(): { [key: string]: any } {
|
|
1394
1820
|
return {
|
|
1821
|
+
appId: 'string',
|
|
1395
1822
|
command: { 'type': 'array', 'itemType': 'string' },
|
|
1396
1823
|
environmentVars: { 'type': 'array', 'itemType': CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars },
|
|
1397
1824
|
image: 'string',
|
|
@@ -1405,11 +1832,28 @@ export class CreateJobRequestTasksTaskSpecTaskExecutorContainer extends $tea.Mod
|
|
|
1405
1832
|
}
|
|
1406
1833
|
|
|
1407
1834
|
export class CreateJobRequestTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
1835
|
+
appId?: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* @remarks
|
|
1838
|
+
* This parameter is required.
|
|
1839
|
+
*
|
|
1840
|
+
* @example
|
|
1841
|
+
* m-xxxx
|
|
1842
|
+
*/
|
|
1408
1843
|
image?: string;
|
|
1844
|
+
/**
|
|
1845
|
+
* @example
|
|
1846
|
+
* ZWNobyBoZWxsbyBlY3Mh
|
|
1847
|
+
*/
|
|
1409
1848
|
prologScript?: string;
|
|
1849
|
+
/**
|
|
1850
|
+
* @example
|
|
1851
|
+
* ZWNobyBoZWxsbyBlY3Mh
|
|
1852
|
+
*/
|
|
1410
1853
|
script?: string;
|
|
1411
1854
|
static names(): { [key: string]: string } {
|
|
1412
1855
|
return {
|
|
1856
|
+
appId: 'AppId',
|
|
1413
1857
|
image: 'Image',
|
|
1414
1858
|
prologScript: 'PrologScript',
|
|
1415
1859
|
script: 'Script',
|
|
@@ -1418,6 +1862,7 @@ export class CreateJobRequestTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
|
1418
1862
|
|
|
1419
1863
|
static types(): { [key: string]: any } {
|
|
1420
1864
|
return {
|
|
1865
|
+
appId: 'string',
|
|
1421
1866
|
image: 'string',
|
|
1422
1867
|
prologScript: 'string',
|
|
1423
1868
|
script: 'string',
|
|
@@ -1452,8 +1897,20 @@ export class CreateJobRequestTasksTaskSpecTaskExecutor extends $tea.Model {
|
|
|
1452
1897
|
}
|
|
1453
1898
|
|
|
1454
1899
|
export class CreateJobRequestTasksTaskSpecVolumeMount extends $tea.Model {
|
|
1900
|
+
/**
|
|
1901
|
+
* @example
|
|
1902
|
+
* {"server":"xxxxx-xxxxx.cn-heyuan.nas.aliyuncs.com","vers":"3","path":"/data","options":"nolock,tcp,noresvport"}
|
|
1903
|
+
*/
|
|
1455
1904
|
mountOptions?: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* @example
|
|
1907
|
+
* /mnt
|
|
1908
|
+
*/
|
|
1456
1909
|
mountPath?: string;
|
|
1910
|
+
/**
|
|
1911
|
+
* @example
|
|
1912
|
+
* alicloud/nas
|
|
1913
|
+
*/
|
|
1457
1914
|
volumeDriver?: string;
|
|
1458
1915
|
static names(): { [key: string]: string } {
|
|
1459
1916
|
return {
|
|
@@ -1478,6 +1935,10 @@ export class CreateJobRequestTasksTaskSpecVolumeMount extends $tea.Model {
|
|
|
1478
1935
|
|
|
1479
1936
|
export class CreateJobRequestTasksTaskSpec extends $tea.Model {
|
|
1480
1937
|
resource?: CreateJobRequestTasksTaskSpecResource;
|
|
1938
|
+
/**
|
|
1939
|
+
* @remarks
|
|
1940
|
+
* This parameter is required.
|
|
1941
|
+
*/
|
|
1481
1942
|
taskExecutor?: CreateJobRequestTasksTaskSpecTaskExecutor[];
|
|
1482
1943
|
volumeMount?: CreateJobRequestTasksTaskSpecVolumeMount[];
|
|
1483
1944
|
static names(): { [key: string]: string } {
|
|
@@ -1503,8 +1964,16 @@ export class CreateJobRequestTasksTaskSpec extends $tea.Model {
|
|
|
1503
1964
|
|
|
1504
1965
|
export class CreateJobRequestTasks extends $tea.Model {
|
|
1505
1966
|
executorPolicy?: CreateJobRequestTasksExecutorPolicy;
|
|
1967
|
+
/**
|
|
1968
|
+
* @example
|
|
1969
|
+
* task0
|
|
1970
|
+
*/
|
|
1506
1971
|
taskName?: string;
|
|
1507
1972
|
taskSpec?: CreateJobRequestTasksTaskSpec;
|
|
1973
|
+
/**
|
|
1974
|
+
* @example
|
|
1975
|
+
* true
|
|
1976
|
+
*/
|
|
1508
1977
|
taskSustainable?: boolean;
|
|
1509
1978
|
static names(): { [key: string]: string } {
|
|
1510
1979
|
return {
|
|
@@ -1553,6 +2022,10 @@ export class CreateJobResponseBodyTasks extends $tea.Model {
|
|
|
1553
2022
|
|
|
1554
2023
|
export class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
1555
2024
|
arrayIndex?: number[];
|
|
2025
|
+
/**
|
|
2026
|
+
* @example
|
|
2027
|
+
* task0
|
|
2028
|
+
*/
|
|
1556
2029
|
taskName?: string;
|
|
1557
2030
|
static names(): { [key: string]: string } {
|
|
1558
2031
|
return {
|
|
@@ -1574,6 +2047,10 @@ export class DeleteJobsRequestJobSpecTaskSpec extends $tea.Model {
|
|
|
1574
2047
|
}
|
|
1575
2048
|
|
|
1576
2049
|
export class DeleteJobsRequestJobSpec extends $tea.Model {
|
|
2050
|
+
/**
|
|
2051
|
+
* @example
|
|
2052
|
+
* job-xxxx
|
|
2053
|
+
*/
|
|
1577
2054
|
jobId?: string;
|
|
1578
2055
|
taskSpec?: DeleteJobsRequestJobSpecTaskSpec[];
|
|
1579
2056
|
static names(): { [key: string]: string } {
|
|
@@ -1596,7 +2073,15 @@ export class DeleteJobsRequestJobSpec extends $tea.Model {
|
|
|
1596
2073
|
}
|
|
1597
2074
|
|
|
1598
2075
|
export class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model {
|
|
2076
|
+
/**
|
|
2077
|
+
* @example
|
|
2078
|
+
* 1
|
|
2079
|
+
*/
|
|
1599
2080
|
arrayIndex?: number;
|
|
2081
|
+
/**
|
|
2082
|
+
* @example
|
|
2083
|
+
* {"memory_utilization": 37.42,"cpu_utilization": 1.008, "disk_utilization": 3.562}
|
|
2084
|
+
*/
|
|
1600
2085
|
metric?: string;
|
|
1601
2086
|
static names(): { [key: string]: string } {
|
|
1602
2087
|
return {
|
|
@@ -1618,8 +2103,20 @@ export class DescribeJobMetricLastResponseBodyMetrics extends $tea.Model {
|
|
|
1618
2103
|
}
|
|
1619
2104
|
|
|
1620
2105
|
export class GetImageResponseBodyImageContainerImageSpecRegistryCredential extends $tea.Model {
|
|
2106
|
+
/**
|
|
2107
|
+
* @example
|
|
2108
|
+
* userpassword
|
|
2109
|
+
*/
|
|
1621
2110
|
password?: string;
|
|
2111
|
+
/**
|
|
2112
|
+
* @example
|
|
2113
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
2114
|
+
*/
|
|
1622
2115
|
server?: string;
|
|
2116
|
+
/**
|
|
2117
|
+
* @example
|
|
2118
|
+
* username
|
|
2119
|
+
*/
|
|
1623
2120
|
userName?: string;
|
|
1624
2121
|
static names(): { [key: string]: string } {
|
|
1625
2122
|
return {
|
|
@@ -1643,10 +2140,26 @@ export class GetImageResponseBodyImageContainerImageSpecRegistryCredential exten
|
|
|
1643
2140
|
}
|
|
1644
2141
|
|
|
1645
2142
|
export class GetImageResponseBodyImageContainerImageSpec extends $tea.Model {
|
|
2143
|
+
/**
|
|
2144
|
+
* @example
|
|
2145
|
+
* True
|
|
2146
|
+
*/
|
|
1646
2147
|
isACREnterprise?: boolean;
|
|
2148
|
+
/**
|
|
2149
|
+
* @example
|
|
2150
|
+
* True
|
|
2151
|
+
*/
|
|
1647
2152
|
isACRRegistry?: boolean;
|
|
1648
2153
|
registryCredential?: GetImageResponseBodyImageContainerImageSpecRegistryCredential;
|
|
2154
|
+
/**
|
|
2155
|
+
* @example
|
|
2156
|
+
* cri-xyz795ygf8k9****
|
|
2157
|
+
*/
|
|
1649
2158
|
registryCriId?: string;
|
|
2159
|
+
/**
|
|
2160
|
+
* @example
|
|
2161
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com/ehpc_open/nginx:latest
|
|
2162
|
+
*/
|
|
1650
2163
|
registryUrl?: string;
|
|
1651
2164
|
static names(): { [key: string]: string } {
|
|
1652
2165
|
return {
|
|
@@ -1674,9 +2187,25 @@ export class GetImageResponseBodyImageContainerImageSpec extends $tea.Model {
|
|
|
1674
2187
|
}
|
|
1675
2188
|
|
|
1676
2189
|
export class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
2190
|
+
/**
|
|
2191
|
+
* @example
|
|
2192
|
+
* x86_64
|
|
2193
|
+
*/
|
|
1677
2194
|
architecture?: string;
|
|
2195
|
+
/**
|
|
2196
|
+
* @example
|
|
2197
|
+
* m-uf60twafjtaart******
|
|
2198
|
+
*/
|
|
1678
2199
|
imageId?: string;
|
|
2200
|
+
/**
|
|
2201
|
+
* @example
|
|
2202
|
+
* CentOS 7.6 64 bit
|
|
2203
|
+
*/
|
|
1679
2204
|
osTag?: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* @example
|
|
2207
|
+
* CentOS
|
|
2208
|
+
*/
|
|
1680
2209
|
platform?: string;
|
|
1681
2210
|
static names(): { [key: string]: string } {
|
|
1682
2211
|
return {
|
|
@@ -1702,22 +2231,49 @@ export class GetImageResponseBodyImageVMImageSpec extends $tea.Model {
|
|
|
1702
2231
|
}
|
|
1703
2232
|
|
|
1704
2233
|
export class GetImageResponseBodyImage extends $tea.Model {
|
|
2234
|
+
appId?: string;
|
|
1705
2235
|
containerImageSpec?: GetImageResponseBodyImageContainerImageSpec;
|
|
2236
|
+
/**
|
|
2237
|
+
* @example
|
|
2238
|
+
* 2022-12-23T09:51:39Z
|
|
2239
|
+
*/
|
|
1706
2240
|
createTime?: string;
|
|
1707
2241
|
description?: string;
|
|
2242
|
+
/**
|
|
2243
|
+
* @remarks
|
|
2244
|
+
* This parameter is required.
|
|
2245
|
+
*
|
|
2246
|
+
* @example
|
|
2247
|
+
* VM
|
|
2248
|
+
*/
|
|
1708
2249
|
imageType?: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* @example
|
|
2252
|
+
* app-image
|
|
2253
|
+
*/
|
|
1709
2254
|
name?: string;
|
|
2255
|
+
/**
|
|
2256
|
+
* @example
|
|
2257
|
+
* 40 GiB
|
|
2258
|
+
*/
|
|
1710
2259
|
size?: string;
|
|
2260
|
+
status?: string;
|
|
1711
2261
|
VMImageSpec?: GetImageResponseBodyImageVMImageSpec;
|
|
2262
|
+
/**
|
|
2263
|
+
* @example
|
|
2264
|
+
* v1.0
|
|
2265
|
+
*/
|
|
1712
2266
|
version?: string;
|
|
1713
2267
|
static names(): { [key: string]: string } {
|
|
1714
2268
|
return {
|
|
2269
|
+
appId: 'AppId',
|
|
1715
2270
|
containerImageSpec: 'ContainerImageSpec',
|
|
1716
2271
|
createTime: 'CreateTime',
|
|
1717
2272
|
description: 'Description',
|
|
1718
2273
|
imageType: 'ImageType',
|
|
1719
2274
|
name: 'Name',
|
|
1720
2275
|
size: 'Size',
|
|
2276
|
+
status: 'Status',
|
|
1721
2277
|
VMImageSpec: 'VMImageSpec',
|
|
1722
2278
|
version: 'Version',
|
|
1723
2279
|
};
|
|
@@ -1725,12 +2281,14 @@ export class GetImageResponseBodyImage extends $tea.Model {
|
|
|
1725
2281
|
|
|
1726
2282
|
static types(): { [key: string]: any } {
|
|
1727
2283
|
return {
|
|
2284
|
+
appId: 'string',
|
|
1728
2285
|
containerImageSpec: GetImageResponseBodyImageContainerImageSpec,
|
|
1729
2286
|
createTime: 'string',
|
|
1730
2287
|
description: 'string',
|
|
1731
2288
|
imageType: 'string',
|
|
1732
2289
|
name: 'string',
|
|
1733
2290
|
size: 'string',
|
|
2291
|
+
status: 'string',
|
|
1734
2292
|
VMImageSpec: GetImageResponseBodyImageVMImageSpec,
|
|
1735
2293
|
version: 'string',
|
|
1736
2294
|
};
|
|
@@ -1761,6 +2319,10 @@ export class GetJobResponseBodyJobInfoDeploymentPolicyNetwork extends $tea.Model
|
|
|
1761
2319
|
}
|
|
1762
2320
|
|
|
1763
2321
|
export class GetJobResponseBodyJobInfoDeploymentPolicy extends $tea.Model {
|
|
2322
|
+
/**
|
|
2323
|
+
* @example
|
|
2324
|
+
* Dedicated
|
|
2325
|
+
*/
|
|
1764
2326
|
allocationSpec?: string;
|
|
1765
2327
|
network?: GetJobResponseBodyJobInfoDeploymentPolicyNetwork;
|
|
1766
2328
|
static names(): { [key: string]: string } {
|
|
@@ -1783,8 +2345,20 @@ export class GetJobResponseBodyJobInfoDeploymentPolicy extends $tea.Model {
|
|
|
1783
2345
|
}
|
|
1784
2346
|
|
|
1785
2347
|
export class GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec extends $tea.Model {
|
|
2348
|
+
/**
|
|
2349
|
+
* @example
|
|
2350
|
+
* 9
|
|
2351
|
+
*/
|
|
1786
2352
|
indexEnd?: number;
|
|
2353
|
+
/**
|
|
2354
|
+
* @example
|
|
2355
|
+
* 0
|
|
2356
|
+
*/
|
|
1787
2357
|
indexStart?: number;
|
|
2358
|
+
/**
|
|
2359
|
+
* @example
|
|
2360
|
+
* 1
|
|
2361
|
+
*/
|
|
1788
2362
|
indexStep?: number;
|
|
1789
2363
|
static names(): { [key: string]: string } {
|
|
1790
2364
|
return {
|
|
@@ -1809,6 +2383,10 @@ export class GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec extends $tea.
|
|
|
1809
2383
|
|
|
1810
2384
|
export class GetJobResponseBodyJobInfoTasksExecutorPolicy extends $tea.Model {
|
|
1811
2385
|
arraySpec?: GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec;
|
|
2386
|
+
/**
|
|
2387
|
+
* @example
|
|
2388
|
+
* 10
|
|
2389
|
+
*/
|
|
1812
2390
|
maxCount?: number;
|
|
1813
2391
|
static names(): { [key: string]: string } {
|
|
1814
2392
|
return {
|
|
@@ -1830,11 +2408,35 @@ export class GetJobResponseBodyJobInfoTasksExecutorPolicy extends $tea.Model {
|
|
|
1830
2408
|
}
|
|
1831
2409
|
|
|
1832
2410
|
export class GetJobResponseBodyJobInfoTasksExecutorStatus extends $tea.Model {
|
|
2411
|
+
/**
|
|
2412
|
+
* @example
|
|
2413
|
+
* 0
|
|
2414
|
+
*/
|
|
1833
2415
|
arrayId?: number;
|
|
2416
|
+
/**
|
|
2417
|
+
* @example
|
|
2418
|
+
* 2024-02-04 13:54:10
|
|
2419
|
+
*/
|
|
1834
2420
|
createTime?: string;
|
|
2421
|
+
/**
|
|
2422
|
+
* @example
|
|
2423
|
+
* 2024-02-04 13:54:10
|
|
2424
|
+
*/
|
|
1835
2425
|
endTime?: string;
|
|
2426
|
+
/**
|
|
2427
|
+
* @example
|
|
2428
|
+
* 2024-02-04 13:54:10
|
|
2429
|
+
*/
|
|
1836
2430
|
startTime?: string;
|
|
2431
|
+
/**
|
|
2432
|
+
* @example
|
|
2433
|
+
* Running
|
|
2434
|
+
*/
|
|
1837
2435
|
status?: string;
|
|
2436
|
+
/**
|
|
2437
|
+
* @example
|
|
2438
|
+
* Creating executor
|
|
2439
|
+
*/
|
|
1838
2440
|
statusReason?: string;
|
|
1839
2441
|
static names(): { [key: string]: string } {
|
|
1840
2442
|
return {
|
|
@@ -1864,7 +2466,15 @@ export class GetJobResponseBodyJobInfoTasksExecutorStatus extends $tea.Model {
|
|
|
1864
2466
|
}
|
|
1865
2467
|
|
|
1866
2468
|
export class GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks extends $tea.Model {
|
|
2469
|
+
/**
|
|
2470
|
+
* @example
|
|
2471
|
+
* 100
|
|
2472
|
+
*/
|
|
1867
2473
|
size?: number;
|
|
2474
|
+
/**
|
|
2475
|
+
* @example
|
|
2476
|
+
* System
|
|
2477
|
+
*/
|
|
1868
2478
|
type?: string;
|
|
1869
2479
|
static names(): { [key: string]: string } {
|
|
1870
2480
|
return {
|
|
@@ -1886,8 +2496,16 @@ export class GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks extends $tea.Mo
|
|
|
1886
2496
|
}
|
|
1887
2497
|
|
|
1888
2498
|
export class GetJobResponseBodyJobInfoTasksTaskSpecResource extends $tea.Model {
|
|
2499
|
+
/**
|
|
2500
|
+
* @example
|
|
2501
|
+
* 1
|
|
2502
|
+
*/
|
|
1889
2503
|
cores?: number;
|
|
1890
2504
|
disks?: GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks[];
|
|
2505
|
+
/**
|
|
2506
|
+
* @example
|
|
2507
|
+
* 4
|
|
2508
|
+
*/
|
|
1891
2509
|
memory?: number;
|
|
1892
2510
|
static names(): { [key: string]: string } {
|
|
1893
2511
|
return {
|
|
@@ -1911,8 +2529,20 @@ export class GetJobResponseBodyJobInfoTasksTaskSpecResource extends $tea.Model {
|
|
|
1911
2529
|
}
|
|
1912
2530
|
|
|
1913
2531
|
export class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM extends $tea.Model {
|
|
2532
|
+
/**
|
|
2533
|
+
* @example
|
|
2534
|
+
* m-xxxx
|
|
2535
|
+
*/
|
|
1914
2536
|
image?: string;
|
|
2537
|
+
/**
|
|
2538
|
+
* @example
|
|
2539
|
+
* ZWNobyAiMTIzNCIgPiBgZGF0ZSArJXNg
|
|
2540
|
+
*/
|
|
1915
2541
|
prologScript?: string;
|
|
2542
|
+
/**
|
|
2543
|
+
* @example
|
|
2544
|
+
* ZWNobyAiMTIzNCIgPiBgZGF0ZSArJXNg
|
|
2545
|
+
*/
|
|
1916
2546
|
script?: string;
|
|
1917
2547
|
static names(): { [key: string]: string } {
|
|
1918
2548
|
return {
|
|
@@ -1979,8 +2609,16 @@ export class GetJobResponseBodyJobInfoTasksTaskSpec extends $tea.Model {
|
|
|
1979
2609
|
export class GetJobResponseBodyJobInfoTasks extends $tea.Model {
|
|
1980
2610
|
executorPolicy?: GetJobResponseBodyJobInfoTasksExecutorPolicy;
|
|
1981
2611
|
executorStatus?: GetJobResponseBodyJobInfoTasksExecutorStatus[];
|
|
2612
|
+
/**
|
|
2613
|
+
* @example
|
|
2614
|
+
* task0
|
|
2615
|
+
*/
|
|
1982
2616
|
taskName?: string;
|
|
1983
2617
|
taskSpec?: GetJobResponseBodyJobInfoTasksTaskSpec;
|
|
2618
|
+
/**
|
|
2619
|
+
* @example
|
|
2620
|
+
* true
|
|
2621
|
+
*/
|
|
1984
2622
|
taskSustainable?: boolean;
|
|
1985
2623
|
static names(): { [key: string]: string } {
|
|
1986
2624
|
return {
|
|
@@ -2008,13 +2646,42 @@ export class GetJobResponseBodyJobInfoTasks extends $tea.Model {
|
|
|
2008
2646
|
}
|
|
2009
2647
|
|
|
2010
2648
|
export class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
2649
|
+
/**
|
|
2650
|
+
* @example
|
|
2651
|
+
* 2024-03-05 20:00:46
|
|
2652
|
+
*/
|
|
2011
2653
|
createTime?: string;
|
|
2012
2654
|
deploymentPolicy?: GetJobResponseBodyJobInfoDeploymentPolicy;
|
|
2655
|
+
/**
|
|
2656
|
+
* @example
|
|
2657
|
+
* 2024-03-05 20:01:48
|
|
2658
|
+
*/
|
|
2013
2659
|
endTime?: string;
|
|
2660
|
+
/**
|
|
2661
|
+
* @example
|
|
2662
|
+
* Demo
|
|
2663
|
+
*/
|
|
2014
2664
|
jobDescription?: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* @example
|
|
2667
|
+
* job-xxxx
|
|
2668
|
+
*/
|
|
2015
2669
|
jobId?: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* @example
|
|
2672
|
+
* testJob
|
|
2673
|
+
*/
|
|
2016
2674
|
jobName?: string;
|
|
2675
|
+
jobScheduler?: string;
|
|
2676
|
+
/**
|
|
2677
|
+
* @example
|
|
2678
|
+
* 2024-03-05 20:00:48
|
|
2679
|
+
*/
|
|
2017
2680
|
startTime?: string;
|
|
2681
|
+
/**
|
|
2682
|
+
* @example
|
|
2683
|
+
* Succeed
|
|
2684
|
+
*/
|
|
2018
2685
|
status?: string;
|
|
2019
2686
|
tasks?: GetJobResponseBodyJobInfoTasks[];
|
|
2020
2687
|
static names(): { [key: string]: string } {
|
|
@@ -2025,6 +2692,7 @@ export class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
|
2025
2692
|
jobDescription: 'JobDescription',
|
|
2026
2693
|
jobId: 'JobId',
|
|
2027
2694
|
jobName: 'JobName',
|
|
2695
|
+
jobScheduler: 'JobScheduler',
|
|
2028
2696
|
startTime: 'StartTime',
|
|
2029
2697
|
status: 'Status',
|
|
2030
2698
|
tasks: 'Tasks',
|
|
@@ -2039,6 +2707,7 @@ export class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
|
2039
2707
|
jobDescription: 'string',
|
|
2040
2708
|
jobId: 'string',
|
|
2041
2709
|
jobName: 'string',
|
|
2710
|
+
jobScheduler: 'string',
|
|
2042
2711
|
startTime: 'string',
|
|
2043
2712
|
status: 'string',
|
|
2044
2713
|
tasks: { 'type': 'array', 'itemType': GetJobResponseBodyJobInfoTasks },
|
|
@@ -2053,8 +2722,20 @@ export class GetJobResponseBodyJobInfo extends $tea.Model {
|
|
|
2053
2722
|
export class ListExecutorsRequestFilter extends $tea.Model {
|
|
2054
2723
|
executorIds?: string[];
|
|
2055
2724
|
ipAddresses?: string[];
|
|
2725
|
+
/**
|
|
2726
|
+
* @example
|
|
2727
|
+
* testJob
|
|
2728
|
+
*/
|
|
2056
2729
|
jobName?: string;
|
|
2730
|
+
/**
|
|
2731
|
+
* @example
|
|
2732
|
+
* 1703819914
|
|
2733
|
+
*/
|
|
2057
2734
|
timeCreatedAfter?: number;
|
|
2735
|
+
/**
|
|
2736
|
+
* @example
|
|
2737
|
+
* 1703820113
|
|
2738
|
+
*/
|
|
2058
2739
|
timeCreatedBefore?: number;
|
|
2059
2740
|
static names(): { [key: string]: string } {
|
|
2060
2741
|
return {
|
|
@@ -2082,16 +2763,52 @@ export class ListExecutorsRequestFilter extends $tea.Model {
|
|
|
2082
2763
|
}
|
|
2083
2764
|
|
|
2084
2765
|
export class ListExecutorsResponseBodyExecutors extends $tea.Model {
|
|
2766
|
+
/**
|
|
2767
|
+
* @example
|
|
2768
|
+
* 0
|
|
2769
|
+
*/
|
|
2085
2770
|
arrayIndex?: number;
|
|
2771
|
+
/**
|
|
2772
|
+
* @example
|
|
2773
|
+
* 2024-02-20 10:04:10
|
|
2774
|
+
*/
|
|
2086
2775
|
createTime?: string;
|
|
2776
|
+
/**
|
|
2777
|
+
* @example
|
|
2778
|
+
* 2024-02-20 10:04:18
|
|
2779
|
+
*/
|
|
2087
2780
|
endTime?: string;
|
|
2781
|
+
/**
|
|
2782
|
+
* @example
|
|
2783
|
+
* job-xxxx-task0-1
|
|
2784
|
+
*/
|
|
2088
2785
|
executorId?: string;
|
|
2089
2786
|
hostName?: string[];
|
|
2090
2787
|
ipAddress?: string[];
|
|
2788
|
+
/**
|
|
2789
|
+
* @example
|
|
2790
|
+
* job-hy1nggvyukuvkr******
|
|
2791
|
+
*/
|
|
2091
2792
|
jobId?: string;
|
|
2793
|
+
/**
|
|
2794
|
+
* @example
|
|
2795
|
+
* testJob
|
|
2796
|
+
*/
|
|
2092
2797
|
jobName?: string;
|
|
2798
|
+
/**
|
|
2799
|
+
* @example
|
|
2800
|
+
* Running
|
|
2801
|
+
*/
|
|
2093
2802
|
status?: string;
|
|
2803
|
+
/**
|
|
2804
|
+
* @example
|
|
2805
|
+
* Succeeded to release executor resource
|
|
2806
|
+
*/
|
|
2094
2807
|
statusReason?: string;
|
|
2808
|
+
/**
|
|
2809
|
+
* @example
|
|
2810
|
+
* task0
|
|
2811
|
+
*/
|
|
2095
2812
|
taskName?: string;
|
|
2096
2813
|
static names(): { [key: string]: string } {
|
|
2097
2814
|
return {
|
|
@@ -2131,14 +2848,46 @@ export class ListExecutorsResponseBodyExecutors extends $tea.Model {
|
|
|
2131
2848
|
}
|
|
2132
2849
|
|
|
2133
2850
|
export class ListImagesResponseBodyImages extends $tea.Model {
|
|
2851
|
+
/**
|
|
2852
|
+
* @remarks
|
|
2853
|
+
* This parameter is required.
|
|
2854
|
+
*/
|
|
2855
|
+
appId?: string;
|
|
2856
|
+
/**
|
|
2857
|
+
* @example
|
|
2858
|
+
* 2022-12-09T07:06:34Z
|
|
2859
|
+
*/
|
|
2134
2860
|
createTime?: string;
|
|
2135
2861
|
description?: string;
|
|
2862
|
+
/**
|
|
2863
|
+
* @remarks
|
|
2864
|
+
* This parameter is required.
|
|
2865
|
+
*
|
|
2866
|
+
* @example
|
|
2867
|
+
* m-bp181x855551ww5yq****
|
|
2868
|
+
*/
|
|
2136
2869
|
imageId?: string;
|
|
2870
|
+
/**
|
|
2871
|
+
* @remarks
|
|
2872
|
+
* This parameter is required.
|
|
2873
|
+
*
|
|
2874
|
+
* @example
|
|
2875
|
+
* VM
|
|
2876
|
+
*/
|
|
2137
2877
|
imageType?: string;
|
|
2878
|
+
/**
|
|
2879
|
+
* @example
|
|
2880
|
+
* app-image
|
|
2881
|
+
*/
|
|
2138
2882
|
name?: string;
|
|
2883
|
+
/**
|
|
2884
|
+
* @example
|
|
2885
|
+
* v1.0
|
|
2886
|
+
*/
|
|
2139
2887
|
version?: string;
|
|
2140
2888
|
static names(): { [key: string]: string } {
|
|
2141
2889
|
return {
|
|
2890
|
+
appId: 'AppId',
|
|
2142
2891
|
createTime: 'CreateTime',
|
|
2143
2892
|
description: 'Description',
|
|
2144
2893
|
imageId: 'ImageId',
|
|
@@ -2150,6 +2899,7 @@ export class ListImagesResponseBodyImages extends $tea.Model {
|
|
|
2150
2899
|
|
|
2151
2900
|
static types(): { [key: string]: any } {
|
|
2152
2901
|
return {
|
|
2902
|
+
appId: 'string',
|
|
2153
2903
|
createTime: 'string',
|
|
2154
2904
|
description: 'string',
|
|
2155
2905
|
imageId: 'string',
|
|
@@ -2165,12 +2915,32 @@ export class ListImagesResponseBodyImages extends $tea.Model {
|
|
|
2165
2915
|
}
|
|
2166
2916
|
|
|
2167
2917
|
export class ListJobExecutorsResponseBodyExecutors extends $tea.Model {
|
|
2918
|
+
/**
|
|
2919
|
+
* @example
|
|
2920
|
+
* 0
|
|
2921
|
+
*/
|
|
2168
2922
|
arrayIndex?: number;
|
|
2923
|
+
/**
|
|
2924
|
+
* @example
|
|
2925
|
+
* 2024-02-20 10:04:10
|
|
2926
|
+
*/
|
|
2169
2927
|
createTime?: string;
|
|
2928
|
+
/**
|
|
2929
|
+
* @example
|
|
2930
|
+
* 2024-02-20 10:04:18
|
|
2931
|
+
*/
|
|
2170
2932
|
endTime?: string;
|
|
2171
2933
|
hostName?: string[];
|
|
2172
2934
|
ipAddress?: string[];
|
|
2935
|
+
/**
|
|
2936
|
+
* @example
|
|
2937
|
+
* Running
|
|
2938
|
+
*/
|
|
2173
2939
|
status?: string;
|
|
2940
|
+
/**
|
|
2941
|
+
* @example
|
|
2942
|
+
* Creating executor
|
|
2943
|
+
*/
|
|
2174
2944
|
statusReason?: string;
|
|
2175
2945
|
static names(): { [key: string]: string } {
|
|
2176
2946
|
return {
|
|
@@ -2202,10 +2972,30 @@ export class ListJobExecutorsResponseBodyExecutors extends $tea.Model {
|
|
|
2202
2972
|
}
|
|
2203
2973
|
|
|
2204
2974
|
export class ListJobsRequestFilter extends $tea.Model {
|
|
2975
|
+
/**
|
|
2976
|
+
* @example
|
|
2977
|
+
* job-xxxx
|
|
2978
|
+
*/
|
|
2205
2979
|
jobId?: string;
|
|
2980
|
+
/**
|
|
2981
|
+
* @example
|
|
2982
|
+
* testJob
|
|
2983
|
+
*/
|
|
2206
2984
|
jobName?: string;
|
|
2985
|
+
/**
|
|
2986
|
+
* @example
|
|
2987
|
+
* Running
|
|
2988
|
+
*/
|
|
2207
2989
|
status?: string;
|
|
2990
|
+
/**
|
|
2991
|
+
* @example
|
|
2992
|
+
* 1703819914
|
|
2993
|
+
*/
|
|
2208
2994
|
timeCreatedAfter?: number;
|
|
2995
|
+
/**
|
|
2996
|
+
* @example
|
|
2997
|
+
* 1703820113
|
|
2998
|
+
*/
|
|
2209
2999
|
timeCreatedBefore?: number;
|
|
2210
3000
|
static names(): { [key: string]: string } {
|
|
2211
3001
|
return {
|
|
@@ -2233,7 +3023,15 @@ export class ListJobsRequestFilter extends $tea.Model {
|
|
|
2233
3023
|
}
|
|
2234
3024
|
|
|
2235
3025
|
export class ListJobsRequestSortBy extends $tea.Model {
|
|
3026
|
+
/**
|
|
3027
|
+
* @example
|
|
3028
|
+
* time_start
|
|
3029
|
+
*/
|
|
2236
3030
|
label?: string;
|
|
3031
|
+
/**
|
|
3032
|
+
* @example
|
|
3033
|
+
* ASC
|
|
3034
|
+
*/
|
|
2237
3035
|
order?: string;
|
|
2238
3036
|
static names(): { [key: string]: string } {
|
|
2239
3037
|
return {
|
|
@@ -2255,16 +3053,60 @@ export class ListJobsRequestSortBy extends $tea.Model {
|
|
|
2255
3053
|
}
|
|
2256
3054
|
|
|
2257
3055
|
export class ListJobsResponseBodyJobList extends $tea.Model {
|
|
3056
|
+
/**
|
|
3057
|
+
* @example
|
|
3058
|
+
* 2024-01-25 12:29:21
|
|
3059
|
+
*/
|
|
2258
3060
|
createTime?: string;
|
|
3061
|
+
/**
|
|
3062
|
+
* @example
|
|
3063
|
+
* 2024-01-25 12:35:23
|
|
3064
|
+
*/
|
|
2259
3065
|
endTime?: string;
|
|
3066
|
+
/**
|
|
3067
|
+
* @example
|
|
3068
|
+
* 1
|
|
3069
|
+
*/
|
|
2260
3070
|
executorCount?: number;
|
|
3071
|
+
/**
|
|
3072
|
+
* @example
|
|
3073
|
+
* Demo
|
|
3074
|
+
*/
|
|
2261
3075
|
jobDescription?: string;
|
|
3076
|
+
/**
|
|
3077
|
+
* @example
|
|
3078
|
+
* job-xxx
|
|
3079
|
+
*/
|
|
2262
3080
|
jobId?: string;
|
|
3081
|
+
/**
|
|
3082
|
+
* @example
|
|
3083
|
+
* testJob
|
|
3084
|
+
*/
|
|
2263
3085
|
jobName?: string;
|
|
3086
|
+
/**
|
|
3087
|
+
* @example
|
|
3088
|
+
* 129**********
|
|
3089
|
+
*/
|
|
2264
3090
|
ownerUid?: string;
|
|
3091
|
+
/**
|
|
3092
|
+
* @example
|
|
3093
|
+
* 2024-01-25 12:29:23
|
|
3094
|
+
*/
|
|
2265
3095
|
startTime?: string;
|
|
3096
|
+
/**
|
|
3097
|
+
* @example
|
|
3098
|
+
* Running
|
|
3099
|
+
*/
|
|
2266
3100
|
status?: string;
|
|
3101
|
+
/**
|
|
3102
|
+
* @example
|
|
3103
|
+
* 1
|
|
3104
|
+
*/
|
|
2267
3105
|
taskCount?: number;
|
|
3106
|
+
/**
|
|
3107
|
+
* @example
|
|
3108
|
+
* true
|
|
3109
|
+
*/
|
|
2268
3110
|
taskSustainable?: boolean;
|
|
2269
3111
|
static names(): { [key: string]: string } {
|
|
2270
3112
|
return {
|
|
@@ -2327,11 +3169,11 @@ export default class Client extends OpenApi {
|
|
|
2327
3169
|
}
|
|
2328
3170
|
|
|
2329
3171
|
/**
|
|
2330
|
-
*
|
|
2331
|
-
*
|
|
2332
|
-
* @param tmpReq AddImageRequest
|
|
2333
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2334
|
-
* @
|
|
3172
|
+
* 添加托管侧用户自定义镜像
|
|
3173
|
+
*
|
|
3174
|
+
* @param tmpReq - AddImageRequest
|
|
3175
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3176
|
+
* @returns AddImageResponse
|
|
2335
3177
|
*/
|
|
2336
3178
|
async addImageWithOptions(tmpReq: AddImageRequest, runtime: $Util.RuntimeOptions): Promise<AddImageResponse> {
|
|
2337
3179
|
Util.validateModel(tmpReq);
|
|
@@ -2384,10 +3226,10 @@ export default class Client extends OpenApi {
|
|
|
2384
3226
|
}
|
|
2385
3227
|
|
|
2386
3228
|
/**
|
|
2387
|
-
*
|
|
2388
|
-
*
|
|
2389
|
-
* @param request AddImageRequest
|
|
2390
|
-
* @
|
|
3229
|
+
* 添加托管侧用户自定义镜像
|
|
3230
|
+
*
|
|
3231
|
+
* @param request - AddImageRequest
|
|
3232
|
+
* @returns AddImageResponse
|
|
2391
3233
|
*/
|
|
2392
3234
|
async addImage(request: AddImageRequest): Promise<AddImageResponse> {
|
|
2393
3235
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2395,11 +3237,11 @@ export default class Client extends OpenApi {
|
|
|
2395
3237
|
}
|
|
2396
3238
|
|
|
2397
3239
|
/**
|
|
2398
|
-
*
|
|
2399
|
-
*
|
|
2400
|
-
* @param tmpReq CreateJobRequest
|
|
2401
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2402
|
-
* @
|
|
3240
|
+
* 提交任务
|
|
3241
|
+
*
|
|
3242
|
+
* @param tmpReq - CreateJobRequest
|
|
3243
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3244
|
+
* @returns CreateJobResponse
|
|
2403
3245
|
*/
|
|
2404
3246
|
async createJobWithOptions(tmpReq: CreateJobRequest, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse> {
|
|
2405
3247
|
Util.validateModel(tmpReq);
|
|
@@ -2426,6 +3268,10 @@ export default class Client extends OpenApi {
|
|
|
2426
3268
|
query["JobName"] = request.jobName;
|
|
2427
3269
|
}
|
|
2428
3270
|
|
|
3271
|
+
if (!Util.isUnset(request.jobScheduler)) {
|
|
3272
|
+
query["JobScheduler"] = request.jobScheduler;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
2429
3275
|
if (!Util.isUnset(request.tasksShrink)) {
|
|
2430
3276
|
query["Tasks"] = request.tasksShrink;
|
|
2431
3277
|
}
|
|
@@ -2448,10 +3294,10 @@ export default class Client extends OpenApi {
|
|
|
2448
3294
|
}
|
|
2449
3295
|
|
|
2450
3296
|
/**
|
|
2451
|
-
*
|
|
2452
|
-
*
|
|
2453
|
-
* @param request CreateJobRequest
|
|
2454
|
-
* @
|
|
3297
|
+
* 提交任务
|
|
3298
|
+
*
|
|
3299
|
+
* @param request - CreateJobRequest
|
|
3300
|
+
* @returns CreateJobResponse
|
|
2455
3301
|
*/
|
|
2456
3302
|
async createJob(request: CreateJobRequest): Promise<CreateJobResponse> {
|
|
2457
3303
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2459,11 +3305,11 @@ export default class Client extends OpenApi {
|
|
|
2459
3305
|
}
|
|
2460
3306
|
|
|
2461
3307
|
/**
|
|
2462
|
-
*
|
|
2463
|
-
*
|
|
2464
|
-
* @param tmpReq DeleteJobsRequest
|
|
2465
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2466
|
-
* @
|
|
3308
|
+
* 删除作业
|
|
3309
|
+
*
|
|
3310
|
+
* @param tmpReq - DeleteJobsRequest
|
|
3311
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3312
|
+
* @returns DeleteJobsResponse
|
|
2467
3313
|
*/
|
|
2468
3314
|
async deleteJobsWithOptions(tmpReq: DeleteJobsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteJobsResponse> {
|
|
2469
3315
|
Util.validateModel(tmpReq);
|
|
@@ -2504,10 +3350,10 @@ export default class Client extends OpenApi {
|
|
|
2504
3350
|
}
|
|
2505
3351
|
|
|
2506
3352
|
/**
|
|
2507
|
-
*
|
|
2508
|
-
*
|
|
2509
|
-
* @param request DeleteJobsRequest
|
|
2510
|
-
* @
|
|
3353
|
+
* 删除作业
|
|
3354
|
+
*
|
|
3355
|
+
* @param request - DeleteJobsRequest
|
|
3356
|
+
* @returns DeleteJobsResponse
|
|
2511
3357
|
*/
|
|
2512
3358
|
async deleteJobs(request: DeleteJobsRequest): Promise<DeleteJobsResponse> {
|
|
2513
3359
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2515,11 +3361,11 @@ export default class Client extends OpenApi {
|
|
|
2515
3361
|
}
|
|
2516
3362
|
|
|
2517
3363
|
/**
|
|
2518
|
-
*
|
|
2519
|
-
*
|
|
2520
|
-
* @param tmpReq DescribeJobMetricDataRequest
|
|
2521
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2522
|
-
* @
|
|
3364
|
+
* 查询作业性能数据
|
|
3365
|
+
*
|
|
3366
|
+
* @param tmpReq - DescribeJobMetricDataRequest
|
|
3367
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3368
|
+
* @returns DescribeJobMetricDataResponse
|
|
2523
3369
|
*/
|
|
2524
3370
|
async describeJobMetricDataWithOptions(tmpReq: DescribeJobMetricDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobMetricDataResponse> {
|
|
2525
3371
|
Util.validateModel(tmpReq);
|
|
@@ -2564,10 +3410,10 @@ export default class Client extends OpenApi {
|
|
|
2564
3410
|
}
|
|
2565
3411
|
|
|
2566
3412
|
/**
|
|
2567
|
-
*
|
|
2568
|
-
*
|
|
2569
|
-
* @param request DescribeJobMetricDataRequest
|
|
2570
|
-
* @
|
|
3413
|
+
* 查询作业性能数据
|
|
3414
|
+
*
|
|
3415
|
+
* @param request - DescribeJobMetricDataRequest
|
|
3416
|
+
* @returns DescribeJobMetricDataResponse
|
|
2571
3417
|
*/
|
|
2572
3418
|
async describeJobMetricData(request: DescribeJobMetricDataRequest): Promise<DescribeJobMetricDataResponse> {
|
|
2573
3419
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2575,11 +3421,11 @@ export default class Client extends OpenApi {
|
|
|
2575
3421
|
}
|
|
2576
3422
|
|
|
2577
3423
|
/**
|
|
2578
|
-
*
|
|
2579
|
-
*
|
|
2580
|
-
* @param tmpReq DescribeJobMetricLastRequest
|
|
2581
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2582
|
-
* @
|
|
3424
|
+
* 查询作业即时监控项
|
|
3425
|
+
*
|
|
3426
|
+
* @param tmpReq - DescribeJobMetricLastRequest
|
|
3427
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3428
|
+
* @returns DescribeJobMetricLastResponse
|
|
2583
3429
|
*/
|
|
2584
3430
|
async describeJobMetricLastWithOptions(tmpReq: DescribeJobMetricLastRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobMetricLastResponse> {
|
|
2585
3431
|
Util.validateModel(tmpReq);
|
|
@@ -2620,10 +3466,10 @@ export default class Client extends OpenApi {
|
|
|
2620
3466
|
}
|
|
2621
3467
|
|
|
2622
3468
|
/**
|
|
2623
|
-
*
|
|
2624
|
-
*
|
|
2625
|
-
* @param request DescribeJobMetricLastRequest
|
|
2626
|
-
* @
|
|
3469
|
+
* 查询作业即时监控项
|
|
3470
|
+
*
|
|
3471
|
+
* @param request - DescribeJobMetricLastRequest
|
|
3472
|
+
* @returns DescribeJobMetricLastResponse
|
|
2627
3473
|
*/
|
|
2628
3474
|
async describeJobMetricLast(request: DescribeJobMetricLastRequest): Promise<DescribeJobMetricLastResponse> {
|
|
2629
3475
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2631,19 +3477,27 @@ export default class Client extends OpenApi {
|
|
|
2631
3477
|
}
|
|
2632
3478
|
|
|
2633
3479
|
/**
|
|
2634
|
-
*
|
|
2635
|
-
*
|
|
2636
|
-
* @param request GetImageRequest
|
|
2637
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2638
|
-
* @
|
|
3480
|
+
* 查询托管侧镜像详情。
|
|
3481
|
+
*
|
|
3482
|
+
* @param request - GetImageRequest
|
|
3483
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3484
|
+
* @returns GetImageResponse
|
|
2639
3485
|
*/
|
|
2640
3486
|
async getImageWithOptions(request: GetImageRequest, runtime: $Util.RuntimeOptions): Promise<GetImageResponse> {
|
|
2641
3487
|
Util.validateModel(request);
|
|
2642
3488
|
let query = { };
|
|
3489
|
+
if (!Util.isUnset(request.imageCategory)) {
|
|
3490
|
+
query["ImageCategory"] = request.imageCategory;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
2643
3493
|
if (!Util.isUnset(request.imageId)) {
|
|
2644
3494
|
query["ImageId"] = request.imageId;
|
|
2645
3495
|
}
|
|
2646
3496
|
|
|
3497
|
+
if (!Util.isUnset(request.imageType)) {
|
|
3498
|
+
query["ImageType"] = request.imageType;
|
|
3499
|
+
}
|
|
3500
|
+
|
|
2647
3501
|
let req = new $OpenApi.OpenApiRequest({
|
|
2648
3502
|
query: OpenApiUtil.query(query),
|
|
2649
3503
|
});
|
|
@@ -2662,10 +3516,10 @@ export default class Client extends OpenApi {
|
|
|
2662
3516
|
}
|
|
2663
3517
|
|
|
2664
3518
|
/**
|
|
2665
|
-
*
|
|
2666
|
-
*
|
|
2667
|
-
* @param request GetImageRequest
|
|
2668
|
-
* @
|
|
3519
|
+
* 查询托管侧镜像详情。
|
|
3520
|
+
*
|
|
3521
|
+
* @param request - GetImageRequest
|
|
3522
|
+
* @returns GetImageResponse
|
|
2669
3523
|
*/
|
|
2670
3524
|
async getImage(request: GetImageRequest): Promise<GetImageResponse> {
|
|
2671
3525
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2673,11 +3527,11 @@ export default class Client extends OpenApi {
|
|
|
2673
3527
|
}
|
|
2674
3528
|
|
|
2675
3529
|
/**
|
|
2676
|
-
*
|
|
2677
|
-
*
|
|
2678
|
-
* @param request GetJobRequest
|
|
2679
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2680
|
-
* @
|
|
3530
|
+
* 查询作业详情
|
|
3531
|
+
*
|
|
3532
|
+
* @param request - GetJobRequest
|
|
3533
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3534
|
+
* @returns GetJobResponse
|
|
2681
3535
|
*/
|
|
2682
3536
|
async getJobWithOptions(request: GetJobRequest, runtime: $Util.RuntimeOptions): Promise<GetJobResponse> {
|
|
2683
3537
|
Util.validateModel(request);
|
|
@@ -2704,10 +3558,10 @@ export default class Client extends OpenApi {
|
|
|
2704
3558
|
}
|
|
2705
3559
|
|
|
2706
3560
|
/**
|
|
2707
|
-
*
|
|
2708
|
-
*
|
|
2709
|
-
* @param request GetJobRequest
|
|
2710
|
-
* @
|
|
3561
|
+
* 查询作业详情
|
|
3562
|
+
*
|
|
3563
|
+
* @param request - GetJobRequest
|
|
3564
|
+
* @returns GetJobResponse
|
|
2711
3565
|
*/
|
|
2712
3566
|
async getJob(request: GetJobRequest): Promise<GetJobResponse> {
|
|
2713
3567
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2715,11 +3569,11 @@ export default class Client extends OpenApi {
|
|
|
2715
3569
|
}
|
|
2716
3570
|
|
|
2717
3571
|
/**
|
|
2718
|
-
*
|
|
2719
|
-
*
|
|
2720
|
-
* @param tmpReq ListExecutorsRequest
|
|
2721
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2722
|
-
* @
|
|
3572
|
+
* 查询全局Executor信息
|
|
3573
|
+
*
|
|
3574
|
+
* @param tmpReq - ListExecutorsRequest
|
|
3575
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3576
|
+
* @returns ListExecutorsResponse
|
|
2723
3577
|
*/
|
|
2724
3578
|
async listExecutorsWithOptions(tmpReq: ListExecutorsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutorsResponse> {
|
|
2725
3579
|
Util.validateModel(tmpReq);
|
|
@@ -2760,10 +3614,10 @@ export default class Client extends OpenApi {
|
|
|
2760
3614
|
}
|
|
2761
3615
|
|
|
2762
3616
|
/**
|
|
2763
|
-
*
|
|
2764
|
-
*
|
|
2765
|
-
* @param request ListExecutorsRequest
|
|
2766
|
-
* @
|
|
3617
|
+
* 查询全局Executor信息
|
|
3618
|
+
*
|
|
3619
|
+
* @param request - ListExecutorsRequest
|
|
3620
|
+
* @returns ListExecutorsResponse
|
|
2767
3621
|
*/
|
|
2768
3622
|
async listExecutors(request: ListExecutorsRequest): Promise<ListExecutorsResponse> {
|
|
2769
3623
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2771,11 +3625,11 @@ export default class Client extends OpenApi {
|
|
|
2771
3625
|
}
|
|
2772
3626
|
|
|
2773
3627
|
/**
|
|
2774
|
-
*
|
|
2775
|
-
*
|
|
2776
|
-
* @param tmpReq ListImagesRequest
|
|
2777
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2778
|
-
* @
|
|
3628
|
+
* 查看托管侧镜像列表
|
|
3629
|
+
*
|
|
3630
|
+
* @param tmpReq - ListImagesRequest
|
|
3631
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3632
|
+
* @returns ListImagesResponse
|
|
2779
3633
|
*/
|
|
2780
3634
|
async listImagesWithOptions(tmpReq: ListImagesRequest, runtime: $Util.RuntimeOptions): Promise<ListImagesResponse> {
|
|
2781
3635
|
Util.validateModel(tmpReq);
|
|
@@ -2790,6 +3644,10 @@ export default class Client extends OpenApi {
|
|
|
2790
3644
|
}
|
|
2791
3645
|
|
|
2792
3646
|
let query = { };
|
|
3647
|
+
if (!Util.isUnset(request.imageCategory)) {
|
|
3648
|
+
query["ImageCategory"] = request.imageCategory;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
2793
3651
|
if (!Util.isUnset(request.imageIdsShrink)) {
|
|
2794
3652
|
query["ImageIds"] = request.imageIdsShrink;
|
|
2795
3653
|
}
|
|
@@ -2798,6 +3656,10 @@ export default class Client extends OpenApi {
|
|
|
2798
3656
|
query["ImageNames"] = request.imageNamesShrink;
|
|
2799
3657
|
}
|
|
2800
3658
|
|
|
3659
|
+
if (!Util.isUnset(request.imageType)) {
|
|
3660
|
+
query["ImageType"] = request.imageType;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
2801
3663
|
if (!Util.isUnset(request.pageNumber)) {
|
|
2802
3664
|
query["PageNumber"] = request.pageNumber;
|
|
2803
3665
|
}
|
|
@@ -2824,10 +3686,10 @@ export default class Client extends OpenApi {
|
|
|
2824
3686
|
}
|
|
2825
3687
|
|
|
2826
3688
|
/**
|
|
2827
|
-
*
|
|
2828
|
-
*
|
|
2829
|
-
* @param request ListImagesRequest
|
|
2830
|
-
* @
|
|
3689
|
+
* 查看托管侧镜像列表
|
|
3690
|
+
*
|
|
3691
|
+
* @param request - ListImagesRequest
|
|
3692
|
+
* @returns ListImagesResponse
|
|
2831
3693
|
*/
|
|
2832
3694
|
async listImages(request: ListImagesRequest): Promise<ListImagesResponse> {
|
|
2833
3695
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2835,11 +3697,11 @@ export default class Client extends OpenApi {
|
|
|
2835
3697
|
}
|
|
2836
3698
|
|
|
2837
3699
|
/**
|
|
2838
|
-
*
|
|
2839
|
-
*
|
|
2840
|
-
* @param request ListJobExecutorsRequest
|
|
2841
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2842
|
-
* @
|
|
3700
|
+
* 查询作业Executor信息
|
|
3701
|
+
*
|
|
3702
|
+
* @param request - ListJobExecutorsRequest
|
|
3703
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3704
|
+
* @returns ListJobExecutorsResponse
|
|
2843
3705
|
*/
|
|
2844
3706
|
async listJobExecutorsWithOptions(request: ListJobExecutorsRequest, runtime: $Util.RuntimeOptions): Promise<ListJobExecutorsResponse> {
|
|
2845
3707
|
Util.validateModel(request);
|
|
@@ -2878,10 +3740,10 @@ export default class Client extends OpenApi {
|
|
|
2878
3740
|
}
|
|
2879
3741
|
|
|
2880
3742
|
/**
|
|
2881
|
-
*
|
|
2882
|
-
*
|
|
2883
|
-
* @param request ListJobExecutorsRequest
|
|
2884
|
-
* @
|
|
3743
|
+
* 查询作业Executor信息
|
|
3744
|
+
*
|
|
3745
|
+
* @param request - ListJobExecutorsRequest
|
|
3746
|
+
* @returns ListJobExecutorsResponse
|
|
2885
3747
|
*/
|
|
2886
3748
|
async listJobExecutors(request: ListJobExecutorsRequest): Promise<ListJobExecutorsResponse> {
|
|
2887
3749
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2889,11 +3751,11 @@ export default class Client extends OpenApi {
|
|
|
2889
3751
|
}
|
|
2890
3752
|
|
|
2891
3753
|
/**
|
|
2892
|
-
*
|
|
2893
|
-
*
|
|
2894
|
-
* @param tmpReq ListJobsRequest
|
|
2895
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2896
|
-
* @
|
|
3754
|
+
* 查询作业列表
|
|
3755
|
+
*
|
|
3756
|
+
* @param tmpReq - ListJobsRequest
|
|
3757
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3758
|
+
* @returns ListJobsResponse
|
|
2897
3759
|
*/
|
|
2898
3760
|
async listJobsWithOptions(tmpReq: ListJobsRequest, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse> {
|
|
2899
3761
|
Util.validateModel(tmpReq);
|
|
@@ -2942,10 +3804,10 @@ export default class Client extends OpenApi {
|
|
|
2942
3804
|
}
|
|
2943
3805
|
|
|
2944
3806
|
/**
|
|
2945
|
-
*
|
|
2946
|
-
*
|
|
2947
|
-
* @param request ListJobsRequest
|
|
2948
|
-
* @
|
|
3807
|
+
* 查询作业列表
|
|
3808
|
+
*
|
|
3809
|
+
* @param request - ListJobsRequest
|
|
3810
|
+
* @returns ListJobsResponse
|
|
2949
3811
|
*/
|
|
2950
3812
|
async listJobs(request: ListJobsRequest): Promise<ListJobsResponse> {
|
|
2951
3813
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -2953,11 +3815,11 @@ export default class Client extends OpenApi {
|
|
|
2953
3815
|
}
|
|
2954
3816
|
|
|
2955
3817
|
/**
|
|
2956
|
-
*
|
|
2957
|
-
*
|
|
2958
|
-
* @param request RemoveImageRequest
|
|
2959
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2960
|
-
* @
|
|
3818
|
+
* 移除托管侧镜像信息。
|
|
3819
|
+
*
|
|
3820
|
+
* @param request - RemoveImageRequest
|
|
3821
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
3822
|
+
* @returns RemoveImageResponse
|
|
2961
3823
|
*/
|
|
2962
3824
|
async removeImageWithOptions(request: RemoveImageRequest, runtime: $Util.RuntimeOptions): Promise<RemoveImageResponse> {
|
|
2963
3825
|
Util.validateModel(request);
|
|
@@ -2984,10 +3846,10 @@ export default class Client extends OpenApi {
|
|
|
2984
3846
|
}
|
|
2985
3847
|
|
|
2986
3848
|
/**
|
|
2987
|
-
*
|
|
2988
|
-
*
|
|
2989
|
-
* @param request RemoveImageRequest
|
|
2990
|
-
* @
|
|
3849
|
+
* 移除托管侧镜像信息。
|
|
3850
|
+
*
|
|
3851
|
+
* @param request - RemoveImageRequest
|
|
3852
|
+
* @returns RemoveImageResponse
|
|
2991
3853
|
*/
|
|
2992
3854
|
async removeImage(request: RemoveImageRequest): Promise<RemoveImageResponse> {
|
|
2993
3855
|
let runtime = new $Util.RuntimeOptions({ });
|