tencentcloud-sdk-nodejs-dlc 4.1.230 → 4.1.232
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
|
@@ -10028,15 +10028,15 @@ export interface DescribeTaskLogResponse {
|
|
|
10028
10028
|
*/
|
|
10029
10029
|
export interface DescribeTasksResponse {
|
|
10030
10030
|
/**
|
|
10031
|
-
*
|
|
10031
|
+
* <p>任务对象列表。</p>
|
|
10032
10032
|
*/
|
|
10033
10033
|
TaskList?: Array<TaskResponseInfo>;
|
|
10034
10034
|
/**
|
|
10035
|
-
*
|
|
10035
|
+
* <p>实例总数。</p>
|
|
10036
10036
|
*/
|
|
10037
10037
|
TotalCount?: number;
|
|
10038
10038
|
/**
|
|
10039
|
-
*
|
|
10039
|
+
* <p>任务概览信息</p>
|
|
10040
10040
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10041
10041
|
*/
|
|
10042
10042
|
TasksOverview?: TasksOverview;
|
|
@@ -10413,44 +10413,39 @@ export interface AddOptimizerEnginesResponse {
|
|
|
10413
10413
|
*/
|
|
10414
10414
|
export interface DescribeTasksRequest {
|
|
10415
10415
|
/**
|
|
10416
|
-
*
|
|
10416
|
+
* <p>返回数量,默认为10,最大值为100。</p>
|
|
10417
10417
|
*/
|
|
10418
10418
|
Limit?: number;
|
|
10419
10419
|
/**
|
|
10420
|
-
*
|
|
10420
|
+
* <p>偏移量,默认为0。</p>
|
|
10421
10421
|
*/
|
|
10422
10422
|
Offset?: number;
|
|
10423
10423
|
/**
|
|
10424
|
-
*
|
|
10425
|
-
task-id - String - (任务ID准确过滤)task-id取值形如:e386471f-139a-4e59-877f-50ece8135b99。
|
|
10426
|
-
task-state - String - (任务状态过滤)取值范围 0(初始化), 1(运行中), 2(成功), -1(失败)。
|
|
10427
|
-
task-sql-keyword - String - (SQL语句关键字模糊过滤)取值形如:DROP TABLE。
|
|
10428
|
-
task-operator- string (子uin过滤)
|
|
10429
|
-
task-kind - string (任务类型过滤)
|
|
10424
|
+
* <p>过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,其中task-id支持最大50个过滤个数,其他过滤参数支持的总数不超过5个。<br>task-id - String - (任务ID准确过滤)task-id取值形如:e386471f-139a-4e59-877f-50ece8135b99。<br>task-state - String - (任务状态过滤)取值范围 0(初始化), 1(运行中), 2(成功), -1(失败)。<br>task-sql-keyword - String - (SQL语句关键字模糊过滤)取值形如:DROP TABLE。<br>task-operator- string (子uin过滤)<br>task-kind - string (任务类型过滤)</p>
|
|
10430
10425
|
*/
|
|
10431
10426
|
Filters?: Array<Filter>;
|
|
10432
10427
|
/**
|
|
10433
|
-
*
|
|
10428
|
+
* <p>排序字段,支持如下字段类型,create-time(创建时间,默认)、update-time(更新时间)</p>
|
|
10434
10429
|
*/
|
|
10435
10430
|
SortBy?: string;
|
|
10436
10431
|
/**
|
|
10437
|
-
*
|
|
10432
|
+
* <p>排序方式,desc表示正序,asc表示反序, 默认为asc。</p>
|
|
10438
10433
|
*/
|
|
10439
10434
|
Sorting?: string;
|
|
10440
10435
|
/**
|
|
10441
|
-
*
|
|
10436
|
+
* <p>起始时间点,格式为yyyy-mm-dd HH:MM:SS。默认为45天前的当前时刻</p>
|
|
10442
10437
|
*/
|
|
10443
10438
|
StartTime?: string;
|
|
10444
10439
|
/**
|
|
10445
|
-
*
|
|
10440
|
+
* <p>结束时间点,格式为yyyy-mm-dd HH:MM:SS时间跨度在(0,30天],支持最近45天数据查询。默认为当前时刻</p>
|
|
10446
10441
|
*/
|
|
10447
10442
|
EndTime?: string;
|
|
10448
10443
|
/**
|
|
10449
|
-
*
|
|
10444
|
+
* <p>数据引擎名称,用于筛选</p>
|
|
10450
10445
|
*/
|
|
10451
10446
|
DataEngineName?: string;
|
|
10452
10447
|
/**
|
|
10453
|
-
* spark
|
|
10448
|
+
* <p>spark引擎资源组名称</p>
|
|
10454
10449
|
*/
|
|
10455
10450
|
ResourceGroupName?: string;
|
|
10456
10451
|
}
|