@alicloud/pai-dlc20201203 1.4.9 → 1.4.11
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 +2127 -183
- package/dist/client.js +291 -186
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +2225 -227
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';
|
|
@@ -36,6 +35,32 @@ export declare class AliyunAccounts extends $tea.Model {
|
|
|
36
35
|
[key: string]: any;
|
|
37
36
|
});
|
|
38
37
|
}
|
|
38
|
+
export declare class AssignNodeSpec extends $tea.Model {
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* lingjxxxxxxxx
|
|
42
|
+
*/
|
|
43
|
+
antiAffinityNodeNames?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @example
|
|
46
|
+
* true
|
|
47
|
+
*/
|
|
48
|
+
enableAssignNode?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* @example
|
|
51
|
+
* lingjxxxxxxxx
|
|
52
|
+
*/
|
|
53
|
+
nodeNames?: string;
|
|
54
|
+
static names(): {
|
|
55
|
+
[key: string]: string;
|
|
56
|
+
};
|
|
57
|
+
static types(): {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
};
|
|
60
|
+
constructor(map?: {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
});
|
|
63
|
+
}
|
|
39
64
|
export declare class AssumeUserInfo extends $tea.Model {
|
|
40
65
|
accessKeyId?: string;
|
|
41
66
|
id?: string;
|
|
@@ -52,16 +77,56 @@ export declare class AssumeUserInfo extends $tea.Model {
|
|
|
52
77
|
});
|
|
53
78
|
}
|
|
54
79
|
export declare class CodeSourceItem extends $tea.Model {
|
|
80
|
+
/**
|
|
81
|
+
* @example
|
|
82
|
+
* master
|
|
83
|
+
*/
|
|
55
84
|
codeBranch?: string;
|
|
85
|
+
/**
|
|
86
|
+
* @example
|
|
87
|
+
* 44da1*******
|
|
88
|
+
*/
|
|
56
89
|
codeCommit?: string;
|
|
90
|
+
/**
|
|
91
|
+
* @example
|
|
92
|
+
* https://code.aliyun.com/pai-dlc/examples.git
|
|
93
|
+
*/
|
|
57
94
|
codeRepo?: string;
|
|
58
95
|
codeRepoAccessToken?: string;
|
|
96
|
+
/**
|
|
97
|
+
* @example
|
|
98
|
+
* user
|
|
99
|
+
*/
|
|
59
100
|
codeRepoUserName?: string;
|
|
101
|
+
/**
|
|
102
|
+
* @example
|
|
103
|
+
* code-20210111103721-85qz*****
|
|
104
|
+
*/
|
|
60
105
|
codeSourceId?: string;
|
|
106
|
+
/**
|
|
107
|
+
* @example
|
|
108
|
+
* code source of dlc examples
|
|
109
|
+
*/
|
|
61
110
|
description?: string;
|
|
111
|
+
/**
|
|
112
|
+
* @example
|
|
113
|
+
* MyCodeSourceName1
|
|
114
|
+
*/
|
|
62
115
|
displayName?: string;
|
|
116
|
+
/**
|
|
117
|
+
* @example
|
|
118
|
+
* 2021-01-18T12:52:15Z
|
|
119
|
+
*/
|
|
63
120
|
gmtCreateTime?: string;
|
|
121
|
+
/**
|
|
122
|
+
* @example
|
|
123
|
+
* 2021-01-18T12:52:15Z
|
|
124
|
+
*/
|
|
64
125
|
gmtModifyTime?: string;
|
|
126
|
+
/**
|
|
127
|
+
* @example
|
|
128
|
+
* 115**********
|
|
129
|
+
*/
|
|
65
130
|
userId?: string;
|
|
66
131
|
static names(): {
|
|
67
132
|
[key: string]: string;
|
|
@@ -77,9 +142,21 @@ export declare class ContainerSpec extends $tea.Model {
|
|
|
77
142
|
args?: string[];
|
|
78
143
|
command?: string[];
|
|
79
144
|
env?: EnvVar[];
|
|
145
|
+
/**
|
|
146
|
+
* @example
|
|
147
|
+
* registry.cn-hangzhou.aliyuncs.com/pai-dlc/curl:v1.0.0
|
|
148
|
+
*/
|
|
80
149
|
image?: string;
|
|
150
|
+
/**
|
|
151
|
+
* @example
|
|
152
|
+
* data-init
|
|
153
|
+
*/
|
|
81
154
|
name?: string;
|
|
82
155
|
resources?: ResourceRequirements;
|
|
156
|
+
/**
|
|
157
|
+
* @example
|
|
158
|
+
* /root
|
|
159
|
+
*/
|
|
83
160
|
workingDir?: string;
|
|
84
161
|
static names(): {
|
|
85
162
|
[key: string]: string;
|
|
@@ -107,6 +184,10 @@ export declare class CredentialConfig extends $tea.Model {
|
|
|
107
184
|
}
|
|
108
185
|
export declare class CredentialConfigItem extends $tea.Model {
|
|
109
186
|
key?: string;
|
|
187
|
+
/**
|
|
188
|
+
* **if can be null:**
|
|
189
|
+
* true
|
|
190
|
+
*/
|
|
110
191
|
roles?: CredentialRole[];
|
|
111
192
|
type?: string;
|
|
112
193
|
static names(): {
|
|
@@ -136,17 +217,65 @@ export declare class CredentialRole extends $tea.Model {
|
|
|
136
217
|
});
|
|
137
218
|
}
|
|
138
219
|
export declare class DataSourceItem extends $tea.Model {
|
|
220
|
+
/**
|
|
221
|
+
* @example
|
|
222
|
+
* data-20210114104214-vf9lowjt3pso
|
|
223
|
+
*/
|
|
139
224
|
dataSourceId?: string;
|
|
225
|
+
/**
|
|
226
|
+
* @example
|
|
227
|
+
* nas
|
|
228
|
+
*/
|
|
140
229
|
dataSourceType?: string;
|
|
230
|
+
/**
|
|
231
|
+
* @example
|
|
232
|
+
* data source of dlc examples
|
|
233
|
+
*/
|
|
141
234
|
description?: string;
|
|
235
|
+
/**
|
|
236
|
+
* @example
|
|
237
|
+
* nas-data
|
|
238
|
+
*/
|
|
142
239
|
displayName?: string;
|
|
240
|
+
/**
|
|
241
|
+
* @example
|
|
242
|
+
* oss-cn-beijing-internal.aliyuncs.com
|
|
243
|
+
*/
|
|
143
244
|
endpoint?: string;
|
|
245
|
+
/**
|
|
246
|
+
* @example
|
|
247
|
+
* 1ca404****
|
|
248
|
+
*/
|
|
144
249
|
fileSystemId?: string;
|
|
250
|
+
/**
|
|
251
|
+
* @example
|
|
252
|
+
* 2021-01-12T14:35:00Z
|
|
253
|
+
*/
|
|
145
254
|
gmtCreateTime?: string;
|
|
255
|
+
/**
|
|
256
|
+
* @example
|
|
257
|
+
* 2021-01-12T14:36:00Z
|
|
258
|
+
*/
|
|
146
259
|
gmtModifyTime?: string;
|
|
260
|
+
/**
|
|
261
|
+
* @example
|
|
262
|
+
* /root/data/
|
|
263
|
+
*/
|
|
147
264
|
mountPath?: string;
|
|
265
|
+
/**
|
|
266
|
+
* @example
|
|
267
|
+
* {"key": "value"}
|
|
268
|
+
*/
|
|
148
269
|
options?: string;
|
|
270
|
+
/**
|
|
271
|
+
* @example
|
|
272
|
+
* oss://mybucket/path/to/dir
|
|
273
|
+
*/
|
|
149
274
|
path?: string;
|
|
275
|
+
/**
|
|
276
|
+
* @example
|
|
277
|
+
* 123456789
|
|
278
|
+
*/
|
|
150
279
|
userId?: string;
|
|
151
280
|
static names(): {
|
|
152
281
|
[key: string]: string;
|
|
@@ -159,11 +288,35 @@ export declare class DataSourceItem extends $tea.Model {
|
|
|
159
288
|
});
|
|
160
289
|
}
|
|
161
290
|
export declare class DebuggerConfig extends $tea.Model {
|
|
291
|
+
/**
|
|
292
|
+
* @example
|
|
293
|
+
* {\"description\":\"这是一个新的pytorchjob模板\"}
|
|
294
|
+
*/
|
|
162
295
|
content?: string;
|
|
296
|
+
/**
|
|
297
|
+
* @example
|
|
298
|
+
* dc-vf9lowjt3pso
|
|
299
|
+
*/
|
|
163
300
|
debuggerConfigId?: string;
|
|
301
|
+
/**
|
|
302
|
+
* @example
|
|
303
|
+
* 这是一个Pytorch的基础配置模板
|
|
304
|
+
*/
|
|
164
305
|
description?: string;
|
|
306
|
+
/**
|
|
307
|
+
* @example
|
|
308
|
+
* Pytorch Experiment Config
|
|
309
|
+
*/
|
|
165
310
|
displayName?: string;
|
|
311
|
+
/**
|
|
312
|
+
* @example
|
|
313
|
+
* 2021-01-12T14:35:00Z
|
|
314
|
+
*/
|
|
166
315
|
gmtCreateTime?: string;
|
|
316
|
+
/**
|
|
317
|
+
* @example
|
|
318
|
+
* 2021-01-12T14:36:00Z
|
|
319
|
+
*/
|
|
167
320
|
gmtModifyTime?: string;
|
|
168
321
|
static names(): {
|
|
169
322
|
[key: string]: string;
|
|
@@ -176,9 +329,25 @@ export declare class DebuggerConfig extends $tea.Model {
|
|
|
176
329
|
});
|
|
177
330
|
}
|
|
178
331
|
export declare class DebuggerJob extends $tea.Model {
|
|
332
|
+
/**
|
|
333
|
+
* @example
|
|
334
|
+
* dlc20210126170216-mtl37ge7gkvdz
|
|
335
|
+
*/
|
|
179
336
|
debuggerJobId?: string;
|
|
337
|
+
/**
|
|
338
|
+
* @example
|
|
339
|
+
* dlc debugger test
|
|
340
|
+
*/
|
|
180
341
|
displayName?: string;
|
|
342
|
+
/**
|
|
343
|
+
* @example
|
|
344
|
+
* 2932
|
|
345
|
+
*/
|
|
181
346
|
duration?: string;
|
|
347
|
+
/**
|
|
348
|
+
* @example
|
|
349
|
+
* 2021-01-12T14:35:00Z
|
|
350
|
+
*/
|
|
182
351
|
gmtCreateTime?: string;
|
|
183
352
|
gmtFailedTime?: string;
|
|
184
353
|
gmtFinishTime?: string;
|
|
@@ -186,9 +355,25 @@ export declare class DebuggerJob extends $tea.Model {
|
|
|
186
355
|
gmtStoppedTime?: string;
|
|
187
356
|
gmtSubmittedTime?: string;
|
|
188
357
|
gmtSucceedTime?: string;
|
|
358
|
+
/**
|
|
359
|
+
* @example
|
|
360
|
+
* Running
|
|
361
|
+
*/
|
|
189
362
|
status?: string;
|
|
363
|
+
/**
|
|
364
|
+
* @example
|
|
365
|
+
* 12344556
|
|
366
|
+
*/
|
|
190
367
|
userId?: string;
|
|
368
|
+
/**
|
|
369
|
+
* @example
|
|
370
|
+
* workspace01
|
|
371
|
+
*/
|
|
191
372
|
workspaceId?: string;
|
|
373
|
+
/**
|
|
374
|
+
* @example
|
|
375
|
+
* public
|
|
376
|
+
*/
|
|
192
377
|
workspaceName?: string;
|
|
193
378
|
static names(): {
|
|
194
379
|
[key: string]: string;
|
|
@@ -201,12 +386,40 @@ export declare class DebuggerJob extends $tea.Model {
|
|
|
201
386
|
});
|
|
202
387
|
}
|
|
203
388
|
export declare class DebuggerJobIssue extends $tea.Model {
|
|
389
|
+
/**
|
|
390
|
+
* @example
|
|
391
|
+
* {"Name": "CPUBottleneck", "Triggered": 10, "Violations": 2, "Details": "{}"}
|
|
392
|
+
*/
|
|
204
393
|
debuggerJobIssue?: string;
|
|
394
|
+
/**
|
|
395
|
+
* @example
|
|
396
|
+
* 2021-01-12T14:35:00Z
|
|
397
|
+
*/
|
|
205
398
|
gmtCreateTime?: string;
|
|
399
|
+
/**
|
|
400
|
+
* @example
|
|
401
|
+
* de-826ca1bcfba30
|
|
402
|
+
*/
|
|
206
403
|
jobDebuggerIssueId?: string;
|
|
404
|
+
/**
|
|
405
|
+
* @example
|
|
406
|
+
* dlc-20210126170216-mtl37ge7gkvdz
|
|
407
|
+
*/
|
|
207
408
|
jobId?: string;
|
|
409
|
+
/**
|
|
410
|
+
* @example
|
|
411
|
+
* 1002300
|
|
412
|
+
*/
|
|
208
413
|
reasonCode?: string;
|
|
414
|
+
/**
|
|
415
|
+
* @example
|
|
416
|
+
* GPU利用率低
|
|
417
|
+
*/
|
|
209
418
|
reasonMessage?: string;
|
|
419
|
+
/**
|
|
420
|
+
* @example
|
|
421
|
+
* ProfileReport
|
|
422
|
+
*/
|
|
210
423
|
ruleName?: string;
|
|
211
424
|
static names(): {
|
|
212
425
|
[key: string]: string;
|
|
@@ -219,12 +432,40 @@ export declare class DebuggerJobIssue extends $tea.Model {
|
|
|
219
432
|
});
|
|
220
433
|
}
|
|
221
434
|
export declare class DebuggerResult extends $tea.Model {
|
|
435
|
+
/**
|
|
436
|
+
* @example
|
|
437
|
+
* {\"description\":\"这是一个新的pytorchjob模板\"}
|
|
438
|
+
*/
|
|
222
439
|
debuggerConfigContent?: string;
|
|
440
|
+
/**
|
|
441
|
+
* @example
|
|
442
|
+
* { "ProfileReport": { "Name": "CPUBottleneck","Triggered": 10,"Violations": 2,"Details": "{}"}, "LowCPU": { "Name": "CPUBottleneck","Triggered": 10,"Violations": 2,"Details": "{}"}}
|
|
443
|
+
*/
|
|
223
444
|
debuggerJobIssues?: string;
|
|
445
|
+
/**
|
|
446
|
+
* @example
|
|
447
|
+
* {"Running": 1, "Failed": 1, "Succeeded": 2}
|
|
448
|
+
*/
|
|
224
449
|
debuggerJobStatus?: string;
|
|
450
|
+
/**
|
|
451
|
+
* @example
|
|
452
|
+
* http://xxx.com/debug/report/download/new_xxxx.html
|
|
453
|
+
*/
|
|
225
454
|
debuggerReportURL?: string;
|
|
455
|
+
/**
|
|
456
|
+
* @example
|
|
457
|
+
* dlc debugger test
|
|
458
|
+
*/
|
|
226
459
|
jobDisplayName?: string;
|
|
460
|
+
/**
|
|
461
|
+
* @example
|
|
462
|
+
* dlc-20210126170216-mtl37ge7gkvdz
|
|
463
|
+
*/
|
|
227
464
|
jobId?: string;
|
|
465
|
+
/**
|
|
466
|
+
* @example
|
|
467
|
+
* 12344556
|
|
468
|
+
*/
|
|
228
469
|
jobUserId?: string;
|
|
229
470
|
static names(): {
|
|
230
471
|
[key: string]: string;
|
|
@@ -237,17 +478,61 @@ export declare class DebuggerResult extends $tea.Model {
|
|
|
237
478
|
});
|
|
238
479
|
}
|
|
239
480
|
export declare class EcsSpec extends $tea.Model {
|
|
481
|
+
/**
|
|
482
|
+
* @example
|
|
483
|
+
* GPU
|
|
484
|
+
*/
|
|
240
485
|
acceleratorType?: string;
|
|
486
|
+
/**
|
|
487
|
+
* @example
|
|
488
|
+
* 12
|
|
489
|
+
*/
|
|
241
490
|
cpu?: number;
|
|
491
|
+
/**
|
|
492
|
+
* @example
|
|
493
|
+
* 470.199.02
|
|
494
|
+
*/
|
|
242
495
|
defaultGPUDriver?: string;
|
|
496
|
+
/**
|
|
497
|
+
* @example
|
|
498
|
+
* 1
|
|
499
|
+
*/
|
|
243
500
|
gpu?: number;
|
|
501
|
+
/**
|
|
502
|
+
* @example
|
|
503
|
+
* NVIDIA v100
|
|
504
|
+
*/
|
|
244
505
|
gpuType?: string;
|
|
506
|
+
/**
|
|
507
|
+
* @example
|
|
508
|
+
* ecs.gn6e-c12g1.3xlarge
|
|
509
|
+
*/
|
|
245
510
|
instanceType?: string;
|
|
511
|
+
/**
|
|
512
|
+
* @example
|
|
513
|
+
* true
|
|
514
|
+
*/
|
|
246
515
|
isAvailable?: boolean;
|
|
516
|
+
/**
|
|
517
|
+
* @example
|
|
518
|
+
* 92
|
|
519
|
+
*/
|
|
247
520
|
memory?: number;
|
|
521
|
+
/**
|
|
522
|
+
* @example
|
|
523
|
+
* 0.1
|
|
524
|
+
*/
|
|
248
525
|
nonProtectSpotDiscount?: number;
|
|
249
526
|
paymentTypes?: string[];
|
|
527
|
+
/**
|
|
528
|
+
* @example
|
|
529
|
+
* ECS
|
|
530
|
+
*/
|
|
250
531
|
resourceType?: string;
|
|
532
|
+
/**
|
|
533
|
+
* @example
|
|
534
|
+
* WithStock
|
|
535
|
+
*/
|
|
251
536
|
spotStockStatus?: string;
|
|
252
537
|
supportedGPUDrivers?: string[];
|
|
253
538
|
static names(): {
|
|
@@ -261,7 +546,15 @@ export declare class EcsSpec extends $tea.Model {
|
|
|
261
546
|
});
|
|
262
547
|
}
|
|
263
548
|
export declare class EnvVar extends $tea.Model {
|
|
549
|
+
/**
|
|
550
|
+
* @example
|
|
551
|
+
* ENABLE_DEBUG
|
|
552
|
+
*/
|
|
264
553
|
name?: string;
|
|
554
|
+
/**
|
|
555
|
+
* @example
|
|
556
|
+
* true
|
|
557
|
+
*/
|
|
265
558
|
value?: string;
|
|
266
559
|
static names(): {
|
|
267
560
|
[key: string]: string;
|
|
@@ -291,6 +584,7 @@ export declare class EventInfo extends $tea.Model {
|
|
|
291
584
|
}
|
|
292
585
|
export declare class ExtraPodSpec extends $tea.Model {
|
|
293
586
|
initContainers?: ContainerSpec[];
|
|
587
|
+
lifecycle?: Lifecycle;
|
|
294
588
|
podAnnotations?: {
|
|
295
589
|
[key: string]: string;
|
|
296
590
|
};
|
|
@@ -314,6 +608,10 @@ export declare class FreeResourceClusterControlItem extends $tea.Model {
|
|
|
314
608
|
clusterName?: string;
|
|
315
609
|
crossClusters?: boolean;
|
|
316
610
|
enableFreeResource?: boolean;
|
|
611
|
+
/**
|
|
612
|
+
* @example
|
|
613
|
+
* frcc-whateversth
|
|
614
|
+
*/
|
|
317
615
|
freeResourceClusterControlId?: string;
|
|
318
616
|
gmtCreateTime?: string;
|
|
319
617
|
gmtModifyTime?: string;
|
|
@@ -329,7 +627,15 @@ export declare class FreeResourceClusterControlItem extends $tea.Model {
|
|
|
329
627
|
});
|
|
330
628
|
}
|
|
331
629
|
export declare class FreeResourceDetail extends $tea.Model {
|
|
630
|
+
/**
|
|
631
|
+
* @example
|
|
632
|
+
* 2
|
|
633
|
+
*/
|
|
332
634
|
amount?: number;
|
|
635
|
+
/**
|
|
636
|
+
* @example
|
|
637
|
+
* CPU
|
|
638
|
+
*/
|
|
333
639
|
resourceType?: string;
|
|
334
640
|
static names(): {
|
|
335
641
|
[key: string]: string;
|
|
@@ -342,13 +648,37 @@ export declare class FreeResourceDetail extends $tea.Model {
|
|
|
342
648
|
});
|
|
343
649
|
}
|
|
344
650
|
export declare class FreeResourceItem extends $tea.Model {
|
|
651
|
+
/**
|
|
652
|
+
* @example
|
|
653
|
+
* 2
|
|
654
|
+
*/
|
|
345
655
|
availableNumber?: number;
|
|
346
656
|
clusterID?: string;
|
|
347
657
|
clusterName?: string;
|
|
658
|
+
/**
|
|
659
|
+
* @example
|
|
660
|
+
* freeres-whateversth
|
|
661
|
+
*/
|
|
348
662
|
freeResourceId?: string;
|
|
663
|
+
/**
|
|
664
|
+
* @example
|
|
665
|
+
* 2021-01-18T12:52:15Z
|
|
666
|
+
*/
|
|
349
667
|
gmtCreateTime?: string;
|
|
668
|
+
/**
|
|
669
|
+
* @example
|
|
670
|
+
* 2021-01-18T12:52:15Z
|
|
671
|
+
*/
|
|
350
672
|
gmtModifyTime?: string;
|
|
673
|
+
/**
|
|
674
|
+
* @example
|
|
675
|
+
* inner
|
|
676
|
+
*/
|
|
351
677
|
regionID?: string;
|
|
678
|
+
/**
|
|
679
|
+
* @example
|
|
680
|
+
* cpu
|
|
681
|
+
*/
|
|
352
682
|
resourceType?: string;
|
|
353
683
|
static names(): {
|
|
354
684
|
[key: string]: string;
|
|
@@ -362,7 +692,15 @@ export declare class FreeResourceItem extends $tea.Model {
|
|
|
362
692
|
}
|
|
363
693
|
export declare class GPUDetail extends $tea.Model {
|
|
364
694
|
GPU?: string;
|
|
695
|
+
/**
|
|
696
|
+
* @example
|
|
697
|
+
* Tesla-V100-32G
|
|
698
|
+
*/
|
|
365
699
|
GPUType?: string;
|
|
700
|
+
/**
|
|
701
|
+
* @example
|
|
702
|
+
* nvidia.com/gpu-tesla-v100-sxm2-16gb
|
|
703
|
+
*/
|
|
366
704
|
GPUTypeFullName?: string;
|
|
367
705
|
static names(): {
|
|
368
706
|
[key: string]: string;
|
|
@@ -376,6 +714,10 @@ export declare class GPUDetail extends $tea.Model {
|
|
|
376
714
|
}
|
|
377
715
|
export declare class ImageConfig extends $tea.Model {
|
|
378
716
|
auth?: string;
|
|
717
|
+
/**
|
|
718
|
+
* @example
|
|
719
|
+
* registry.cn-hangzhou.aliyuncs.com
|
|
720
|
+
*/
|
|
379
721
|
dockerRegistry?: string;
|
|
380
722
|
password?: string;
|
|
381
723
|
username?: string;
|
|
@@ -390,12 +732,40 @@ export declare class ImageConfig extends $tea.Model {
|
|
|
390
732
|
});
|
|
391
733
|
}
|
|
392
734
|
export declare class ImageItem extends $tea.Model {
|
|
735
|
+
/**
|
|
736
|
+
* @example
|
|
737
|
+
* gpu
|
|
738
|
+
*/
|
|
393
739
|
acceleratorType?: string;
|
|
740
|
+
/**
|
|
741
|
+
* @example
|
|
742
|
+
* ken
|
|
743
|
+
*/
|
|
394
744
|
authorId?: string;
|
|
745
|
+
/**
|
|
746
|
+
* @example
|
|
747
|
+
* PyTorchJob
|
|
748
|
+
*/
|
|
395
749
|
framework?: string;
|
|
750
|
+
/**
|
|
751
|
+
* @example
|
|
752
|
+
* Community
|
|
753
|
+
*/
|
|
396
754
|
imageProviderType?: string;
|
|
755
|
+
/**
|
|
756
|
+
* @example
|
|
757
|
+
* tensorflow-training:2.3-cpu-py36-ubuntu18.04
|
|
758
|
+
*/
|
|
397
759
|
imageTag?: string;
|
|
760
|
+
/**
|
|
761
|
+
* @example
|
|
762
|
+
* registry.cn-beijing.aliyuncs.com/pai-dlc/tensorflow-training:2.3-cpu-py36-ubuntu18.04
|
|
763
|
+
*/
|
|
398
764
|
imageUrl?: string;
|
|
765
|
+
/**
|
|
766
|
+
* @example
|
|
767
|
+
* registry-vpc.cn-beijing.aliyuncs.com/pai-dlc/tensorflow-training:2.3-cpu-py36-ubuntu18.04
|
|
768
|
+
*/
|
|
399
769
|
imageUrlVpc?: string;
|
|
400
770
|
static names(): {
|
|
401
771
|
[key: string]: string;
|
|
@@ -425,18 +795,58 @@ export declare class JobDebuggerConfig extends $tea.Model {
|
|
|
425
795
|
export declare class JobElasticSpec extends $tea.Model {
|
|
426
796
|
AIMasterDockerImage?: string;
|
|
427
797
|
AIMasterType?: string;
|
|
798
|
+
/**
|
|
799
|
+
* @example
|
|
800
|
+
* 16
|
|
801
|
+
*/
|
|
428
802
|
EDPMaxParallelism?: number;
|
|
803
|
+
/**
|
|
804
|
+
* @example
|
|
805
|
+
* 8
|
|
806
|
+
*/
|
|
429
807
|
EDPMinParallelism?: number;
|
|
430
808
|
elasticStrategy?: string;
|
|
431
809
|
enableAIMaster?: boolean;
|
|
810
|
+
/**
|
|
811
|
+
* @example
|
|
812
|
+
* true
|
|
813
|
+
*/
|
|
432
814
|
enableEDP?: boolean;
|
|
815
|
+
/**
|
|
816
|
+
* @example
|
|
817
|
+
* true
|
|
818
|
+
*/
|
|
433
819
|
enableElasticTraining?: boolean;
|
|
820
|
+
/**
|
|
821
|
+
* @example
|
|
822
|
+
* true
|
|
823
|
+
*/
|
|
434
824
|
enablePsJobElasticPS?: boolean;
|
|
435
825
|
enablePsJobElasticWorker?: boolean;
|
|
826
|
+
/**
|
|
827
|
+
* @example
|
|
828
|
+
* true
|
|
829
|
+
*/
|
|
436
830
|
enablePsResourceEstimate?: boolean;
|
|
831
|
+
/**
|
|
832
|
+
* @example
|
|
833
|
+
* 8
|
|
834
|
+
*/
|
|
437
835
|
maxParallelism?: number;
|
|
836
|
+
/**
|
|
837
|
+
* @example
|
|
838
|
+
* 1
|
|
839
|
+
*/
|
|
438
840
|
minParallelism?: number;
|
|
841
|
+
/**
|
|
842
|
+
* @example
|
|
843
|
+
* 10
|
|
844
|
+
*/
|
|
439
845
|
PSMaxParallelism?: number;
|
|
846
|
+
/**
|
|
847
|
+
* @example
|
|
848
|
+
* 4
|
|
849
|
+
*/
|
|
440
850
|
PSMinParallelism?: number;
|
|
441
851
|
static names(): {
|
|
442
852
|
[key: string]: string;
|
|
@@ -452,39 +862,151 @@ export declare class JobItem extends $tea.Model {
|
|
|
452
862
|
codeSource?: JobItemCodeSource;
|
|
453
863
|
credentialConfig?: CredentialConfig;
|
|
454
864
|
dataSources?: JobItemDataSources[];
|
|
865
|
+
/**
|
|
866
|
+
* @example
|
|
867
|
+
* tf-mnist-test
|
|
868
|
+
*/
|
|
455
869
|
displayName?: string;
|
|
870
|
+
/**
|
|
871
|
+
* @example
|
|
872
|
+
* 3602
|
|
873
|
+
*/
|
|
456
874
|
duration?: number;
|
|
875
|
+
/**
|
|
876
|
+
* @example
|
|
877
|
+
* false
|
|
878
|
+
*/
|
|
457
879
|
enabledDebugger?: boolean;
|
|
458
880
|
envs?: {
|
|
459
881
|
[key: string]: string;
|
|
460
882
|
};
|
|
883
|
+
/**
|
|
884
|
+
* @example
|
|
885
|
+
* 2021-01-12T14:35:01Z
|
|
886
|
+
*/
|
|
461
887
|
gmtCreateTime?: string;
|
|
888
|
+
/**
|
|
889
|
+
* @example
|
|
890
|
+
* 2021-01-12T14:35:01Z
|
|
891
|
+
*/
|
|
462
892
|
gmtFailedTime?: string;
|
|
893
|
+
/**
|
|
894
|
+
* @example
|
|
895
|
+
* 2021-01-12T15:36:08Z
|
|
896
|
+
*/
|
|
463
897
|
gmtFinishTime?: string;
|
|
898
|
+
/**
|
|
899
|
+
* @example
|
|
900
|
+
* 2021-01-12T14:35:01Z
|
|
901
|
+
*/
|
|
464
902
|
gmtRunningTime?: string;
|
|
903
|
+
/**
|
|
904
|
+
* @example
|
|
905
|
+
* 2021-01-12T14:35:01Z
|
|
906
|
+
*/
|
|
465
907
|
gmtStoppedTime?: string;
|
|
908
|
+
/**
|
|
909
|
+
* @example
|
|
910
|
+
* 2021-01-12T14:35:01Z
|
|
911
|
+
*/
|
|
466
912
|
gmtSubmittedTime?: string;
|
|
913
|
+
/**
|
|
914
|
+
* @example
|
|
915
|
+
* 2021-01-12T14:35:01Z
|
|
916
|
+
*/
|
|
467
917
|
gmtSuccessedTime?: string;
|
|
918
|
+
/**
|
|
919
|
+
* @example
|
|
920
|
+
* dlc-20210126170216-mtl37ge7gkvdz
|
|
921
|
+
*/
|
|
468
922
|
jobId?: string;
|
|
469
923
|
jobSpecs?: JobSpec[];
|
|
924
|
+
/**
|
|
925
|
+
* @example
|
|
926
|
+
* TFJob
|
|
927
|
+
*/
|
|
470
928
|
jobType?: string;
|
|
929
|
+
/**
|
|
930
|
+
* @example
|
|
931
|
+
* 1
|
|
932
|
+
*/
|
|
471
933
|
priority?: number;
|
|
934
|
+
/**
|
|
935
|
+
* @example
|
|
936
|
+
* JobStoppedByUser
|
|
937
|
+
*/
|
|
472
938
|
reasonCode?: string;
|
|
939
|
+
/**
|
|
940
|
+
* @example
|
|
941
|
+
* Job is stopped by user.
|
|
942
|
+
*/
|
|
473
943
|
reasonMessage?: string;
|
|
944
|
+
/**
|
|
945
|
+
* @example
|
|
946
|
+
* dlc-quota
|
|
947
|
+
*/
|
|
474
948
|
resourceId?: string;
|
|
949
|
+
/**
|
|
950
|
+
* @example
|
|
951
|
+
* L0
|
|
952
|
+
*/
|
|
475
953
|
resourceLevel?: string;
|
|
954
|
+
/**
|
|
955
|
+
* @example
|
|
956
|
+
* my_resource_group
|
|
957
|
+
*/
|
|
476
958
|
resourceName?: string;
|
|
959
|
+
/**
|
|
960
|
+
* @example
|
|
961
|
+
* ECS
|
|
962
|
+
*/
|
|
477
963
|
resourceType?: string;
|
|
478
964
|
settings?: JobSettings;
|
|
965
|
+
/**
|
|
966
|
+
* @example
|
|
967
|
+
* Stopped
|
|
968
|
+
*/
|
|
479
969
|
status?: string;
|
|
970
|
+
/**
|
|
971
|
+
* @example
|
|
972
|
+
* Restarting
|
|
973
|
+
*/
|
|
480
974
|
subStatus?: string;
|
|
975
|
+
/**
|
|
976
|
+
* @example
|
|
977
|
+
* /root/code/
|
|
978
|
+
*/
|
|
481
979
|
thirdpartyLibDir?: string;
|
|
482
980
|
thirdpartyLibs?: string[];
|
|
981
|
+
/**
|
|
982
|
+
* @example
|
|
983
|
+
* false
|
|
984
|
+
*/
|
|
483
985
|
useOversoldResource?: boolean;
|
|
986
|
+
/**
|
|
987
|
+
* @example
|
|
988
|
+
* python /root/code/mnist.py
|
|
989
|
+
*/
|
|
484
990
|
userCommand?: string;
|
|
991
|
+
/**
|
|
992
|
+
* @example
|
|
993
|
+
* 123456789
|
|
994
|
+
*/
|
|
485
995
|
userId?: string;
|
|
996
|
+
/**
|
|
997
|
+
* @example
|
|
998
|
+
* pai-dlc-role
|
|
999
|
+
*/
|
|
486
1000
|
username?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* @example
|
|
1003
|
+
* 268
|
|
1004
|
+
*/
|
|
487
1005
|
workspaceId?: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* @example
|
|
1008
|
+
* dlc-workspace
|
|
1009
|
+
*/
|
|
488
1010
|
workspaceName?: string;
|
|
489
1011
|
static names(): {
|
|
490
1012
|
[key: string]: string;
|
|
@@ -500,19 +1022,75 @@ export declare class JobSettings extends $tea.Model {
|
|
|
500
1022
|
advancedSettings?: {
|
|
501
1023
|
[key: string]: any;
|
|
502
1024
|
};
|
|
1025
|
+
/**
|
|
1026
|
+
* @example
|
|
1027
|
+
* 166924
|
|
1028
|
+
*/
|
|
503
1029
|
businessUserId?: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* @example
|
|
1032
|
+
* SilkFlow
|
|
1033
|
+
*/
|
|
504
1034
|
caller?: string;
|
|
1035
|
+
/**
|
|
1036
|
+
* @example
|
|
1037
|
+
* 535.54.03
|
|
1038
|
+
*/
|
|
505
1039
|
driver?: string;
|
|
1040
|
+
/**
|
|
1041
|
+
* @example
|
|
1042
|
+
* false
|
|
1043
|
+
*/
|
|
506
1044
|
enableErrorMonitoringInAIMaster?: boolean;
|
|
1045
|
+
/**
|
|
1046
|
+
* @example
|
|
1047
|
+
* true
|
|
1048
|
+
*/
|
|
507
1049
|
enableOssAppend?: boolean;
|
|
1050
|
+
/**
|
|
1051
|
+
* @example
|
|
1052
|
+
* true
|
|
1053
|
+
*/
|
|
508
1054
|
enableRDMA?: boolean;
|
|
1055
|
+
/**
|
|
1056
|
+
* @example
|
|
1057
|
+
* true
|
|
1058
|
+
*/
|
|
509
1059
|
enableSanityCheck?: boolean;
|
|
1060
|
+
/**
|
|
1061
|
+
* @example
|
|
1062
|
+
* true
|
|
1063
|
+
*/
|
|
510
1064
|
enableTideResource?: boolean;
|
|
1065
|
+
/**
|
|
1066
|
+
* @example
|
|
1067
|
+
* --enable-log-hang-detection true
|
|
1068
|
+
*/
|
|
511
1069
|
errorMonitoringArgs?: string;
|
|
1070
|
+
/**
|
|
1071
|
+
* @example
|
|
1072
|
+
* 30
|
|
1073
|
+
*/
|
|
512
1074
|
jobReservedMinutes?: number;
|
|
1075
|
+
/**
|
|
1076
|
+
* @example
|
|
1077
|
+
* Always
|
|
1078
|
+
*/
|
|
513
1079
|
jobReservedPolicy?: string;
|
|
1080
|
+
/**
|
|
1081
|
+
* @example
|
|
1082
|
+
* AcceptQuotaOverSold
|
|
1083
|
+
*/
|
|
514
1084
|
oversoldType?: string;
|
|
1085
|
+
/**
|
|
1086
|
+
* @example
|
|
1087
|
+
* pid-123456
|
|
1088
|
+
*/
|
|
515
1089
|
pipelineId?: string;
|
|
1090
|
+
/**
|
|
1091
|
+
* @example
|
|
1092
|
+
* --sanity-check-timing=AfterJobFaultTolerant --sanity-check-timeout-ops=MarkJobFai
|
|
1093
|
+
*/
|
|
516
1094
|
sanityCheckArgs?: string;
|
|
517
1095
|
tags?: {
|
|
518
1096
|
[key: string]: string;
|
|
@@ -528,14 +1106,35 @@ export declare class JobSettings extends $tea.Model {
|
|
|
528
1106
|
});
|
|
529
1107
|
}
|
|
530
1108
|
export declare class JobSpec extends $tea.Model {
|
|
1109
|
+
assignNodeSpec?: AssignNodeSpec;
|
|
1110
|
+
/**
|
|
1111
|
+
* @example
|
|
1112
|
+
* ecs.c6.large
|
|
1113
|
+
*/
|
|
531
1114
|
ecsSpec?: string;
|
|
532
1115
|
extraPodSpec?: ExtraPodSpec;
|
|
1116
|
+
/**
|
|
1117
|
+
* @example
|
|
1118
|
+
* registry.cn-hangzhou.aliyuncs.com/pai-dlc/tensorflow-training:1.12.2PAI-cpu-py27-ubuntu16.04
|
|
1119
|
+
*/
|
|
533
1120
|
image?: string;
|
|
534
1121
|
imageConfig?: ImageConfig;
|
|
1122
|
+
/**
|
|
1123
|
+
* @example
|
|
1124
|
+
* 1
|
|
1125
|
+
*/
|
|
535
1126
|
podCount?: number;
|
|
536
1127
|
resourceConfig?: ResourceConfig;
|
|
537
1128
|
spotSpec?: SpotSpec;
|
|
1129
|
+
/**
|
|
1130
|
+
* @example
|
|
1131
|
+
* Worker
|
|
1132
|
+
*/
|
|
538
1133
|
type?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* @example
|
|
1136
|
+
* false
|
|
1137
|
+
*/
|
|
539
1138
|
useSpotInstance?: boolean;
|
|
540
1139
|
static names(): {
|
|
541
1140
|
[key: string]: string;
|
|
@@ -547,11 +1146,28 @@ export declare class JobSpec extends $tea.Model {
|
|
|
547
1146
|
[key: string]: any;
|
|
548
1147
|
});
|
|
549
1148
|
}
|
|
1149
|
+
export declare class Lifecycle extends $tea.Model {
|
|
1150
|
+
postStart?: LifecyclePostStart;
|
|
1151
|
+
preStop?: LifecyclePreStop;
|
|
1152
|
+
static names(): {
|
|
1153
|
+
[key: string]: string;
|
|
1154
|
+
};
|
|
1155
|
+
static types(): {
|
|
1156
|
+
[key: string]: any;
|
|
1157
|
+
};
|
|
1158
|
+
constructor(map?: {
|
|
1159
|
+
[key: string]: any;
|
|
1160
|
+
});
|
|
1161
|
+
}
|
|
550
1162
|
export declare class LogInfo extends $tea.Model {
|
|
551
1163
|
content?: string;
|
|
552
1164
|
id?: string;
|
|
553
1165
|
podId?: string;
|
|
554
1166
|
podUid?: string;
|
|
1167
|
+
/**
|
|
1168
|
+
* @example
|
|
1169
|
+
* stderr, stdout
|
|
1170
|
+
*/
|
|
555
1171
|
source?: string;
|
|
556
1172
|
time?: string;
|
|
557
1173
|
static names(): {
|
|
@@ -565,7 +1181,15 @@ export declare class LogInfo extends $tea.Model {
|
|
|
565
1181
|
});
|
|
566
1182
|
}
|
|
567
1183
|
export declare class Member extends $tea.Model {
|
|
1184
|
+
/**
|
|
1185
|
+
* @example
|
|
1186
|
+
* ken_12345
|
|
1187
|
+
*/
|
|
568
1188
|
memberId?: string;
|
|
1189
|
+
/**
|
|
1190
|
+
* @example
|
|
1191
|
+
* WorkspaceAdmin
|
|
1192
|
+
*/
|
|
569
1193
|
memberType?: string;
|
|
570
1194
|
static names(): {
|
|
571
1195
|
[key: string]: string;
|
|
@@ -578,7 +1202,15 @@ export declare class Member extends $tea.Model {
|
|
|
578
1202
|
});
|
|
579
1203
|
}
|
|
580
1204
|
export declare class Metric extends $tea.Model {
|
|
1205
|
+
/**
|
|
1206
|
+
* @example
|
|
1207
|
+
* 1616987726587
|
|
1208
|
+
*/
|
|
581
1209
|
time?: number;
|
|
1210
|
+
/**
|
|
1211
|
+
* @example
|
|
1212
|
+
* 23.45
|
|
1213
|
+
*/
|
|
582
1214
|
value?: number;
|
|
583
1215
|
static names(): {
|
|
584
1216
|
[key: string]: string;
|
|
@@ -592,6 +1224,10 @@ export declare class Metric extends $tea.Model {
|
|
|
592
1224
|
}
|
|
593
1225
|
export declare class NodeMetric extends $tea.Model {
|
|
594
1226
|
metrics?: Metric[];
|
|
1227
|
+
/**
|
|
1228
|
+
* @example
|
|
1229
|
+
* asi_xxx
|
|
1230
|
+
*/
|
|
595
1231
|
nodeName?: string;
|
|
596
1232
|
static names(): {
|
|
597
1233
|
[key: string]: string;
|
|
@@ -604,14 +1240,46 @@ export declare class NodeMetric extends $tea.Model {
|
|
|
604
1240
|
});
|
|
605
1241
|
}
|
|
606
1242
|
export declare class PodItem extends $tea.Model {
|
|
1243
|
+
/**
|
|
1244
|
+
* @example
|
|
1245
|
+
* 2021-01-12T14:36:01Z
|
|
1246
|
+
*/
|
|
607
1247
|
gmtCreateTime?: string;
|
|
1248
|
+
/**
|
|
1249
|
+
* @example
|
|
1250
|
+
* 2021-01-12T15:36:05Z
|
|
1251
|
+
*/
|
|
608
1252
|
gmtFinishTime?: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* @example
|
|
1255
|
+
* 2021-01-12T14:36:05Z
|
|
1256
|
+
*/
|
|
609
1257
|
gmtStartTime?: string;
|
|
610
1258
|
historyPods?: PodItem[];
|
|
1259
|
+
/**
|
|
1260
|
+
* @example
|
|
1261
|
+
* 10.0.1.2
|
|
1262
|
+
*/
|
|
611
1263
|
ip?: string;
|
|
1264
|
+
/**
|
|
1265
|
+
* @example
|
|
1266
|
+
* dlc-20210126170216-mtl37ge7gkvdz-worker-0
|
|
1267
|
+
*/
|
|
612
1268
|
podId?: string;
|
|
1269
|
+
/**
|
|
1270
|
+
* @example
|
|
1271
|
+
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
1272
|
+
*/
|
|
613
1273
|
podUid?: string;
|
|
1274
|
+
/**
|
|
1275
|
+
* @example
|
|
1276
|
+
* Stopped
|
|
1277
|
+
*/
|
|
614
1278
|
status?: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* @example
|
|
1281
|
+
* Worker
|
|
1282
|
+
*/
|
|
615
1283
|
type?: string;
|
|
616
1284
|
static names(): {
|
|
617
1285
|
[key: string]: string;
|
|
@@ -625,6 +1293,10 @@ export declare class PodItem extends $tea.Model {
|
|
|
625
1293
|
}
|
|
626
1294
|
export declare class PodMetric extends $tea.Model {
|
|
627
1295
|
metrics?: Metric[];
|
|
1296
|
+
/**
|
|
1297
|
+
* @example
|
|
1298
|
+
* dlc-20210329110128-746bf7cl47pr8-worker-0
|
|
1299
|
+
*/
|
|
628
1300
|
podId?: string;
|
|
629
1301
|
static names(): {
|
|
630
1302
|
[key: string]: string;
|
|
@@ -640,8 +1312,20 @@ export declare class Quota extends $tea.Model {
|
|
|
640
1312
|
clusterId?: string;
|
|
641
1313
|
clusterName?: string;
|
|
642
1314
|
quotaConfig?: QuotaConfig;
|
|
1315
|
+
/**
|
|
1316
|
+
* @example
|
|
1317
|
+
* quotamtl37ge7gkvdz
|
|
1318
|
+
*/
|
|
643
1319
|
quotaId?: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* @example
|
|
1322
|
+
* dlc-quota
|
|
1323
|
+
*/
|
|
644
1324
|
quotaName?: string;
|
|
1325
|
+
/**
|
|
1326
|
+
* @example
|
|
1327
|
+
* asiquota
|
|
1328
|
+
*/
|
|
645
1329
|
quotaType?: string;
|
|
646
1330
|
totalQuota?: QuotaDetail;
|
|
647
1331
|
totalTideQuota?: QuotaDetail;
|
|
@@ -674,11 +1358,31 @@ export declare class QuotaConfig extends $tea.Model {
|
|
|
674
1358
|
});
|
|
675
1359
|
}
|
|
676
1360
|
export declare class QuotaDetail extends $tea.Model {
|
|
1361
|
+
/**
|
|
1362
|
+
* @example
|
|
1363
|
+
* 2
|
|
1364
|
+
*/
|
|
677
1365
|
CPU?: string;
|
|
1366
|
+
/**
|
|
1367
|
+
* @example
|
|
1368
|
+
* 5
|
|
1369
|
+
*/
|
|
678
1370
|
GPU?: string;
|
|
679
1371
|
GPUDetails?: GPUDetail[];
|
|
1372
|
+
/**
|
|
1373
|
+
* @example
|
|
1374
|
+
* Tesla-V100
|
|
1375
|
+
*/
|
|
680
1376
|
GPUType?: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* @example
|
|
1379
|
+
* nvidia.com/gpu
|
|
1380
|
+
*/
|
|
681
1381
|
GPUTypeFullName?: string;
|
|
1382
|
+
/**
|
|
1383
|
+
* @example
|
|
1384
|
+
* 10Gi
|
|
1385
|
+
*/
|
|
682
1386
|
memory?: string;
|
|
683
1387
|
static names(): {
|
|
684
1388
|
[key: string]: string;
|
|
@@ -691,10 +1395,30 @@ export declare class QuotaDetail extends $tea.Model {
|
|
|
691
1395
|
});
|
|
692
1396
|
}
|
|
693
1397
|
export declare class ResourceConfig extends $tea.Model {
|
|
1398
|
+
/**
|
|
1399
|
+
* @example
|
|
1400
|
+
* 10
|
|
1401
|
+
*/
|
|
694
1402
|
CPU?: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* @example
|
|
1405
|
+
* 3
|
|
1406
|
+
*/
|
|
695
1407
|
GPU?: string;
|
|
1408
|
+
/**
|
|
1409
|
+
* @example
|
|
1410
|
+
* Tesla-V100-16G
|
|
1411
|
+
*/
|
|
696
1412
|
GPUType?: string;
|
|
1413
|
+
/**
|
|
1414
|
+
* @example
|
|
1415
|
+
* 10Gi
|
|
1416
|
+
*/
|
|
697
1417
|
memory?: string;
|
|
1418
|
+
/**
|
|
1419
|
+
* @example
|
|
1420
|
+
* 5Gi
|
|
1421
|
+
*/
|
|
698
1422
|
sharedMemory?: string;
|
|
699
1423
|
static names(): {
|
|
700
1424
|
[key: string]: string;
|
|
@@ -724,8 +1448,20 @@ export declare class ResourceRequirements extends $tea.Model {
|
|
|
724
1448
|
});
|
|
725
1449
|
}
|
|
726
1450
|
export declare class Resources extends $tea.Model {
|
|
1451
|
+
/**
|
|
1452
|
+
* @example
|
|
1453
|
+
* 10
|
|
1454
|
+
*/
|
|
727
1455
|
CPU?: string;
|
|
1456
|
+
/**
|
|
1457
|
+
* @example
|
|
1458
|
+
* 8
|
|
1459
|
+
*/
|
|
728
1460
|
GPU?: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* @example
|
|
1463
|
+
* 1024(单位GB)
|
|
1464
|
+
*/
|
|
729
1465
|
memory?: string;
|
|
730
1466
|
static names(): {
|
|
731
1467
|
[key: string]: string;
|
|
@@ -738,11 +1474,31 @@ export declare class Resources extends $tea.Model {
|
|
|
738
1474
|
});
|
|
739
1475
|
}
|
|
740
1476
|
export declare class SanityCheckResultItem extends $tea.Model {
|
|
1477
|
+
/**
|
|
1478
|
+
* @example
|
|
1479
|
+
* 1
|
|
1480
|
+
*/
|
|
741
1481
|
checkNumber?: number;
|
|
1482
|
+
/**
|
|
1483
|
+
* @example
|
|
1484
|
+
* ”2023-11-30T16:47:30.378817+08:00"
|
|
1485
|
+
*/
|
|
742
1486
|
finishedAt?: string;
|
|
743
1487
|
message?: string;
|
|
1488
|
+
/**
|
|
1489
|
+
* @example
|
|
1490
|
+
* CheckInit
|
|
1491
|
+
*/
|
|
744
1492
|
phase?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* @example
|
|
1495
|
+
* ”2023-11-30T16:47:30.343005+08:00“
|
|
1496
|
+
*/
|
|
745
1497
|
startedAt?: string;
|
|
1498
|
+
/**
|
|
1499
|
+
* @example
|
|
1500
|
+
* Succeeded
|
|
1501
|
+
*/
|
|
746
1502
|
status?: string;
|
|
747
1503
|
static names(): {
|
|
748
1504
|
[key: string]: string;
|
|
@@ -755,21 +1511,85 @@ export declare class SanityCheckResultItem extends $tea.Model {
|
|
|
755
1511
|
});
|
|
756
1512
|
}
|
|
757
1513
|
export declare class SmartCache extends $tea.Model {
|
|
1514
|
+
/**
|
|
1515
|
+
* @example
|
|
1516
|
+
* 10
|
|
1517
|
+
*/
|
|
758
1518
|
cacheWorkerNum?: number;
|
|
1519
|
+
/**
|
|
1520
|
+
* @example
|
|
1521
|
+
* 100
|
|
1522
|
+
*/
|
|
759
1523
|
cacheWorkerSize?: number;
|
|
1524
|
+
/**
|
|
1525
|
+
* @example
|
|
1526
|
+
* test
|
|
1527
|
+
*/
|
|
760
1528
|
description?: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* @example
|
|
1531
|
+
* test
|
|
1532
|
+
*/
|
|
761
1533
|
displayName?: string;
|
|
1534
|
+
/**
|
|
1535
|
+
* @example
|
|
1536
|
+
* 123456
|
|
1537
|
+
*/
|
|
762
1538
|
duration?: string;
|
|
1539
|
+
/**
|
|
1540
|
+
* @example
|
|
1541
|
+
* oss-cn-beijing-internal.aliyuncs.com
|
|
1542
|
+
*/
|
|
763
1543
|
endpoint?: string;
|
|
1544
|
+
/**
|
|
1545
|
+
* @example
|
|
1546
|
+
* 1ca404****
|
|
1547
|
+
*/
|
|
764
1548
|
fileSystemId?: string;
|
|
1549
|
+
/**
|
|
1550
|
+
* @example
|
|
1551
|
+
* 2021-01-12T14:36:01Z
|
|
1552
|
+
*/
|
|
765
1553
|
gmtCreateTime?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* @example
|
|
1556
|
+
* 2021-01-12T23:36:01Z
|
|
1557
|
+
*/
|
|
766
1558
|
gmtModifyTime?: string;
|
|
1559
|
+
/**
|
|
1560
|
+
* @example
|
|
1561
|
+
* /root/data/
|
|
1562
|
+
*/
|
|
767
1563
|
mountPath?: string;
|
|
1564
|
+
/**
|
|
1565
|
+
* @example
|
|
1566
|
+
* {"num_threads": 32}
|
|
1567
|
+
*/
|
|
768
1568
|
options?: string;
|
|
1569
|
+
/**
|
|
1570
|
+
* @example
|
|
1571
|
+
* oss://buc/path/to/dir
|
|
1572
|
+
*/
|
|
769
1573
|
path?: string;
|
|
1574
|
+
/**
|
|
1575
|
+
* @example
|
|
1576
|
+
* smartcache-20210114104214-vf9lowjt3pso
|
|
1577
|
+
*/
|
|
770
1578
|
smartCacheId?: string;
|
|
1579
|
+
/**
|
|
1580
|
+
* @example
|
|
1581
|
+
* Running
|
|
1582
|
+
*/
|
|
771
1583
|
status?: string;
|
|
1584
|
+
/**
|
|
1585
|
+
* @example
|
|
1586
|
+
* oss
|
|
1587
|
+
*/
|
|
772
1588
|
type?: string;
|
|
1589
|
+
/**
|
|
1590
|
+
* @example
|
|
1591
|
+
* 189xxx
|
|
1592
|
+
*/
|
|
773
1593
|
userId?: string;
|
|
774
1594
|
static names(): {
|
|
775
1595
|
[key: string]: string;
|
|
@@ -811,26 +1631,90 @@ export declare class StatusTransitionItem extends $tea.Model {
|
|
|
811
1631
|
});
|
|
812
1632
|
}
|
|
813
1633
|
export declare class Tensorboard extends $tea.Model {
|
|
1634
|
+
/**
|
|
1635
|
+
* @example
|
|
1636
|
+
* datasource-test
|
|
1637
|
+
*/
|
|
814
1638
|
dataSourceId?: string;
|
|
1639
|
+
/**
|
|
1640
|
+
* @example
|
|
1641
|
+
* test
|
|
1642
|
+
*/
|
|
815
1643
|
displayName?: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* @example
|
|
1646
|
+
* 1234567
|
|
1647
|
+
*/
|
|
816
1648
|
duration?: string;
|
|
1649
|
+
/**
|
|
1650
|
+
* @example
|
|
1651
|
+
* 2021-01-12T14:35:00Z
|
|
1652
|
+
*/
|
|
817
1653
|
gmtCreateTime?: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* @example
|
|
1656
|
+
* 2021-01-12T14:36:00Z
|
|
1657
|
+
*/
|
|
818
1658
|
gmtFinishTime?: string;
|
|
1659
|
+
/**
|
|
1660
|
+
* @example
|
|
1661
|
+
* 2021-01-12T14:36:00Z
|
|
1662
|
+
*/
|
|
819
1663
|
gmtModifyTime?: string;
|
|
1664
|
+
/**
|
|
1665
|
+
* @example
|
|
1666
|
+
* dlc-20210114104214-vf9lowjt3pso
|
|
1667
|
+
*/
|
|
820
1668
|
jobId?: string;
|
|
821
1669
|
priority?: string;
|
|
822
1670
|
quotaId?: string;
|
|
823
1671
|
quotaName?: string;
|
|
1672
|
+
/**
|
|
1673
|
+
* @example
|
|
1674
|
+
* Delete by user
|
|
1675
|
+
*/
|
|
824
1676
|
reasonCode?: string;
|
|
1677
|
+
/**
|
|
1678
|
+
* @example
|
|
1679
|
+
* Tensorboard is deleted
|
|
1680
|
+
*/
|
|
825
1681
|
reasonMessage?: string;
|
|
1682
|
+
/**
|
|
1683
|
+
* @example
|
|
1684
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
1685
|
+
*/
|
|
826
1686
|
requestId?: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* @example
|
|
1689
|
+
* running
|
|
1690
|
+
*/
|
|
827
1691
|
status?: string;
|
|
1692
|
+
/**
|
|
1693
|
+
* @example
|
|
1694
|
+
* /root/data
|
|
1695
|
+
*/
|
|
828
1696
|
summaryPath?: string;
|
|
829
1697
|
tensorboardDataSources?: TensorboardDataSourceSpec[];
|
|
1698
|
+
/**
|
|
1699
|
+
* @example
|
|
1700
|
+
* tensorboard-xxx
|
|
1701
|
+
*/
|
|
830
1702
|
tensorboardId?: string;
|
|
831
1703
|
tensorboardSpec?: TensorboardSpec;
|
|
1704
|
+
/**
|
|
1705
|
+
* @example
|
|
1706
|
+
* http://xxxxxx
|
|
1707
|
+
*/
|
|
832
1708
|
tensorboardUrl?: string;
|
|
1709
|
+
/**
|
|
1710
|
+
* @example
|
|
1711
|
+
* lycxxxxx
|
|
1712
|
+
*/
|
|
833
1713
|
userId?: string;
|
|
1714
|
+
/**
|
|
1715
|
+
* @example
|
|
1716
|
+
* tensorboard.pai
|
|
1717
|
+
*/
|
|
834
1718
|
username?: string;
|
|
835
1719
|
static names(): {
|
|
836
1720
|
[key: string]: string;
|
|
@@ -843,13 +1727,45 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
843
1727
|
});
|
|
844
1728
|
}
|
|
845
1729
|
export declare class TensorboardDataSourceSpec extends $tea.Model {
|
|
1730
|
+
/**
|
|
1731
|
+
* @example
|
|
1732
|
+
* OSS
|
|
1733
|
+
*/
|
|
846
1734
|
dataSourceType?: string;
|
|
1735
|
+
/**
|
|
1736
|
+
* @example
|
|
1737
|
+
* dlcJobName
|
|
1738
|
+
*/
|
|
847
1739
|
directoryName?: string;
|
|
1740
|
+
/**
|
|
1741
|
+
* @example
|
|
1742
|
+
* oss://xxxxx/tensorboard/run1
|
|
1743
|
+
*/
|
|
848
1744
|
fullSummaryPath?: string;
|
|
1745
|
+
/**
|
|
1746
|
+
* @example
|
|
1747
|
+
* d-vf2fdhxxxxxx
|
|
1748
|
+
*/
|
|
849
1749
|
id?: string;
|
|
1750
|
+
/**
|
|
1751
|
+
* @example
|
|
1752
|
+
* dlcJobName
|
|
1753
|
+
*/
|
|
850
1754
|
name?: string;
|
|
1755
|
+
/**
|
|
1756
|
+
* @example
|
|
1757
|
+
* datasource
|
|
1758
|
+
*/
|
|
851
1759
|
sourceType?: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* @example
|
|
1762
|
+
* /tensorboard/run1
|
|
1763
|
+
*/
|
|
852
1764
|
summaryPath?: string;
|
|
1765
|
+
/**
|
|
1766
|
+
* @example
|
|
1767
|
+
* oss://.oss-cn-shanghai-finance-1.aliyuncs.com/
|
|
1768
|
+
*/
|
|
853
1769
|
uri?: string;
|
|
854
1770
|
static names(): {
|
|
855
1771
|
[key: string]: string;
|
|
@@ -862,9 +1778,25 @@ export declare class TensorboardDataSourceSpec extends $tea.Model {
|
|
|
862
1778
|
});
|
|
863
1779
|
}
|
|
864
1780
|
export declare class TensorboardSpec extends $tea.Model {
|
|
1781
|
+
/**
|
|
1782
|
+
* @example
|
|
1783
|
+
* ecs.g6.large
|
|
1784
|
+
*/
|
|
865
1785
|
ecsType?: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* @example
|
|
1788
|
+
* sg-xxxxx
|
|
1789
|
+
*/
|
|
866
1790
|
securityGroupId?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* @example
|
|
1793
|
+
* vsw-xxxx
|
|
1794
|
+
*/
|
|
867
1795
|
switchId?: string;
|
|
1796
|
+
/**
|
|
1797
|
+
* @example
|
|
1798
|
+
* vpc-xxxx
|
|
1799
|
+
*/
|
|
868
1800
|
vpcId?: string;
|
|
869
1801
|
static names(): {
|
|
870
1802
|
[key: string]: string;
|
|
@@ -877,14 +1809,34 @@ export declare class TensorboardSpec extends $tea.Model {
|
|
|
877
1809
|
});
|
|
878
1810
|
}
|
|
879
1811
|
export declare class Workspace extends $tea.Model {
|
|
1812
|
+
/**
|
|
1813
|
+
* @example
|
|
1814
|
+
* ken
|
|
1815
|
+
*/
|
|
880
1816
|
creator?: string;
|
|
1817
|
+
/**
|
|
1818
|
+
* @example
|
|
1819
|
+
* 2021-01-12T14:36:01Z
|
|
1820
|
+
*/
|
|
881
1821
|
gmtCreateTime?: string;
|
|
1822
|
+
/**
|
|
1823
|
+
* @example
|
|
1824
|
+
* 2021-01-12T14:36:01Z
|
|
1825
|
+
*/
|
|
882
1826
|
gmtModifyTime?: string;
|
|
883
1827
|
members?: Member[];
|
|
884
1828
|
quotas?: Quota[];
|
|
885
1829
|
totalResources?: Resources;
|
|
886
1830
|
workspaceAdmins?: Member[];
|
|
1831
|
+
/**
|
|
1832
|
+
* @example
|
|
1833
|
+
* ws-20210126170216-mtl37ge7gkvdz
|
|
1834
|
+
*/
|
|
887
1835
|
workspaceId?: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* @example
|
|
1838
|
+
* dlc-workspace
|
|
1839
|
+
*/
|
|
888
1840
|
workspaceName?: string;
|
|
889
1841
|
static names(): {
|
|
890
1842
|
[key: string]: string;
|
|
@@ -900,24 +1852,81 @@ export declare class CreateJobRequest extends $tea.Model {
|
|
|
900
1852
|
codeSource?: CreateJobRequestCodeSource;
|
|
901
1853
|
credentialConfig?: CredentialConfig;
|
|
902
1854
|
dataSources?: CreateJobRequestDataSources[];
|
|
1855
|
+
/**
|
|
1856
|
+
* @example
|
|
1857
|
+
* “”
|
|
1858
|
+
*/
|
|
903
1859
|
debuggerConfigContent?: string;
|
|
1860
|
+
/**
|
|
1861
|
+
* @remarks
|
|
1862
|
+
* This parameter is required.
|
|
1863
|
+
*
|
|
1864
|
+
* @example
|
|
1865
|
+
* tf-mnist-test
|
|
1866
|
+
*/
|
|
904
1867
|
displayName?: string;
|
|
905
1868
|
elasticSpec?: JobElasticSpec;
|
|
906
1869
|
envs?: {
|
|
907
1870
|
[key: string]: string;
|
|
908
1871
|
};
|
|
1872
|
+
/**
|
|
1873
|
+
* @example
|
|
1874
|
+
* 1024
|
|
1875
|
+
*/
|
|
909
1876
|
jobMaxRunningTimeMinutes?: number;
|
|
1877
|
+
/**
|
|
1878
|
+
* @remarks
|
|
1879
|
+
* This parameter is required.
|
|
1880
|
+
*/
|
|
910
1881
|
jobSpecs?: JobSpec[];
|
|
1882
|
+
/**
|
|
1883
|
+
* @remarks
|
|
1884
|
+
* This parameter is required.
|
|
1885
|
+
*
|
|
1886
|
+
* @example
|
|
1887
|
+
* TFJob
|
|
1888
|
+
*/
|
|
911
1889
|
jobType?: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* @example
|
|
1892
|
+
* key1=value1,key2=value2
|
|
1893
|
+
*/
|
|
912
1894
|
options?: string;
|
|
1895
|
+
/**
|
|
1896
|
+
* @example
|
|
1897
|
+
* 8
|
|
1898
|
+
*/
|
|
913
1899
|
priority?: number;
|
|
1900
|
+
/**
|
|
1901
|
+
* @example
|
|
1902
|
+
* rs-xxx
|
|
1903
|
+
*/
|
|
914
1904
|
resourceId?: string;
|
|
915
1905
|
settings?: JobSettings;
|
|
1906
|
+
/**
|
|
1907
|
+
* @example
|
|
1908
|
+
* AllWorkers
|
|
1909
|
+
*/
|
|
916
1910
|
successPolicy?: string;
|
|
1911
|
+
/**
|
|
1912
|
+
* @example
|
|
1913
|
+
* /root/code/
|
|
1914
|
+
*/
|
|
917
1915
|
thirdpartyLibDir?: string;
|
|
918
1916
|
thirdpartyLibs?: string[];
|
|
1917
|
+
/**
|
|
1918
|
+
* @remarks
|
|
1919
|
+
* This parameter is required.
|
|
1920
|
+
*
|
|
1921
|
+
* @example
|
|
1922
|
+
* python /root/code/mnist.py
|
|
1923
|
+
*/
|
|
919
1924
|
userCommand?: string;
|
|
920
1925
|
userVpc?: CreateJobRequestUserVpc;
|
|
1926
|
+
/**
|
|
1927
|
+
* @example
|
|
1928
|
+
* ws-20210126170216-xxxxxxx
|
|
1929
|
+
*/
|
|
921
1930
|
workspaceId?: string;
|
|
922
1931
|
static names(): {
|
|
923
1932
|
[key: string]: string;
|
|
@@ -930,7 +1939,15 @@ export declare class CreateJobRequest extends $tea.Model {
|
|
|
930
1939
|
});
|
|
931
1940
|
}
|
|
932
1941
|
export declare class CreateJobResponseBody extends $tea.Model {
|
|
1942
|
+
/**
|
|
1943
|
+
* @example
|
|
1944
|
+
* dlc7*******
|
|
1945
|
+
*/
|
|
933
1946
|
jobId?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
* @example
|
|
1949
|
+
* 473469C7-AA6F-4DC5-B3DB-xxxxxxx
|
|
1950
|
+
*/
|
|
934
1951
|
requestId?: string;
|
|
935
1952
|
static names(): {
|
|
936
1953
|
[key: string]: string;
|
|
@@ -959,24 +1976,76 @@ export declare class CreateJobResponse extends $tea.Model {
|
|
|
959
1976
|
});
|
|
960
1977
|
}
|
|
961
1978
|
export declare class CreateTensorboardRequest extends $tea.Model {
|
|
1979
|
+
/**
|
|
1980
|
+
* @example
|
|
1981
|
+
* 1
|
|
1982
|
+
*/
|
|
962
1983
|
cpu?: number;
|
|
1984
|
+
/**
|
|
1985
|
+
* @example
|
|
1986
|
+
* d-xxxxxxxx
|
|
1987
|
+
*/
|
|
963
1988
|
dataSourceId?: string;
|
|
964
1989
|
dataSourceType?: string;
|
|
965
1990
|
dataSources?: DataSourceItem[];
|
|
1991
|
+
/**
|
|
1992
|
+
* @example
|
|
1993
|
+
* tensorboard
|
|
1994
|
+
*/
|
|
966
1995
|
displayName?: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* @example
|
|
1998
|
+
* dlc-20210126170216-mtl37ge7gkvdz
|
|
1999
|
+
*/
|
|
967
2000
|
jobId?: string;
|
|
2001
|
+
/**
|
|
2002
|
+
* @example
|
|
2003
|
+
* 240
|
|
2004
|
+
*/
|
|
968
2005
|
maxRunningTimeMinutes?: number;
|
|
2006
|
+
/**
|
|
2007
|
+
* @example
|
|
2008
|
+
* 1000
|
|
2009
|
+
*/
|
|
969
2010
|
memory?: number;
|
|
2011
|
+
/**
|
|
2012
|
+
* @example
|
|
2013
|
+
* {"mountpath":"/root/data/"}
|
|
2014
|
+
*/
|
|
970
2015
|
options?: string;
|
|
971
2016
|
priority?: string;
|
|
972
2017
|
quotaId?: string;
|
|
2018
|
+
/**
|
|
2019
|
+
* @example
|
|
2020
|
+
* dlc-xxxxxx
|
|
2021
|
+
*/
|
|
973
2022
|
sourceId?: string;
|
|
2023
|
+
/**
|
|
2024
|
+
* @example
|
|
2025
|
+
* job
|
|
2026
|
+
*/
|
|
974
2027
|
sourceType?: string;
|
|
2028
|
+
/**
|
|
2029
|
+
* @example
|
|
2030
|
+
* /root/data/
|
|
2031
|
+
*/
|
|
975
2032
|
summaryPath?: string;
|
|
2033
|
+
/**
|
|
2034
|
+
* @example
|
|
2035
|
+
* /summary/
|
|
2036
|
+
*/
|
|
976
2037
|
summaryRelativePath?: string;
|
|
977
2038
|
tensorboardDataSources?: TensorboardDataSourceSpec[];
|
|
978
2039
|
tensorboardSpec?: TensorboardSpec;
|
|
2040
|
+
/**
|
|
2041
|
+
* @example
|
|
2042
|
+
* oss://.oss-cn-shanghai-finance-1.aliyuncs.com/
|
|
2043
|
+
*/
|
|
979
2044
|
uri?: string;
|
|
2045
|
+
/**
|
|
2046
|
+
* @example
|
|
2047
|
+
* 123***
|
|
2048
|
+
*/
|
|
980
2049
|
workspaceId?: string;
|
|
981
2050
|
static names(): {
|
|
982
2051
|
[key: string]: string;
|
|
@@ -989,9 +2058,25 @@ export declare class CreateTensorboardRequest extends $tea.Model {
|
|
|
989
2058
|
});
|
|
990
2059
|
}
|
|
991
2060
|
export declare class CreateTensorboardResponseBody extends $tea.Model {
|
|
2061
|
+
/**
|
|
2062
|
+
* @example
|
|
2063
|
+
* ds-20210126170216-xxxxxxxx
|
|
2064
|
+
*/
|
|
992
2065
|
dataSourceId?: string;
|
|
2066
|
+
/**
|
|
2067
|
+
* @example
|
|
2068
|
+
* dlc-20210126170216-xxxxxxxx
|
|
2069
|
+
*/
|
|
993
2070
|
jobId?: string;
|
|
2071
|
+
/**
|
|
2072
|
+
* @example
|
|
2073
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2074
|
+
*/
|
|
994
2075
|
requestId?: string;
|
|
2076
|
+
/**
|
|
2077
|
+
* @example
|
|
2078
|
+
* tbxxxxxxxx
|
|
2079
|
+
*/
|
|
995
2080
|
tensorboardId?: string;
|
|
996
2081
|
static names(): {
|
|
997
2082
|
[key: string]: string;
|
|
@@ -1020,7 +2105,15 @@ export declare class CreateTensorboardResponse extends $tea.Model {
|
|
|
1020
2105
|
});
|
|
1021
2106
|
}
|
|
1022
2107
|
export declare class DeleteJobResponseBody extends $tea.Model {
|
|
2108
|
+
/**
|
|
2109
|
+
* @example
|
|
2110
|
+
* dlc*************
|
|
2111
|
+
*/
|
|
1023
2112
|
jobId?: string;
|
|
2113
|
+
/**
|
|
2114
|
+
* @example
|
|
2115
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2116
|
+
*/
|
|
1024
2117
|
requestId?: string;
|
|
1025
2118
|
static names(): {
|
|
1026
2119
|
[key: string]: string;
|
|
@@ -1049,6 +2142,10 @@ export declare class DeleteJobResponse extends $tea.Model {
|
|
|
1049
2142
|
});
|
|
1050
2143
|
}
|
|
1051
2144
|
export declare class DeleteTensorboardRequest extends $tea.Model {
|
|
2145
|
+
/**
|
|
2146
|
+
* @example
|
|
2147
|
+
* 46099
|
|
2148
|
+
*/
|
|
1052
2149
|
workspaceId?: string;
|
|
1053
2150
|
static names(): {
|
|
1054
2151
|
[key: string]: string;
|
|
@@ -1061,7 +2158,15 @@ export declare class DeleteTensorboardRequest extends $tea.Model {
|
|
|
1061
2158
|
});
|
|
1062
2159
|
}
|
|
1063
2160
|
export declare class DeleteTensorboardResponseBody extends $tea.Model {
|
|
2161
|
+
/**
|
|
2162
|
+
* @example
|
|
2163
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2164
|
+
*/
|
|
1064
2165
|
requestId?: string;
|
|
2166
|
+
/**
|
|
2167
|
+
* @example
|
|
2168
|
+
* tensorboard-20210114104214-vf9lowjt3pso
|
|
2169
|
+
*/
|
|
1065
2170
|
tensorboardId?: string;
|
|
1066
2171
|
static names(): {
|
|
1067
2172
|
[key: string]: string;
|
|
@@ -1090,6 +2195,10 @@ export declare class DeleteTensorboardResponse extends $tea.Model {
|
|
|
1090
2195
|
});
|
|
1091
2196
|
}
|
|
1092
2197
|
export declare class GetJobRequest extends $tea.Model {
|
|
2198
|
+
/**
|
|
2199
|
+
* @example
|
|
2200
|
+
* true
|
|
2201
|
+
*/
|
|
1093
2202
|
needDetail?: boolean;
|
|
1094
2203
|
static names(): {
|
|
1095
2204
|
[key: string]: string;
|
|
@@ -1102,46 +2211,158 @@ export declare class GetJobRequest extends $tea.Model {
|
|
|
1102
2211
|
});
|
|
1103
2212
|
}
|
|
1104
2213
|
export declare class GetJobResponseBody extends $tea.Model {
|
|
2214
|
+
/**
|
|
2215
|
+
* @example
|
|
2216
|
+
* a*****
|
|
2217
|
+
*/
|
|
1105
2218
|
clusterId?: string;
|
|
1106
2219
|
codeSource?: GetJobResponseBodyCodeSource;
|
|
1107
2220
|
credentialConfig?: CredentialConfig;
|
|
1108
2221
|
dataSources?: GetJobResponseBodyDataSources[];
|
|
2222
|
+
/**
|
|
2223
|
+
* @example
|
|
2224
|
+
* tf-mnist-test
|
|
2225
|
+
*/
|
|
1109
2226
|
displayName?: string;
|
|
2227
|
+
/**
|
|
2228
|
+
* @example
|
|
2229
|
+
* 3602
|
|
2230
|
+
*/
|
|
1110
2231
|
duration?: number;
|
|
1111
2232
|
elasticSpec?: JobElasticSpec;
|
|
2233
|
+
/**
|
|
2234
|
+
* @example
|
|
2235
|
+
* false
|
|
2236
|
+
*/
|
|
1112
2237
|
enabledDebugger?: boolean;
|
|
1113
2238
|
envs?: {
|
|
1114
2239
|
[key: string]: string;
|
|
1115
2240
|
};
|
|
2241
|
+
/**
|
|
2242
|
+
* @example
|
|
2243
|
+
* 2021-01-12T14:35:01Z
|
|
2244
|
+
*/
|
|
1116
2245
|
gmtCreateTime?: string;
|
|
2246
|
+
/**
|
|
2247
|
+
* @example
|
|
2248
|
+
* 2021-01-12T15:36:08Z
|
|
2249
|
+
*/
|
|
1117
2250
|
gmtFailedTime?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
* @example
|
|
2253
|
+
* 2021-01-12T15:36:08Z
|
|
2254
|
+
*/
|
|
1118
2255
|
gmtFinishTime?: string;
|
|
2256
|
+
/**
|
|
2257
|
+
* @example
|
|
2258
|
+
* 2021-01-12T14:36:21Z
|
|
2259
|
+
*/
|
|
1119
2260
|
gmtRunningTime?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
* @example
|
|
2263
|
+
* 2021-01-12T15:36:08Z
|
|
2264
|
+
*/
|
|
1120
2265
|
gmtStoppedTime?: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* @example
|
|
2268
|
+
* 2021-01-12T14:36:01Z
|
|
2269
|
+
*/
|
|
1121
2270
|
gmtSubmittedTime?: string;
|
|
2271
|
+
/**
|
|
2272
|
+
* @example
|
|
2273
|
+
* 2021-01-12T15:36:08Z
|
|
2274
|
+
*/
|
|
1122
2275
|
gmtSuccessedTime?: string;
|
|
2276
|
+
/**
|
|
2277
|
+
* @example
|
|
2278
|
+
* dlc*******
|
|
2279
|
+
*/
|
|
1123
2280
|
jobId?: string;
|
|
1124
2281
|
jobSpecs?: JobSpec[];
|
|
2282
|
+
/**
|
|
2283
|
+
* @example
|
|
2284
|
+
* TFJob
|
|
2285
|
+
*/
|
|
1125
2286
|
jobType?: string;
|
|
1126
2287
|
pods?: GetJobResponseBodyPods[];
|
|
2288
|
+
/**
|
|
2289
|
+
* @example
|
|
2290
|
+
* 1
|
|
2291
|
+
*/
|
|
1127
2292
|
priority?: number;
|
|
2293
|
+
/**
|
|
2294
|
+
* @example
|
|
2295
|
+
* JobStoppedByUser
|
|
2296
|
+
*/
|
|
1128
2297
|
reasonCode?: string;
|
|
2298
|
+
/**
|
|
2299
|
+
* @example
|
|
2300
|
+
* Job is stopped by user.
|
|
2301
|
+
*/
|
|
1129
2302
|
reasonMessage?: string;
|
|
2303
|
+
/**
|
|
2304
|
+
* @example
|
|
2305
|
+
* 473469C7-AA6F-4DC5-B3DB-xxxxxxxx
|
|
2306
|
+
*/
|
|
1130
2307
|
requestId?: string;
|
|
2308
|
+
/**
|
|
2309
|
+
* @example
|
|
2310
|
+
* r******
|
|
2311
|
+
*/
|
|
1131
2312
|
resourceId?: string;
|
|
2313
|
+
/**
|
|
2314
|
+
* @example
|
|
2315
|
+
* L0
|
|
2316
|
+
*/
|
|
1132
2317
|
resourceLevel?: string;
|
|
2318
|
+
/**
|
|
2319
|
+
* @example
|
|
2320
|
+
* ECS
|
|
2321
|
+
*/
|
|
1133
2322
|
resourceType?: string;
|
|
2323
|
+
/**
|
|
2324
|
+
* @example
|
|
2325
|
+
* 0/10
|
|
2326
|
+
*/
|
|
1134
2327
|
restartTimes?: string;
|
|
1135
2328
|
settings?: JobSettings;
|
|
2329
|
+
/**
|
|
2330
|
+
* @example
|
|
2331
|
+
* Stopped
|
|
2332
|
+
*/
|
|
1136
2333
|
status?: string;
|
|
1137
2334
|
statusHistory?: StatusTransitionItem[];
|
|
2335
|
+
/**
|
|
2336
|
+
* @example
|
|
2337
|
+
* Restarting
|
|
2338
|
+
*/
|
|
1138
2339
|
subStatus?: string;
|
|
1139
2340
|
tenantId?: string;
|
|
2341
|
+
/**
|
|
2342
|
+
* @example
|
|
2343
|
+
* /root/code/
|
|
2344
|
+
*/
|
|
1140
2345
|
thirdpartyLibDir?: string;
|
|
1141
2346
|
thirdpartyLibs?: string[];
|
|
2347
|
+
/**
|
|
2348
|
+
* @example
|
|
2349
|
+
* python /root/code/mnist.py
|
|
2350
|
+
*/
|
|
1142
2351
|
userCommand?: string;
|
|
2352
|
+
/**
|
|
2353
|
+
* @example
|
|
2354
|
+
* 12*********
|
|
2355
|
+
*/
|
|
1143
2356
|
userId?: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* @example
|
|
2359
|
+
* 268
|
|
2360
|
+
*/
|
|
1144
2361
|
workspaceId?: string;
|
|
2362
|
+
/**
|
|
2363
|
+
* @example
|
|
2364
|
+
* dlc-workspace
|
|
2365
|
+
*/
|
|
1145
2366
|
workspaceName?: string;
|
|
1146
2367
|
static names(): {
|
|
1147
2368
|
[key: string]: string;
|
|
@@ -1170,8 +2391,20 @@ export declare class GetJobResponse extends $tea.Model {
|
|
|
1170
2391
|
});
|
|
1171
2392
|
}
|
|
1172
2393
|
export declare class GetJobEventsRequest extends $tea.Model {
|
|
2394
|
+
/**
|
|
2395
|
+
* @example
|
|
2396
|
+
* 2020-11-08T18:00:00Z
|
|
2397
|
+
*/
|
|
1173
2398
|
endTime?: string;
|
|
2399
|
+
/**
|
|
2400
|
+
* @example
|
|
2401
|
+
* 100
|
|
2402
|
+
*/
|
|
1174
2403
|
maxEventsNum?: number;
|
|
2404
|
+
/**
|
|
2405
|
+
* @example
|
|
2406
|
+
* 2020-11-08T16:00:00Z
|
|
2407
|
+
*/
|
|
1175
2408
|
startTime?: string;
|
|
1176
2409
|
static names(): {
|
|
1177
2410
|
[key: string]: string;
|
|
@@ -1185,7 +2418,15 @@ export declare class GetJobEventsRequest extends $tea.Model {
|
|
|
1185
2418
|
}
|
|
1186
2419
|
export declare class GetJobEventsResponseBody extends $tea.Model {
|
|
1187
2420
|
events?: string[];
|
|
2421
|
+
/**
|
|
2422
|
+
* @example
|
|
2423
|
+
* dlc-20210126170216-******
|
|
2424
|
+
*/
|
|
1188
2425
|
jobId?: string;
|
|
2426
|
+
/**
|
|
2427
|
+
* @example
|
|
2428
|
+
* 78F6FCE2-278F-4C4A-A6B7-DD8ECEA9C456
|
|
2429
|
+
*/
|
|
1189
2430
|
requestId?: string;
|
|
1190
2431
|
static names(): {
|
|
1191
2432
|
[key: string]: string;
|
|
@@ -1214,10 +2455,33 @@ export declare class GetJobEventsResponse extends $tea.Model {
|
|
|
1214
2455
|
});
|
|
1215
2456
|
}
|
|
1216
2457
|
export declare class GetJobMetricsRequest extends $tea.Model {
|
|
2458
|
+
/**
|
|
2459
|
+
* @example
|
|
2460
|
+
* 2020-11-09T16:00:00Z
|
|
2461
|
+
*/
|
|
1217
2462
|
endTime?: string;
|
|
2463
|
+
/**
|
|
2464
|
+
* @remarks
|
|
2465
|
+
* This parameter is required.
|
|
2466
|
+
*
|
|
2467
|
+
* @example
|
|
2468
|
+
* GpuMemoryUsage
|
|
2469
|
+
*/
|
|
1218
2470
|
metricType?: string;
|
|
2471
|
+
/**
|
|
2472
|
+
* @example
|
|
2473
|
+
* 2020-11-08T16:00:00Z
|
|
2474
|
+
*/
|
|
1219
2475
|
startTime?: string;
|
|
2476
|
+
/**
|
|
2477
|
+
* @example
|
|
2478
|
+
* 5m
|
|
2479
|
+
*/
|
|
1220
2480
|
timeStep?: string;
|
|
2481
|
+
/**
|
|
2482
|
+
* @example
|
|
2483
|
+
* eyXXXX-XXXX.XXXXX
|
|
2484
|
+
*/
|
|
1221
2485
|
token?: string;
|
|
1222
2486
|
static names(): {
|
|
1223
2487
|
[key: string]: string;
|
|
@@ -1230,8 +2494,16 @@ export declare class GetJobMetricsRequest extends $tea.Model {
|
|
|
1230
2494
|
});
|
|
1231
2495
|
}
|
|
1232
2496
|
export declare class GetJobMetricsResponseBody extends $tea.Model {
|
|
2497
|
+
/**
|
|
2498
|
+
* @example
|
|
2499
|
+
* dlc-20210126170216-*******
|
|
2500
|
+
*/
|
|
1233
2501
|
jobId?: string;
|
|
1234
2502
|
podMetrics?: PodMetric[];
|
|
2503
|
+
/**
|
|
2504
|
+
* @example
|
|
2505
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2506
|
+
*/
|
|
1235
2507
|
requestId?: string;
|
|
1236
2508
|
static names(): {
|
|
1237
2509
|
[key: string]: string;
|
|
@@ -1260,7 +2532,18 @@ export declare class GetJobMetricsResponse extends $tea.Model {
|
|
|
1260
2532
|
});
|
|
1261
2533
|
}
|
|
1262
2534
|
export declare class GetJobSanityCheckResultRequest extends $tea.Model {
|
|
2535
|
+
/**
|
|
2536
|
+
* @remarks
|
|
2537
|
+
* This parameter is required.
|
|
2538
|
+
*
|
|
2539
|
+
* @example
|
|
2540
|
+
* 1
|
|
2541
|
+
*/
|
|
1263
2542
|
sanityCheckNumber?: number;
|
|
2543
|
+
/**
|
|
2544
|
+
* @example
|
|
2545
|
+
* DeviceCheck
|
|
2546
|
+
*/
|
|
1264
2547
|
sanityCheckPhase?: string;
|
|
1265
2548
|
token?: string;
|
|
1266
2549
|
static names(): {
|
|
@@ -1274,7 +2557,15 @@ export declare class GetJobSanityCheckResultRequest extends $tea.Model {
|
|
|
1274
2557
|
});
|
|
1275
2558
|
}
|
|
1276
2559
|
export declare class GetJobSanityCheckResultResponseBody extends $tea.Model {
|
|
2560
|
+
/**
|
|
2561
|
+
* @example
|
|
2562
|
+
* dlc-20210126170216-xxxxxx
|
|
2563
|
+
*/
|
|
1277
2564
|
jobId?: string;
|
|
2565
|
+
/**
|
|
2566
|
+
* @example
|
|
2567
|
+
* B3789344-F1xxxBE-5xx2-A04D-xxxxx
|
|
2568
|
+
*/
|
|
1278
2569
|
requestID?: string;
|
|
1279
2570
|
sanityCheckResult?: SanityCheckResultItem[];
|
|
1280
2571
|
static names(): {
|
|
@@ -1304,9 +2595,25 @@ export declare class GetJobSanityCheckResultResponse extends $tea.Model {
|
|
|
1304
2595
|
});
|
|
1305
2596
|
}
|
|
1306
2597
|
export declare class GetPodEventsRequest extends $tea.Model {
|
|
2598
|
+
/**
|
|
2599
|
+
* @example
|
|
2600
|
+
* 2020-11-09T16:00:00Z
|
|
2601
|
+
*/
|
|
1307
2602
|
endTime?: string;
|
|
2603
|
+
/**
|
|
2604
|
+
* @example
|
|
2605
|
+
* 100
|
|
2606
|
+
*/
|
|
1308
2607
|
maxEventsNum?: number;
|
|
2608
|
+
/**
|
|
2609
|
+
* @example
|
|
2610
|
+
* dlc-20210126170216-*****-chief-0
|
|
2611
|
+
*/
|
|
1309
2612
|
podUid?: string;
|
|
2613
|
+
/**
|
|
2614
|
+
* @example
|
|
2615
|
+
* 2020-11-08T16:00:00Z
|
|
2616
|
+
*/
|
|
1310
2617
|
startTime?: string;
|
|
1311
2618
|
static names(): {
|
|
1312
2619
|
[key: string]: string;
|
|
@@ -1320,9 +2627,28 @@ export declare class GetPodEventsRequest extends $tea.Model {
|
|
|
1320
2627
|
}
|
|
1321
2628
|
export declare class GetPodEventsResponseBody extends $tea.Model {
|
|
1322
2629
|
events?: string[];
|
|
2630
|
+
/**
|
|
2631
|
+
* @example
|
|
2632
|
+
* dlc-20210126170216-*****
|
|
2633
|
+
*/
|
|
1323
2634
|
jobId?: string;
|
|
2635
|
+
/**
|
|
2636
|
+
* @remarks
|
|
2637
|
+
* This parameter is required.
|
|
2638
|
+
*
|
|
2639
|
+
* @example
|
|
2640
|
+
* dlc-20210126170216-*****-chief-0
|
|
2641
|
+
*/
|
|
1324
2642
|
podId?: string;
|
|
2643
|
+
/**
|
|
2644
|
+
* @example
|
|
2645
|
+
* 94a7cc7c-0033-48b5-85bd-71c63592c268
|
|
2646
|
+
*/
|
|
1325
2647
|
podUid?: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* @example
|
|
2650
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2651
|
+
*/
|
|
1326
2652
|
requestId?: string;
|
|
1327
2653
|
static names(): {
|
|
1328
2654
|
[key: string]: string;
|
|
@@ -1351,10 +2677,30 @@ export declare class GetPodEventsResponse extends $tea.Model {
|
|
|
1351
2677
|
});
|
|
1352
2678
|
}
|
|
1353
2679
|
export declare class GetPodLogsRequest extends $tea.Model {
|
|
2680
|
+
/**
|
|
2681
|
+
* @example
|
|
2682
|
+
* true
|
|
2683
|
+
*/
|
|
1354
2684
|
downloadToFile?: boolean;
|
|
2685
|
+
/**
|
|
2686
|
+
* @example
|
|
2687
|
+
* 2020-11-08T17:00:00Z
|
|
2688
|
+
*/
|
|
1355
2689
|
endTime?: string;
|
|
2690
|
+
/**
|
|
2691
|
+
* @example
|
|
2692
|
+
* 100
|
|
2693
|
+
*/
|
|
1356
2694
|
maxLines?: number;
|
|
2695
|
+
/**
|
|
2696
|
+
* @example
|
|
2697
|
+
* fe846462-af2c-4521-bd6f-96787a57****
|
|
2698
|
+
*/
|
|
1357
2699
|
podUid?: string;
|
|
2700
|
+
/**
|
|
2701
|
+
* @example
|
|
2702
|
+
* 2020-11-08T16:00:00Z
|
|
2703
|
+
*/
|
|
1358
2704
|
startTime?: string;
|
|
1359
2705
|
static names(): {
|
|
1360
2706
|
[key: string]: string;
|
|
@@ -1367,10 +2713,26 @@ export declare class GetPodLogsRequest extends $tea.Model {
|
|
|
1367
2713
|
});
|
|
1368
2714
|
}
|
|
1369
2715
|
export declare class GetPodLogsResponseBody extends $tea.Model {
|
|
2716
|
+
/**
|
|
2717
|
+
* @example
|
|
2718
|
+
* dlc-20210126170216-******
|
|
2719
|
+
*/
|
|
1370
2720
|
jobId?: string;
|
|
1371
2721
|
logs?: string[];
|
|
2722
|
+
/**
|
|
2723
|
+
* @example
|
|
2724
|
+
* dlc-20210126170216-****-chief-0
|
|
2725
|
+
*/
|
|
1372
2726
|
podId?: string;
|
|
2727
|
+
/**
|
|
2728
|
+
* @example
|
|
2729
|
+
* 94a7cc7c-0033-48b5-85bd-71c63592c268
|
|
2730
|
+
*/
|
|
1373
2731
|
podUid?: string;
|
|
2732
|
+
/**
|
|
2733
|
+
* @example
|
|
2734
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2735
|
+
*/
|
|
1374
2736
|
requestId?: string;
|
|
1375
2737
|
static names(): {
|
|
1376
2738
|
[key: string]: string;
|
|
@@ -1399,8 +2761,16 @@ export declare class GetPodLogsResponse extends $tea.Model {
|
|
|
1399
2761
|
});
|
|
1400
2762
|
}
|
|
1401
2763
|
export declare class GetTensorboardRequest extends $tea.Model {
|
|
2764
|
+
/**
|
|
2765
|
+
* @example
|
|
2766
|
+
* dlc-xxxxxxxx
|
|
2767
|
+
*/
|
|
1402
2768
|
jodId?: string;
|
|
1403
2769
|
token?: string;
|
|
2770
|
+
/**
|
|
2771
|
+
* @example
|
|
2772
|
+
* 46099
|
|
2773
|
+
*/
|
|
1404
2774
|
workspaceId?: string;
|
|
1405
2775
|
static names(): {
|
|
1406
2776
|
[key: string]: string;
|
|
@@ -1429,6 +2799,10 @@ export declare class GetTensorboardResponse extends $tea.Model {
|
|
|
1429
2799
|
});
|
|
1430
2800
|
}
|
|
1431
2801
|
export declare class GetTensorboardSharedUrlRequest extends $tea.Model {
|
|
2802
|
+
/**
|
|
2803
|
+
* @example
|
|
2804
|
+
* 86400
|
|
2805
|
+
*/
|
|
1432
2806
|
expireTimeSeconds?: string;
|
|
1433
2807
|
static names(): {
|
|
1434
2808
|
[key: string]: string;
|
|
@@ -1441,7 +2815,15 @@ export declare class GetTensorboardSharedUrlRequest extends $tea.Model {
|
|
|
1441
2815
|
});
|
|
1442
2816
|
}
|
|
1443
2817
|
export declare class GetTensorboardSharedUrlResponseBody extends $tea.Model {
|
|
2818
|
+
/**
|
|
2819
|
+
* @example
|
|
2820
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
2821
|
+
*/
|
|
1444
2822
|
requestId?: string;
|
|
2823
|
+
/**
|
|
2824
|
+
* @example
|
|
2825
|
+
* http://pai-dlc-proxy-xxx.alicyuncs.com/xxx/xxx/token/
|
|
2826
|
+
*/
|
|
1445
2827
|
tensorboardSharedUrl?: string;
|
|
1446
2828
|
static names(): {
|
|
1447
2829
|
[key: string]: string;
|
|
@@ -1470,8 +2852,20 @@ export declare class GetTensorboardSharedUrlResponse extends $tea.Model {
|
|
|
1470
2852
|
});
|
|
1471
2853
|
}
|
|
1472
2854
|
export declare class GetTokenRequest extends $tea.Model {
|
|
2855
|
+
/**
|
|
2856
|
+
* @example
|
|
2857
|
+
* 60
|
|
2858
|
+
*/
|
|
1473
2859
|
expireTime?: number;
|
|
2860
|
+
/**
|
|
2861
|
+
* @example
|
|
2862
|
+
* dlc*******
|
|
2863
|
+
*/
|
|
1474
2864
|
targetId?: string;
|
|
2865
|
+
/**
|
|
2866
|
+
* @example
|
|
2867
|
+
* job
|
|
2868
|
+
*/
|
|
1475
2869
|
targetType?: string;
|
|
1476
2870
|
static names(): {
|
|
1477
2871
|
[key: string]: string;
|
|
@@ -1484,7 +2878,15 @@ export declare class GetTokenRequest extends $tea.Model {
|
|
|
1484
2878
|
});
|
|
1485
2879
|
}
|
|
1486
2880
|
export declare class GetTokenResponseBody extends $tea.Model {
|
|
2881
|
+
/**
|
|
2882
|
+
* @example
|
|
2883
|
+
* 473469C7-AA6F-4DC5-B3DB-xxxxxxxx
|
|
2884
|
+
*/
|
|
1487
2885
|
requestId?: string;
|
|
2886
|
+
/**
|
|
2887
|
+
* @example
|
|
2888
|
+
* eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9*****
|
|
2889
|
+
*/
|
|
1488
2890
|
token?: string;
|
|
1489
2891
|
static names(): {
|
|
1490
2892
|
[key: string]: string;
|
|
@@ -1514,6 +2916,13 @@ export declare class GetTokenResponse extends $tea.Model {
|
|
|
1514
2916
|
}
|
|
1515
2917
|
export declare class GetWebTerminalRequest extends $tea.Model {
|
|
1516
2918
|
isShared?: boolean;
|
|
2919
|
+
/**
|
|
2920
|
+
* @remarks
|
|
2921
|
+
* Pod UID。
|
|
2922
|
+
*
|
|
2923
|
+
* @example
|
|
2924
|
+
* 94a7cc7c-0033-48b5-85bd-71c63592c268
|
|
2925
|
+
*/
|
|
1517
2926
|
podUid?: string;
|
|
1518
2927
|
static names(): {
|
|
1519
2928
|
[key: string]: string;
|
|
@@ -1555,12 +2964,40 @@ export declare class GetWebTerminalResponse extends $tea.Model {
|
|
|
1555
2964
|
});
|
|
1556
2965
|
}
|
|
1557
2966
|
export declare class ListEcsSpecsRequest extends $tea.Model {
|
|
2967
|
+
/**
|
|
2968
|
+
* @example
|
|
2969
|
+
* GPU
|
|
2970
|
+
*/
|
|
1558
2971
|
acceleratorType?: string;
|
|
2972
|
+
/**
|
|
2973
|
+
* @example
|
|
2974
|
+
* ecs.g6.large,ecs.g6.xlarge
|
|
2975
|
+
*/
|
|
1559
2976
|
instanceTypes?: string;
|
|
2977
|
+
/**
|
|
2978
|
+
* @example
|
|
2979
|
+
* desc
|
|
2980
|
+
*/
|
|
1560
2981
|
order?: string;
|
|
2982
|
+
/**
|
|
2983
|
+
* @example
|
|
2984
|
+
* 1
|
|
2985
|
+
*/
|
|
1561
2986
|
pageNumber?: number;
|
|
2987
|
+
/**
|
|
2988
|
+
* @example
|
|
2989
|
+
* 10
|
|
2990
|
+
*/
|
|
1562
2991
|
pageSize?: number;
|
|
2992
|
+
/**
|
|
2993
|
+
* @example
|
|
2994
|
+
* ECS
|
|
2995
|
+
*/
|
|
1563
2996
|
resourceType?: string;
|
|
2997
|
+
/**
|
|
2998
|
+
* @example
|
|
2999
|
+
* Gpu
|
|
3000
|
+
*/
|
|
1564
3001
|
sortBy?: string;
|
|
1565
3002
|
static names(): {
|
|
1566
3003
|
[key: string]: string;
|
|
@@ -1574,7 +3011,15 @@ export declare class ListEcsSpecsRequest extends $tea.Model {
|
|
|
1574
3011
|
}
|
|
1575
3012
|
export declare class ListEcsSpecsResponseBody extends $tea.Model {
|
|
1576
3013
|
ecsSpecs?: EcsSpec[];
|
|
3014
|
+
/**
|
|
3015
|
+
* @example
|
|
3016
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3017
|
+
*/
|
|
1577
3018
|
requestId?: string;
|
|
3019
|
+
/**
|
|
3020
|
+
* @example
|
|
3021
|
+
* 10
|
|
3022
|
+
*/
|
|
1578
3023
|
totalCount?: number;
|
|
1579
3024
|
static names(): {
|
|
1580
3025
|
[key: string]: string;
|
|
@@ -1603,6 +3048,10 @@ export declare class ListEcsSpecsResponse extends $tea.Model {
|
|
|
1603
3048
|
});
|
|
1604
3049
|
}
|
|
1605
3050
|
export declare class ListJobSanityCheckResultsRequest extends $tea.Model {
|
|
3051
|
+
/**
|
|
3052
|
+
* @example
|
|
3053
|
+
* desc
|
|
3054
|
+
*/
|
|
1606
3055
|
order?: string;
|
|
1607
3056
|
static names(): {
|
|
1608
3057
|
[key: string]: string;
|
|
@@ -1615,8 +3064,16 @@ export declare class ListJobSanityCheckResultsRequest extends $tea.Model {
|
|
|
1615
3064
|
});
|
|
1616
3065
|
}
|
|
1617
3066
|
export declare class ListJobSanityCheckResultsResponseBody extends $tea.Model {
|
|
3067
|
+
/**
|
|
3068
|
+
* @example
|
|
3069
|
+
* 1AC9xxx-3xxx-5xxx2-xxxx-FA5
|
|
3070
|
+
*/
|
|
1618
3071
|
requestID?: string;
|
|
1619
3072
|
sanityCheckResults?: SanityCheckResultItem[][];
|
|
3073
|
+
/**
|
|
3074
|
+
* @example
|
|
3075
|
+
* 10
|
|
3076
|
+
*/
|
|
1620
3077
|
totalCount?: number;
|
|
1621
3078
|
static names(): {
|
|
1622
3079
|
[key: string]: string;
|
|
@@ -1645,28 +3102,96 @@ export declare class ListJobSanityCheckResultsResponse extends $tea.Model {
|
|
|
1645
3102
|
});
|
|
1646
3103
|
}
|
|
1647
3104
|
export declare class ListJobsRequest extends $tea.Model {
|
|
3105
|
+
/**
|
|
3106
|
+
* @example
|
|
3107
|
+
* 16****
|
|
3108
|
+
*/
|
|
1648
3109
|
businessUserId?: string;
|
|
3110
|
+
/**
|
|
3111
|
+
* @example
|
|
3112
|
+
* local
|
|
3113
|
+
*/
|
|
1649
3114
|
caller?: string;
|
|
3115
|
+
/**
|
|
3116
|
+
* @example
|
|
3117
|
+
* tf-mnist-test
|
|
3118
|
+
*/
|
|
1650
3119
|
displayName?: string;
|
|
3120
|
+
/**
|
|
3121
|
+
* @example
|
|
3122
|
+
* 2020-11-09T14:45:00Z
|
|
3123
|
+
*/
|
|
1651
3124
|
endTime?: string;
|
|
3125
|
+
/**
|
|
3126
|
+
* @example
|
|
3127
|
+
* false
|
|
3128
|
+
*/
|
|
1652
3129
|
fromAllWorkspaces?: boolean;
|
|
3130
|
+
/**
|
|
3131
|
+
* @example
|
|
3132
|
+
* dlc********
|
|
3133
|
+
*/
|
|
1653
3134
|
jobId?: string;
|
|
3135
|
+
/**
|
|
3136
|
+
* @example
|
|
3137
|
+
* TFJob
|
|
3138
|
+
*/
|
|
1654
3139
|
jobType?: string;
|
|
3140
|
+
/**
|
|
3141
|
+
* @example
|
|
3142
|
+
* desc
|
|
3143
|
+
*/
|
|
1655
3144
|
order?: string;
|
|
3145
|
+
/**
|
|
3146
|
+
* @example
|
|
3147
|
+
* 1
|
|
3148
|
+
*/
|
|
1656
3149
|
pageNumber?: number;
|
|
3150
|
+
/**
|
|
3151
|
+
* @example
|
|
3152
|
+
* 50
|
|
3153
|
+
*/
|
|
1657
3154
|
pageSize?: number;
|
|
3155
|
+
/**
|
|
3156
|
+
* @example
|
|
3157
|
+
* flow-*******
|
|
3158
|
+
*/
|
|
1658
3159
|
pipelineId?: string;
|
|
3160
|
+
/**
|
|
3161
|
+
* @example
|
|
3162
|
+
* r*****
|
|
3163
|
+
*/
|
|
1659
3164
|
resourceId?: string;
|
|
1660
3165
|
resourceQuotaName?: string;
|
|
3166
|
+
/**
|
|
3167
|
+
* @example
|
|
3168
|
+
* true
|
|
3169
|
+
*/
|
|
1661
3170
|
showOwn?: boolean;
|
|
3171
|
+
/**
|
|
3172
|
+
* @example
|
|
3173
|
+
* GmtCreateTime
|
|
3174
|
+
*/
|
|
1662
3175
|
sortBy?: string;
|
|
3176
|
+
/**
|
|
3177
|
+
* @example
|
|
3178
|
+
* 2020-11-08T16:00:00Z
|
|
3179
|
+
*/
|
|
1663
3180
|
startTime?: string;
|
|
3181
|
+
/**
|
|
3182
|
+
* @example
|
|
3183
|
+
* Running
|
|
3184
|
+
*/
|
|
1664
3185
|
status?: string;
|
|
1665
3186
|
tags?: {
|
|
1666
3187
|
[key: string]: string;
|
|
1667
3188
|
};
|
|
1668
3189
|
userIdForFilter?: string;
|
|
1669
3190
|
username?: string;
|
|
3191
|
+
/**
|
|
3192
|
+
* @example
|
|
3193
|
+
* 1****
|
|
3194
|
+
*/
|
|
1670
3195
|
workspaceId?: string;
|
|
1671
3196
|
static names(): {
|
|
1672
3197
|
[key: string]: string;
|
|
@@ -1679,26 +3204,94 @@ export declare class ListJobsRequest extends $tea.Model {
|
|
|
1679
3204
|
});
|
|
1680
3205
|
}
|
|
1681
3206
|
export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
3207
|
+
/**
|
|
3208
|
+
* @example
|
|
3209
|
+
* 16****
|
|
3210
|
+
*/
|
|
1682
3211
|
businessUserId?: string;
|
|
3212
|
+
/**
|
|
3213
|
+
* @example
|
|
3214
|
+
* local
|
|
3215
|
+
*/
|
|
1683
3216
|
caller?: string;
|
|
3217
|
+
/**
|
|
3218
|
+
* @example
|
|
3219
|
+
* tf-mnist-test
|
|
3220
|
+
*/
|
|
1684
3221
|
displayName?: string;
|
|
3222
|
+
/**
|
|
3223
|
+
* @example
|
|
3224
|
+
* 2020-11-09T14:45:00Z
|
|
3225
|
+
*/
|
|
1685
3226
|
endTime?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* @example
|
|
3229
|
+
* false
|
|
3230
|
+
*/
|
|
1686
3231
|
fromAllWorkspaces?: boolean;
|
|
3232
|
+
/**
|
|
3233
|
+
* @example
|
|
3234
|
+
* dlc********
|
|
3235
|
+
*/
|
|
1687
3236
|
jobId?: string;
|
|
3237
|
+
/**
|
|
3238
|
+
* @example
|
|
3239
|
+
* TFJob
|
|
3240
|
+
*/
|
|
1688
3241
|
jobType?: string;
|
|
3242
|
+
/**
|
|
3243
|
+
* @example
|
|
3244
|
+
* desc
|
|
3245
|
+
*/
|
|
1689
3246
|
order?: string;
|
|
3247
|
+
/**
|
|
3248
|
+
* @example
|
|
3249
|
+
* 1
|
|
3250
|
+
*/
|
|
1690
3251
|
pageNumber?: number;
|
|
3252
|
+
/**
|
|
3253
|
+
* @example
|
|
3254
|
+
* 50
|
|
3255
|
+
*/
|
|
1691
3256
|
pageSize?: number;
|
|
3257
|
+
/**
|
|
3258
|
+
* @example
|
|
3259
|
+
* flow-*******
|
|
3260
|
+
*/
|
|
1692
3261
|
pipelineId?: string;
|
|
3262
|
+
/**
|
|
3263
|
+
* @example
|
|
3264
|
+
* r*****
|
|
3265
|
+
*/
|
|
1693
3266
|
resourceId?: string;
|
|
1694
3267
|
resourceQuotaName?: string;
|
|
3268
|
+
/**
|
|
3269
|
+
* @example
|
|
3270
|
+
* true
|
|
3271
|
+
*/
|
|
1695
3272
|
showOwn?: boolean;
|
|
3273
|
+
/**
|
|
3274
|
+
* @example
|
|
3275
|
+
* GmtCreateTime
|
|
3276
|
+
*/
|
|
1696
3277
|
sortBy?: string;
|
|
3278
|
+
/**
|
|
3279
|
+
* @example
|
|
3280
|
+
* 2020-11-08T16:00:00Z
|
|
3281
|
+
*/
|
|
1697
3282
|
startTime?: string;
|
|
3283
|
+
/**
|
|
3284
|
+
* @example
|
|
3285
|
+
* Running
|
|
3286
|
+
*/
|
|
1698
3287
|
status?: string;
|
|
1699
3288
|
tagsShrink?: string;
|
|
1700
3289
|
userIdForFilter?: string;
|
|
1701
3290
|
username?: string;
|
|
3291
|
+
/**
|
|
3292
|
+
* @example
|
|
3293
|
+
* 1****
|
|
3294
|
+
*/
|
|
1702
3295
|
workspaceId?: string;
|
|
1703
3296
|
static names(): {
|
|
1704
3297
|
[key: string]: string;
|
|
@@ -1712,7 +3305,15 @@ export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
|
1712
3305
|
}
|
|
1713
3306
|
export declare class ListJobsResponseBody extends $tea.Model {
|
|
1714
3307
|
jobs?: JobItem[];
|
|
3308
|
+
/**
|
|
3309
|
+
* @example
|
|
3310
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3311
|
+
*/
|
|
1715
3312
|
requestId?: string;
|
|
3313
|
+
/**
|
|
3314
|
+
* @example
|
|
3315
|
+
* 2
|
|
3316
|
+
*/
|
|
1716
3317
|
totalCount?: number;
|
|
1717
3318
|
static names(): {
|
|
1718
3319
|
[key: string]: string;
|
|
@@ -1741,24 +3342,80 @@ export declare class ListJobsResponse extends $tea.Model {
|
|
|
1741
3342
|
});
|
|
1742
3343
|
}
|
|
1743
3344
|
export declare class ListTensorboardsRequest extends $tea.Model {
|
|
3345
|
+
/**
|
|
3346
|
+
* @example
|
|
3347
|
+
* TestTensorboard
|
|
3348
|
+
*/
|
|
1744
3349
|
displayName?: string;
|
|
3350
|
+
/**
|
|
3351
|
+
* @example
|
|
3352
|
+
* 2020-11-09T14:45:00Z
|
|
3353
|
+
*/
|
|
1745
3354
|
endTime?: string;
|
|
3355
|
+
/**
|
|
3356
|
+
* @example
|
|
3357
|
+
* dlc-xxx
|
|
3358
|
+
*/
|
|
1746
3359
|
jobId?: string;
|
|
3360
|
+
/**
|
|
3361
|
+
* @example
|
|
3362
|
+
* desc
|
|
3363
|
+
*/
|
|
1747
3364
|
order?: string;
|
|
3365
|
+
/**
|
|
3366
|
+
* @example
|
|
3367
|
+
* 1
|
|
3368
|
+
*/
|
|
1748
3369
|
pageNumber?: number;
|
|
3370
|
+
/**
|
|
3371
|
+
* @example
|
|
3372
|
+
* 50
|
|
3373
|
+
*/
|
|
1749
3374
|
pageSize?: number;
|
|
1750
3375
|
paymentType?: string;
|
|
1751
3376
|
quotaId?: string;
|
|
1752
3377
|
showOwn?: boolean;
|
|
3378
|
+
/**
|
|
3379
|
+
* @example
|
|
3380
|
+
* GmtCreateTime
|
|
3381
|
+
*/
|
|
1753
3382
|
sortBy?: string;
|
|
3383
|
+
/**
|
|
3384
|
+
* @example
|
|
3385
|
+
* dlc-xxxxxx
|
|
3386
|
+
*/
|
|
1754
3387
|
sourceId?: string;
|
|
3388
|
+
/**
|
|
3389
|
+
* @example
|
|
3390
|
+
* job
|
|
3391
|
+
*/
|
|
1755
3392
|
sourceType?: string;
|
|
3393
|
+
/**
|
|
3394
|
+
* @example
|
|
3395
|
+
* 2020-11-08T16:00:00Z
|
|
3396
|
+
*/
|
|
1756
3397
|
startTime?: string;
|
|
3398
|
+
/**
|
|
3399
|
+
* @example
|
|
3400
|
+
* Running
|
|
3401
|
+
*/
|
|
1757
3402
|
status?: string;
|
|
3403
|
+
/**
|
|
3404
|
+
* @example
|
|
3405
|
+
* tensorboard-xxx
|
|
3406
|
+
*/
|
|
1758
3407
|
tensorboardId?: string;
|
|
1759
3408
|
userId?: string;
|
|
1760
3409
|
username?: string;
|
|
3410
|
+
/**
|
|
3411
|
+
* @example
|
|
3412
|
+
* true
|
|
3413
|
+
*/
|
|
1761
3414
|
verbose?: boolean;
|
|
3415
|
+
/**
|
|
3416
|
+
* @example
|
|
3417
|
+
* 380
|
|
3418
|
+
*/
|
|
1762
3419
|
workspaceId?: string;
|
|
1763
3420
|
static names(): {
|
|
1764
3421
|
[key: string]: string;
|
|
@@ -1771,8 +3428,16 @@ export declare class ListTensorboardsRequest extends $tea.Model {
|
|
|
1771
3428
|
});
|
|
1772
3429
|
}
|
|
1773
3430
|
export declare class ListTensorboardsResponseBody extends $tea.Model {
|
|
3431
|
+
/**
|
|
3432
|
+
* @example
|
|
3433
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3434
|
+
*/
|
|
1774
3435
|
requestId?: string;
|
|
1775
3436
|
tensorboards?: Tensorboard[];
|
|
3437
|
+
/**
|
|
3438
|
+
* @example
|
|
3439
|
+
* 100
|
|
3440
|
+
*/
|
|
1776
3441
|
totalCount?: number;
|
|
1777
3442
|
static names(): {
|
|
1778
3443
|
[key: string]: string;
|
|
@@ -1801,6 +3466,10 @@ export declare class ListTensorboardsResponse extends $tea.Model {
|
|
|
1801
3466
|
});
|
|
1802
3467
|
}
|
|
1803
3468
|
export declare class StartTensorboardRequest extends $tea.Model {
|
|
3469
|
+
/**
|
|
3470
|
+
* @example
|
|
3471
|
+
* 380
|
|
3472
|
+
*/
|
|
1804
3473
|
workspaceId?: string;
|
|
1805
3474
|
static names(): {
|
|
1806
3475
|
[key: string]: string;
|
|
@@ -1813,7 +3482,15 @@ export declare class StartTensorboardRequest extends $tea.Model {
|
|
|
1813
3482
|
});
|
|
1814
3483
|
}
|
|
1815
3484
|
export declare class StartTensorboardResponseBody extends $tea.Model {
|
|
3485
|
+
/**
|
|
3486
|
+
* @example
|
|
3487
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3488
|
+
*/
|
|
1816
3489
|
requestId?: string;
|
|
3490
|
+
/**
|
|
3491
|
+
* @example
|
|
3492
|
+
* tensorboard-20210114104214-vf9lowjt3pso
|
|
3493
|
+
*/
|
|
1817
3494
|
tensorboardId?: string;
|
|
1818
3495
|
static names(): {
|
|
1819
3496
|
[key: string]: string;
|
|
@@ -1842,7 +3519,15 @@ export declare class StartTensorboardResponse extends $tea.Model {
|
|
|
1842
3519
|
});
|
|
1843
3520
|
}
|
|
1844
3521
|
export declare class StopJobResponseBody extends $tea.Model {
|
|
3522
|
+
/**
|
|
3523
|
+
* @example
|
|
3524
|
+
* dlc-20210126170216-xxxxxxx
|
|
3525
|
+
*/
|
|
1845
3526
|
jobId?: string;
|
|
3527
|
+
/**
|
|
3528
|
+
* @example
|
|
3529
|
+
* 473469C7-AA6F-4DC5-B3DB-xxxxxx
|
|
3530
|
+
*/
|
|
1846
3531
|
requestId?: string;
|
|
1847
3532
|
static names(): {
|
|
1848
3533
|
[key: string]: string;
|
|
@@ -1871,6 +3556,10 @@ export declare class StopJobResponse extends $tea.Model {
|
|
|
1871
3556
|
});
|
|
1872
3557
|
}
|
|
1873
3558
|
export declare class StopTensorboardRequest extends $tea.Model {
|
|
3559
|
+
/**
|
|
3560
|
+
* @example
|
|
3561
|
+
* 380
|
|
3562
|
+
*/
|
|
1874
3563
|
workspaceId?: string;
|
|
1875
3564
|
static names(): {
|
|
1876
3565
|
[key: string]: string;
|
|
@@ -1883,7 +3572,15 @@ export declare class StopTensorboardRequest extends $tea.Model {
|
|
|
1883
3572
|
});
|
|
1884
3573
|
}
|
|
1885
3574
|
export declare class StopTensorboardResponseBody extends $tea.Model {
|
|
3575
|
+
/**
|
|
3576
|
+
* @example
|
|
3577
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3578
|
+
*/
|
|
1886
3579
|
requestId?: string;
|
|
3580
|
+
/**
|
|
3581
|
+
* @example
|
|
3582
|
+
* tensorboard-20210114104214-xxxxxxxx
|
|
3583
|
+
*/
|
|
1887
3584
|
tensorboardId?: string;
|
|
1888
3585
|
static names(): {
|
|
1889
3586
|
[key: string]: string;
|
|
@@ -1912,6 +3609,10 @@ export declare class StopTensorboardResponse extends $tea.Model {
|
|
|
1912
3609
|
});
|
|
1913
3610
|
}
|
|
1914
3611
|
export declare class UpdateJobRequest extends $tea.Model {
|
|
3612
|
+
/**
|
|
3613
|
+
* @example
|
|
3614
|
+
* 5
|
|
3615
|
+
*/
|
|
1915
3616
|
priority?: number;
|
|
1916
3617
|
static names(): {
|
|
1917
3618
|
[key: string]: string;
|
|
@@ -1924,7 +3625,15 @@ export declare class UpdateJobRequest extends $tea.Model {
|
|
|
1924
3625
|
});
|
|
1925
3626
|
}
|
|
1926
3627
|
export declare class UpdateJobResponseBody extends $tea.Model {
|
|
3628
|
+
/**
|
|
3629
|
+
* @example
|
|
3630
|
+
* dlc*************
|
|
3631
|
+
*/
|
|
1927
3632
|
jobId?: string;
|
|
3633
|
+
/**
|
|
3634
|
+
* @example
|
|
3635
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3636
|
+
*/
|
|
1928
3637
|
requestId?: string;
|
|
1929
3638
|
static names(): {
|
|
1930
3639
|
[key: string]: string;
|
|
@@ -1953,7 +3662,15 @@ export declare class UpdateJobResponse extends $tea.Model {
|
|
|
1953
3662
|
});
|
|
1954
3663
|
}
|
|
1955
3664
|
export declare class UpdateTensorboardRequest extends $tea.Model {
|
|
3665
|
+
/**
|
|
3666
|
+
* @example
|
|
3667
|
+
* MaxRunningTimeMinutes
|
|
3668
|
+
*/
|
|
1956
3669
|
maxRunningTimeMinutes?: number;
|
|
3670
|
+
/**
|
|
3671
|
+
* @example
|
|
3672
|
+
* 380
|
|
3673
|
+
*/
|
|
1957
3674
|
workspaceId?: string;
|
|
1958
3675
|
static names(): {
|
|
1959
3676
|
[key: string]: string;
|
|
@@ -1966,7 +3683,15 @@ export declare class UpdateTensorboardRequest extends $tea.Model {
|
|
|
1966
3683
|
});
|
|
1967
3684
|
}
|
|
1968
3685
|
export declare class UpdateTensorboardResponseBody extends $tea.Model {
|
|
3686
|
+
/**
|
|
3687
|
+
* @example
|
|
3688
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3689
|
+
*/
|
|
1969
3690
|
requestId?: string;
|
|
3691
|
+
/**
|
|
3692
|
+
* @example
|
|
3693
|
+
* tensorboard-20210114104214-xxxxxxxx
|
|
3694
|
+
*/
|
|
1970
3695
|
tensorboardId?: string;
|
|
1971
3696
|
static names(): {
|
|
1972
3697
|
[key: string]: string;
|
|
@@ -1995,9 +3720,25 @@ export declare class UpdateTensorboardResponse extends $tea.Model {
|
|
|
1995
3720
|
});
|
|
1996
3721
|
}
|
|
1997
3722
|
export declare class JobItemCodeSource extends $tea.Model {
|
|
3723
|
+
/**
|
|
3724
|
+
* @example
|
|
3725
|
+
* master
|
|
3726
|
+
*/
|
|
1998
3727
|
branch?: string;
|
|
3728
|
+
/**
|
|
3729
|
+
* @example
|
|
3730
|
+
* code-20210111103721-85qz78ia96lu
|
|
3731
|
+
*/
|
|
1999
3732
|
codeSourceId?: string;
|
|
3733
|
+
/**
|
|
3734
|
+
* @example
|
|
3735
|
+
* 44da109b59f8596152987eaa8f3b2487bb72ea63
|
|
3736
|
+
*/
|
|
2000
3737
|
commit?: string;
|
|
3738
|
+
/**
|
|
3739
|
+
* @example
|
|
3740
|
+
* /mnt/data
|
|
3741
|
+
*/
|
|
2001
3742
|
mountPath?: string;
|
|
2002
3743
|
static names(): {
|
|
2003
3744
|
[key: string]: string;
|
|
@@ -2010,7 +3751,15 @@ export declare class JobItemCodeSource extends $tea.Model {
|
|
|
2010
3751
|
});
|
|
2011
3752
|
}
|
|
2012
3753
|
export declare class JobItemDataSources extends $tea.Model {
|
|
3754
|
+
/**
|
|
3755
|
+
* @example
|
|
3756
|
+
* data-20210114104214-vf9lowjt3pso
|
|
3757
|
+
*/
|
|
2013
3758
|
dataSourceId?: string;
|
|
3759
|
+
/**
|
|
3760
|
+
* @example
|
|
3761
|
+
* /mnt/data
|
|
3762
|
+
*/
|
|
2014
3763
|
mountPath?: string;
|
|
2015
3764
|
static names(): {
|
|
2016
3765
|
[key: string]: string;
|
|
@@ -2022,10 +3771,74 @@ export declare class JobItemDataSources extends $tea.Model {
|
|
|
2022
3771
|
[key: string]: any;
|
|
2023
3772
|
});
|
|
2024
3773
|
}
|
|
3774
|
+
export declare class LifecyclePostStartExec extends $tea.Model {
|
|
3775
|
+
command?: string[];
|
|
3776
|
+
static names(): {
|
|
3777
|
+
[key: string]: string;
|
|
3778
|
+
};
|
|
3779
|
+
static types(): {
|
|
3780
|
+
[key: string]: any;
|
|
3781
|
+
};
|
|
3782
|
+
constructor(map?: {
|
|
3783
|
+
[key: string]: any;
|
|
3784
|
+
});
|
|
3785
|
+
}
|
|
3786
|
+
export declare class LifecyclePostStart extends $tea.Model {
|
|
3787
|
+
exec?: LifecyclePostStartExec;
|
|
3788
|
+
static names(): {
|
|
3789
|
+
[key: string]: string;
|
|
3790
|
+
};
|
|
3791
|
+
static types(): {
|
|
3792
|
+
[key: string]: any;
|
|
3793
|
+
};
|
|
3794
|
+
constructor(map?: {
|
|
3795
|
+
[key: string]: any;
|
|
3796
|
+
});
|
|
3797
|
+
}
|
|
3798
|
+
export declare class LifecyclePreStopExec extends $tea.Model {
|
|
3799
|
+
command?: string[];
|
|
3800
|
+
static names(): {
|
|
3801
|
+
[key: string]: string;
|
|
3802
|
+
};
|
|
3803
|
+
static types(): {
|
|
3804
|
+
[key: string]: any;
|
|
3805
|
+
};
|
|
3806
|
+
constructor(map?: {
|
|
3807
|
+
[key: string]: any;
|
|
3808
|
+
});
|
|
3809
|
+
}
|
|
3810
|
+
export declare class LifecyclePreStop extends $tea.Model {
|
|
3811
|
+
exec?: LifecyclePreStopExec;
|
|
3812
|
+
static names(): {
|
|
3813
|
+
[key: string]: string;
|
|
3814
|
+
};
|
|
3815
|
+
static types(): {
|
|
3816
|
+
[key: string]: any;
|
|
3817
|
+
};
|
|
3818
|
+
constructor(map?: {
|
|
3819
|
+
[key: string]: any;
|
|
3820
|
+
});
|
|
3821
|
+
}
|
|
2025
3822
|
export declare class CreateJobRequestCodeSource extends $tea.Model {
|
|
3823
|
+
/**
|
|
3824
|
+
* @example
|
|
3825
|
+
* master
|
|
3826
|
+
*/
|
|
2026
3827
|
branch?: string;
|
|
3828
|
+
/**
|
|
3829
|
+
* @example
|
|
3830
|
+
* code-20210111103721-xxxxxxx
|
|
3831
|
+
*/
|
|
2027
3832
|
codeSourceId?: string;
|
|
3833
|
+
/**
|
|
3834
|
+
* @example
|
|
3835
|
+
* 44da109b5******
|
|
3836
|
+
*/
|
|
2028
3837
|
commit?: string;
|
|
3838
|
+
/**
|
|
3839
|
+
* @example
|
|
3840
|
+
* /root/data
|
|
3841
|
+
*/
|
|
2029
3842
|
mountPath?: string;
|
|
2030
3843
|
static names(): {
|
|
2031
3844
|
[key: string]: string;
|
|
@@ -2038,8 +3851,21 @@ export declare class CreateJobRequestCodeSource extends $tea.Model {
|
|
|
2038
3851
|
});
|
|
2039
3852
|
}
|
|
2040
3853
|
export declare class CreateJobRequestDataSources extends $tea.Model {
|
|
3854
|
+
/**
|
|
3855
|
+
* @example
|
|
3856
|
+
* d-cn9dl*******
|
|
3857
|
+
*/
|
|
2041
3858
|
dataSourceId?: string;
|
|
3859
|
+
/**
|
|
3860
|
+
* @example
|
|
3861
|
+
* /root/data
|
|
3862
|
+
*/
|
|
2042
3863
|
mountPath?: string;
|
|
3864
|
+
options?: string;
|
|
3865
|
+
/**
|
|
3866
|
+
* @example
|
|
3867
|
+
* oss://bucket.oss-cn-hangzhou-internal.aliyuncs.com/path/
|
|
3868
|
+
*/
|
|
2043
3869
|
uri?: string;
|
|
2044
3870
|
static names(): {
|
|
2045
3871
|
[key: string]: string;
|
|
@@ -2054,8 +3880,20 @@ export declare class CreateJobRequestDataSources extends $tea.Model {
|
|
|
2054
3880
|
export declare class CreateJobRequestUserVpc extends $tea.Model {
|
|
2055
3881
|
defaultRoute?: string;
|
|
2056
3882
|
extendedCIDRs?: string[];
|
|
3883
|
+
/**
|
|
3884
|
+
* @example
|
|
3885
|
+
* sg-abcdef****
|
|
3886
|
+
*/
|
|
2057
3887
|
securityGroupId?: string;
|
|
3888
|
+
/**
|
|
3889
|
+
* @example
|
|
3890
|
+
* vs-abcdef****
|
|
3891
|
+
*/
|
|
2058
3892
|
switchId?: string;
|
|
3893
|
+
/**
|
|
3894
|
+
* @example
|
|
3895
|
+
* vpc-abcdef****
|
|
3896
|
+
*/
|
|
2059
3897
|
vpcId?: string;
|
|
2060
3898
|
static names(): {
|
|
2061
3899
|
[key: string]: string;
|
|
@@ -2068,9 +3906,25 @@ export declare class CreateJobRequestUserVpc extends $tea.Model {
|
|
|
2068
3906
|
});
|
|
2069
3907
|
}
|
|
2070
3908
|
export declare class GetJobResponseBodyCodeSource extends $tea.Model {
|
|
3909
|
+
/**
|
|
3910
|
+
* @example
|
|
3911
|
+
* master
|
|
3912
|
+
*/
|
|
2071
3913
|
branch?: string;
|
|
3914
|
+
/**
|
|
3915
|
+
* @example
|
|
3916
|
+
* code******
|
|
3917
|
+
*/
|
|
2072
3918
|
codeSourceId?: string;
|
|
3919
|
+
/**
|
|
3920
|
+
* @example
|
|
3921
|
+
* 44da109b59f8596152987eaa8f3b2487xxxxxx
|
|
3922
|
+
*/
|
|
2073
3923
|
commit?: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* @example
|
|
3926
|
+
* /mnt/data
|
|
3927
|
+
*/
|
|
2074
3928
|
mountPath?: string;
|
|
2075
3929
|
static names(): {
|
|
2076
3930
|
[key: string]: string;
|
|
@@ -2083,8 +3937,20 @@ export declare class GetJobResponseBodyCodeSource extends $tea.Model {
|
|
|
2083
3937
|
});
|
|
2084
3938
|
}
|
|
2085
3939
|
export declare class GetJobResponseBodyDataSources extends $tea.Model {
|
|
3940
|
+
/**
|
|
3941
|
+
* @example
|
|
3942
|
+
* d*******
|
|
3943
|
+
*/
|
|
2086
3944
|
dataSourceId?: string;
|
|
3945
|
+
/**
|
|
3946
|
+
* @example
|
|
3947
|
+
* /mnt/data/
|
|
3948
|
+
*/
|
|
2087
3949
|
mountPath?: string;
|
|
3950
|
+
/**
|
|
3951
|
+
* @example
|
|
3952
|
+
* oss://bucket.oss-cn-hangzhou-internal.aliyuncs.com/path/
|
|
3953
|
+
*/
|
|
2088
3954
|
uri?: string;
|
|
2089
3955
|
static names(): {
|
|
2090
3956
|
[key: string]: string;
|
|
@@ -2097,15 +3963,55 @@ export declare class GetJobResponseBodyDataSources extends $tea.Model {
|
|
|
2097
3963
|
});
|
|
2098
3964
|
}
|
|
2099
3965
|
export declare class GetJobResponseBodyPodsHistoryPods extends $tea.Model {
|
|
3966
|
+
/**
|
|
3967
|
+
* @example
|
|
3968
|
+
* 2021-01-12T14:36:01Z
|
|
3969
|
+
*/
|
|
2100
3970
|
gmtCreateTime?: string;
|
|
3971
|
+
/**
|
|
3972
|
+
* @example
|
|
3973
|
+
* 2021-01-12T14:36:01Z
|
|
3974
|
+
*/
|
|
2101
3975
|
gmtFinishTime?: string;
|
|
3976
|
+
/**
|
|
3977
|
+
* @example
|
|
3978
|
+
* 2021-01-12T14:36:01Z
|
|
3979
|
+
*/
|
|
2102
3980
|
gmtStartTime?: string;
|
|
3981
|
+
/**
|
|
3982
|
+
* @example
|
|
3983
|
+
* 10.0.1.3
|
|
3984
|
+
*/
|
|
2103
3985
|
ip?: string;
|
|
3986
|
+
/**
|
|
3987
|
+
* @example
|
|
3988
|
+
* Worker
|
|
3989
|
+
*/
|
|
2104
3990
|
podId?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
* @example
|
|
3993
|
+
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
3994
|
+
*/
|
|
2105
3995
|
podUid?: string;
|
|
3996
|
+
/**
|
|
3997
|
+
* @example
|
|
3998
|
+
* Normal
|
|
3999
|
+
*/
|
|
2106
4000
|
resourceType?: string;
|
|
4001
|
+
/**
|
|
4002
|
+
* @example
|
|
4003
|
+
* Failed
|
|
4004
|
+
*/
|
|
2107
4005
|
status?: string;
|
|
4006
|
+
/**
|
|
4007
|
+
* @example
|
|
4008
|
+
* Normal
|
|
4009
|
+
*/
|
|
2108
4010
|
subStatus?: string;
|
|
4011
|
+
/**
|
|
4012
|
+
* @example
|
|
4013
|
+
* Worker
|
|
4014
|
+
*/
|
|
2109
4015
|
type?: string;
|
|
2110
4016
|
static names(): {
|
|
2111
4017
|
[key: string]: string;
|
|
@@ -2118,16 +4024,56 @@ export declare class GetJobResponseBodyPodsHistoryPods extends $tea.Model {
|
|
|
2118
4024
|
});
|
|
2119
4025
|
}
|
|
2120
4026
|
export declare class GetJobResponseBodyPods extends $tea.Model {
|
|
4027
|
+
/**
|
|
4028
|
+
* @example
|
|
4029
|
+
* 2021-01-12T14:36:01Z
|
|
4030
|
+
*/
|
|
2121
4031
|
gmtCreateTime?: string;
|
|
4032
|
+
/**
|
|
4033
|
+
* @example
|
|
4034
|
+
* 2021-01-12T15:36:05Z
|
|
4035
|
+
*/
|
|
2122
4036
|
gmtFinishTime?: string;
|
|
4037
|
+
/**
|
|
4038
|
+
* @example
|
|
4039
|
+
* 2021-01-12T14:36:01Z
|
|
4040
|
+
*/
|
|
2123
4041
|
gmtStartTime?: string;
|
|
2124
4042
|
historyPods?: GetJobResponseBodyPodsHistoryPods[];
|
|
4043
|
+
/**
|
|
4044
|
+
* @example
|
|
4045
|
+
* 10.0.1.2
|
|
4046
|
+
*/
|
|
2125
4047
|
ip?: string;
|
|
4048
|
+
/**
|
|
4049
|
+
* @example
|
|
4050
|
+
* Worker
|
|
4051
|
+
*/
|
|
2126
4052
|
podId?: string;
|
|
4053
|
+
/**
|
|
4054
|
+
* @example
|
|
4055
|
+
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
4056
|
+
*/
|
|
2127
4057
|
podUid?: string;
|
|
4058
|
+
/**
|
|
4059
|
+
* @example
|
|
4060
|
+
* Normal
|
|
4061
|
+
*/
|
|
2128
4062
|
resourceType?: string;
|
|
4063
|
+
/**
|
|
4064
|
+
* @example
|
|
4065
|
+
* Running
|
|
4066
|
+
*/
|
|
2129
4067
|
status?: string;
|
|
4068
|
+
/**
|
|
4069
|
+
* @example
|
|
4070
|
+
* Normal
|
|
4071
|
+
*/
|
|
2130
4072
|
subStatus?: string;
|
|
4073
|
+
/**
|
|
4074
|
+
* @example
|
|
4075
|
+
* Worker
|
|
4076
|
+
*/
|
|
2131
4077
|
type?: string;
|
|
2132
4078
|
static names(): {
|
|
2133
4079
|
[key: string]: string;
|
|
@@ -2145,413 +4091,411 @@ export default class Client extends OpenApi {
|
|
|
2145
4091
|
[key: string]: string;
|
|
2146
4092
|
}, endpoint: string): string;
|
|
2147
4093
|
/**
|
|
2148
|
-
*
|
|
4094
|
+
* 创建一个DLC作业
|
|
2149
4095
|
*
|
|
2150
|
-
* @param request CreateJobRequest
|
|
2151
|
-
* @param headers map
|
|
2152
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2153
|
-
* @
|
|
4096
|
+
* @param request - CreateJobRequest
|
|
4097
|
+
* @param headers - map
|
|
4098
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4099
|
+
* @returns CreateJobResponse
|
|
2154
4100
|
*/
|
|
2155
4101
|
createJobWithOptions(request: CreateJobRequest, headers: {
|
|
2156
4102
|
[key: string]: string;
|
|
2157
4103
|
}, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse>;
|
|
2158
4104
|
/**
|
|
2159
|
-
*
|
|
4105
|
+
* 创建一个DLC作业
|
|
2160
4106
|
*
|
|
2161
|
-
* @param request CreateJobRequest
|
|
2162
|
-
* @
|
|
4107
|
+
* @param request - CreateJobRequest
|
|
4108
|
+
* @returns CreateJobResponse
|
|
2163
4109
|
*/
|
|
2164
4110
|
createJob(request: CreateJobRequest): Promise<CreateJobResponse>;
|
|
2165
4111
|
/**
|
|
2166
|
-
*
|
|
4112
|
+
* 创建一个Tensorboard
|
|
2167
4113
|
*
|
|
2168
|
-
* @param request CreateTensorboardRequest
|
|
2169
|
-
* @param headers map
|
|
2170
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2171
|
-
* @
|
|
4114
|
+
* @param request - CreateTensorboardRequest
|
|
4115
|
+
* @param headers - map
|
|
4116
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4117
|
+
* @returns CreateTensorboardResponse
|
|
2172
4118
|
*/
|
|
2173
4119
|
createTensorboardWithOptions(request: CreateTensorboardRequest, headers: {
|
|
2174
4120
|
[key: string]: string;
|
|
2175
4121
|
}, runtime: $Util.RuntimeOptions): Promise<CreateTensorboardResponse>;
|
|
2176
4122
|
/**
|
|
2177
|
-
*
|
|
4123
|
+
* 创建一个Tensorboard
|
|
2178
4124
|
*
|
|
2179
|
-
* @param request CreateTensorboardRequest
|
|
2180
|
-
* @
|
|
4125
|
+
* @param request - CreateTensorboardRequest
|
|
4126
|
+
* @returns CreateTensorboardResponse
|
|
2181
4127
|
*/
|
|
2182
4128
|
createTensorboard(request: CreateTensorboardRequest): Promise<CreateTensorboardResponse>;
|
|
2183
4129
|
/**
|
|
2184
|
-
*
|
|
4130
|
+
* 删除一个DLC作业
|
|
2185
4131
|
*
|
|
2186
|
-
* @param headers map
|
|
2187
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2188
|
-
* @
|
|
4132
|
+
* @param headers - map
|
|
4133
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4134
|
+
* @returns DeleteJobResponse
|
|
2189
4135
|
*/
|
|
2190
4136
|
deleteJobWithOptions(JobId: string, headers: {
|
|
2191
4137
|
[key: string]: string;
|
|
2192
4138
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteJobResponse>;
|
|
2193
4139
|
/**
|
|
2194
|
-
*
|
|
2195
|
-
*
|
|
2196
|
-
* @return DeleteJobResponse
|
|
4140
|
+
* 删除一个DLC作业
|
|
4141
|
+
* @returns DeleteJobResponse
|
|
2197
4142
|
*/
|
|
2198
4143
|
deleteJob(JobId: string): Promise<DeleteJobResponse>;
|
|
2199
4144
|
/**
|
|
2200
|
-
*
|
|
4145
|
+
* 删除一个数据源配置
|
|
2201
4146
|
*
|
|
2202
|
-
* @param request DeleteTensorboardRequest
|
|
2203
|
-
* @param headers map
|
|
2204
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2205
|
-
* @
|
|
4147
|
+
* @param request - DeleteTensorboardRequest
|
|
4148
|
+
* @param headers - map
|
|
4149
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4150
|
+
* @returns DeleteTensorboardResponse
|
|
2206
4151
|
*/
|
|
2207
4152
|
deleteTensorboardWithOptions(TensorboardId: string, request: DeleteTensorboardRequest, headers: {
|
|
2208
4153
|
[key: string]: string;
|
|
2209
4154
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteTensorboardResponse>;
|
|
2210
4155
|
/**
|
|
2211
|
-
*
|
|
4156
|
+
* 删除一个数据源配置
|
|
2212
4157
|
*
|
|
2213
|
-
* @param request DeleteTensorboardRequest
|
|
2214
|
-
* @
|
|
4158
|
+
* @param request - DeleteTensorboardRequest
|
|
4159
|
+
* @returns DeleteTensorboardResponse
|
|
2215
4160
|
*/
|
|
2216
4161
|
deleteTensorboard(TensorboardId: string, request: DeleteTensorboardRequest): Promise<DeleteTensorboardResponse>;
|
|
2217
4162
|
/**
|
|
2218
|
-
*
|
|
4163
|
+
* 获取一个DLC作业详情
|
|
2219
4164
|
*
|
|
2220
|
-
* @param request GetJobRequest
|
|
2221
|
-
* @param headers map
|
|
2222
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2223
|
-
* @
|
|
4165
|
+
* @param request - GetJobRequest
|
|
4166
|
+
* @param headers - map
|
|
4167
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4168
|
+
* @returns GetJobResponse
|
|
2224
4169
|
*/
|
|
2225
4170
|
getJobWithOptions(JobId: string, request: GetJobRequest, headers: {
|
|
2226
4171
|
[key: string]: string;
|
|
2227
4172
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobResponse>;
|
|
2228
4173
|
/**
|
|
2229
|
-
*
|
|
4174
|
+
* 获取一个DLC作业详情
|
|
2230
4175
|
*
|
|
2231
|
-
* @param request GetJobRequest
|
|
2232
|
-
* @
|
|
4176
|
+
* @param request - GetJobRequest
|
|
4177
|
+
* @returns GetJobResponse
|
|
2233
4178
|
*/
|
|
2234
4179
|
getJob(JobId: string, request: GetJobRequest): Promise<GetJobResponse>;
|
|
2235
4180
|
/**
|
|
2236
|
-
*
|
|
4181
|
+
* 获取作业的事件
|
|
2237
4182
|
*
|
|
2238
|
-
* @param request GetJobEventsRequest
|
|
2239
|
-
* @param headers map
|
|
2240
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2241
|
-
* @
|
|
4183
|
+
* @param request - GetJobEventsRequest
|
|
4184
|
+
* @param headers - map
|
|
4185
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4186
|
+
* @returns GetJobEventsResponse
|
|
2242
4187
|
*/
|
|
2243
4188
|
getJobEventsWithOptions(JobId: string, request: GetJobEventsRequest, headers: {
|
|
2244
4189
|
[key: string]: string;
|
|
2245
4190
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobEventsResponse>;
|
|
2246
4191
|
/**
|
|
2247
|
-
*
|
|
4192
|
+
* 获取作业的事件
|
|
2248
4193
|
*
|
|
2249
|
-
* @param request GetJobEventsRequest
|
|
2250
|
-
* @
|
|
4194
|
+
* @param request - GetJobEventsRequest
|
|
4195
|
+
* @returns GetJobEventsResponse
|
|
2251
4196
|
*/
|
|
2252
4197
|
getJobEvents(JobId: string, request: GetJobEventsRequest): Promise<GetJobEventsResponse>;
|
|
2253
4198
|
/**
|
|
2254
|
-
*
|
|
4199
|
+
* 获取一个作业的资源监控指标
|
|
2255
4200
|
*
|
|
2256
|
-
* @param request GetJobMetricsRequest
|
|
2257
|
-
* @param headers map
|
|
2258
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2259
|
-
* @
|
|
4201
|
+
* @param request - GetJobMetricsRequest
|
|
4202
|
+
* @param headers - map
|
|
4203
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4204
|
+
* @returns GetJobMetricsResponse
|
|
2260
4205
|
*/
|
|
2261
4206
|
getJobMetricsWithOptions(JobId: string, request: GetJobMetricsRequest, headers: {
|
|
2262
4207
|
[key: string]: string;
|
|
2263
4208
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobMetricsResponse>;
|
|
2264
4209
|
/**
|
|
2265
|
-
*
|
|
4210
|
+
* 获取一个作业的资源监控指标
|
|
2266
4211
|
*
|
|
2267
|
-
* @param request GetJobMetricsRequest
|
|
2268
|
-
* @
|
|
4212
|
+
* @param request - GetJobMetricsRequest
|
|
4213
|
+
* @returns GetJobMetricsResponse
|
|
2269
4214
|
*/
|
|
2270
4215
|
getJobMetrics(JobId: string, request: GetJobMetricsRequest): Promise<GetJobMetricsResponse>;
|
|
2271
4216
|
/**
|
|
2272
|
-
*
|
|
4217
|
+
* 获取DLC作业某次算力健康检测结果
|
|
2273
4218
|
*
|
|
2274
|
-
* @param request GetJobSanityCheckResultRequest
|
|
2275
|
-
* @param headers map
|
|
2276
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2277
|
-
* @
|
|
4219
|
+
* @param request - GetJobSanityCheckResultRequest
|
|
4220
|
+
* @param headers - map
|
|
4221
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4222
|
+
* @returns GetJobSanityCheckResultResponse
|
|
2278
4223
|
*/
|
|
2279
4224
|
getJobSanityCheckResultWithOptions(JobId: string, request: GetJobSanityCheckResultRequest, headers: {
|
|
2280
4225
|
[key: string]: string;
|
|
2281
4226
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobSanityCheckResultResponse>;
|
|
2282
4227
|
/**
|
|
2283
|
-
*
|
|
4228
|
+
* 获取DLC作业某次算力健康检测结果
|
|
2284
4229
|
*
|
|
2285
|
-
* @param request GetJobSanityCheckResultRequest
|
|
2286
|
-
* @
|
|
4230
|
+
* @param request - GetJobSanityCheckResultRequest
|
|
4231
|
+
* @returns GetJobSanityCheckResultResponse
|
|
2287
4232
|
*/
|
|
2288
4233
|
getJobSanityCheckResult(JobId: string, request: GetJobSanityCheckResultRequest): Promise<GetJobSanityCheckResultResponse>;
|
|
2289
4234
|
/**
|
|
2290
|
-
*
|
|
4235
|
+
* 获取作业中一个运行实例的系统事件
|
|
2291
4236
|
*
|
|
2292
|
-
* @param request GetPodEventsRequest
|
|
2293
|
-
* @param headers map
|
|
2294
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2295
|
-
* @
|
|
4237
|
+
* @param request - GetPodEventsRequest
|
|
4238
|
+
* @param headers - map
|
|
4239
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4240
|
+
* @returns GetPodEventsResponse
|
|
2296
4241
|
*/
|
|
2297
4242
|
getPodEventsWithOptions(JobId: string, PodId: string, request: GetPodEventsRequest, headers: {
|
|
2298
4243
|
[key: string]: string;
|
|
2299
4244
|
}, runtime: $Util.RuntimeOptions): Promise<GetPodEventsResponse>;
|
|
2300
4245
|
/**
|
|
2301
|
-
*
|
|
4246
|
+
* 获取作业中一个运行实例的系统事件
|
|
2302
4247
|
*
|
|
2303
|
-
* @param request GetPodEventsRequest
|
|
2304
|
-
* @
|
|
4248
|
+
* @param request - GetPodEventsRequest
|
|
4249
|
+
* @returns GetPodEventsResponse
|
|
2305
4250
|
*/
|
|
2306
4251
|
getPodEvents(JobId: string, PodId: string, request: GetPodEventsRequest): Promise<GetPodEventsResponse>;
|
|
2307
4252
|
/**
|
|
2308
|
-
*
|
|
4253
|
+
* 获取作业中一个运行实例的日志
|
|
2309
4254
|
*
|
|
2310
|
-
* @param request GetPodLogsRequest
|
|
2311
|
-
* @param headers map
|
|
2312
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2313
|
-
* @
|
|
4255
|
+
* @param request - GetPodLogsRequest
|
|
4256
|
+
* @param headers - map
|
|
4257
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4258
|
+
* @returns GetPodLogsResponse
|
|
2314
4259
|
*/
|
|
2315
4260
|
getPodLogsWithOptions(JobId: string, PodId: string, request: GetPodLogsRequest, headers: {
|
|
2316
4261
|
[key: string]: string;
|
|
2317
4262
|
}, runtime: $Util.RuntimeOptions): Promise<GetPodLogsResponse>;
|
|
2318
4263
|
/**
|
|
2319
|
-
*
|
|
4264
|
+
* 获取作业中一个运行实例的日志
|
|
2320
4265
|
*
|
|
2321
|
-
* @param request GetPodLogsRequest
|
|
2322
|
-
* @
|
|
4266
|
+
* @param request - GetPodLogsRequest
|
|
4267
|
+
* @returns GetPodLogsResponse
|
|
2323
4268
|
*/
|
|
2324
4269
|
getPodLogs(JobId: string, PodId: string, request: GetPodLogsRequest): Promise<GetPodLogsResponse>;
|
|
2325
4270
|
/**
|
|
2326
|
-
*
|
|
4271
|
+
* 获取一个Tensorboard
|
|
2327
4272
|
*
|
|
2328
|
-
* @param request GetTensorboardRequest
|
|
2329
|
-
* @param headers map
|
|
2330
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2331
|
-
* @
|
|
4273
|
+
* @param request - GetTensorboardRequest
|
|
4274
|
+
* @param headers - map
|
|
4275
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4276
|
+
* @returns GetTensorboardResponse
|
|
2332
4277
|
*/
|
|
2333
4278
|
getTensorboardWithOptions(TensorboardId: string, request: GetTensorboardRequest, headers: {
|
|
2334
4279
|
[key: string]: string;
|
|
2335
4280
|
}, runtime: $Util.RuntimeOptions): Promise<GetTensorboardResponse>;
|
|
2336
4281
|
/**
|
|
2337
|
-
*
|
|
4282
|
+
* 获取一个Tensorboard
|
|
2338
4283
|
*
|
|
2339
|
-
* @param request GetTensorboardRequest
|
|
2340
|
-
* @
|
|
4284
|
+
* @param request - GetTensorboardRequest
|
|
4285
|
+
* @returns GetTensorboardResponse
|
|
2341
4286
|
*/
|
|
2342
4287
|
getTensorboard(TensorboardId: string, request: GetTensorboardRequest): Promise<GetTensorboardResponse>;
|
|
2343
4288
|
/**
|
|
2344
|
-
*
|
|
4289
|
+
* Get the shared url for tensorboard
|
|
2345
4290
|
*
|
|
2346
|
-
* @param request GetTensorboardSharedUrlRequest
|
|
2347
|
-
* @param headers map
|
|
2348
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2349
|
-
* @
|
|
4291
|
+
* @param request - GetTensorboardSharedUrlRequest
|
|
4292
|
+
* @param headers - map
|
|
4293
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4294
|
+
* @returns GetTensorboardSharedUrlResponse
|
|
2350
4295
|
*/
|
|
2351
4296
|
getTensorboardSharedUrlWithOptions(TensorboardId: string, request: GetTensorboardSharedUrlRequest, headers: {
|
|
2352
4297
|
[key: string]: string;
|
|
2353
4298
|
}, runtime: $Util.RuntimeOptions): Promise<GetTensorboardSharedUrlResponse>;
|
|
2354
4299
|
/**
|
|
2355
|
-
*
|
|
4300
|
+
* Get the shared url for tensorboard
|
|
2356
4301
|
*
|
|
2357
|
-
* @param request GetTensorboardSharedUrlRequest
|
|
2358
|
-
* @
|
|
4302
|
+
* @param request - GetTensorboardSharedUrlRequest
|
|
4303
|
+
* @returns GetTensorboardSharedUrlResponse
|
|
2359
4304
|
*/
|
|
2360
4305
|
getTensorboardSharedUrl(TensorboardId: string, request: GetTensorboardSharedUrlRequest): Promise<GetTensorboardSharedUrlResponse>;
|
|
2361
4306
|
/**
|
|
2362
|
-
*
|
|
4307
|
+
* 获取用户Token
|
|
2363
4308
|
*
|
|
2364
|
-
* @param request GetTokenRequest
|
|
2365
|
-
* @param headers map
|
|
2366
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2367
|
-
* @
|
|
4309
|
+
* @param request - GetTokenRequest
|
|
4310
|
+
* @param headers - map
|
|
4311
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4312
|
+
* @returns GetTokenResponse
|
|
2368
4313
|
*/
|
|
2369
4314
|
getTokenWithOptions(request: GetTokenRequest, headers: {
|
|
2370
4315
|
[key: string]: string;
|
|
2371
4316
|
}, runtime: $Util.RuntimeOptions): Promise<GetTokenResponse>;
|
|
2372
4317
|
/**
|
|
2373
|
-
*
|
|
4318
|
+
* 获取用户Token
|
|
2374
4319
|
*
|
|
2375
|
-
* @param request GetTokenRequest
|
|
2376
|
-
* @
|
|
4320
|
+
* @param request - GetTokenRequest
|
|
4321
|
+
* @returns GetTokenResponse
|
|
2377
4322
|
*/
|
|
2378
4323
|
getToken(request: GetTokenRequest): Promise<GetTokenResponse>;
|
|
2379
4324
|
/**
|
|
2380
|
-
*
|
|
4325
|
+
* Get the url for accessing pod's terminal in k8s
|
|
2381
4326
|
*
|
|
2382
|
-
* @param request GetWebTerminalRequest
|
|
2383
|
-
* @param headers map
|
|
2384
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2385
|
-
* @
|
|
4327
|
+
* @param request - GetWebTerminalRequest
|
|
4328
|
+
* @param headers - map
|
|
4329
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4330
|
+
* @returns GetWebTerminalResponse
|
|
2386
4331
|
*/
|
|
2387
4332
|
getWebTerminalWithOptions(JobId: string, PodId: string, request: GetWebTerminalRequest, headers: {
|
|
2388
4333
|
[key: string]: string;
|
|
2389
4334
|
}, runtime: $Util.RuntimeOptions): Promise<GetWebTerminalResponse>;
|
|
2390
4335
|
/**
|
|
2391
|
-
*
|
|
4336
|
+
* Get the url for accessing pod's terminal in k8s
|
|
2392
4337
|
*
|
|
2393
|
-
* @param request GetWebTerminalRequest
|
|
2394
|
-
* @
|
|
4338
|
+
* @param request - GetWebTerminalRequest
|
|
4339
|
+
* @returns GetWebTerminalResponse
|
|
2395
4340
|
*/
|
|
2396
4341
|
getWebTerminal(JobId: string, PodId: string, request: GetWebTerminalRequest): Promise<GetWebTerminalResponse>;
|
|
2397
4342
|
/**
|
|
2398
|
-
*
|
|
4343
|
+
* ListEcsSpecs
|
|
2399
4344
|
*
|
|
2400
|
-
* @param request ListEcsSpecsRequest
|
|
2401
|
-
* @param headers map
|
|
2402
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2403
|
-
* @
|
|
4345
|
+
* @param request - ListEcsSpecsRequest
|
|
4346
|
+
* @param headers - map
|
|
4347
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4348
|
+
* @returns ListEcsSpecsResponse
|
|
2404
4349
|
*/
|
|
2405
4350
|
listEcsSpecsWithOptions(request: ListEcsSpecsRequest, headers: {
|
|
2406
4351
|
[key: string]: string;
|
|
2407
4352
|
}, runtime: $Util.RuntimeOptions): Promise<ListEcsSpecsResponse>;
|
|
2408
4353
|
/**
|
|
2409
|
-
*
|
|
4354
|
+
* ListEcsSpecs
|
|
2410
4355
|
*
|
|
2411
|
-
* @param request ListEcsSpecsRequest
|
|
2412
|
-
* @
|
|
4356
|
+
* @param request - ListEcsSpecsRequest
|
|
4357
|
+
* @returns ListEcsSpecsResponse
|
|
2413
4358
|
*/
|
|
2414
4359
|
listEcsSpecs(request: ListEcsSpecsRequest): Promise<ListEcsSpecsResponse>;
|
|
2415
4360
|
/**
|
|
2416
|
-
*
|
|
4361
|
+
* 获取某个DLC作业的多次算力健康检测结果
|
|
2417
4362
|
*
|
|
2418
|
-
* @param request ListJobSanityCheckResultsRequest
|
|
2419
|
-
* @param headers map
|
|
2420
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2421
|
-
* @
|
|
4363
|
+
* @param request - ListJobSanityCheckResultsRequest
|
|
4364
|
+
* @param headers - map
|
|
4365
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4366
|
+
* @returns ListJobSanityCheckResultsResponse
|
|
2422
4367
|
*/
|
|
2423
4368
|
listJobSanityCheckResultsWithOptions(JobId: string, request: ListJobSanityCheckResultsRequest, headers: {
|
|
2424
4369
|
[key: string]: string;
|
|
2425
4370
|
}, runtime: $Util.RuntimeOptions): Promise<ListJobSanityCheckResultsResponse>;
|
|
2426
4371
|
/**
|
|
2427
|
-
*
|
|
4372
|
+
* 获取某个DLC作业的多次算力健康检测结果
|
|
2428
4373
|
*
|
|
2429
|
-
* @param request ListJobSanityCheckResultsRequest
|
|
2430
|
-
* @
|
|
4374
|
+
* @param request - ListJobSanityCheckResultsRequest
|
|
4375
|
+
* @returns ListJobSanityCheckResultsResponse
|
|
2431
4376
|
*/
|
|
2432
4377
|
listJobSanityCheckResults(JobId: string, request: ListJobSanityCheckResultsRequest): Promise<ListJobSanityCheckResultsResponse>;
|
|
2433
4378
|
/**
|
|
2434
|
-
*
|
|
4379
|
+
* 根据过滤条件获取DLC作业列表
|
|
2435
4380
|
*
|
|
2436
|
-
* @param tmpReq ListJobsRequest
|
|
2437
|
-
* @param headers map
|
|
2438
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2439
|
-
* @
|
|
4381
|
+
* @param tmpReq - ListJobsRequest
|
|
4382
|
+
* @param headers - map
|
|
4383
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4384
|
+
* @returns ListJobsResponse
|
|
2440
4385
|
*/
|
|
2441
4386
|
listJobsWithOptions(tmpReq: ListJobsRequest, headers: {
|
|
2442
4387
|
[key: string]: string;
|
|
2443
4388
|
}, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse>;
|
|
2444
4389
|
/**
|
|
2445
|
-
*
|
|
4390
|
+
* 根据过滤条件获取DLC作业列表
|
|
2446
4391
|
*
|
|
2447
|
-
* @param request ListJobsRequest
|
|
2448
|
-
* @
|
|
4392
|
+
* @param request - ListJobsRequest
|
|
4393
|
+
* @returns ListJobsResponse
|
|
2449
4394
|
*/
|
|
2450
4395
|
listJobs(request: ListJobsRequest): Promise<ListJobsResponse>;
|
|
2451
4396
|
/**
|
|
2452
|
-
*
|
|
4397
|
+
* 获取Tensorboard
|
|
2453
4398
|
*
|
|
2454
|
-
* @param request ListTensorboardsRequest
|
|
2455
|
-
* @param headers map
|
|
2456
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2457
|
-
* @
|
|
4399
|
+
* @param request - ListTensorboardsRequest
|
|
4400
|
+
* @param headers - map
|
|
4401
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4402
|
+
* @returns ListTensorboardsResponse
|
|
2458
4403
|
*/
|
|
2459
4404
|
listTensorboardsWithOptions(request: ListTensorboardsRequest, headers: {
|
|
2460
4405
|
[key: string]: string;
|
|
2461
4406
|
}, runtime: $Util.RuntimeOptions): Promise<ListTensorboardsResponse>;
|
|
2462
4407
|
/**
|
|
2463
|
-
*
|
|
4408
|
+
* 获取Tensorboard
|
|
2464
4409
|
*
|
|
2465
|
-
* @param request ListTensorboardsRequest
|
|
2466
|
-
* @
|
|
4410
|
+
* @param request - ListTensorboardsRequest
|
|
4411
|
+
* @returns ListTensorboardsResponse
|
|
2467
4412
|
*/
|
|
2468
4413
|
listTensorboards(request: ListTensorboardsRequest): Promise<ListTensorboardsResponse>;
|
|
2469
4414
|
/**
|
|
2470
|
-
*
|
|
4415
|
+
* 开始运行tensorboard
|
|
2471
4416
|
*
|
|
2472
|
-
* @param request StartTensorboardRequest
|
|
2473
|
-
* @param headers map
|
|
2474
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2475
|
-
* @
|
|
4417
|
+
* @param request - StartTensorboardRequest
|
|
4418
|
+
* @param headers - map
|
|
4419
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4420
|
+
* @returns StartTensorboardResponse
|
|
2476
4421
|
*/
|
|
2477
4422
|
startTensorboardWithOptions(TensorboardId: string, request: StartTensorboardRequest, headers: {
|
|
2478
4423
|
[key: string]: string;
|
|
2479
4424
|
}, runtime: $Util.RuntimeOptions): Promise<StartTensorboardResponse>;
|
|
2480
4425
|
/**
|
|
2481
|
-
*
|
|
4426
|
+
* 开始运行tensorboard
|
|
2482
4427
|
*
|
|
2483
|
-
* @param request StartTensorboardRequest
|
|
2484
|
-
* @
|
|
4428
|
+
* @param request - StartTensorboardRequest
|
|
4429
|
+
* @returns StartTensorboardResponse
|
|
2485
4430
|
*/
|
|
2486
4431
|
startTensorboard(TensorboardId: string, request: StartTensorboardRequest): Promise<StartTensorboardResponse>;
|
|
2487
4432
|
/**
|
|
2488
|
-
*
|
|
4433
|
+
* 停止一个DLC作业
|
|
2489
4434
|
*
|
|
2490
|
-
* @param headers map
|
|
2491
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2492
|
-
* @
|
|
4435
|
+
* @param headers - map
|
|
4436
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4437
|
+
* @returns StopJobResponse
|
|
2493
4438
|
*/
|
|
2494
4439
|
stopJobWithOptions(JobId: string, headers: {
|
|
2495
4440
|
[key: string]: string;
|
|
2496
4441
|
}, runtime: $Util.RuntimeOptions): Promise<StopJobResponse>;
|
|
2497
4442
|
/**
|
|
2498
|
-
*
|
|
2499
|
-
*
|
|
2500
|
-
* @return StopJobResponse
|
|
4443
|
+
* 停止一个DLC作业
|
|
4444
|
+
* @returns StopJobResponse
|
|
2501
4445
|
*/
|
|
2502
4446
|
stopJob(JobId: string): Promise<StopJobResponse>;
|
|
2503
4447
|
/**
|
|
2504
|
-
*
|
|
4448
|
+
* 停止运行tensorboard
|
|
2505
4449
|
*
|
|
2506
|
-
* @param request StopTensorboardRequest
|
|
2507
|
-
* @param headers map
|
|
2508
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2509
|
-
* @
|
|
4450
|
+
* @param request - StopTensorboardRequest
|
|
4451
|
+
* @param headers - map
|
|
4452
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4453
|
+
* @returns StopTensorboardResponse
|
|
2510
4454
|
*/
|
|
2511
4455
|
stopTensorboardWithOptions(TensorboardId: string, request: StopTensorboardRequest, headers: {
|
|
2512
4456
|
[key: string]: string;
|
|
2513
4457
|
}, runtime: $Util.RuntimeOptions): Promise<StopTensorboardResponse>;
|
|
2514
4458
|
/**
|
|
2515
|
-
*
|
|
4459
|
+
* 停止运行tensorboard
|
|
2516
4460
|
*
|
|
2517
|
-
* @param request StopTensorboardRequest
|
|
2518
|
-
* @
|
|
4461
|
+
* @param request - StopTensorboardRequest
|
|
4462
|
+
* @returns StopTensorboardResponse
|
|
2519
4463
|
*/
|
|
2520
4464
|
stopTensorboard(TensorboardId: string, request: StopTensorboardRequest): Promise<StopTensorboardResponse>;
|
|
2521
4465
|
/**
|
|
2522
|
-
*
|
|
4466
|
+
* 更新一个Job
|
|
2523
4467
|
*
|
|
2524
|
-
* @param request UpdateJobRequest
|
|
2525
|
-
* @param headers map
|
|
2526
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2527
|
-
* @
|
|
4468
|
+
* @param request - UpdateJobRequest
|
|
4469
|
+
* @param headers - map
|
|
4470
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4471
|
+
* @returns UpdateJobResponse
|
|
2528
4472
|
*/
|
|
2529
4473
|
updateJobWithOptions(JobId: string, request: UpdateJobRequest, headers: {
|
|
2530
4474
|
[key: string]: string;
|
|
2531
4475
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateJobResponse>;
|
|
2532
4476
|
/**
|
|
2533
|
-
*
|
|
4477
|
+
* 更新一个Job
|
|
2534
4478
|
*
|
|
2535
|
-
* @param request UpdateJobRequest
|
|
2536
|
-
* @
|
|
4479
|
+
* @param request - UpdateJobRequest
|
|
4480
|
+
* @returns UpdateJobResponse
|
|
2537
4481
|
*/
|
|
2538
4482
|
updateJob(JobId: string, request: UpdateJobRequest): Promise<UpdateJobResponse>;
|
|
2539
4483
|
/**
|
|
2540
|
-
*
|
|
4484
|
+
* 更新tensorboard
|
|
2541
4485
|
*
|
|
2542
|
-
* @param request UpdateTensorboardRequest
|
|
2543
|
-
* @param headers map
|
|
2544
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
2545
|
-
* @
|
|
4486
|
+
* @param request - UpdateTensorboardRequest
|
|
4487
|
+
* @param headers - map
|
|
4488
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
4489
|
+
* @returns UpdateTensorboardResponse
|
|
2546
4490
|
*/
|
|
2547
4491
|
updateTensorboardWithOptions(TensorboardId: string, request: UpdateTensorboardRequest, headers: {
|
|
2548
4492
|
[key: string]: string;
|
|
2549
4493
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateTensorboardResponse>;
|
|
2550
4494
|
/**
|
|
2551
|
-
*
|
|
4495
|
+
* 更新tensorboard
|
|
2552
4496
|
*
|
|
2553
|
-
* @param request UpdateTensorboardRequest
|
|
2554
|
-
* @
|
|
4497
|
+
* @param request - UpdateTensorboardRequest
|
|
4498
|
+
* @returns UpdateTensorboardResponse
|
|
2555
4499
|
*/
|
|
2556
4500
|
updateTensorboard(TensorboardId: string, request: UpdateTensorboardRequest): Promise<UpdateTensorboardResponse>;
|
|
2557
4501
|
}
|