@alicloud/pai-dlc20201203 1.4.18 → 1.4.19
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 +807 -670
- package/dist/client.js +2917 -1983
- package/dist/client.js.map +1 -1
- package/package.json +3 -6
- package/src/client.ts +5127 -4056
package/dist/client.d.ts
CHANGED
|
@@ -1,9 +1,435 @@
|
|
|
1
1
|
/**
|
|
2
2
|
*/
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import * as $
|
|
6
|
-
export declare class
|
|
3
|
+
import OpenApi from '@alicloud/openapi-core';
|
|
4
|
+
import { $OpenApiUtil } from '@alicloud/openapi-core';
|
|
5
|
+
import * as $dara from '@darabonba/typescript';
|
|
6
|
+
export declare class JobItemCodeSource extends $dara.Model {
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* master
|
|
10
|
+
*/
|
|
11
|
+
branch?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @example
|
|
14
|
+
* code-20210111103721-85qz78ia96lu
|
|
15
|
+
*/
|
|
16
|
+
codeSourceId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* @example
|
|
19
|
+
* 44da109b59f8596152987eaa8f3b2487bb72ea63
|
|
20
|
+
*/
|
|
21
|
+
commit?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @example
|
|
24
|
+
* /mnt/data
|
|
25
|
+
*/
|
|
26
|
+
mountPath?: string;
|
|
27
|
+
static names(): {
|
|
28
|
+
[key: string]: string;
|
|
29
|
+
};
|
|
30
|
+
static types(): {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
};
|
|
33
|
+
validate(): void;
|
|
34
|
+
constructor(map?: {
|
|
35
|
+
[key: string]: any;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
export declare class JobItemDataSources extends $dara.Model {
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* data-20210114104214-vf9lowjt3pso
|
|
42
|
+
*/
|
|
43
|
+
dataSourceId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @example
|
|
46
|
+
* /mnt/data
|
|
47
|
+
*/
|
|
48
|
+
mountPath?: string;
|
|
49
|
+
static names(): {
|
|
50
|
+
[key: string]: string;
|
|
51
|
+
};
|
|
52
|
+
static types(): {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
};
|
|
55
|
+
validate(): void;
|
|
56
|
+
constructor(map?: {
|
|
57
|
+
[key: string]: any;
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
export declare class JobItemUserVpc extends $dara.Model {
|
|
61
|
+
defaultRoute?: string;
|
|
62
|
+
extendedCidrs?: string[];
|
|
63
|
+
securityGroupId?: string;
|
|
64
|
+
switchId?: string;
|
|
65
|
+
vpcId?: string;
|
|
66
|
+
static names(): {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
};
|
|
69
|
+
static types(): {
|
|
70
|
+
[key: string]: any;
|
|
71
|
+
};
|
|
72
|
+
validate(): void;
|
|
73
|
+
constructor(map?: {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
export declare class LifecyclePostStartExec extends $dara.Model {
|
|
78
|
+
command?: string[];
|
|
79
|
+
static names(): {
|
|
80
|
+
[key: string]: string;
|
|
81
|
+
};
|
|
82
|
+
static types(): {
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
};
|
|
85
|
+
validate(): void;
|
|
86
|
+
constructor(map?: {
|
|
87
|
+
[key: string]: any;
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
export declare class LifecyclePostStart extends $dara.Model {
|
|
91
|
+
exec?: LifecyclePostStartExec;
|
|
92
|
+
static names(): {
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
};
|
|
95
|
+
static types(): {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
};
|
|
98
|
+
validate(): void;
|
|
99
|
+
constructor(map?: {
|
|
100
|
+
[key: string]: any;
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
export declare class LifecyclePreStopExec extends $dara.Model {
|
|
104
|
+
command?: string[];
|
|
105
|
+
static names(): {
|
|
106
|
+
[key: string]: string;
|
|
107
|
+
};
|
|
108
|
+
static types(): {
|
|
109
|
+
[key: string]: any;
|
|
110
|
+
};
|
|
111
|
+
validate(): void;
|
|
112
|
+
constructor(map?: {
|
|
113
|
+
[key: string]: any;
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
export declare class LifecyclePreStop extends $dara.Model {
|
|
117
|
+
exec?: LifecyclePreStopExec;
|
|
118
|
+
static names(): {
|
|
119
|
+
[key: string]: string;
|
|
120
|
+
};
|
|
121
|
+
static types(): {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
};
|
|
124
|
+
validate(): void;
|
|
125
|
+
constructor(map?: {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
export declare class CreateJobRequestCodeSource extends $dara.Model {
|
|
130
|
+
/**
|
|
131
|
+
* @example
|
|
132
|
+
* master
|
|
133
|
+
*/
|
|
134
|
+
branch?: string;
|
|
135
|
+
/**
|
|
136
|
+
* @example
|
|
137
|
+
* code-20210111103721-xxxxxxx
|
|
138
|
+
*/
|
|
139
|
+
codeSourceId?: string;
|
|
140
|
+
/**
|
|
141
|
+
* @example
|
|
142
|
+
* 44da109b5******
|
|
143
|
+
*/
|
|
144
|
+
commit?: string;
|
|
145
|
+
/**
|
|
146
|
+
* @example
|
|
147
|
+
* /root/data
|
|
148
|
+
*/
|
|
149
|
+
mountPath?: string;
|
|
150
|
+
static names(): {
|
|
151
|
+
[key: string]: string;
|
|
152
|
+
};
|
|
153
|
+
static types(): {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
};
|
|
156
|
+
validate(): void;
|
|
157
|
+
constructor(map?: {
|
|
158
|
+
[key: string]: any;
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
export declare class CreateJobRequestDataSources extends $dara.Model {
|
|
162
|
+
/**
|
|
163
|
+
* @example
|
|
164
|
+
* d-cn9dl*******
|
|
165
|
+
*/
|
|
166
|
+
dataSourceId?: string;
|
|
167
|
+
dataSourceVersion?: string;
|
|
168
|
+
/**
|
|
169
|
+
* @example
|
|
170
|
+
* /root/data
|
|
171
|
+
*/
|
|
172
|
+
mountPath?: string;
|
|
173
|
+
options?: string;
|
|
174
|
+
/**
|
|
175
|
+
* @example
|
|
176
|
+
* oss://bucket.oss-cn-hangzhou-internal.aliyuncs.com/path/
|
|
177
|
+
*/
|
|
178
|
+
uri?: string;
|
|
179
|
+
static names(): {
|
|
180
|
+
[key: string]: string;
|
|
181
|
+
};
|
|
182
|
+
static types(): {
|
|
183
|
+
[key: string]: any;
|
|
184
|
+
};
|
|
185
|
+
validate(): void;
|
|
186
|
+
constructor(map?: {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
export declare class CreateJobRequestUserVpc extends $dara.Model {
|
|
191
|
+
defaultRoute?: string;
|
|
192
|
+
extendedCIDRs?: string[];
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* sg-abcdef****
|
|
196
|
+
*/
|
|
197
|
+
securityGroupId?: string;
|
|
198
|
+
/**
|
|
199
|
+
* @example
|
|
200
|
+
* vs-abcdef****
|
|
201
|
+
*/
|
|
202
|
+
switchId?: string;
|
|
203
|
+
/**
|
|
204
|
+
* @example
|
|
205
|
+
* vpc-abcdef****
|
|
206
|
+
*/
|
|
207
|
+
vpcId?: string;
|
|
208
|
+
static names(): {
|
|
209
|
+
[key: string]: string;
|
|
210
|
+
};
|
|
211
|
+
static types(): {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
};
|
|
214
|
+
validate(): void;
|
|
215
|
+
constructor(map?: {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
export declare class GetJobResponseBodyCodeSource extends $dara.Model {
|
|
220
|
+
/**
|
|
221
|
+
* @example
|
|
222
|
+
* master
|
|
223
|
+
*/
|
|
224
|
+
branch?: string;
|
|
225
|
+
/**
|
|
226
|
+
* @example
|
|
227
|
+
* code******
|
|
228
|
+
*/
|
|
229
|
+
codeSourceId?: string;
|
|
230
|
+
/**
|
|
231
|
+
* @example
|
|
232
|
+
* 44da109b59f8596152987eaa8f3b2487xxxxxx
|
|
233
|
+
*/
|
|
234
|
+
commit?: string;
|
|
235
|
+
/**
|
|
236
|
+
* @example
|
|
237
|
+
* /mnt/data
|
|
238
|
+
*/
|
|
239
|
+
mountPath?: string;
|
|
240
|
+
static names(): {
|
|
241
|
+
[key: string]: string;
|
|
242
|
+
};
|
|
243
|
+
static types(): {
|
|
244
|
+
[key: string]: any;
|
|
245
|
+
};
|
|
246
|
+
validate(): void;
|
|
247
|
+
constructor(map?: {
|
|
248
|
+
[key: string]: any;
|
|
249
|
+
});
|
|
250
|
+
}
|
|
251
|
+
export declare class GetJobResponseBodyDataSources extends $dara.Model {
|
|
252
|
+
/**
|
|
253
|
+
* @example
|
|
254
|
+
* d*******
|
|
255
|
+
*/
|
|
256
|
+
dataSourceId?: string;
|
|
257
|
+
/**
|
|
258
|
+
* @example
|
|
259
|
+
* /mnt/data/
|
|
260
|
+
*/
|
|
261
|
+
mountPath?: string;
|
|
262
|
+
/**
|
|
263
|
+
* @example
|
|
264
|
+
* oss://bucket.oss-cn-hangzhou-internal.aliyuncs.com/path/
|
|
265
|
+
*/
|
|
266
|
+
uri?: string;
|
|
267
|
+
static names(): {
|
|
268
|
+
[key: string]: string;
|
|
269
|
+
};
|
|
270
|
+
static types(): {
|
|
271
|
+
[key: string]: any;
|
|
272
|
+
};
|
|
273
|
+
validate(): void;
|
|
274
|
+
constructor(map?: {
|
|
275
|
+
[key: string]: any;
|
|
276
|
+
});
|
|
277
|
+
}
|
|
278
|
+
export declare class GetJobResponseBodyPodsHistoryPods extends $dara.Model {
|
|
279
|
+
/**
|
|
280
|
+
* @example
|
|
281
|
+
* 2021-01-12T14:36:01Z
|
|
282
|
+
*/
|
|
283
|
+
gmtCreateTime?: string;
|
|
284
|
+
/**
|
|
285
|
+
* @example
|
|
286
|
+
* 2021-01-12T14:36:01Z
|
|
287
|
+
*/
|
|
288
|
+
gmtFinishTime?: string;
|
|
289
|
+
/**
|
|
290
|
+
* @example
|
|
291
|
+
* 2021-01-12T14:36:01Z
|
|
292
|
+
*/
|
|
293
|
+
gmtStartTime?: string;
|
|
294
|
+
/**
|
|
295
|
+
* @example
|
|
296
|
+
* 10.0.1.3
|
|
297
|
+
*/
|
|
298
|
+
ip?: string;
|
|
299
|
+
/**
|
|
300
|
+
* @example
|
|
301
|
+
* Worker
|
|
302
|
+
*/
|
|
303
|
+
podId?: string;
|
|
304
|
+
/**
|
|
305
|
+
* @example
|
|
306
|
+
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
307
|
+
*/
|
|
308
|
+
podUid?: string;
|
|
309
|
+
/**
|
|
310
|
+
* @example
|
|
311
|
+
* Normal
|
|
312
|
+
*/
|
|
313
|
+
resourceType?: string;
|
|
314
|
+
/**
|
|
315
|
+
* @example
|
|
316
|
+
* Failed
|
|
317
|
+
*/
|
|
318
|
+
status?: string;
|
|
319
|
+
/**
|
|
320
|
+
* @example
|
|
321
|
+
* Normal
|
|
322
|
+
*/
|
|
323
|
+
subStatus?: string;
|
|
324
|
+
/**
|
|
325
|
+
* @example
|
|
326
|
+
* Worker
|
|
327
|
+
*/
|
|
328
|
+
type?: string;
|
|
329
|
+
static names(): {
|
|
330
|
+
[key: string]: string;
|
|
331
|
+
};
|
|
332
|
+
static types(): {
|
|
333
|
+
[key: string]: any;
|
|
334
|
+
};
|
|
335
|
+
validate(): void;
|
|
336
|
+
constructor(map?: {
|
|
337
|
+
[key: string]: any;
|
|
338
|
+
});
|
|
339
|
+
}
|
|
340
|
+
export declare class GetJobResponseBodyPods extends $dara.Model {
|
|
341
|
+
/**
|
|
342
|
+
* @example
|
|
343
|
+
* 2021-01-12T14:36:01Z
|
|
344
|
+
*/
|
|
345
|
+
gmtCreateTime?: string;
|
|
346
|
+
/**
|
|
347
|
+
* @example
|
|
348
|
+
* 2021-01-12T15:36:05Z
|
|
349
|
+
*/
|
|
350
|
+
gmtFinishTime?: string;
|
|
351
|
+
/**
|
|
352
|
+
* @example
|
|
353
|
+
* 2021-01-12T14:36:01Z
|
|
354
|
+
*/
|
|
355
|
+
gmtStartTime?: string;
|
|
356
|
+
historyPods?: GetJobResponseBodyPodsHistoryPods[];
|
|
357
|
+
/**
|
|
358
|
+
* @example
|
|
359
|
+
* 10.0.1.2
|
|
360
|
+
*/
|
|
361
|
+
ip?: string;
|
|
362
|
+
/**
|
|
363
|
+
* @example
|
|
364
|
+
* Worker
|
|
365
|
+
*/
|
|
366
|
+
podId?: string;
|
|
367
|
+
/**
|
|
368
|
+
* @example
|
|
369
|
+
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
370
|
+
*/
|
|
371
|
+
podUid?: string;
|
|
372
|
+
/**
|
|
373
|
+
* @example
|
|
374
|
+
* Normal
|
|
375
|
+
*/
|
|
376
|
+
resourceType?: string;
|
|
377
|
+
/**
|
|
378
|
+
* @example
|
|
379
|
+
* Running
|
|
380
|
+
*/
|
|
381
|
+
status?: string;
|
|
382
|
+
/**
|
|
383
|
+
* @example
|
|
384
|
+
* Normal
|
|
385
|
+
*/
|
|
386
|
+
subStatus?: string;
|
|
387
|
+
/**
|
|
388
|
+
* @example
|
|
389
|
+
* Worker
|
|
390
|
+
*/
|
|
391
|
+
type?: string;
|
|
392
|
+
static names(): {
|
|
393
|
+
[key: string]: string;
|
|
394
|
+
};
|
|
395
|
+
static types(): {
|
|
396
|
+
[key: string]: any;
|
|
397
|
+
};
|
|
398
|
+
validate(): void;
|
|
399
|
+
constructor(map?: {
|
|
400
|
+
[key: string]: any;
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
export declare class GetJobResponseBodyUserVpc extends $dara.Model {
|
|
404
|
+
defaultRoute?: string;
|
|
405
|
+
extendedCidrs?: string[];
|
|
406
|
+
/**
|
|
407
|
+
* @example
|
|
408
|
+
* sg-abcdef****
|
|
409
|
+
*/
|
|
410
|
+
securityGroupId?: string;
|
|
411
|
+
/**
|
|
412
|
+
* @example
|
|
413
|
+
* vs-abcdef****
|
|
414
|
+
*/
|
|
415
|
+
switchId?: string;
|
|
416
|
+
/**
|
|
417
|
+
* @example
|
|
418
|
+
* vpc-abcdef****
|
|
419
|
+
*/
|
|
420
|
+
vpcId?: string;
|
|
421
|
+
static names(): {
|
|
422
|
+
[key: string]: string;
|
|
423
|
+
};
|
|
424
|
+
static types(): {
|
|
425
|
+
[key: string]: any;
|
|
426
|
+
};
|
|
427
|
+
validate(): void;
|
|
428
|
+
constructor(map?: {
|
|
429
|
+
[key: string]: any;
|
|
430
|
+
});
|
|
431
|
+
}
|
|
432
|
+
export declare class AIMasterMessage extends $dara.Model {
|
|
7
433
|
extended?: string;
|
|
8
434
|
jobRestartCount?: number;
|
|
9
435
|
messageContent?: string;
|
|
@@ -16,11 +442,12 @@ export declare class AIMasterMessage extends $tea.Model {
|
|
|
16
442
|
static types(): {
|
|
17
443
|
[key: string]: any;
|
|
18
444
|
};
|
|
445
|
+
validate(): void;
|
|
19
446
|
constructor(map?: {
|
|
20
447
|
[key: string]: any;
|
|
21
448
|
});
|
|
22
449
|
}
|
|
23
|
-
export declare class AliyunAccounts extends $
|
|
450
|
+
export declare class AliyunAccounts extends $dara.Model {
|
|
24
451
|
aliyunUid?: string;
|
|
25
452
|
employeeId?: string;
|
|
26
453
|
gmtCreateTime?: string;
|
|
@@ -31,11 +458,12 @@ export declare class AliyunAccounts extends $tea.Model {
|
|
|
31
458
|
static types(): {
|
|
32
459
|
[key: string]: any;
|
|
33
460
|
};
|
|
461
|
+
validate(): void;
|
|
34
462
|
constructor(map?: {
|
|
35
463
|
[key: string]: any;
|
|
36
464
|
});
|
|
37
465
|
}
|
|
38
|
-
export declare class AssignNodeSpec extends $
|
|
466
|
+
export declare class AssignNodeSpec extends $dara.Model {
|
|
39
467
|
/**
|
|
40
468
|
* @example
|
|
41
469
|
* lingjxxxxxxxx
|
|
@@ -57,11 +485,12 @@ export declare class AssignNodeSpec extends $tea.Model {
|
|
|
57
485
|
static types(): {
|
|
58
486
|
[key: string]: any;
|
|
59
487
|
};
|
|
488
|
+
validate(): void;
|
|
60
489
|
constructor(map?: {
|
|
61
490
|
[key: string]: any;
|
|
62
491
|
});
|
|
63
492
|
}
|
|
64
|
-
export declare class AssumeUserInfo extends $
|
|
493
|
+
export declare class AssumeUserInfo extends $dara.Model {
|
|
65
494
|
accessKeyId?: string;
|
|
66
495
|
id?: string;
|
|
67
496
|
securityToken?: string;
|
|
@@ -72,11 +501,12 @@ export declare class AssumeUserInfo extends $tea.Model {
|
|
|
72
501
|
static types(): {
|
|
73
502
|
[key: string]: any;
|
|
74
503
|
};
|
|
504
|
+
validate(): void;
|
|
75
505
|
constructor(map?: {
|
|
76
506
|
[key: string]: any;
|
|
77
507
|
});
|
|
78
508
|
}
|
|
79
|
-
export declare class CodeSourceItem extends $
|
|
509
|
+
export declare class CodeSourceItem extends $dara.Model {
|
|
80
510
|
/**
|
|
81
511
|
* @example
|
|
82
512
|
* master
|
|
@@ -134,11 +564,12 @@ export declare class CodeSourceItem extends $tea.Model {
|
|
|
134
564
|
static types(): {
|
|
135
565
|
[key: string]: any;
|
|
136
566
|
};
|
|
567
|
+
validate(): void;
|
|
137
568
|
constructor(map?: {
|
|
138
569
|
[key: string]: any;
|
|
139
570
|
});
|
|
140
571
|
}
|
|
141
|
-
export declare class ContainerSpec extends $
|
|
572
|
+
export declare class ContainerSpec extends $dara.Model {
|
|
142
573
|
args?: string[];
|
|
143
574
|
command?: string[];
|
|
144
575
|
env?: EnvVar[];
|
|
@@ -164,11 +595,12 @@ export declare class ContainerSpec extends $tea.Model {
|
|
|
164
595
|
static types(): {
|
|
165
596
|
[key: string]: any;
|
|
166
597
|
};
|
|
598
|
+
validate(): void;
|
|
167
599
|
constructor(map?: {
|
|
168
600
|
[key: string]: any;
|
|
169
601
|
});
|
|
170
602
|
}
|
|
171
|
-
export declare class CredentialConfig extends $
|
|
603
|
+
export declare class CredentialConfig extends $dara.Model {
|
|
172
604
|
aliyunEnvRoleKey?: string;
|
|
173
605
|
credentialConfigItems?: CredentialConfigItem[];
|
|
174
606
|
enableCredentialInject?: boolean;
|
|
@@ -178,11 +610,12 @@ export declare class CredentialConfig extends $tea.Model {
|
|
|
178
610
|
static types(): {
|
|
179
611
|
[key: string]: any;
|
|
180
612
|
};
|
|
613
|
+
validate(): void;
|
|
181
614
|
constructor(map?: {
|
|
182
615
|
[key: string]: any;
|
|
183
616
|
});
|
|
184
617
|
}
|
|
185
|
-
export declare class CredentialConfigItem extends $
|
|
618
|
+
export declare class CredentialConfigItem extends $dara.Model {
|
|
186
619
|
key?: string;
|
|
187
620
|
/**
|
|
188
621
|
* **if can be null:**
|
|
@@ -196,11 +629,12 @@ export declare class CredentialConfigItem extends $tea.Model {
|
|
|
196
629
|
static types(): {
|
|
197
630
|
[key: string]: any;
|
|
198
631
|
};
|
|
632
|
+
validate(): void;
|
|
199
633
|
constructor(map?: {
|
|
200
634
|
[key: string]: any;
|
|
201
635
|
});
|
|
202
636
|
}
|
|
203
|
-
export declare class CredentialRole extends $
|
|
637
|
+
export declare class CredentialRole extends $dara.Model {
|
|
204
638
|
assumeRoleFor?: string;
|
|
205
639
|
assumeUserInfo?: AssumeUserInfo;
|
|
206
640
|
policy?: string;
|
|
@@ -212,11 +646,12 @@ export declare class CredentialRole extends $tea.Model {
|
|
|
212
646
|
static types(): {
|
|
213
647
|
[key: string]: any;
|
|
214
648
|
};
|
|
649
|
+
validate(): void;
|
|
215
650
|
constructor(map?: {
|
|
216
651
|
[key: string]: any;
|
|
217
652
|
});
|
|
218
653
|
}
|
|
219
|
-
export declare class DataSourceItem extends $
|
|
654
|
+
export declare class DataSourceItem extends $dara.Model {
|
|
220
655
|
/**
|
|
221
656
|
* @example
|
|
222
657
|
* data-20210114104214-vf9lowjt3pso
|
|
@@ -283,11 +718,12 @@ export declare class DataSourceItem extends $tea.Model {
|
|
|
283
718
|
static types(): {
|
|
284
719
|
[key: string]: any;
|
|
285
720
|
};
|
|
721
|
+
validate(): void;
|
|
286
722
|
constructor(map?: {
|
|
287
723
|
[key: string]: any;
|
|
288
724
|
});
|
|
289
725
|
}
|
|
290
|
-
export declare class DebuggerConfig extends $
|
|
726
|
+
export declare class DebuggerConfig extends $dara.Model {
|
|
291
727
|
/**
|
|
292
728
|
* @example
|
|
293
729
|
* {\"description\":\"这是一个新的pytorchjob模板\"}
|
|
@@ -324,11 +760,12 @@ export declare class DebuggerConfig extends $tea.Model {
|
|
|
324
760
|
static types(): {
|
|
325
761
|
[key: string]: any;
|
|
326
762
|
};
|
|
763
|
+
validate(): void;
|
|
327
764
|
constructor(map?: {
|
|
328
765
|
[key: string]: any;
|
|
329
766
|
});
|
|
330
767
|
}
|
|
331
|
-
export declare class DebuggerJob extends $
|
|
768
|
+
export declare class DebuggerJob extends $dara.Model {
|
|
332
769
|
/**
|
|
333
770
|
* @example
|
|
334
771
|
* dlc20210126170216-mtl37ge7gkvdz
|
|
@@ -381,11 +818,12 @@ export declare class DebuggerJob extends $tea.Model {
|
|
|
381
818
|
static types(): {
|
|
382
819
|
[key: string]: any;
|
|
383
820
|
};
|
|
821
|
+
validate(): void;
|
|
384
822
|
constructor(map?: {
|
|
385
823
|
[key: string]: any;
|
|
386
824
|
});
|
|
387
825
|
}
|
|
388
|
-
export declare class DebuggerJobIssue extends $
|
|
826
|
+
export declare class DebuggerJobIssue extends $dara.Model {
|
|
389
827
|
/**
|
|
390
828
|
* @example
|
|
391
829
|
* {"Name": "CPUBottleneck", "Triggered": 10, "Violations": 2, "Details": "{}"}
|
|
@@ -427,11 +865,12 @@ export declare class DebuggerJobIssue extends $tea.Model {
|
|
|
427
865
|
static types(): {
|
|
428
866
|
[key: string]: any;
|
|
429
867
|
};
|
|
868
|
+
validate(): void;
|
|
430
869
|
constructor(map?: {
|
|
431
870
|
[key: string]: any;
|
|
432
871
|
});
|
|
433
872
|
}
|
|
434
|
-
export declare class DebuggerResult extends $
|
|
873
|
+
export declare class DebuggerResult extends $dara.Model {
|
|
435
874
|
/**
|
|
436
875
|
* @example
|
|
437
876
|
* {\"description\":\"这是一个新的pytorchjob模板\"}
|
|
@@ -473,11 +912,12 @@ export declare class DebuggerResult extends $tea.Model {
|
|
|
473
912
|
static types(): {
|
|
474
913
|
[key: string]: any;
|
|
475
914
|
};
|
|
915
|
+
validate(): void;
|
|
476
916
|
constructor(map?: {
|
|
477
917
|
[key: string]: any;
|
|
478
918
|
});
|
|
479
919
|
}
|
|
480
|
-
export declare class EcsSpec extends $
|
|
920
|
+
export declare class EcsSpec extends $dara.Model {
|
|
481
921
|
/**
|
|
482
922
|
* @example
|
|
483
923
|
* GPU
|
|
@@ -546,11 +986,12 @@ export declare class EcsSpec extends $tea.Model {
|
|
|
546
986
|
static types(): {
|
|
547
987
|
[key: string]: any;
|
|
548
988
|
};
|
|
989
|
+
validate(): void;
|
|
549
990
|
constructor(map?: {
|
|
550
991
|
[key: string]: any;
|
|
551
992
|
});
|
|
552
993
|
}
|
|
553
|
-
export declare class EnvVar extends $
|
|
994
|
+
export declare class EnvVar extends $dara.Model {
|
|
554
995
|
/**
|
|
555
996
|
* @example
|
|
556
997
|
* ENABLE_DEBUG
|
|
@@ -567,11 +1008,12 @@ export declare class EnvVar extends $tea.Model {
|
|
|
567
1008
|
static types(): {
|
|
568
1009
|
[key: string]: any;
|
|
569
1010
|
};
|
|
1011
|
+
validate(): void;
|
|
570
1012
|
constructor(map?: {
|
|
571
1013
|
[key: string]: any;
|
|
572
1014
|
});
|
|
573
1015
|
}
|
|
574
|
-
export declare class EventInfo extends $
|
|
1016
|
+
export declare class EventInfo extends $dara.Model {
|
|
575
1017
|
content?: string;
|
|
576
1018
|
id?: string;
|
|
577
1019
|
podId?: string;
|
|
@@ -583,11 +1025,12 @@ export declare class EventInfo extends $tea.Model {
|
|
|
583
1025
|
static types(): {
|
|
584
1026
|
[key: string]: any;
|
|
585
1027
|
};
|
|
1028
|
+
validate(): void;
|
|
586
1029
|
constructor(map?: {
|
|
587
1030
|
[key: string]: any;
|
|
588
1031
|
});
|
|
589
1032
|
}
|
|
590
|
-
export declare class ExtraPodSpec extends $
|
|
1033
|
+
export declare class ExtraPodSpec extends $dara.Model {
|
|
591
1034
|
initContainers?: ContainerSpec[];
|
|
592
1035
|
lifecycle?: Lifecycle;
|
|
593
1036
|
podAnnotations?: {
|
|
@@ -604,11 +1047,12 @@ export declare class ExtraPodSpec extends $tea.Model {
|
|
|
604
1047
|
static types(): {
|
|
605
1048
|
[key: string]: any;
|
|
606
1049
|
};
|
|
1050
|
+
validate(): void;
|
|
607
1051
|
constructor(map?: {
|
|
608
1052
|
[key: string]: any;
|
|
609
1053
|
});
|
|
610
1054
|
}
|
|
611
|
-
export declare class FreeResourceClusterControlItem extends $
|
|
1055
|
+
export declare class FreeResourceClusterControlItem extends $dara.Model {
|
|
612
1056
|
clusterID?: string;
|
|
613
1057
|
clusterName?: string;
|
|
614
1058
|
crossClusters?: boolean;
|
|
@@ -627,11 +1071,12 @@ export declare class FreeResourceClusterControlItem extends $tea.Model {
|
|
|
627
1071
|
static types(): {
|
|
628
1072
|
[key: string]: any;
|
|
629
1073
|
};
|
|
1074
|
+
validate(): void;
|
|
630
1075
|
constructor(map?: {
|
|
631
1076
|
[key: string]: any;
|
|
632
1077
|
});
|
|
633
1078
|
}
|
|
634
|
-
export declare class FreeResourceDetail extends $
|
|
1079
|
+
export declare class FreeResourceDetail extends $dara.Model {
|
|
635
1080
|
/**
|
|
636
1081
|
* @example
|
|
637
1082
|
* 2
|
|
@@ -648,11 +1093,12 @@ export declare class FreeResourceDetail extends $tea.Model {
|
|
|
648
1093
|
static types(): {
|
|
649
1094
|
[key: string]: any;
|
|
650
1095
|
};
|
|
1096
|
+
validate(): void;
|
|
651
1097
|
constructor(map?: {
|
|
652
1098
|
[key: string]: any;
|
|
653
1099
|
});
|
|
654
1100
|
}
|
|
655
|
-
export declare class FreeResourceItem extends $
|
|
1101
|
+
export declare class FreeResourceItem extends $dara.Model {
|
|
656
1102
|
/**
|
|
657
1103
|
* @example
|
|
658
1104
|
* 2
|
|
@@ -691,11 +1137,12 @@ export declare class FreeResourceItem extends $tea.Model {
|
|
|
691
1137
|
static types(): {
|
|
692
1138
|
[key: string]: any;
|
|
693
1139
|
};
|
|
1140
|
+
validate(): void;
|
|
694
1141
|
constructor(map?: {
|
|
695
1142
|
[key: string]: any;
|
|
696
1143
|
});
|
|
697
1144
|
}
|
|
698
|
-
export declare class GPUDetail extends $
|
|
1145
|
+
export declare class GPUDetail extends $dara.Model {
|
|
699
1146
|
GPU?: string;
|
|
700
1147
|
/**
|
|
701
1148
|
* @example
|
|
@@ -713,11 +1160,12 @@ export declare class GPUDetail extends $tea.Model {
|
|
|
713
1160
|
static types(): {
|
|
714
1161
|
[key: string]: any;
|
|
715
1162
|
};
|
|
1163
|
+
validate(): void;
|
|
716
1164
|
constructor(map?: {
|
|
717
1165
|
[key: string]: any;
|
|
718
1166
|
});
|
|
719
1167
|
}
|
|
720
|
-
export declare class ImageConfig extends $
|
|
1168
|
+
export declare class ImageConfig extends $dara.Model {
|
|
721
1169
|
auth?: string;
|
|
722
1170
|
/**
|
|
723
1171
|
* @example
|
|
@@ -732,11 +1180,12 @@ export declare class ImageConfig extends $tea.Model {
|
|
|
732
1180
|
static types(): {
|
|
733
1181
|
[key: string]: any;
|
|
734
1182
|
};
|
|
1183
|
+
validate(): void;
|
|
735
1184
|
constructor(map?: {
|
|
736
1185
|
[key: string]: any;
|
|
737
1186
|
});
|
|
738
1187
|
}
|
|
739
|
-
export declare class ImageItem extends $
|
|
1188
|
+
export declare class ImageItem extends $dara.Model {
|
|
740
1189
|
/**
|
|
741
1190
|
* @example
|
|
742
1191
|
* gpu
|
|
@@ -778,11 +1227,12 @@ export declare class ImageItem extends $tea.Model {
|
|
|
778
1227
|
static types(): {
|
|
779
1228
|
[key: string]: any;
|
|
780
1229
|
};
|
|
1230
|
+
validate(): void;
|
|
781
1231
|
constructor(map?: {
|
|
782
1232
|
[key: string]: any;
|
|
783
1233
|
});
|
|
784
1234
|
}
|
|
785
|
-
export declare class JobDebuggerConfig extends $
|
|
1235
|
+
export declare class JobDebuggerConfig extends $dara.Model {
|
|
786
1236
|
debuggerConfigContent?: string;
|
|
787
1237
|
debuggerConfigId?: string;
|
|
788
1238
|
gmtCreateTime?: string;
|
|
@@ -793,11 +1243,12 @@ export declare class JobDebuggerConfig extends $tea.Model {
|
|
|
793
1243
|
static types(): {
|
|
794
1244
|
[key: string]: any;
|
|
795
1245
|
};
|
|
1246
|
+
validate(): void;
|
|
796
1247
|
constructor(map?: {
|
|
797
1248
|
[key: string]: any;
|
|
798
1249
|
});
|
|
799
1250
|
}
|
|
800
|
-
export declare class JobElasticSpec extends $
|
|
1251
|
+
export declare class JobElasticSpec extends $dara.Model {
|
|
801
1252
|
AIMasterDockerImage?: string;
|
|
802
1253
|
AIMasterType?: string;
|
|
803
1254
|
/**
|
|
@@ -859,11 +1310,12 @@ export declare class JobElasticSpec extends $tea.Model {
|
|
|
859
1310
|
static types(): {
|
|
860
1311
|
[key: string]: any;
|
|
861
1312
|
};
|
|
1313
|
+
validate(): void;
|
|
862
1314
|
constructor(map?: {
|
|
863
1315
|
[key: string]: any;
|
|
864
1316
|
});
|
|
865
1317
|
}
|
|
866
|
-
export declare class JobItem extends $
|
|
1318
|
+
export declare class JobItem extends $dara.Model {
|
|
867
1319
|
/**
|
|
868
1320
|
* @example
|
|
869
1321
|
* PUBLIC
|
|
@@ -1098,11 +1550,12 @@ export declare class JobItem extends $tea.Model {
|
|
|
1098
1550
|
static types(): {
|
|
1099
1551
|
[key: string]: any;
|
|
1100
1552
|
};
|
|
1553
|
+
validate(): void;
|
|
1101
1554
|
constructor(map?: {
|
|
1102
1555
|
[key: string]: any;
|
|
1103
1556
|
});
|
|
1104
1557
|
}
|
|
1105
|
-
export declare class JobSettings extends $
|
|
1558
|
+
export declare class JobSettings extends $dara.Model {
|
|
1106
1559
|
advancedSettings?: {
|
|
1107
1560
|
[key: string]: any;
|
|
1108
1561
|
};
|
|
@@ -1126,6 +1579,11 @@ export declare class JobSettings extends $tea.Model {
|
|
|
1126
1579
|
* 535.54.03
|
|
1127
1580
|
*/
|
|
1128
1581
|
driver?: string;
|
|
1582
|
+
/**
|
|
1583
|
+
* @example
|
|
1584
|
+
* true
|
|
1585
|
+
*/
|
|
1586
|
+
enableCPUAffinity?: boolean;
|
|
1129
1587
|
/**
|
|
1130
1588
|
* @example
|
|
1131
1589
|
* false
|
|
@@ -1190,11 +1648,12 @@ export declare class JobSettings extends $tea.Model {
|
|
|
1190
1648
|
static types(): {
|
|
1191
1649
|
[key: string]: any;
|
|
1192
1650
|
};
|
|
1651
|
+
validate(): void;
|
|
1193
1652
|
constructor(map?: {
|
|
1194
1653
|
[key: string]: any;
|
|
1195
1654
|
});
|
|
1196
1655
|
}
|
|
1197
|
-
export declare class JobSpec extends $
|
|
1656
|
+
export declare class JobSpec extends $dara.Model {
|
|
1198
1657
|
assignNodeSpec?: AssignNodeSpec;
|
|
1199
1658
|
/**
|
|
1200
1659
|
* @example
|
|
@@ -1233,11 +1692,12 @@ export declare class JobSpec extends $tea.Model {
|
|
|
1233
1692
|
static types(): {
|
|
1234
1693
|
[key: string]: any;
|
|
1235
1694
|
};
|
|
1695
|
+
validate(): void;
|
|
1236
1696
|
constructor(map?: {
|
|
1237
1697
|
[key: string]: any;
|
|
1238
1698
|
});
|
|
1239
1699
|
}
|
|
1240
|
-
export declare class Lifecycle extends $
|
|
1700
|
+
export declare class Lifecycle extends $dara.Model {
|
|
1241
1701
|
postStart?: LifecyclePostStart;
|
|
1242
1702
|
preStop?: LifecyclePreStop;
|
|
1243
1703
|
static names(): {
|
|
@@ -1246,11 +1706,12 @@ export declare class Lifecycle extends $tea.Model {
|
|
|
1246
1706
|
static types(): {
|
|
1247
1707
|
[key: string]: any;
|
|
1248
1708
|
};
|
|
1709
|
+
validate(): void;
|
|
1249
1710
|
constructor(map?: {
|
|
1250
1711
|
[key: string]: any;
|
|
1251
1712
|
});
|
|
1252
1713
|
}
|
|
1253
|
-
export declare class LogInfo extends $
|
|
1714
|
+
export declare class LogInfo extends $dara.Model {
|
|
1254
1715
|
content?: string;
|
|
1255
1716
|
id?: string;
|
|
1256
1717
|
podId?: string;
|
|
@@ -1267,11 +1728,12 @@ export declare class LogInfo extends $tea.Model {
|
|
|
1267
1728
|
static types(): {
|
|
1268
1729
|
[key: string]: any;
|
|
1269
1730
|
};
|
|
1731
|
+
validate(): void;
|
|
1270
1732
|
constructor(map?: {
|
|
1271
1733
|
[key: string]: any;
|
|
1272
1734
|
});
|
|
1273
1735
|
}
|
|
1274
|
-
export declare class Member extends $
|
|
1736
|
+
export declare class Member extends $dara.Model {
|
|
1275
1737
|
/**
|
|
1276
1738
|
* @example
|
|
1277
1739
|
* ken_12345
|
|
@@ -1288,11 +1750,12 @@ export declare class Member extends $tea.Model {
|
|
|
1288
1750
|
static types(): {
|
|
1289
1751
|
[key: string]: any;
|
|
1290
1752
|
};
|
|
1753
|
+
validate(): void;
|
|
1291
1754
|
constructor(map?: {
|
|
1292
1755
|
[key: string]: any;
|
|
1293
1756
|
});
|
|
1294
1757
|
}
|
|
1295
|
-
export declare class Metric extends $
|
|
1758
|
+
export declare class Metric extends $dara.Model {
|
|
1296
1759
|
/**
|
|
1297
1760
|
* @example
|
|
1298
1761
|
* 1616987726587
|
|
@@ -1309,11 +1772,12 @@ export declare class Metric extends $tea.Model {
|
|
|
1309
1772
|
static types(): {
|
|
1310
1773
|
[key: string]: any;
|
|
1311
1774
|
};
|
|
1775
|
+
validate(): void;
|
|
1312
1776
|
constructor(map?: {
|
|
1313
1777
|
[key: string]: any;
|
|
1314
1778
|
});
|
|
1315
1779
|
}
|
|
1316
|
-
export declare class NodeMetric extends $
|
|
1780
|
+
export declare class NodeMetric extends $dara.Model {
|
|
1317
1781
|
metrics?: Metric[];
|
|
1318
1782
|
/**
|
|
1319
1783
|
* @example
|
|
@@ -1326,11 +1790,12 @@ export declare class NodeMetric extends $tea.Model {
|
|
|
1326
1790
|
static types(): {
|
|
1327
1791
|
[key: string]: any;
|
|
1328
1792
|
};
|
|
1793
|
+
validate(): void;
|
|
1329
1794
|
constructor(map?: {
|
|
1330
1795
|
[key: string]: any;
|
|
1331
1796
|
});
|
|
1332
1797
|
}
|
|
1333
|
-
export declare class PodItem extends $
|
|
1798
|
+
export declare class PodItem extends $dara.Model {
|
|
1334
1799
|
/**
|
|
1335
1800
|
* @example
|
|
1336
1801
|
* 2021-01-12T14:36:01Z
|
|
@@ -1378,11 +1843,12 @@ export declare class PodItem extends $tea.Model {
|
|
|
1378
1843
|
static types(): {
|
|
1379
1844
|
[key: string]: any;
|
|
1380
1845
|
};
|
|
1846
|
+
validate(): void;
|
|
1381
1847
|
constructor(map?: {
|
|
1382
1848
|
[key: string]: any;
|
|
1383
1849
|
});
|
|
1384
1850
|
}
|
|
1385
|
-
export declare class PodMetric extends $
|
|
1851
|
+
export declare class PodMetric extends $dara.Model {
|
|
1386
1852
|
metrics?: Metric[];
|
|
1387
1853
|
/**
|
|
1388
1854
|
* @example
|
|
@@ -1395,11 +1861,12 @@ export declare class PodMetric extends $tea.Model {
|
|
|
1395
1861
|
static types(): {
|
|
1396
1862
|
[key: string]: any;
|
|
1397
1863
|
};
|
|
1864
|
+
validate(): void;
|
|
1398
1865
|
constructor(map?: {
|
|
1399
1866
|
[key: string]: any;
|
|
1400
1867
|
});
|
|
1401
1868
|
}
|
|
1402
|
-
export declare class Quota extends $
|
|
1869
|
+
export declare class Quota extends $dara.Model {
|
|
1403
1870
|
clusterId?: string;
|
|
1404
1871
|
clusterName?: string;
|
|
1405
1872
|
quotaConfig?: QuotaConfig;
|
|
@@ -1428,11 +1895,12 @@ export declare class Quota extends $tea.Model {
|
|
|
1428
1895
|
static types(): {
|
|
1429
1896
|
[key: string]: any;
|
|
1430
1897
|
};
|
|
1898
|
+
validate(): void;
|
|
1431
1899
|
constructor(map?: {
|
|
1432
1900
|
[key: string]: any;
|
|
1433
1901
|
});
|
|
1434
1902
|
}
|
|
1435
|
-
export declare class QuotaConfig extends $
|
|
1903
|
+
export declare class QuotaConfig extends $dara.Model {
|
|
1436
1904
|
allowedMaxPriority?: number;
|
|
1437
1905
|
enableDLC?: boolean;
|
|
1438
1906
|
enableDSW?: boolean;
|
|
@@ -1444,11 +1912,12 @@ export declare class QuotaConfig extends $tea.Model {
|
|
|
1444
1912
|
static types(): {
|
|
1445
1913
|
[key: string]: any;
|
|
1446
1914
|
};
|
|
1915
|
+
validate(): void;
|
|
1447
1916
|
constructor(map?: {
|
|
1448
1917
|
[key: string]: any;
|
|
1449
1918
|
});
|
|
1450
1919
|
}
|
|
1451
|
-
export declare class QuotaDetail extends $
|
|
1920
|
+
export declare class QuotaDetail extends $dara.Model {
|
|
1452
1921
|
/**
|
|
1453
1922
|
* @example
|
|
1454
1923
|
* 2
|
|
@@ -1481,11 +1950,12 @@ export declare class QuotaDetail extends $tea.Model {
|
|
|
1481
1950
|
static types(): {
|
|
1482
1951
|
[key: string]: any;
|
|
1483
1952
|
};
|
|
1953
|
+
validate(): void;
|
|
1484
1954
|
constructor(map?: {
|
|
1485
1955
|
[key: string]: any;
|
|
1486
1956
|
});
|
|
1487
1957
|
}
|
|
1488
|
-
export declare class ResourceConfig extends $
|
|
1958
|
+
export declare class ResourceConfig extends $dara.Model {
|
|
1489
1959
|
/**
|
|
1490
1960
|
* @example
|
|
1491
1961
|
* 10
|
|
@@ -1517,11 +1987,12 @@ export declare class ResourceConfig extends $tea.Model {
|
|
|
1517
1987
|
static types(): {
|
|
1518
1988
|
[key: string]: any;
|
|
1519
1989
|
};
|
|
1990
|
+
validate(): void;
|
|
1520
1991
|
constructor(map?: {
|
|
1521
1992
|
[key: string]: any;
|
|
1522
1993
|
});
|
|
1523
1994
|
}
|
|
1524
|
-
export declare class ResourceRequirements extends $
|
|
1995
|
+
export declare class ResourceRequirements extends $dara.Model {
|
|
1525
1996
|
limits?: {
|
|
1526
1997
|
[key: string]: string;
|
|
1527
1998
|
};
|
|
@@ -1534,11 +2005,12 @@ export declare class ResourceRequirements extends $tea.Model {
|
|
|
1534
2005
|
static types(): {
|
|
1535
2006
|
[key: string]: any;
|
|
1536
2007
|
};
|
|
2008
|
+
validate(): void;
|
|
1537
2009
|
constructor(map?: {
|
|
1538
2010
|
[key: string]: any;
|
|
1539
2011
|
});
|
|
1540
2012
|
}
|
|
1541
|
-
export declare class Resources extends $
|
|
2013
|
+
export declare class Resources extends $dara.Model {
|
|
1542
2014
|
/**
|
|
1543
2015
|
* @example
|
|
1544
2016
|
* 10
|
|
@@ -1560,11 +2032,12 @@ export declare class Resources extends $tea.Model {
|
|
|
1560
2032
|
static types(): {
|
|
1561
2033
|
[key: string]: any;
|
|
1562
2034
|
};
|
|
2035
|
+
validate(): void;
|
|
1563
2036
|
constructor(map?: {
|
|
1564
2037
|
[key: string]: any;
|
|
1565
2038
|
});
|
|
1566
2039
|
}
|
|
1567
|
-
export declare class SanityCheckResultItem extends $
|
|
2040
|
+
export declare class SanityCheckResultItem extends $dara.Model {
|
|
1568
2041
|
/**
|
|
1569
2042
|
* @example
|
|
1570
2043
|
* 1
|
|
@@ -1597,11 +2070,12 @@ export declare class SanityCheckResultItem extends $tea.Model {
|
|
|
1597
2070
|
static types(): {
|
|
1598
2071
|
[key: string]: any;
|
|
1599
2072
|
};
|
|
2073
|
+
validate(): void;
|
|
1600
2074
|
constructor(map?: {
|
|
1601
2075
|
[key: string]: any;
|
|
1602
2076
|
});
|
|
1603
2077
|
}
|
|
1604
|
-
export declare class SmartCache extends $
|
|
2078
|
+
export declare class SmartCache extends $dara.Model {
|
|
1605
2079
|
/**
|
|
1606
2080
|
* @example
|
|
1607
2081
|
* 10
|
|
@@ -1688,11 +2162,12 @@ export declare class SmartCache extends $tea.Model {
|
|
|
1688
2162
|
static types(): {
|
|
1689
2163
|
[key: string]: any;
|
|
1690
2164
|
};
|
|
2165
|
+
validate(): void;
|
|
1691
2166
|
constructor(map?: {
|
|
1692
2167
|
[key: string]: any;
|
|
1693
2168
|
});
|
|
1694
2169
|
}
|
|
1695
|
-
export declare class SpotSpec extends $
|
|
2170
|
+
export declare class SpotSpec extends $dara.Model {
|
|
1696
2171
|
spotDiscountLimit?: number;
|
|
1697
2172
|
spotPriceLimit?: number;
|
|
1698
2173
|
spotStrategy?: string;
|
|
@@ -1702,11 +2177,12 @@ export declare class SpotSpec extends $tea.Model {
|
|
|
1702
2177
|
static types(): {
|
|
1703
2178
|
[key: string]: any;
|
|
1704
2179
|
};
|
|
2180
|
+
validate(): void;
|
|
1705
2181
|
constructor(map?: {
|
|
1706
2182
|
[key: string]: any;
|
|
1707
2183
|
});
|
|
1708
2184
|
}
|
|
1709
|
-
export declare class StatusTransitionItem extends $
|
|
2185
|
+
export declare class StatusTransitionItem extends $dara.Model {
|
|
1710
2186
|
endTime?: string;
|
|
1711
2187
|
reasonCode?: string;
|
|
1712
2188
|
reasonMessage?: string;
|
|
@@ -1718,11 +2194,12 @@ export declare class StatusTransitionItem extends $tea.Model {
|
|
|
1718
2194
|
static types(): {
|
|
1719
2195
|
[key: string]: any;
|
|
1720
2196
|
};
|
|
2197
|
+
validate(): void;
|
|
1721
2198
|
constructor(map?: {
|
|
1722
2199
|
[key: string]: any;
|
|
1723
2200
|
});
|
|
1724
2201
|
}
|
|
1725
|
-
export declare class Tensorboard extends $
|
|
2202
|
+
export declare class Tensorboard extends $dara.Model {
|
|
1726
2203
|
accessibility?: string;
|
|
1727
2204
|
cpu?: number;
|
|
1728
2205
|
/**
|
|
@@ -1823,11 +2300,12 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
1823
2300
|
static types(): {
|
|
1824
2301
|
[key: string]: any;
|
|
1825
2302
|
};
|
|
2303
|
+
validate(): void;
|
|
1826
2304
|
constructor(map?: {
|
|
1827
2305
|
[key: string]: any;
|
|
1828
2306
|
});
|
|
1829
2307
|
}
|
|
1830
|
-
export declare class TensorboardDataSourceSpec extends $
|
|
2308
|
+
export declare class TensorboardDataSourceSpec extends $dara.Model {
|
|
1831
2309
|
/**
|
|
1832
2310
|
* @example
|
|
1833
2311
|
* OSS
|
|
@@ -1874,11 +2352,12 @@ export declare class TensorboardDataSourceSpec extends $tea.Model {
|
|
|
1874
2352
|
static types(): {
|
|
1875
2353
|
[key: string]: any;
|
|
1876
2354
|
};
|
|
2355
|
+
validate(): void;
|
|
1877
2356
|
constructor(map?: {
|
|
1878
2357
|
[key: string]: any;
|
|
1879
2358
|
});
|
|
1880
2359
|
}
|
|
1881
|
-
export declare class TensorboardSpec extends $
|
|
2360
|
+
export declare class TensorboardSpec extends $dara.Model {
|
|
1882
2361
|
/**
|
|
1883
2362
|
* @example
|
|
1884
2363
|
* ecs.g6.large
|
|
@@ -1905,11 +2384,12 @@ export declare class TensorboardSpec extends $tea.Model {
|
|
|
1905
2384
|
static types(): {
|
|
1906
2385
|
[key: string]: any;
|
|
1907
2386
|
};
|
|
2387
|
+
validate(): void;
|
|
1908
2388
|
constructor(map?: {
|
|
1909
2389
|
[key: string]: any;
|
|
1910
2390
|
});
|
|
1911
2391
|
}
|
|
1912
|
-
export declare class Workspace extends $
|
|
2392
|
+
export declare class Workspace extends $dara.Model {
|
|
1913
2393
|
/**
|
|
1914
2394
|
* @example
|
|
1915
2395
|
* ken
|
|
@@ -1945,11 +2425,12 @@ export declare class Workspace extends $tea.Model {
|
|
|
1945
2425
|
static types(): {
|
|
1946
2426
|
[key: string]: any;
|
|
1947
2427
|
};
|
|
2428
|
+
validate(): void;
|
|
1948
2429
|
constructor(map?: {
|
|
1949
2430
|
[key: string]: any;
|
|
1950
2431
|
});
|
|
1951
2432
|
}
|
|
1952
|
-
export declare class CreateJobRequest extends $
|
|
2433
|
+
export declare class CreateJobRequest extends $dara.Model {
|
|
1953
2434
|
accessibility?: string;
|
|
1954
2435
|
codeSource?: CreateJobRequestCodeSource;
|
|
1955
2436
|
credentialConfig?: CredentialConfig;
|
|
@@ -2036,11 +2517,12 @@ export declare class CreateJobRequest extends $tea.Model {
|
|
|
2036
2517
|
static types(): {
|
|
2037
2518
|
[key: string]: any;
|
|
2038
2519
|
};
|
|
2520
|
+
validate(): void;
|
|
2039
2521
|
constructor(map?: {
|
|
2040
2522
|
[key: string]: any;
|
|
2041
2523
|
});
|
|
2042
2524
|
}
|
|
2043
|
-
export declare class CreateJobResponseBody extends $
|
|
2525
|
+
export declare class CreateJobResponseBody extends $dara.Model {
|
|
2044
2526
|
/**
|
|
2045
2527
|
* @example
|
|
2046
2528
|
* dlc7*******
|
|
@@ -2057,11 +2539,12 @@ export declare class CreateJobResponseBody extends $tea.Model {
|
|
|
2057
2539
|
static types(): {
|
|
2058
2540
|
[key: string]: any;
|
|
2059
2541
|
};
|
|
2542
|
+
validate(): void;
|
|
2060
2543
|
constructor(map?: {
|
|
2061
2544
|
[key: string]: any;
|
|
2062
2545
|
});
|
|
2063
2546
|
}
|
|
2064
|
-
export declare class CreateJobResponse extends $
|
|
2547
|
+
export declare class CreateJobResponse extends $dara.Model {
|
|
2065
2548
|
headers?: {
|
|
2066
2549
|
[key: string]: string;
|
|
2067
2550
|
};
|
|
@@ -2073,11 +2556,12 @@ export declare class CreateJobResponse extends $tea.Model {
|
|
|
2073
2556
|
static types(): {
|
|
2074
2557
|
[key: string]: any;
|
|
2075
2558
|
};
|
|
2559
|
+
validate(): void;
|
|
2076
2560
|
constructor(map?: {
|
|
2077
2561
|
[key: string]: any;
|
|
2078
2562
|
});
|
|
2079
2563
|
}
|
|
2080
|
-
export declare class CreateTensorboardRequest extends $
|
|
2564
|
+
export declare class CreateTensorboardRequest extends $dara.Model {
|
|
2081
2565
|
accessibility?: string;
|
|
2082
2566
|
/**
|
|
2083
2567
|
* @example
|
|
@@ -2156,11 +2640,12 @@ export declare class CreateTensorboardRequest extends $tea.Model {
|
|
|
2156
2640
|
static types(): {
|
|
2157
2641
|
[key: string]: any;
|
|
2158
2642
|
};
|
|
2643
|
+
validate(): void;
|
|
2159
2644
|
constructor(map?: {
|
|
2160
2645
|
[key: string]: any;
|
|
2161
2646
|
});
|
|
2162
2647
|
}
|
|
2163
|
-
export declare class CreateTensorboardResponseBody extends $
|
|
2648
|
+
export declare class CreateTensorboardResponseBody extends $dara.Model {
|
|
2164
2649
|
/**
|
|
2165
2650
|
* @example
|
|
2166
2651
|
* ds-20210126170216-xxxxxxxx
|
|
@@ -2187,11 +2672,12 @@ export declare class CreateTensorboardResponseBody extends $tea.Model {
|
|
|
2187
2672
|
static types(): {
|
|
2188
2673
|
[key: string]: any;
|
|
2189
2674
|
};
|
|
2675
|
+
validate(): void;
|
|
2190
2676
|
constructor(map?: {
|
|
2191
2677
|
[key: string]: any;
|
|
2192
2678
|
});
|
|
2193
2679
|
}
|
|
2194
|
-
export declare class CreateTensorboardResponse extends $
|
|
2680
|
+
export declare class CreateTensorboardResponse extends $dara.Model {
|
|
2195
2681
|
headers?: {
|
|
2196
2682
|
[key: string]: string;
|
|
2197
2683
|
};
|
|
@@ -2203,11 +2689,12 @@ export declare class CreateTensorboardResponse extends $tea.Model {
|
|
|
2203
2689
|
static types(): {
|
|
2204
2690
|
[key: string]: any;
|
|
2205
2691
|
};
|
|
2692
|
+
validate(): void;
|
|
2206
2693
|
constructor(map?: {
|
|
2207
2694
|
[key: string]: any;
|
|
2208
2695
|
});
|
|
2209
2696
|
}
|
|
2210
|
-
export declare class DeleteJobResponseBody extends $
|
|
2697
|
+
export declare class DeleteJobResponseBody extends $dara.Model {
|
|
2211
2698
|
/**
|
|
2212
2699
|
* @example
|
|
2213
2700
|
* dlc*************
|
|
@@ -2224,11 +2711,12 @@ export declare class DeleteJobResponseBody extends $tea.Model {
|
|
|
2224
2711
|
static types(): {
|
|
2225
2712
|
[key: string]: any;
|
|
2226
2713
|
};
|
|
2714
|
+
validate(): void;
|
|
2227
2715
|
constructor(map?: {
|
|
2228
2716
|
[key: string]: any;
|
|
2229
2717
|
});
|
|
2230
2718
|
}
|
|
2231
|
-
export declare class DeleteJobResponse extends $
|
|
2719
|
+
export declare class DeleteJobResponse extends $dara.Model {
|
|
2232
2720
|
headers?: {
|
|
2233
2721
|
[key: string]: string;
|
|
2234
2722
|
};
|
|
@@ -2240,11 +2728,12 @@ export declare class DeleteJobResponse extends $tea.Model {
|
|
|
2240
2728
|
static types(): {
|
|
2241
2729
|
[key: string]: any;
|
|
2242
2730
|
};
|
|
2731
|
+
validate(): void;
|
|
2243
2732
|
constructor(map?: {
|
|
2244
2733
|
[key: string]: any;
|
|
2245
2734
|
});
|
|
2246
2735
|
}
|
|
2247
|
-
export declare class DeleteTensorboardRequest extends $
|
|
2736
|
+
export declare class DeleteTensorboardRequest extends $dara.Model {
|
|
2248
2737
|
/**
|
|
2249
2738
|
* @example
|
|
2250
2739
|
* 46099
|
|
@@ -2256,11 +2745,12 @@ export declare class DeleteTensorboardRequest extends $tea.Model {
|
|
|
2256
2745
|
static types(): {
|
|
2257
2746
|
[key: string]: any;
|
|
2258
2747
|
};
|
|
2748
|
+
validate(): void;
|
|
2259
2749
|
constructor(map?: {
|
|
2260
2750
|
[key: string]: any;
|
|
2261
2751
|
});
|
|
2262
2752
|
}
|
|
2263
|
-
export declare class DeleteTensorboardResponseBody extends $
|
|
2753
|
+
export declare class DeleteTensorboardResponseBody extends $dara.Model {
|
|
2264
2754
|
/**
|
|
2265
2755
|
* @example
|
|
2266
2756
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -2277,11 +2767,12 @@ export declare class DeleteTensorboardResponseBody extends $tea.Model {
|
|
|
2277
2767
|
static types(): {
|
|
2278
2768
|
[key: string]: any;
|
|
2279
2769
|
};
|
|
2770
|
+
validate(): void;
|
|
2280
2771
|
constructor(map?: {
|
|
2281
2772
|
[key: string]: any;
|
|
2282
2773
|
});
|
|
2283
2774
|
}
|
|
2284
|
-
export declare class DeleteTensorboardResponse extends $
|
|
2775
|
+
export declare class DeleteTensorboardResponse extends $dara.Model {
|
|
2285
2776
|
headers?: {
|
|
2286
2777
|
[key: string]: string;
|
|
2287
2778
|
};
|
|
@@ -2293,11 +2784,12 @@ export declare class DeleteTensorboardResponse extends $tea.Model {
|
|
|
2293
2784
|
static types(): {
|
|
2294
2785
|
[key: string]: any;
|
|
2295
2786
|
};
|
|
2787
|
+
validate(): void;
|
|
2296
2788
|
constructor(map?: {
|
|
2297
2789
|
[key: string]: any;
|
|
2298
2790
|
});
|
|
2299
2791
|
}
|
|
2300
|
-
export declare class GetJobRequest extends $
|
|
2792
|
+
export declare class GetJobRequest extends $dara.Model {
|
|
2301
2793
|
/**
|
|
2302
2794
|
* @example
|
|
2303
2795
|
* true
|
|
@@ -2309,11 +2801,12 @@ export declare class GetJobRequest extends $tea.Model {
|
|
|
2309
2801
|
static types(): {
|
|
2310
2802
|
[key: string]: any;
|
|
2311
2803
|
};
|
|
2804
|
+
validate(): void;
|
|
2312
2805
|
constructor(map?: {
|
|
2313
2806
|
[key: string]: any;
|
|
2314
2807
|
});
|
|
2315
2808
|
}
|
|
2316
|
-
export declare class GetJobResponseBody extends $
|
|
2809
|
+
export declare class GetJobResponseBody extends $dara.Model {
|
|
2317
2810
|
accessibility?: string;
|
|
2318
2811
|
/**
|
|
2319
2812
|
* @example
|
|
@@ -2475,11 +2968,12 @@ export declare class GetJobResponseBody extends $tea.Model {
|
|
|
2475
2968
|
static types(): {
|
|
2476
2969
|
[key: string]: any;
|
|
2477
2970
|
};
|
|
2971
|
+
validate(): void;
|
|
2478
2972
|
constructor(map?: {
|
|
2479
2973
|
[key: string]: any;
|
|
2480
2974
|
});
|
|
2481
2975
|
}
|
|
2482
|
-
export declare class GetJobResponse extends $
|
|
2976
|
+
export declare class GetJobResponse extends $dara.Model {
|
|
2483
2977
|
headers?: {
|
|
2484
2978
|
[key: string]: string;
|
|
2485
2979
|
};
|
|
@@ -2491,11 +2985,12 @@ export declare class GetJobResponse extends $tea.Model {
|
|
|
2491
2985
|
static types(): {
|
|
2492
2986
|
[key: string]: any;
|
|
2493
2987
|
};
|
|
2988
|
+
validate(): void;
|
|
2494
2989
|
constructor(map?: {
|
|
2495
2990
|
[key: string]: any;
|
|
2496
2991
|
});
|
|
2497
2992
|
}
|
|
2498
|
-
export declare class GetJobEventsRequest extends $
|
|
2993
|
+
export declare class GetJobEventsRequest extends $dara.Model {
|
|
2499
2994
|
/**
|
|
2500
2995
|
* @example
|
|
2501
2996
|
* 2020-11-08T18:00:00Z
|
|
@@ -2517,11 +3012,12 @@ export declare class GetJobEventsRequest extends $tea.Model {
|
|
|
2517
3012
|
static types(): {
|
|
2518
3013
|
[key: string]: any;
|
|
2519
3014
|
};
|
|
3015
|
+
validate(): void;
|
|
2520
3016
|
constructor(map?: {
|
|
2521
3017
|
[key: string]: any;
|
|
2522
3018
|
});
|
|
2523
3019
|
}
|
|
2524
|
-
export declare class GetJobEventsResponseBody extends $
|
|
3020
|
+
export declare class GetJobEventsResponseBody extends $dara.Model {
|
|
2525
3021
|
events?: string[];
|
|
2526
3022
|
/**
|
|
2527
3023
|
* @example
|
|
@@ -2539,11 +3035,12 @@ export declare class GetJobEventsResponseBody extends $tea.Model {
|
|
|
2539
3035
|
static types(): {
|
|
2540
3036
|
[key: string]: any;
|
|
2541
3037
|
};
|
|
3038
|
+
validate(): void;
|
|
2542
3039
|
constructor(map?: {
|
|
2543
3040
|
[key: string]: any;
|
|
2544
3041
|
});
|
|
2545
3042
|
}
|
|
2546
|
-
export declare class GetJobEventsResponse extends $
|
|
3043
|
+
export declare class GetJobEventsResponse extends $dara.Model {
|
|
2547
3044
|
headers?: {
|
|
2548
3045
|
[key: string]: string;
|
|
2549
3046
|
};
|
|
@@ -2555,11 +3052,12 @@ export declare class GetJobEventsResponse extends $tea.Model {
|
|
|
2555
3052
|
static types(): {
|
|
2556
3053
|
[key: string]: any;
|
|
2557
3054
|
};
|
|
3055
|
+
validate(): void;
|
|
2558
3056
|
constructor(map?: {
|
|
2559
3057
|
[key: string]: any;
|
|
2560
3058
|
});
|
|
2561
3059
|
}
|
|
2562
|
-
export declare class GetJobMetricsRequest extends $
|
|
3060
|
+
export declare class GetJobMetricsRequest extends $dara.Model {
|
|
2563
3061
|
/**
|
|
2564
3062
|
* @example
|
|
2565
3063
|
* 2020-11-09T16:00:00Z
|
|
@@ -2594,11 +3092,12 @@ export declare class GetJobMetricsRequest extends $tea.Model {
|
|
|
2594
3092
|
static types(): {
|
|
2595
3093
|
[key: string]: any;
|
|
2596
3094
|
};
|
|
3095
|
+
validate(): void;
|
|
2597
3096
|
constructor(map?: {
|
|
2598
3097
|
[key: string]: any;
|
|
2599
3098
|
});
|
|
2600
3099
|
}
|
|
2601
|
-
export declare class GetJobMetricsResponseBody extends $
|
|
3100
|
+
export declare class GetJobMetricsResponseBody extends $dara.Model {
|
|
2602
3101
|
/**
|
|
2603
3102
|
* @example
|
|
2604
3103
|
* dlc-20210126170216-*******
|
|
@@ -2616,11 +3115,12 @@ export declare class GetJobMetricsResponseBody extends $tea.Model {
|
|
|
2616
3115
|
static types(): {
|
|
2617
3116
|
[key: string]: any;
|
|
2618
3117
|
};
|
|
3118
|
+
validate(): void;
|
|
2619
3119
|
constructor(map?: {
|
|
2620
3120
|
[key: string]: any;
|
|
2621
3121
|
});
|
|
2622
3122
|
}
|
|
2623
|
-
export declare class GetJobMetricsResponse extends $
|
|
3123
|
+
export declare class GetJobMetricsResponse extends $dara.Model {
|
|
2624
3124
|
headers?: {
|
|
2625
3125
|
[key: string]: string;
|
|
2626
3126
|
};
|
|
@@ -2632,11 +3132,12 @@ export declare class GetJobMetricsResponse extends $tea.Model {
|
|
|
2632
3132
|
static types(): {
|
|
2633
3133
|
[key: string]: any;
|
|
2634
3134
|
};
|
|
3135
|
+
validate(): void;
|
|
2635
3136
|
constructor(map?: {
|
|
2636
3137
|
[key: string]: any;
|
|
2637
3138
|
});
|
|
2638
3139
|
}
|
|
2639
|
-
export declare class GetJobSanityCheckResultRequest extends $
|
|
3140
|
+
export declare class GetJobSanityCheckResultRequest extends $dara.Model {
|
|
2640
3141
|
/**
|
|
2641
3142
|
* @remarks
|
|
2642
3143
|
* This parameter is required.
|
|
@@ -2657,11 +3158,12 @@ export declare class GetJobSanityCheckResultRequest extends $tea.Model {
|
|
|
2657
3158
|
static types(): {
|
|
2658
3159
|
[key: string]: any;
|
|
2659
3160
|
};
|
|
3161
|
+
validate(): void;
|
|
2660
3162
|
constructor(map?: {
|
|
2661
3163
|
[key: string]: any;
|
|
2662
3164
|
});
|
|
2663
3165
|
}
|
|
2664
|
-
export declare class GetJobSanityCheckResultResponseBody extends $
|
|
3166
|
+
export declare class GetJobSanityCheckResultResponseBody extends $dara.Model {
|
|
2665
3167
|
/**
|
|
2666
3168
|
* @example
|
|
2667
3169
|
* dlc-20210126170216-xxxxxx
|
|
@@ -2679,11 +3181,12 @@ export declare class GetJobSanityCheckResultResponseBody extends $tea.Model {
|
|
|
2679
3181
|
static types(): {
|
|
2680
3182
|
[key: string]: any;
|
|
2681
3183
|
};
|
|
3184
|
+
validate(): void;
|
|
2682
3185
|
constructor(map?: {
|
|
2683
3186
|
[key: string]: any;
|
|
2684
3187
|
});
|
|
2685
3188
|
}
|
|
2686
|
-
export declare class GetJobSanityCheckResultResponse extends $
|
|
3189
|
+
export declare class GetJobSanityCheckResultResponse extends $dara.Model {
|
|
2687
3190
|
headers?: {
|
|
2688
3191
|
[key: string]: string;
|
|
2689
3192
|
};
|
|
@@ -2695,11 +3198,12 @@ export declare class GetJobSanityCheckResultResponse extends $tea.Model {
|
|
|
2695
3198
|
static types(): {
|
|
2696
3199
|
[key: string]: any;
|
|
2697
3200
|
};
|
|
3201
|
+
validate(): void;
|
|
2698
3202
|
constructor(map?: {
|
|
2699
3203
|
[key: string]: any;
|
|
2700
3204
|
});
|
|
2701
3205
|
}
|
|
2702
|
-
export declare class GetPodEventsRequest extends $
|
|
3206
|
+
export declare class GetPodEventsRequest extends $dara.Model {
|
|
2703
3207
|
/**
|
|
2704
3208
|
* @example
|
|
2705
3209
|
* 2020-11-09T16:00:00Z
|
|
@@ -2726,11 +3230,12 @@ export declare class GetPodEventsRequest extends $tea.Model {
|
|
|
2726
3230
|
static types(): {
|
|
2727
3231
|
[key: string]: any;
|
|
2728
3232
|
};
|
|
3233
|
+
validate(): void;
|
|
2729
3234
|
constructor(map?: {
|
|
2730
3235
|
[key: string]: any;
|
|
2731
3236
|
});
|
|
2732
3237
|
}
|
|
2733
|
-
export declare class GetPodEventsResponseBody extends $
|
|
3238
|
+
export declare class GetPodEventsResponseBody extends $dara.Model {
|
|
2734
3239
|
events?: string[];
|
|
2735
3240
|
/**
|
|
2736
3241
|
* @example
|
|
@@ -2761,11 +3266,12 @@ export declare class GetPodEventsResponseBody extends $tea.Model {
|
|
|
2761
3266
|
static types(): {
|
|
2762
3267
|
[key: string]: any;
|
|
2763
3268
|
};
|
|
3269
|
+
validate(): void;
|
|
2764
3270
|
constructor(map?: {
|
|
2765
3271
|
[key: string]: any;
|
|
2766
3272
|
});
|
|
2767
3273
|
}
|
|
2768
|
-
export declare class GetPodEventsResponse extends $
|
|
3274
|
+
export declare class GetPodEventsResponse extends $dara.Model {
|
|
2769
3275
|
headers?: {
|
|
2770
3276
|
[key: string]: string;
|
|
2771
3277
|
};
|
|
@@ -2777,11 +3283,12 @@ export declare class GetPodEventsResponse extends $tea.Model {
|
|
|
2777
3283
|
static types(): {
|
|
2778
3284
|
[key: string]: any;
|
|
2779
3285
|
};
|
|
3286
|
+
validate(): void;
|
|
2780
3287
|
constructor(map?: {
|
|
2781
3288
|
[key: string]: any;
|
|
2782
3289
|
});
|
|
2783
3290
|
}
|
|
2784
|
-
export declare class GetPodLogsRequest extends $
|
|
3291
|
+
export declare class GetPodLogsRequest extends $dara.Model {
|
|
2785
3292
|
/**
|
|
2786
3293
|
* @example
|
|
2787
3294
|
* true
|
|
@@ -2813,11 +3320,12 @@ export declare class GetPodLogsRequest extends $tea.Model {
|
|
|
2813
3320
|
static types(): {
|
|
2814
3321
|
[key: string]: any;
|
|
2815
3322
|
};
|
|
3323
|
+
validate(): void;
|
|
2816
3324
|
constructor(map?: {
|
|
2817
3325
|
[key: string]: any;
|
|
2818
3326
|
});
|
|
2819
3327
|
}
|
|
2820
|
-
export declare class GetPodLogsResponseBody extends $
|
|
3328
|
+
export declare class GetPodLogsResponseBody extends $dara.Model {
|
|
2821
3329
|
/**
|
|
2822
3330
|
* @example
|
|
2823
3331
|
* dlc-20210126170216-******
|
|
@@ -2845,11 +3353,12 @@ export declare class GetPodLogsResponseBody extends $tea.Model {
|
|
|
2845
3353
|
static types(): {
|
|
2846
3354
|
[key: string]: any;
|
|
2847
3355
|
};
|
|
3356
|
+
validate(): void;
|
|
2848
3357
|
constructor(map?: {
|
|
2849
3358
|
[key: string]: any;
|
|
2850
3359
|
});
|
|
2851
3360
|
}
|
|
2852
|
-
export declare class GetPodLogsResponse extends $
|
|
3361
|
+
export declare class GetPodLogsResponse extends $dara.Model {
|
|
2853
3362
|
headers?: {
|
|
2854
3363
|
[key: string]: string;
|
|
2855
3364
|
};
|
|
@@ -2861,11 +3370,12 @@ export declare class GetPodLogsResponse extends $tea.Model {
|
|
|
2861
3370
|
static types(): {
|
|
2862
3371
|
[key: string]: any;
|
|
2863
3372
|
};
|
|
3373
|
+
validate(): void;
|
|
2864
3374
|
constructor(map?: {
|
|
2865
3375
|
[key: string]: any;
|
|
2866
3376
|
});
|
|
2867
3377
|
}
|
|
2868
|
-
export declare class GetTensorboardRequest extends $
|
|
3378
|
+
export declare class GetTensorboardRequest extends $dara.Model {
|
|
2869
3379
|
/**
|
|
2870
3380
|
* @example
|
|
2871
3381
|
* dlc-xxxxxxxx
|
|
@@ -2883,11 +3393,12 @@ export declare class GetTensorboardRequest extends $tea.Model {
|
|
|
2883
3393
|
static types(): {
|
|
2884
3394
|
[key: string]: any;
|
|
2885
3395
|
};
|
|
3396
|
+
validate(): void;
|
|
2886
3397
|
constructor(map?: {
|
|
2887
3398
|
[key: string]: any;
|
|
2888
3399
|
});
|
|
2889
3400
|
}
|
|
2890
|
-
export declare class GetTensorboardResponse extends $
|
|
3401
|
+
export declare class GetTensorboardResponse extends $dara.Model {
|
|
2891
3402
|
headers?: {
|
|
2892
3403
|
[key: string]: string;
|
|
2893
3404
|
};
|
|
@@ -2899,11 +3410,12 @@ export declare class GetTensorboardResponse extends $tea.Model {
|
|
|
2899
3410
|
static types(): {
|
|
2900
3411
|
[key: string]: any;
|
|
2901
3412
|
};
|
|
3413
|
+
validate(): void;
|
|
2902
3414
|
constructor(map?: {
|
|
2903
3415
|
[key: string]: any;
|
|
2904
3416
|
});
|
|
2905
3417
|
}
|
|
2906
|
-
export declare class GetTensorboardSharedUrlRequest extends $
|
|
3418
|
+
export declare class GetTensorboardSharedUrlRequest extends $dara.Model {
|
|
2907
3419
|
/**
|
|
2908
3420
|
* @example
|
|
2909
3421
|
* 86400
|
|
@@ -2915,11 +3427,12 @@ export declare class GetTensorboardSharedUrlRequest extends $tea.Model {
|
|
|
2915
3427
|
static types(): {
|
|
2916
3428
|
[key: string]: any;
|
|
2917
3429
|
};
|
|
3430
|
+
validate(): void;
|
|
2918
3431
|
constructor(map?: {
|
|
2919
3432
|
[key: string]: any;
|
|
2920
3433
|
});
|
|
2921
3434
|
}
|
|
2922
|
-
export declare class GetTensorboardSharedUrlResponseBody extends $
|
|
3435
|
+
export declare class GetTensorboardSharedUrlResponseBody extends $dara.Model {
|
|
2923
3436
|
/**
|
|
2924
3437
|
* @example
|
|
2925
3438
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -2936,11 +3449,12 @@ export declare class GetTensorboardSharedUrlResponseBody extends $tea.Model {
|
|
|
2936
3449
|
static types(): {
|
|
2937
3450
|
[key: string]: any;
|
|
2938
3451
|
};
|
|
3452
|
+
validate(): void;
|
|
2939
3453
|
constructor(map?: {
|
|
2940
3454
|
[key: string]: any;
|
|
2941
3455
|
});
|
|
2942
3456
|
}
|
|
2943
|
-
export declare class GetTensorboardSharedUrlResponse extends $
|
|
3457
|
+
export declare class GetTensorboardSharedUrlResponse extends $dara.Model {
|
|
2944
3458
|
headers?: {
|
|
2945
3459
|
[key: string]: string;
|
|
2946
3460
|
};
|
|
@@ -2952,11 +3466,12 @@ export declare class GetTensorboardSharedUrlResponse extends $tea.Model {
|
|
|
2952
3466
|
static types(): {
|
|
2953
3467
|
[key: string]: any;
|
|
2954
3468
|
};
|
|
3469
|
+
validate(): void;
|
|
2955
3470
|
constructor(map?: {
|
|
2956
3471
|
[key: string]: any;
|
|
2957
3472
|
});
|
|
2958
3473
|
}
|
|
2959
|
-
export declare class GetTokenRequest extends $
|
|
3474
|
+
export declare class GetTokenRequest extends $dara.Model {
|
|
2960
3475
|
/**
|
|
2961
3476
|
* @example
|
|
2962
3477
|
* 60
|
|
@@ -2978,11 +3493,12 @@ export declare class GetTokenRequest extends $tea.Model {
|
|
|
2978
3493
|
static types(): {
|
|
2979
3494
|
[key: string]: any;
|
|
2980
3495
|
};
|
|
3496
|
+
validate(): void;
|
|
2981
3497
|
constructor(map?: {
|
|
2982
3498
|
[key: string]: any;
|
|
2983
3499
|
});
|
|
2984
3500
|
}
|
|
2985
|
-
export declare class GetTokenResponseBody extends $
|
|
3501
|
+
export declare class GetTokenResponseBody extends $dara.Model {
|
|
2986
3502
|
/**
|
|
2987
3503
|
* @example
|
|
2988
3504
|
* 473469C7-AA6F-4DC5-B3DB-xxxxxxxx
|
|
@@ -2999,11 +3515,12 @@ export declare class GetTokenResponseBody extends $tea.Model {
|
|
|
2999
3515
|
static types(): {
|
|
3000
3516
|
[key: string]: any;
|
|
3001
3517
|
};
|
|
3518
|
+
validate(): void;
|
|
3002
3519
|
constructor(map?: {
|
|
3003
3520
|
[key: string]: any;
|
|
3004
3521
|
});
|
|
3005
3522
|
}
|
|
3006
|
-
export declare class GetTokenResponse extends $
|
|
3523
|
+
export declare class GetTokenResponse extends $dara.Model {
|
|
3007
3524
|
headers?: {
|
|
3008
3525
|
[key: string]: string;
|
|
3009
3526
|
};
|
|
@@ -3015,11 +3532,12 @@ export declare class GetTokenResponse extends $tea.Model {
|
|
|
3015
3532
|
static types(): {
|
|
3016
3533
|
[key: string]: any;
|
|
3017
3534
|
};
|
|
3535
|
+
validate(): void;
|
|
3018
3536
|
constructor(map?: {
|
|
3019
3537
|
[key: string]: any;
|
|
3020
3538
|
});
|
|
3021
3539
|
}
|
|
3022
|
-
export declare class GetWebTerminalRequest extends $
|
|
3540
|
+
export declare class GetWebTerminalRequest extends $dara.Model {
|
|
3023
3541
|
isShared?: boolean;
|
|
3024
3542
|
/**
|
|
3025
3543
|
* @remarks
|
|
@@ -3035,11 +3553,12 @@ export declare class GetWebTerminalRequest extends $tea.Model {
|
|
|
3035
3553
|
static types(): {
|
|
3036
3554
|
[key: string]: any;
|
|
3037
3555
|
};
|
|
3556
|
+
validate(): void;
|
|
3038
3557
|
constructor(map?: {
|
|
3039
3558
|
[key: string]: any;
|
|
3040
3559
|
});
|
|
3041
3560
|
}
|
|
3042
|
-
export declare class GetWebTerminalResponseBody extends $
|
|
3561
|
+
export declare class GetWebTerminalResponseBody extends $dara.Model {
|
|
3043
3562
|
requestId?: string;
|
|
3044
3563
|
webTerminalUrl?: string;
|
|
3045
3564
|
static names(): {
|
|
@@ -3048,11 +3567,12 @@ export declare class GetWebTerminalResponseBody extends $tea.Model {
|
|
|
3048
3567
|
static types(): {
|
|
3049
3568
|
[key: string]: any;
|
|
3050
3569
|
};
|
|
3570
|
+
validate(): void;
|
|
3051
3571
|
constructor(map?: {
|
|
3052
3572
|
[key: string]: any;
|
|
3053
3573
|
});
|
|
3054
3574
|
}
|
|
3055
|
-
export declare class GetWebTerminalResponse extends $
|
|
3575
|
+
export declare class GetWebTerminalResponse extends $dara.Model {
|
|
3056
3576
|
headers?: {
|
|
3057
3577
|
[key: string]: string;
|
|
3058
3578
|
};
|
|
@@ -3064,11 +3584,12 @@ export declare class GetWebTerminalResponse extends $tea.Model {
|
|
|
3064
3584
|
static types(): {
|
|
3065
3585
|
[key: string]: any;
|
|
3066
3586
|
};
|
|
3587
|
+
validate(): void;
|
|
3067
3588
|
constructor(map?: {
|
|
3068
3589
|
[key: string]: any;
|
|
3069
3590
|
});
|
|
3070
3591
|
}
|
|
3071
|
-
export declare class ListEcsSpecsRequest extends $
|
|
3592
|
+
export declare class ListEcsSpecsRequest extends $dara.Model {
|
|
3072
3593
|
/**
|
|
3073
3594
|
* @example
|
|
3074
3595
|
* GPU
|
|
@@ -3110,11 +3631,12 @@ export declare class ListEcsSpecsRequest extends $tea.Model {
|
|
|
3110
3631
|
static types(): {
|
|
3111
3632
|
[key: string]: any;
|
|
3112
3633
|
};
|
|
3634
|
+
validate(): void;
|
|
3113
3635
|
constructor(map?: {
|
|
3114
3636
|
[key: string]: any;
|
|
3115
3637
|
});
|
|
3116
3638
|
}
|
|
3117
|
-
export declare class ListEcsSpecsResponseBody extends $
|
|
3639
|
+
export declare class ListEcsSpecsResponseBody extends $dara.Model {
|
|
3118
3640
|
ecsSpecs?: EcsSpec[];
|
|
3119
3641
|
/**
|
|
3120
3642
|
* @example
|
|
@@ -3132,11 +3654,12 @@ export declare class ListEcsSpecsResponseBody extends $tea.Model {
|
|
|
3132
3654
|
static types(): {
|
|
3133
3655
|
[key: string]: any;
|
|
3134
3656
|
};
|
|
3657
|
+
validate(): void;
|
|
3135
3658
|
constructor(map?: {
|
|
3136
3659
|
[key: string]: any;
|
|
3137
3660
|
});
|
|
3138
3661
|
}
|
|
3139
|
-
export declare class ListEcsSpecsResponse extends $
|
|
3662
|
+
export declare class ListEcsSpecsResponse extends $dara.Model {
|
|
3140
3663
|
headers?: {
|
|
3141
3664
|
[key: string]: string;
|
|
3142
3665
|
};
|
|
@@ -3148,11 +3671,12 @@ export declare class ListEcsSpecsResponse extends $tea.Model {
|
|
|
3148
3671
|
static types(): {
|
|
3149
3672
|
[key: string]: any;
|
|
3150
3673
|
};
|
|
3674
|
+
validate(): void;
|
|
3151
3675
|
constructor(map?: {
|
|
3152
3676
|
[key: string]: any;
|
|
3153
3677
|
});
|
|
3154
3678
|
}
|
|
3155
|
-
export declare class ListJobSanityCheckResultsRequest extends $
|
|
3679
|
+
export declare class ListJobSanityCheckResultsRequest extends $dara.Model {
|
|
3156
3680
|
/**
|
|
3157
3681
|
* @example
|
|
3158
3682
|
* desc
|
|
@@ -3164,11 +3688,12 @@ export declare class ListJobSanityCheckResultsRequest extends $tea.Model {
|
|
|
3164
3688
|
static types(): {
|
|
3165
3689
|
[key: string]: any;
|
|
3166
3690
|
};
|
|
3691
|
+
validate(): void;
|
|
3167
3692
|
constructor(map?: {
|
|
3168
3693
|
[key: string]: any;
|
|
3169
3694
|
});
|
|
3170
3695
|
}
|
|
3171
|
-
export declare class ListJobSanityCheckResultsResponseBody extends $
|
|
3696
|
+
export declare class ListJobSanityCheckResultsResponseBody extends $dara.Model {
|
|
3172
3697
|
/**
|
|
3173
3698
|
* @example
|
|
3174
3699
|
* 1AC9xxx-3xxx-5xxx2-xxxx-FA5
|
|
@@ -3186,11 +3711,12 @@ export declare class ListJobSanityCheckResultsResponseBody extends $tea.Model {
|
|
|
3186
3711
|
static types(): {
|
|
3187
3712
|
[key: string]: any;
|
|
3188
3713
|
};
|
|
3714
|
+
validate(): void;
|
|
3189
3715
|
constructor(map?: {
|
|
3190
3716
|
[key: string]: any;
|
|
3191
3717
|
});
|
|
3192
3718
|
}
|
|
3193
|
-
export declare class ListJobSanityCheckResultsResponse extends $
|
|
3719
|
+
export declare class ListJobSanityCheckResultsResponse extends $dara.Model {
|
|
3194
3720
|
headers?: {
|
|
3195
3721
|
[key: string]: string;
|
|
3196
3722
|
};
|
|
@@ -3202,11 +3728,12 @@ export declare class ListJobSanityCheckResultsResponse extends $tea.Model {
|
|
|
3202
3728
|
static types(): {
|
|
3203
3729
|
[key: string]: any;
|
|
3204
3730
|
};
|
|
3731
|
+
validate(): void;
|
|
3205
3732
|
constructor(map?: {
|
|
3206
3733
|
[key: string]: any;
|
|
3207
3734
|
});
|
|
3208
3735
|
}
|
|
3209
|
-
export declare class ListJobsRequest extends $
|
|
3736
|
+
export declare class ListJobsRequest extends $dara.Model {
|
|
3210
3737
|
accessibility?: string;
|
|
3211
3738
|
/**
|
|
3212
3739
|
* @example
|
|
@@ -3307,11 +3834,12 @@ export declare class ListJobsRequest extends $tea.Model {
|
|
|
3307
3834
|
static types(): {
|
|
3308
3835
|
[key: string]: any;
|
|
3309
3836
|
};
|
|
3837
|
+
validate(): void;
|
|
3310
3838
|
constructor(map?: {
|
|
3311
3839
|
[key: string]: any;
|
|
3312
3840
|
});
|
|
3313
3841
|
}
|
|
3314
|
-
export declare class ListJobsShrinkRequest extends $
|
|
3842
|
+
export declare class ListJobsShrinkRequest extends $dara.Model {
|
|
3315
3843
|
accessibility?: string;
|
|
3316
3844
|
/**
|
|
3317
3845
|
* @example
|
|
@@ -3375,133 +3903,17 @@ export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
|
3375
3903
|
* r*****
|
|
3376
3904
|
*/
|
|
3377
3905
|
resourceId?: string;
|
|
3378
|
-
resourceQuotaName?: string;
|
|
3379
|
-
/**
|
|
3380
|
-
* @example
|
|
3381
|
-
* true
|
|
3382
|
-
*/
|
|
3383
|
-
showOwn?: boolean;
|
|
3384
|
-
/**
|
|
3385
|
-
* @example
|
|
3386
|
-
* GmtCreateTime
|
|
3387
|
-
*/
|
|
3388
|
-
sortBy?: string;
|
|
3389
|
-
/**
|
|
3390
|
-
* @example
|
|
3391
|
-
* 2020-11-08T16:00:00Z
|
|
3392
|
-
*/
|
|
3393
|
-
startTime?: string;
|
|
3394
|
-
/**
|
|
3395
|
-
* @example
|
|
3396
|
-
* Running
|
|
3397
|
-
*/
|
|
3398
|
-
status?: string;
|
|
3399
|
-
tagsShrink?: string;
|
|
3400
|
-
userIdForFilter?: string;
|
|
3401
|
-
username?: string;
|
|
3402
|
-
/**
|
|
3403
|
-
* @example
|
|
3404
|
-
* 1****
|
|
3405
|
-
*/
|
|
3406
|
-
workspaceId?: string;
|
|
3407
|
-
static names(): {
|
|
3408
|
-
[key: string]: string;
|
|
3409
|
-
};
|
|
3410
|
-
static types(): {
|
|
3411
|
-
[key: string]: any;
|
|
3412
|
-
};
|
|
3413
|
-
constructor(map?: {
|
|
3414
|
-
[key: string]: any;
|
|
3415
|
-
});
|
|
3416
|
-
}
|
|
3417
|
-
export declare class ListJobsResponseBody extends $tea.Model {
|
|
3418
|
-
jobs?: JobItem[];
|
|
3419
|
-
/**
|
|
3420
|
-
* @example
|
|
3421
|
-
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3422
|
-
*/
|
|
3423
|
-
requestId?: string;
|
|
3424
|
-
/**
|
|
3425
|
-
* @example
|
|
3426
|
-
* 2
|
|
3427
|
-
*/
|
|
3428
|
-
totalCount?: number;
|
|
3429
|
-
static names(): {
|
|
3430
|
-
[key: string]: string;
|
|
3431
|
-
};
|
|
3432
|
-
static types(): {
|
|
3433
|
-
[key: string]: any;
|
|
3434
|
-
};
|
|
3435
|
-
constructor(map?: {
|
|
3436
|
-
[key: string]: any;
|
|
3437
|
-
});
|
|
3438
|
-
}
|
|
3439
|
-
export declare class ListJobsResponse extends $tea.Model {
|
|
3440
|
-
headers?: {
|
|
3441
|
-
[key: string]: string;
|
|
3442
|
-
};
|
|
3443
|
-
statusCode?: number;
|
|
3444
|
-
body?: ListJobsResponseBody;
|
|
3445
|
-
static names(): {
|
|
3446
|
-
[key: string]: string;
|
|
3447
|
-
};
|
|
3448
|
-
static types(): {
|
|
3449
|
-
[key: string]: any;
|
|
3450
|
-
};
|
|
3451
|
-
constructor(map?: {
|
|
3452
|
-
[key: string]: any;
|
|
3453
|
-
});
|
|
3454
|
-
}
|
|
3455
|
-
export declare class ListTensorboardsRequest extends $tea.Model {
|
|
3456
|
-
accessibility?: string;
|
|
3457
|
-
/**
|
|
3458
|
-
* @example
|
|
3459
|
-
* TestTensorboard
|
|
3460
|
-
*/
|
|
3461
|
-
displayName?: string;
|
|
3462
|
-
/**
|
|
3463
|
-
* @example
|
|
3464
|
-
* 2020-11-09T14:45:00Z
|
|
3465
|
-
*/
|
|
3466
|
-
endTime?: string;
|
|
3467
|
-
/**
|
|
3468
|
-
* @example
|
|
3469
|
-
* dlc-xxx
|
|
3470
|
-
*/
|
|
3471
|
-
jobId?: string;
|
|
3472
|
-
/**
|
|
3473
|
-
* @example
|
|
3474
|
-
* desc
|
|
3475
|
-
*/
|
|
3476
|
-
order?: string;
|
|
3477
|
-
/**
|
|
3478
|
-
* @example
|
|
3479
|
-
* 1
|
|
3480
|
-
*/
|
|
3481
|
-
pageNumber?: number;
|
|
3482
|
-
/**
|
|
3483
|
-
* @example
|
|
3484
|
-
* 50
|
|
3485
|
-
*/
|
|
3486
|
-
pageSize?: number;
|
|
3487
|
-
paymentType?: string;
|
|
3488
|
-
quotaId?: string;
|
|
3489
|
-
showOwn?: boolean;
|
|
3490
|
-
/**
|
|
3491
|
-
* @example
|
|
3492
|
-
* GmtCreateTime
|
|
3493
|
-
*/
|
|
3494
|
-
sortBy?: string;
|
|
3906
|
+
resourceQuotaName?: string;
|
|
3495
3907
|
/**
|
|
3496
3908
|
* @example
|
|
3497
|
-
*
|
|
3909
|
+
* true
|
|
3498
3910
|
*/
|
|
3499
|
-
|
|
3911
|
+
showOwn?: boolean;
|
|
3500
3912
|
/**
|
|
3501
3913
|
* @example
|
|
3502
|
-
*
|
|
3914
|
+
* GmtCreateTime
|
|
3503
3915
|
*/
|
|
3504
|
-
|
|
3916
|
+
sortBy?: string;
|
|
3505
3917
|
/**
|
|
3506
3918
|
* @example
|
|
3507
3919
|
* 2020-11-08T16:00:00Z
|
|
@@ -3512,21 +3924,12 @@ export declare class ListTensorboardsRequest extends $tea.Model {
|
|
|
3512
3924
|
* Running
|
|
3513
3925
|
*/
|
|
3514
3926
|
status?: string;
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
* tensorboard-xxx
|
|
3518
|
-
*/
|
|
3519
|
-
tensorboardId?: string;
|
|
3520
|
-
userId?: string;
|
|
3927
|
+
tagsShrink?: string;
|
|
3928
|
+
userIdForFilter?: string;
|
|
3521
3929
|
username?: string;
|
|
3522
3930
|
/**
|
|
3523
3931
|
* @example
|
|
3524
|
-
*
|
|
3525
|
-
*/
|
|
3526
|
-
verbose?: boolean;
|
|
3527
|
-
/**
|
|
3528
|
-
* @example
|
|
3529
|
-
* 380
|
|
3932
|
+
* 1****
|
|
3530
3933
|
*/
|
|
3531
3934
|
workspaceId?: string;
|
|
3532
3935
|
static names(): {
|
|
@@ -3535,20 +3938,21 @@ export declare class ListTensorboardsRequest extends $tea.Model {
|
|
|
3535
3938
|
static types(): {
|
|
3536
3939
|
[key: string]: any;
|
|
3537
3940
|
};
|
|
3941
|
+
validate(): void;
|
|
3538
3942
|
constructor(map?: {
|
|
3539
3943
|
[key: string]: any;
|
|
3540
3944
|
});
|
|
3541
3945
|
}
|
|
3542
|
-
export declare class
|
|
3946
|
+
export declare class ListJobsResponseBody extends $dara.Model {
|
|
3947
|
+
jobs?: JobItem[];
|
|
3543
3948
|
/**
|
|
3544
3949
|
* @example
|
|
3545
3950
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3546
3951
|
*/
|
|
3547
3952
|
requestId?: string;
|
|
3548
|
-
tensorboards?: Tensorboard[];
|
|
3549
3953
|
/**
|
|
3550
3954
|
* @example
|
|
3551
|
-
*
|
|
3955
|
+
* 2
|
|
3552
3956
|
*/
|
|
3553
3957
|
totalCount?: number;
|
|
3554
3958
|
static names(): {
|
|
@@ -3557,231 +3961,100 @@ export declare class ListTensorboardsResponseBody extends $tea.Model {
|
|
|
3557
3961
|
static types(): {
|
|
3558
3962
|
[key: string]: any;
|
|
3559
3963
|
};
|
|
3964
|
+
validate(): void;
|
|
3560
3965
|
constructor(map?: {
|
|
3561
3966
|
[key: string]: any;
|
|
3562
3967
|
});
|
|
3563
3968
|
}
|
|
3564
|
-
export declare class
|
|
3969
|
+
export declare class ListJobsResponse extends $dara.Model {
|
|
3565
3970
|
headers?: {
|
|
3566
3971
|
[key: string]: string;
|
|
3567
3972
|
};
|
|
3568
3973
|
statusCode?: number;
|
|
3569
|
-
body?:
|
|
3974
|
+
body?: ListJobsResponseBody;
|
|
3570
3975
|
static names(): {
|
|
3571
3976
|
[key: string]: string;
|
|
3572
3977
|
};
|
|
3573
3978
|
static types(): {
|
|
3574
3979
|
[key: string]: any;
|
|
3575
3980
|
};
|
|
3981
|
+
validate(): void;
|
|
3576
3982
|
constructor(map?: {
|
|
3577
3983
|
[key: string]: any;
|
|
3578
3984
|
});
|
|
3579
3985
|
}
|
|
3580
|
-
export declare class
|
|
3986
|
+
export declare class ListTensorboardsRequest extends $dara.Model {
|
|
3987
|
+
accessibility?: string;
|
|
3581
3988
|
/**
|
|
3582
3989
|
* @example
|
|
3583
|
-
*
|
|
3990
|
+
* TestTensorboard
|
|
3584
3991
|
*/
|
|
3585
|
-
|
|
3586
|
-
static names(): {
|
|
3587
|
-
[key: string]: string;
|
|
3588
|
-
};
|
|
3589
|
-
static types(): {
|
|
3590
|
-
[key: string]: any;
|
|
3591
|
-
};
|
|
3592
|
-
constructor(map?: {
|
|
3593
|
-
[key: string]: any;
|
|
3594
|
-
});
|
|
3595
|
-
}
|
|
3596
|
-
export declare class StartTensorboardResponseBody extends $tea.Model {
|
|
3992
|
+
displayName?: string;
|
|
3597
3993
|
/**
|
|
3598
3994
|
* @example
|
|
3599
|
-
*
|
|
3995
|
+
* 2020-11-09T14:45:00Z
|
|
3600
3996
|
*/
|
|
3601
|
-
|
|
3997
|
+
endTime?: string;
|
|
3602
3998
|
/**
|
|
3603
3999
|
* @example
|
|
3604
|
-
*
|
|
4000
|
+
* dlc-xxx
|
|
3605
4001
|
*/
|
|
3606
|
-
|
|
3607
|
-
static names(): {
|
|
3608
|
-
[key: string]: string;
|
|
3609
|
-
};
|
|
3610
|
-
static types(): {
|
|
3611
|
-
[key: string]: any;
|
|
3612
|
-
};
|
|
3613
|
-
constructor(map?: {
|
|
3614
|
-
[key: string]: any;
|
|
3615
|
-
});
|
|
3616
|
-
}
|
|
3617
|
-
export declare class StartTensorboardResponse extends $tea.Model {
|
|
3618
|
-
headers?: {
|
|
3619
|
-
[key: string]: string;
|
|
3620
|
-
};
|
|
3621
|
-
statusCode?: number;
|
|
3622
|
-
body?: StartTensorboardResponseBody;
|
|
3623
|
-
static names(): {
|
|
3624
|
-
[key: string]: string;
|
|
3625
|
-
};
|
|
3626
|
-
static types(): {
|
|
3627
|
-
[key: string]: any;
|
|
3628
|
-
};
|
|
3629
|
-
constructor(map?: {
|
|
3630
|
-
[key: string]: any;
|
|
3631
|
-
});
|
|
3632
|
-
}
|
|
3633
|
-
export declare class StopJobResponseBody extends $tea.Model {
|
|
4002
|
+
jobId?: string;
|
|
3634
4003
|
/**
|
|
3635
4004
|
* @example
|
|
3636
|
-
*
|
|
4005
|
+
* desc
|
|
3637
4006
|
*/
|
|
3638
|
-
|
|
4007
|
+
order?: string;
|
|
3639
4008
|
/**
|
|
3640
4009
|
* @example
|
|
3641
|
-
*
|
|
4010
|
+
* 1
|
|
3642
4011
|
*/
|
|
3643
|
-
|
|
3644
|
-
static names(): {
|
|
3645
|
-
[key: string]: string;
|
|
3646
|
-
};
|
|
3647
|
-
static types(): {
|
|
3648
|
-
[key: string]: any;
|
|
3649
|
-
};
|
|
3650
|
-
constructor(map?: {
|
|
3651
|
-
[key: string]: any;
|
|
3652
|
-
});
|
|
3653
|
-
}
|
|
3654
|
-
export declare class StopJobResponse extends $tea.Model {
|
|
3655
|
-
headers?: {
|
|
3656
|
-
[key: string]: string;
|
|
3657
|
-
};
|
|
3658
|
-
statusCode?: number;
|
|
3659
|
-
body?: StopJobResponseBody;
|
|
3660
|
-
static names(): {
|
|
3661
|
-
[key: string]: string;
|
|
3662
|
-
};
|
|
3663
|
-
static types(): {
|
|
3664
|
-
[key: string]: any;
|
|
3665
|
-
};
|
|
3666
|
-
constructor(map?: {
|
|
3667
|
-
[key: string]: any;
|
|
3668
|
-
});
|
|
3669
|
-
}
|
|
3670
|
-
export declare class StopTensorboardRequest extends $tea.Model {
|
|
4012
|
+
pageNumber?: number;
|
|
3671
4013
|
/**
|
|
3672
4014
|
* @example
|
|
3673
|
-
*
|
|
4015
|
+
* 50
|
|
3674
4016
|
*/
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
static types(): {
|
|
3680
|
-
[key: string]: any;
|
|
3681
|
-
};
|
|
3682
|
-
constructor(map?: {
|
|
3683
|
-
[key: string]: any;
|
|
3684
|
-
});
|
|
3685
|
-
}
|
|
3686
|
-
export declare class StopTensorboardResponseBody extends $tea.Model {
|
|
4017
|
+
pageSize?: number;
|
|
4018
|
+
paymentType?: string;
|
|
4019
|
+
quotaId?: string;
|
|
4020
|
+
showOwn?: boolean;
|
|
3687
4021
|
/**
|
|
3688
4022
|
* @example
|
|
3689
|
-
*
|
|
4023
|
+
* GmtCreateTime
|
|
3690
4024
|
*/
|
|
3691
|
-
|
|
4025
|
+
sortBy?: string;
|
|
3692
4026
|
/**
|
|
3693
4027
|
* @example
|
|
3694
|
-
*
|
|
4028
|
+
* dlc-xxxxxx
|
|
3695
4029
|
*/
|
|
3696
|
-
|
|
3697
|
-
static names(): {
|
|
3698
|
-
[key: string]: string;
|
|
3699
|
-
};
|
|
3700
|
-
static types(): {
|
|
3701
|
-
[key: string]: any;
|
|
3702
|
-
};
|
|
3703
|
-
constructor(map?: {
|
|
3704
|
-
[key: string]: any;
|
|
3705
|
-
});
|
|
3706
|
-
}
|
|
3707
|
-
export declare class StopTensorboardResponse extends $tea.Model {
|
|
3708
|
-
headers?: {
|
|
3709
|
-
[key: string]: string;
|
|
3710
|
-
};
|
|
3711
|
-
statusCode?: number;
|
|
3712
|
-
body?: StopTensorboardResponseBody;
|
|
3713
|
-
static names(): {
|
|
3714
|
-
[key: string]: string;
|
|
3715
|
-
};
|
|
3716
|
-
static types(): {
|
|
3717
|
-
[key: string]: any;
|
|
3718
|
-
};
|
|
3719
|
-
constructor(map?: {
|
|
3720
|
-
[key: string]: any;
|
|
3721
|
-
});
|
|
3722
|
-
}
|
|
3723
|
-
export declare class UpdateJobRequest extends $tea.Model {
|
|
3724
|
-
accessibility?: string;
|
|
4030
|
+
sourceId?: string;
|
|
3725
4031
|
/**
|
|
3726
4032
|
* @example
|
|
3727
|
-
*
|
|
4033
|
+
* job
|
|
3728
4034
|
*/
|
|
3729
|
-
|
|
3730
|
-
static names(): {
|
|
3731
|
-
[key: string]: string;
|
|
3732
|
-
};
|
|
3733
|
-
static types(): {
|
|
3734
|
-
[key: string]: any;
|
|
3735
|
-
};
|
|
3736
|
-
constructor(map?: {
|
|
3737
|
-
[key: string]: any;
|
|
3738
|
-
});
|
|
3739
|
-
}
|
|
3740
|
-
export declare class UpdateJobResponseBody extends $tea.Model {
|
|
4035
|
+
sourceType?: string;
|
|
3741
4036
|
/**
|
|
3742
4037
|
* @example
|
|
3743
|
-
*
|
|
4038
|
+
* 2020-11-08T16:00:00Z
|
|
3744
4039
|
*/
|
|
3745
|
-
|
|
4040
|
+
startTime?: string;
|
|
3746
4041
|
/**
|
|
3747
4042
|
* @example
|
|
3748
|
-
*
|
|
4043
|
+
* Running
|
|
3749
4044
|
*/
|
|
3750
|
-
|
|
3751
|
-
static names(): {
|
|
3752
|
-
[key: string]: string;
|
|
3753
|
-
};
|
|
3754
|
-
static types(): {
|
|
3755
|
-
[key: string]: any;
|
|
3756
|
-
};
|
|
3757
|
-
constructor(map?: {
|
|
3758
|
-
[key: string]: any;
|
|
3759
|
-
});
|
|
3760
|
-
}
|
|
3761
|
-
export declare class UpdateJobResponse extends $tea.Model {
|
|
3762
|
-
headers?: {
|
|
3763
|
-
[key: string]: string;
|
|
3764
|
-
};
|
|
3765
|
-
statusCode?: number;
|
|
3766
|
-
body?: UpdateJobResponseBody;
|
|
3767
|
-
static names(): {
|
|
3768
|
-
[key: string]: string;
|
|
3769
|
-
};
|
|
3770
|
-
static types(): {
|
|
3771
|
-
[key: string]: any;
|
|
3772
|
-
};
|
|
3773
|
-
constructor(map?: {
|
|
3774
|
-
[key: string]: any;
|
|
3775
|
-
});
|
|
3776
|
-
}
|
|
3777
|
-
export declare class UpdateTensorboardRequest extends $tea.Model {
|
|
3778
|
-
accessibility?: string;
|
|
4045
|
+
status?: string;
|
|
3779
4046
|
/**
|
|
3780
4047
|
* @example
|
|
3781
|
-
*
|
|
4048
|
+
* tensorboard-xxx
|
|
3782
4049
|
*/
|
|
3783
|
-
|
|
3784
|
-
|
|
4050
|
+
tensorboardId?: string;
|
|
4051
|
+
userId?: string;
|
|
4052
|
+
username?: string;
|
|
4053
|
+
/**
|
|
4054
|
+
* @example
|
|
4055
|
+
* true
|
|
4056
|
+
*/
|
|
4057
|
+
verbose?: boolean;
|
|
3785
4058
|
/**
|
|
3786
4059
|
* @example
|
|
3787
4060
|
* 380
|
|
@@ -3793,460 +4066,324 @@ export declare class UpdateTensorboardRequest extends $tea.Model {
|
|
|
3793
4066
|
static types(): {
|
|
3794
4067
|
[key: string]: any;
|
|
3795
4068
|
};
|
|
4069
|
+
validate(): void;
|
|
3796
4070
|
constructor(map?: {
|
|
3797
4071
|
[key: string]: any;
|
|
3798
4072
|
});
|
|
3799
4073
|
}
|
|
3800
|
-
export declare class
|
|
4074
|
+
export declare class ListTensorboardsResponseBody extends $dara.Model {
|
|
3801
4075
|
/**
|
|
3802
4076
|
* @example
|
|
3803
4077
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3804
4078
|
*/
|
|
3805
4079
|
requestId?: string;
|
|
4080
|
+
tensorboards?: Tensorboard[];
|
|
3806
4081
|
/**
|
|
3807
4082
|
* @example
|
|
3808
|
-
*
|
|
4083
|
+
* 100
|
|
3809
4084
|
*/
|
|
3810
|
-
|
|
4085
|
+
totalCount?: number;
|
|
3811
4086
|
static names(): {
|
|
3812
4087
|
[key: string]: string;
|
|
3813
4088
|
};
|
|
3814
4089
|
static types(): {
|
|
3815
4090
|
[key: string]: any;
|
|
3816
4091
|
};
|
|
4092
|
+
validate(): void;
|
|
3817
4093
|
constructor(map?: {
|
|
3818
4094
|
[key: string]: any;
|
|
3819
4095
|
});
|
|
3820
4096
|
}
|
|
3821
|
-
export declare class
|
|
4097
|
+
export declare class ListTensorboardsResponse extends $dara.Model {
|
|
3822
4098
|
headers?: {
|
|
3823
4099
|
[key: string]: string;
|
|
3824
4100
|
};
|
|
3825
4101
|
statusCode?: number;
|
|
3826
|
-
body?:
|
|
4102
|
+
body?: ListTensorboardsResponseBody;
|
|
3827
4103
|
static names(): {
|
|
3828
4104
|
[key: string]: string;
|
|
3829
4105
|
};
|
|
3830
4106
|
static types(): {
|
|
3831
4107
|
[key: string]: any;
|
|
3832
4108
|
};
|
|
4109
|
+
validate(): void;
|
|
3833
4110
|
constructor(map?: {
|
|
3834
4111
|
[key: string]: any;
|
|
3835
4112
|
});
|
|
3836
4113
|
}
|
|
3837
|
-
export declare class
|
|
3838
|
-
/**
|
|
3839
|
-
* @example
|
|
3840
|
-
* master
|
|
3841
|
-
*/
|
|
3842
|
-
branch?: string;
|
|
3843
|
-
/**
|
|
3844
|
-
* @example
|
|
3845
|
-
* code-20210111103721-85qz78ia96lu
|
|
3846
|
-
*/
|
|
3847
|
-
codeSourceId?: string;
|
|
3848
|
-
/**
|
|
3849
|
-
* @example
|
|
3850
|
-
* 44da109b59f8596152987eaa8f3b2487bb72ea63
|
|
3851
|
-
*/
|
|
3852
|
-
commit?: string;
|
|
4114
|
+
export declare class StartTensorboardRequest extends $dara.Model {
|
|
3853
4115
|
/**
|
|
3854
4116
|
* @example
|
|
3855
|
-
*
|
|
4117
|
+
* 380
|
|
3856
4118
|
*/
|
|
3857
|
-
|
|
4119
|
+
workspaceId?: string;
|
|
3858
4120
|
static names(): {
|
|
3859
4121
|
[key: string]: string;
|
|
3860
4122
|
};
|
|
3861
4123
|
static types(): {
|
|
3862
4124
|
[key: string]: any;
|
|
3863
4125
|
};
|
|
4126
|
+
validate(): void;
|
|
3864
4127
|
constructor(map?: {
|
|
3865
4128
|
[key: string]: any;
|
|
3866
4129
|
});
|
|
3867
4130
|
}
|
|
3868
|
-
export declare class
|
|
4131
|
+
export declare class StartTensorboardResponseBody extends $dara.Model {
|
|
3869
4132
|
/**
|
|
3870
4133
|
* @example
|
|
3871
|
-
*
|
|
4134
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3872
4135
|
*/
|
|
3873
|
-
|
|
4136
|
+
requestId?: string;
|
|
3874
4137
|
/**
|
|
3875
4138
|
* @example
|
|
3876
|
-
*
|
|
4139
|
+
* tensorboard-20210114104214-vf9lowjt3pso
|
|
3877
4140
|
*/
|
|
3878
|
-
|
|
4141
|
+
tensorboardId?: string;
|
|
3879
4142
|
static names(): {
|
|
3880
4143
|
[key: string]: string;
|
|
3881
4144
|
};
|
|
3882
4145
|
static types(): {
|
|
3883
4146
|
[key: string]: any;
|
|
3884
4147
|
};
|
|
4148
|
+
validate(): void;
|
|
3885
4149
|
constructor(map?: {
|
|
3886
4150
|
[key: string]: any;
|
|
3887
4151
|
});
|
|
3888
4152
|
}
|
|
3889
|
-
export declare class
|
|
3890
|
-
|
|
3891
|
-
extendedCidrs?: string[];
|
|
3892
|
-
securityGroupId?: string;
|
|
3893
|
-
switchId?: string;
|
|
3894
|
-
vpcId?: string;
|
|
3895
|
-
static names(): {
|
|
4153
|
+
export declare class StartTensorboardResponse extends $dara.Model {
|
|
4154
|
+
headers?: {
|
|
3896
4155
|
[key: string]: string;
|
|
3897
4156
|
};
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
};
|
|
3901
|
-
constructor(map?: {
|
|
3902
|
-
[key: string]: any;
|
|
3903
|
-
});
|
|
3904
|
-
}
|
|
3905
|
-
export declare class LifecyclePostStartExec extends $tea.Model {
|
|
3906
|
-
command?: string[];
|
|
4157
|
+
statusCode?: number;
|
|
4158
|
+
body?: StartTensorboardResponseBody;
|
|
3907
4159
|
static names(): {
|
|
3908
4160
|
[key: string]: string;
|
|
3909
4161
|
};
|
|
3910
4162
|
static types(): {
|
|
3911
4163
|
[key: string]: any;
|
|
3912
4164
|
};
|
|
4165
|
+
validate(): void;
|
|
3913
4166
|
constructor(map?: {
|
|
3914
4167
|
[key: string]: any;
|
|
3915
4168
|
});
|
|
3916
4169
|
}
|
|
3917
|
-
export declare class
|
|
3918
|
-
|
|
4170
|
+
export declare class StopJobResponseBody extends $dara.Model {
|
|
4171
|
+
/**
|
|
4172
|
+
* @example
|
|
4173
|
+
* dlc-20210126170216-xxxxxxx
|
|
4174
|
+
*/
|
|
4175
|
+
jobId?: string;
|
|
4176
|
+
/**
|
|
4177
|
+
* @example
|
|
4178
|
+
* 473469C7-AA6F-4DC5-B3DB-xxxxxx
|
|
4179
|
+
*/
|
|
4180
|
+
requestId?: string;
|
|
3919
4181
|
static names(): {
|
|
3920
4182
|
[key: string]: string;
|
|
3921
4183
|
};
|
|
3922
4184
|
static types(): {
|
|
3923
4185
|
[key: string]: any;
|
|
3924
4186
|
};
|
|
4187
|
+
validate(): void;
|
|
3925
4188
|
constructor(map?: {
|
|
3926
4189
|
[key: string]: any;
|
|
3927
4190
|
});
|
|
3928
4191
|
}
|
|
3929
|
-
export declare class
|
|
3930
|
-
|
|
4192
|
+
export declare class StopJobResponse extends $dara.Model {
|
|
4193
|
+
headers?: {
|
|
4194
|
+
[key: string]: string;
|
|
4195
|
+
};
|
|
4196
|
+
statusCode?: number;
|
|
4197
|
+
body?: StopJobResponseBody;
|
|
3931
4198
|
static names(): {
|
|
3932
4199
|
[key: string]: string;
|
|
3933
4200
|
};
|
|
3934
4201
|
static types(): {
|
|
3935
4202
|
[key: string]: any;
|
|
3936
4203
|
};
|
|
4204
|
+
validate(): void;
|
|
3937
4205
|
constructor(map?: {
|
|
3938
4206
|
[key: string]: any;
|
|
3939
4207
|
});
|
|
3940
4208
|
}
|
|
3941
|
-
export declare class
|
|
3942
|
-
|
|
4209
|
+
export declare class StopTensorboardRequest extends $dara.Model {
|
|
4210
|
+
/**
|
|
4211
|
+
* @example
|
|
4212
|
+
* 380
|
|
4213
|
+
*/
|
|
4214
|
+
workspaceId?: string;
|
|
3943
4215
|
static names(): {
|
|
3944
4216
|
[key: string]: string;
|
|
3945
4217
|
};
|
|
3946
4218
|
static types(): {
|
|
3947
4219
|
[key: string]: any;
|
|
3948
4220
|
};
|
|
4221
|
+
validate(): void;
|
|
3949
4222
|
constructor(map?: {
|
|
3950
4223
|
[key: string]: any;
|
|
3951
4224
|
});
|
|
3952
4225
|
}
|
|
3953
|
-
export declare class
|
|
3954
|
-
/**
|
|
3955
|
-
* @example
|
|
3956
|
-
* master
|
|
3957
|
-
*/
|
|
3958
|
-
branch?: string;
|
|
3959
|
-
/**
|
|
3960
|
-
* @example
|
|
3961
|
-
* code-20210111103721-xxxxxxx
|
|
3962
|
-
*/
|
|
3963
|
-
codeSourceId?: string;
|
|
4226
|
+
export declare class StopTensorboardResponseBody extends $dara.Model {
|
|
3964
4227
|
/**
|
|
3965
4228
|
* @example
|
|
3966
|
-
*
|
|
4229
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
3967
4230
|
*/
|
|
3968
|
-
|
|
4231
|
+
requestId?: string;
|
|
3969
4232
|
/**
|
|
3970
4233
|
* @example
|
|
3971
|
-
*
|
|
4234
|
+
* tensorboard-20210114104214-xxxxxxxx
|
|
3972
4235
|
*/
|
|
3973
|
-
|
|
4236
|
+
tensorboardId?: string;
|
|
3974
4237
|
static names(): {
|
|
3975
4238
|
[key: string]: string;
|
|
3976
4239
|
};
|
|
3977
4240
|
static types(): {
|
|
3978
4241
|
[key: string]: any;
|
|
3979
4242
|
};
|
|
4243
|
+
validate(): void;
|
|
3980
4244
|
constructor(map?: {
|
|
3981
4245
|
[key: string]: any;
|
|
3982
4246
|
});
|
|
3983
4247
|
}
|
|
3984
|
-
export declare class
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
dataSourceVersion?: string;
|
|
3991
|
-
/**
|
|
3992
|
-
* @example
|
|
3993
|
-
* /root/data
|
|
3994
|
-
*/
|
|
3995
|
-
mountPath?: string;
|
|
3996
|
-
options?: string;
|
|
3997
|
-
/**
|
|
3998
|
-
* @example
|
|
3999
|
-
* oss://bucket.oss-cn-hangzhou-internal.aliyuncs.com/path/
|
|
4000
|
-
*/
|
|
4001
|
-
uri?: string;
|
|
4248
|
+
export declare class StopTensorboardResponse extends $dara.Model {
|
|
4249
|
+
headers?: {
|
|
4250
|
+
[key: string]: string;
|
|
4251
|
+
};
|
|
4252
|
+
statusCode?: number;
|
|
4253
|
+
body?: StopTensorboardResponseBody;
|
|
4002
4254
|
static names(): {
|
|
4003
4255
|
[key: string]: string;
|
|
4004
4256
|
};
|
|
4005
4257
|
static types(): {
|
|
4006
4258
|
[key: string]: any;
|
|
4007
4259
|
};
|
|
4260
|
+
validate(): void;
|
|
4008
4261
|
constructor(map?: {
|
|
4009
4262
|
[key: string]: any;
|
|
4010
4263
|
});
|
|
4011
4264
|
}
|
|
4012
|
-
export declare class
|
|
4013
|
-
|
|
4014
|
-
extendedCIDRs?: string[];
|
|
4015
|
-
/**
|
|
4016
|
-
* @example
|
|
4017
|
-
* sg-abcdef****
|
|
4018
|
-
*/
|
|
4019
|
-
securityGroupId?: string;
|
|
4020
|
-
/**
|
|
4021
|
-
* @example
|
|
4022
|
-
* vs-abcdef****
|
|
4023
|
-
*/
|
|
4024
|
-
switchId?: string;
|
|
4265
|
+
export declare class UpdateJobRequest extends $dara.Model {
|
|
4266
|
+
accessibility?: string;
|
|
4025
4267
|
/**
|
|
4026
4268
|
* @example
|
|
4027
|
-
*
|
|
4269
|
+
* 5
|
|
4028
4270
|
*/
|
|
4029
|
-
|
|
4271
|
+
priority?: number;
|
|
4030
4272
|
static names(): {
|
|
4031
4273
|
[key: string]: string;
|
|
4032
4274
|
};
|
|
4033
4275
|
static types(): {
|
|
4034
4276
|
[key: string]: any;
|
|
4035
4277
|
};
|
|
4278
|
+
validate(): void;
|
|
4036
4279
|
constructor(map?: {
|
|
4037
4280
|
[key: string]: any;
|
|
4038
4281
|
});
|
|
4039
4282
|
}
|
|
4040
|
-
export declare class
|
|
4041
|
-
/**
|
|
4042
|
-
* @example
|
|
4043
|
-
* master
|
|
4044
|
-
*/
|
|
4045
|
-
branch?: string;
|
|
4046
|
-
/**
|
|
4047
|
-
* @example
|
|
4048
|
-
* code******
|
|
4049
|
-
*/
|
|
4050
|
-
codeSourceId?: string;
|
|
4283
|
+
export declare class UpdateJobResponseBody extends $dara.Model {
|
|
4051
4284
|
/**
|
|
4052
4285
|
* @example
|
|
4053
|
-
*
|
|
4286
|
+
* dlc*************
|
|
4054
4287
|
*/
|
|
4055
|
-
|
|
4288
|
+
jobId?: string;
|
|
4056
4289
|
/**
|
|
4057
4290
|
* @example
|
|
4058
|
-
*
|
|
4291
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
4059
4292
|
*/
|
|
4060
|
-
|
|
4293
|
+
requestId?: string;
|
|
4061
4294
|
static names(): {
|
|
4062
4295
|
[key: string]: string;
|
|
4063
4296
|
};
|
|
4064
4297
|
static types(): {
|
|
4065
4298
|
[key: string]: any;
|
|
4066
4299
|
};
|
|
4300
|
+
validate(): void;
|
|
4067
4301
|
constructor(map?: {
|
|
4068
4302
|
[key: string]: any;
|
|
4069
4303
|
});
|
|
4070
4304
|
}
|
|
4071
|
-
export declare class
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
/**
|
|
4078
|
-
* @example
|
|
4079
|
-
* /mnt/data/
|
|
4080
|
-
*/
|
|
4081
|
-
mountPath?: string;
|
|
4082
|
-
/**
|
|
4083
|
-
* @example
|
|
4084
|
-
* oss://bucket.oss-cn-hangzhou-internal.aliyuncs.com/path/
|
|
4085
|
-
*/
|
|
4086
|
-
uri?: string;
|
|
4305
|
+
export declare class UpdateJobResponse extends $dara.Model {
|
|
4306
|
+
headers?: {
|
|
4307
|
+
[key: string]: string;
|
|
4308
|
+
};
|
|
4309
|
+
statusCode?: number;
|
|
4310
|
+
body?: UpdateJobResponseBody;
|
|
4087
4311
|
static names(): {
|
|
4088
4312
|
[key: string]: string;
|
|
4089
4313
|
};
|
|
4090
4314
|
static types(): {
|
|
4091
4315
|
[key: string]: any;
|
|
4092
4316
|
};
|
|
4317
|
+
validate(): void;
|
|
4093
4318
|
constructor(map?: {
|
|
4094
4319
|
[key: string]: any;
|
|
4095
4320
|
});
|
|
4096
4321
|
}
|
|
4097
|
-
export declare class
|
|
4098
|
-
|
|
4099
|
-
* @example
|
|
4100
|
-
* 2021-01-12T14:36:01Z
|
|
4101
|
-
*/
|
|
4102
|
-
gmtCreateTime?: string;
|
|
4103
|
-
/**
|
|
4104
|
-
* @example
|
|
4105
|
-
* 2021-01-12T14:36:01Z
|
|
4106
|
-
*/
|
|
4107
|
-
gmtFinishTime?: string;
|
|
4108
|
-
/**
|
|
4109
|
-
* @example
|
|
4110
|
-
* 2021-01-12T14:36:01Z
|
|
4111
|
-
*/
|
|
4112
|
-
gmtStartTime?: string;
|
|
4113
|
-
/**
|
|
4114
|
-
* @example
|
|
4115
|
-
* 10.0.1.3
|
|
4116
|
-
*/
|
|
4117
|
-
ip?: string;
|
|
4118
|
-
/**
|
|
4119
|
-
* @example
|
|
4120
|
-
* Worker
|
|
4121
|
-
*/
|
|
4122
|
-
podId?: string;
|
|
4123
|
-
/**
|
|
4124
|
-
* @example
|
|
4125
|
-
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
4126
|
-
*/
|
|
4127
|
-
podUid?: string;
|
|
4128
|
-
/**
|
|
4129
|
-
* @example
|
|
4130
|
-
* Normal
|
|
4131
|
-
*/
|
|
4132
|
-
resourceType?: string;
|
|
4133
|
-
/**
|
|
4134
|
-
* @example
|
|
4135
|
-
* Failed
|
|
4136
|
-
*/
|
|
4137
|
-
status?: string;
|
|
4322
|
+
export declare class UpdateTensorboardRequest extends $dara.Model {
|
|
4323
|
+
accessibility?: string;
|
|
4138
4324
|
/**
|
|
4139
4325
|
* @example
|
|
4140
|
-
*
|
|
4326
|
+
* MaxRunningTimeMinutes
|
|
4141
4327
|
*/
|
|
4142
|
-
|
|
4328
|
+
maxRunningTimeMinutes?: number;
|
|
4329
|
+
priority?: string;
|
|
4143
4330
|
/**
|
|
4144
4331
|
* @example
|
|
4145
|
-
*
|
|
4332
|
+
* 380
|
|
4146
4333
|
*/
|
|
4147
|
-
|
|
4334
|
+
workspaceId?: string;
|
|
4148
4335
|
static names(): {
|
|
4149
4336
|
[key: string]: string;
|
|
4150
4337
|
};
|
|
4151
4338
|
static types(): {
|
|
4152
4339
|
[key: string]: any;
|
|
4153
4340
|
};
|
|
4341
|
+
validate(): void;
|
|
4154
4342
|
constructor(map?: {
|
|
4155
4343
|
[key: string]: any;
|
|
4156
4344
|
});
|
|
4157
4345
|
}
|
|
4158
|
-
export declare class
|
|
4159
|
-
/**
|
|
4160
|
-
* @example
|
|
4161
|
-
* 2021-01-12T14:36:01Z
|
|
4162
|
-
*/
|
|
4163
|
-
gmtCreateTime?: string;
|
|
4164
|
-
/**
|
|
4165
|
-
* @example
|
|
4166
|
-
* 2021-01-12T15:36:05Z
|
|
4167
|
-
*/
|
|
4168
|
-
gmtFinishTime?: string;
|
|
4169
|
-
/**
|
|
4170
|
-
* @example
|
|
4171
|
-
* 2021-01-12T14:36:01Z
|
|
4172
|
-
*/
|
|
4173
|
-
gmtStartTime?: string;
|
|
4174
|
-
historyPods?: GetJobResponseBodyPodsHistoryPods[];
|
|
4175
|
-
/**
|
|
4176
|
-
* @example
|
|
4177
|
-
* 10.0.1.2
|
|
4178
|
-
*/
|
|
4179
|
-
ip?: string;
|
|
4180
|
-
/**
|
|
4181
|
-
* @example
|
|
4182
|
-
* Worker
|
|
4183
|
-
*/
|
|
4184
|
-
podId?: string;
|
|
4185
|
-
/**
|
|
4186
|
-
* @example
|
|
4187
|
-
* fe846462-af2c-4521-bd6f-96787a57591d
|
|
4188
|
-
*/
|
|
4189
|
-
podUid?: string;
|
|
4190
|
-
/**
|
|
4191
|
-
* @example
|
|
4192
|
-
* Normal
|
|
4193
|
-
*/
|
|
4194
|
-
resourceType?: string;
|
|
4195
|
-
/**
|
|
4196
|
-
* @example
|
|
4197
|
-
* Running
|
|
4198
|
-
*/
|
|
4199
|
-
status?: string;
|
|
4346
|
+
export declare class UpdateTensorboardResponseBody extends $dara.Model {
|
|
4200
4347
|
/**
|
|
4201
4348
|
* @example
|
|
4202
|
-
*
|
|
4349
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
4203
4350
|
*/
|
|
4204
|
-
|
|
4351
|
+
requestId?: string;
|
|
4205
4352
|
/**
|
|
4206
4353
|
* @example
|
|
4207
|
-
*
|
|
4354
|
+
* tensorboard-20210114104214-xxxxxxxx
|
|
4208
4355
|
*/
|
|
4209
|
-
|
|
4356
|
+
tensorboardId?: string;
|
|
4210
4357
|
static names(): {
|
|
4211
4358
|
[key: string]: string;
|
|
4212
4359
|
};
|
|
4213
4360
|
static types(): {
|
|
4214
4361
|
[key: string]: any;
|
|
4215
4362
|
};
|
|
4363
|
+
validate(): void;
|
|
4216
4364
|
constructor(map?: {
|
|
4217
4365
|
[key: string]: any;
|
|
4218
4366
|
});
|
|
4219
4367
|
}
|
|
4220
|
-
export declare class
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
*/
|
|
4227
|
-
securityGroupId?: string;
|
|
4228
|
-
/**
|
|
4229
|
-
* @example
|
|
4230
|
-
* vs-abcdef****
|
|
4231
|
-
*/
|
|
4232
|
-
switchId?: string;
|
|
4233
|
-
/**
|
|
4234
|
-
* @example
|
|
4235
|
-
* vpc-abcdef****
|
|
4236
|
-
*/
|
|
4237
|
-
vpcId?: string;
|
|
4368
|
+
export declare class UpdateTensorboardResponse extends $dara.Model {
|
|
4369
|
+
headers?: {
|
|
4370
|
+
[key: string]: string;
|
|
4371
|
+
};
|
|
4372
|
+
statusCode?: number;
|
|
4373
|
+
body?: UpdateTensorboardResponseBody;
|
|
4238
4374
|
static names(): {
|
|
4239
4375
|
[key: string]: string;
|
|
4240
4376
|
};
|
|
4241
4377
|
static types(): {
|
|
4242
4378
|
[key: string]: any;
|
|
4243
4379
|
};
|
|
4380
|
+
validate(): void;
|
|
4244
4381
|
constructor(map?: {
|
|
4245
4382
|
[key: string]: any;
|
|
4246
4383
|
});
|
|
4247
4384
|
}
|
|
4248
4385
|
export default class Client extends OpenApi {
|
|
4249
|
-
constructor(config: $
|
|
4386
|
+
constructor(config: $OpenApiUtil.Config);
|
|
4250
4387
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
4251
4388
|
[key: string]: string;
|
|
4252
4389
|
}, endpoint: string): string;
|
|
@@ -4260,7 +4397,7 @@ export default class Client extends OpenApi {
|
|
|
4260
4397
|
*/
|
|
4261
4398
|
createJobWithOptions(request: CreateJobRequest, headers: {
|
|
4262
4399
|
[key: string]: string;
|
|
4263
|
-
}, runtime: $
|
|
4400
|
+
}, runtime: $dara.RuntimeOptions): Promise<CreateJobResponse>;
|
|
4264
4401
|
/**
|
|
4265
4402
|
* 创建一个DLC作业
|
|
4266
4403
|
*
|
|
@@ -4278,7 +4415,7 @@ export default class Client extends OpenApi {
|
|
|
4278
4415
|
*/
|
|
4279
4416
|
createTensorboardWithOptions(request: CreateTensorboardRequest, headers: {
|
|
4280
4417
|
[key: string]: string;
|
|
4281
|
-
}, runtime: $
|
|
4418
|
+
}, runtime: $dara.RuntimeOptions): Promise<CreateTensorboardResponse>;
|
|
4282
4419
|
/**
|
|
4283
4420
|
* 创建一个Tensorboard
|
|
4284
4421
|
*
|
|
@@ -4295,7 +4432,7 @@ export default class Client extends OpenApi {
|
|
|
4295
4432
|
*/
|
|
4296
4433
|
deleteJobWithOptions(JobId: string, headers: {
|
|
4297
4434
|
[key: string]: string;
|
|
4298
|
-
}, runtime: $
|
|
4435
|
+
}, runtime: $dara.RuntimeOptions): Promise<DeleteJobResponse>;
|
|
4299
4436
|
/**
|
|
4300
4437
|
* 删除一个DLC作业
|
|
4301
4438
|
* @returns DeleteJobResponse
|
|
@@ -4311,7 +4448,7 @@ export default class Client extends OpenApi {
|
|
|
4311
4448
|
*/
|
|
4312
4449
|
deleteTensorboardWithOptions(TensorboardId: string, request: DeleteTensorboardRequest, headers: {
|
|
4313
4450
|
[key: string]: string;
|
|
4314
|
-
}, runtime: $
|
|
4451
|
+
}, runtime: $dara.RuntimeOptions): Promise<DeleteTensorboardResponse>;
|
|
4315
4452
|
/**
|
|
4316
4453
|
* 删除一个数据源配置
|
|
4317
4454
|
*
|
|
@@ -4329,7 +4466,7 @@ export default class Client extends OpenApi {
|
|
|
4329
4466
|
*/
|
|
4330
4467
|
getJobWithOptions(JobId: string, request: GetJobRequest, headers: {
|
|
4331
4468
|
[key: string]: string;
|
|
4332
|
-
}, runtime: $
|
|
4469
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetJobResponse>;
|
|
4333
4470
|
/**
|
|
4334
4471
|
* 获取一个DLC作业详情
|
|
4335
4472
|
*
|
|
@@ -4347,7 +4484,7 @@ export default class Client extends OpenApi {
|
|
|
4347
4484
|
*/
|
|
4348
4485
|
getJobEventsWithOptions(JobId: string, request: GetJobEventsRequest, headers: {
|
|
4349
4486
|
[key: string]: string;
|
|
4350
|
-
}, runtime: $
|
|
4487
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetJobEventsResponse>;
|
|
4351
4488
|
/**
|
|
4352
4489
|
* 获取作业的事件
|
|
4353
4490
|
*
|
|
@@ -4365,7 +4502,7 @@ export default class Client extends OpenApi {
|
|
|
4365
4502
|
*/
|
|
4366
4503
|
getJobMetricsWithOptions(JobId: string, request: GetJobMetricsRequest, headers: {
|
|
4367
4504
|
[key: string]: string;
|
|
4368
|
-
}, runtime: $
|
|
4505
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetJobMetricsResponse>;
|
|
4369
4506
|
/**
|
|
4370
4507
|
* 获取一个作业的资源监控指标
|
|
4371
4508
|
*
|
|
@@ -4383,7 +4520,7 @@ export default class Client extends OpenApi {
|
|
|
4383
4520
|
*/
|
|
4384
4521
|
getJobSanityCheckResultWithOptions(JobId: string, request: GetJobSanityCheckResultRequest, headers: {
|
|
4385
4522
|
[key: string]: string;
|
|
4386
|
-
}, runtime: $
|
|
4523
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetJobSanityCheckResultResponse>;
|
|
4387
4524
|
/**
|
|
4388
4525
|
* 获取DLC作业某次算力健康检测结果
|
|
4389
4526
|
*
|
|
@@ -4401,7 +4538,7 @@ export default class Client extends OpenApi {
|
|
|
4401
4538
|
*/
|
|
4402
4539
|
getPodEventsWithOptions(JobId: string, PodId: string, request: GetPodEventsRequest, headers: {
|
|
4403
4540
|
[key: string]: string;
|
|
4404
|
-
}, runtime: $
|
|
4541
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetPodEventsResponse>;
|
|
4405
4542
|
/**
|
|
4406
4543
|
* 获取作业中一个运行实例的系统事件
|
|
4407
4544
|
*
|
|
@@ -4419,7 +4556,7 @@ export default class Client extends OpenApi {
|
|
|
4419
4556
|
*/
|
|
4420
4557
|
getPodLogsWithOptions(JobId: string, PodId: string, request: GetPodLogsRequest, headers: {
|
|
4421
4558
|
[key: string]: string;
|
|
4422
|
-
}, runtime: $
|
|
4559
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetPodLogsResponse>;
|
|
4423
4560
|
/**
|
|
4424
4561
|
* 获取作业中一个运行实例的日志
|
|
4425
4562
|
*
|
|
@@ -4437,7 +4574,7 @@ export default class Client extends OpenApi {
|
|
|
4437
4574
|
*/
|
|
4438
4575
|
getTensorboardWithOptions(TensorboardId: string, request: GetTensorboardRequest, headers: {
|
|
4439
4576
|
[key: string]: string;
|
|
4440
|
-
}, runtime: $
|
|
4577
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetTensorboardResponse>;
|
|
4441
4578
|
/**
|
|
4442
4579
|
* 获取一个Tensorboard
|
|
4443
4580
|
*
|
|
@@ -4455,7 +4592,7 @@ export default class Client extends OpenApi {
|
|
|
4455
4592
|
*/
|
|
4456
4593
|
getTensorboardSharedUrlWithOptions(TensorboardId: string, request: GetTensorboardSharedUrlRequest, headers: {
|
|
4457
4594
|
[key: string]: string;
|
|
4458
|
-
}, runtime: $
|
|
4595
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetTensorboardSharedUrlResponse>;
|
|
4459
4596
|
/**
|
|
4460
4597
|
* Get the shared url for tensorboard
|
|
4461
4598
|
*
|
|
@@ -4473,7 +4610,7 @@ export default class Client extends OpenApi {
|
|
|
4473
4610
|
*/
|
|
4474
4611
|
getTokenWithOptions(request: GetTokenRequest, headers: {
|
|
4475
4612
|
[key: string]: string;
|
|
4476
|
-
}, runtime: $
|
|
4613
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetTokenResponse>;
|
|
4477
4614
|
/**
|
|
4478
4615
|
* 获取用户Token
|
|
4479
4616
|
*
|
|
@@ -4491,7 +4628,7 @@ export default class Client extends OpenApi {
|
|
|
4491
4628
|
*/
|
|
4492
4629
|
getWebTerminalWithOptions(JobId: string, PodId: string, request: GetWebTerminalRequest, headers: {
|
|
4493
4630
|
[key: string]: string;
|
|
4494
|
-
}, runtime: $
|
|
4631
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetWebTerminalResponse>;
|
|
4495
4632
|
/**
|
|
4496
4633
|
* Get the url for accessing pod's terminal in k8s
|
|
4497
4634
|
*
|
|
@@ -4509,7 +4646,7 @@ export default class Client extends OpenApi {
|
|
|
4509
4646
|
*/
|
|
4510
4647
|
listEcsSpecsWithOptions(request: ListEcsSpecsRequest, headers: {
|
|
4511
4648
|
[key: string]: string;
|
|
4512
|
-
}, runtime: $
|
|
4649
|
+
}, runtime: $dara.RuntimeOptions): Promise<ListEcsSpecsResponse>;
|
|
4513
4650
|
/**
|
|
4514
4651
|
* ListEcsSpecs
|
|
4515
4652
|
*
|
|
@@ -4527,7 +4664,7 @@ export default class Client extends OpenApi {
|
|
|
4527
4664
|
*/
|
|
4528
4665
|
listJobSanityCheckResultsWithOptions(JobId: string, request: ListJobSanityCheckResultsRequest, headers: {
|
|
4529
4666
|
[key: string]: string;
|
|
4530
|
-
}, runtime: $
|
|
4667
|
+
}, runtime: $dara.RuntimeOptions): Promise<ListJobSanityCheckResultsResponse>;
|
|
4531
4668
|
/**
|
|
4532
4669
|
* 获取某个DLC作业的多次算力健康检测结果
|
|
4533
4670
|
*
|
|
@@ -4545,7 +4682,7 @@ export default class Client extends OpenApi {
|
|
|
4545
4682
|
*/
|
|
4546
4683
|
listJobsWithOptions(tmpReq: ListJobsRequest, headers: {
|
|
4547
4684
|
[key: string]: string;
|
|
4548
|
-
}, runtime: $
|
|
4685
|
+
}, runtime: $dara.RuntimeOptions): Promise<ListJobsResponse>;
|
|
4549
4686
|
/**
|
|
4550
4687
|
* 根据过滤条件获取DLC作业列表
|
|
4551
4688
|
*
|
|
@@ -4563,7 +4700,7 @@ export default class Client extends OpenApi {
|
|
|
4563
4700
|
*/
|
|
4564
4701
|
listTensorboardsWithOptions(request: ListTensorboardsRequest, headers: {
|
|
4565
4702
|
[key: string]: string;
|
|
4566
|
-
}, runtime: $
|
|
4703
|
+
}, runtime: $dara.RuntimeOptions): Promise<ListTensorboardsResponse>;
|
|
4567
4704
|
/**
|
|
4568
4705
|
* 获取Tensorboard
|
|
4569
4706
|
*
|
|
@@ -4581,7 +4718,7 @@ export default class Client extends OpenApi {
|
|
|
4581
4718
|
*/
|
|
4582
4719
|
startTensorboardWithOptions(TensorboardId: string, request: StartTensorboardRequest, headers: {
|
|
4583
4720
|
[key: string]: string;
|
|
4584
|
-
}, runtime: $
|
|
4721
|
+
}, runtime: $dara.RuntimeOptions): Promise<StartTensorboardResponse>;
|
|
4585
4722
|
/**
|
|
4586
4723
|
* 开始运行tensorboard
|
|
4587
4724
|
*
|
|
@@ -4598,7 +4735,7 @@ export default class Client extends OpenApi {
|
|
|
4598
4735
|
*/
|
|
4599
4736
|
stopJobWithOptions(JobId: string, headers: {
|
|
4600
4737
|
[key: string]: string;
|
|
4601
|
-
}, runtime: $
|
|
4738
|
+
}, runtime: $dara.RuntimeOptions): Promise<StopJobResponse>;
|
|
4602
4739
|
/**
|
|
4603
4740
|
* 停止一个DLC作业
|
|
4604
4741
|
* @returns StopJobResponse
|
|
@@ -4614,7 +4751,7 @@ export default class Client extends OpenApi {
|
|
|
4614
4751
|
*/
|
|
4615
4752
|
stopTensorboardWithOptions(TensorboardId: string, request: StopTensorboardRequest, headers: {
|
|
4616
4753
|
[key: string]: string;
|
|
4617
|
-
}, runtime: $
|
|
4754
|
+
}, runtime: $dara.RuntimeOptions): Promise<StopTensorboardResponse>;
|
|
4618
4755
|
/**
|
|
4619
4756
|
* 停止运行tensorboard
|
|
4620
4757
|
*
|
|
@@ -4632,7 +4769,7 @@ export default class Client extends OpenApi {
|
|
|
4632
4769
|
*/
|
|
4633
4770
|
updateJobWithOptions(JobId: string, request: UpdateJobRequest, headers: {
|
|
4634
4771
|
[key: string]: string;
|
|
4635
|
-
}, runtime: $
|
|
4772
|
+
}, runtime: $dara.RuntimeOptions): Promise<UpdateJobResponse>;
|
|
4636
4773
|
/**
|
|
4637
4774
|
* 更新一个Job
|
|
4638
4775
|
*
|
|
@@ -4650,7 +4787,7 @@ export default class Client extends OpenApi {
|
|
|
4650
4787
|
*/
|
|
4651
4788
|
updateTensorboardWithOptions(TensorboardId: string, request: UpdateTensorboardRequest, headers: {
|
|
4652
4789
|
[key: string]: string;
|
|
4653
|
-
}, runtime: $
|
|
4790
|
+
}, runtime: $dara.RuntimeOptions): Promise<UpdateTensorboardResponse>;
|
|
4654
4791
|
/**
|
|
4655
4792
|
* 更新tensorboard
|
|
4656
4793
|
*
|