tencentcloud-sdk-nodejs-thpc 4.1.212 → 4.1.221
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/package.json
CHANGED
|
@@ -2471,45 +2471,47 @@ export interface InternetAccessible {
|
|
|
2471
2471
|
*/
|
|
2472
2472
|
export interface JobView {
|
|
2473
2473
|
/**
|
|
2474
|
-
*
|
|
2474
|
+
* <p>作业ID</p>
|
|
2475
2475
|
*/
|
|
2476
2476
|
JobId?: string;
|
|
2477
2477
|
/**
|
|
2478
|
-
*
|
|
2478
|
+
* <p>作业名称</p>
|
|
2479
2479
|
*/
|
|
2480
2480
|
JobName?: string;
|
|
2481
2481
|
/**
|
|
2482
|
-
*
|
|
2482
|
+
* <p>作业描述</p>
|
|
2483
2483
|
*/
|
|
2484
2484
|
JobDescription?: string;
|
|
2485
2485
|
/**
|
|
2486
|
-
*
|
|
2486
|
+
* <p>作业创建者</p>
|
|
2487
|
+
*/
|
|
2488
|
+
Creator?: string;
|
|
2489
|
+
/**
|
|
2490
|
+
* <p>作业优先级</p>
|
|
2487
2491
|
*/
|
|
2488
2492
|
Priority?: number;
|
|
2489
2493
|
/**
|
|
2490
|
-
*
|
|
2491
|
-
FAILED
|
|
2492
|
-
|
|
2494
|
+
* <p>作业状态,包括CREATED, QUEING, STARTNG, RUNING, TERMINATING, TERMINATED, SUCCESS,<br>FAILED</p>
|
|
2493
2495
|
*/
|
|
2494
2496
|
JobState?: string;
|
|
2495
2497
|
/**
|
|
2496
|
-
*
|
|
2498
|
+
* <p>作业所属集群ID</p>
|
|
2497
2499
|
*/
|
|
2498
2500
|
ClusterId?: string;
|
|
2499
2501
|
/**
|
|
2500
|
-
*
|
|
2502
|
+
* <p>作业所属队列名称</p>
|
|
2501
2503
|
*/
|
|
2502
2504
|
QueueName?: string;
|
|
2503
2505
|
/**
|
|
2504
|
-
*
|
|
2506
|
+
* <p>完成作业任务所需资源</p>
|
|
2505
2507
|
*/
|
|
2506
2508
|
OccupyResources?: string;
|
|
2507
2509
|
/**
|
|
2508
|
-
*
|
|
2510
|
+
* <p>作业任务创建时间</p>
|
|
2509
2511
|
*/
|
|
2510
2512
|
CreateTime?: string;
|
|
2511
2513
|
/**
|
|
2512
|
-
*
|
|
2514
|
+
* <p>作业任务结束时间</p>
|
|
2513
2515
|
*/
|
|
2514
2516
|
EndTime?: string;
|
|
2515
2517
|
}
|