tencentcloud-sdk-nodejs-dlc 4.1.267 → 4.1.269

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-dlc",
3
- "version": "4.1.267",
3
+ "version": "4.1.269",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -151,7 +151,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
151
151
  */
152
152
  CreateStandardEngineResourceGroup(req: CreateStandardEngineResourceGroupRequest, cb?: (error: string, rep: CreateStandardEngineResourceGroupResponse) => void): Promise<CreateStandardEngineResourceGroupResponse>;
153
153
  /**
154
- * 该接口(DescribleTasks)用于查询任务列表
154
+ * 该接口(DescribeTasks)用于查询任务列表
155
155
  */
156
156
  DescribeTasks(req: DescribeTasksRequest, cb?: (error: string, rep: DescribeTasksResponse) => void): Promise<DescribeTasksResponse>;
157
157
  /**
@@ -245,7 +245,7 @@ class Client extends TencentCloudCommon.AbstractClient {
245
245
  return this.request("CreateStandardEngineResourceGroup", req, cb);
246
246
  }
247
247
  /**
248
- * 该接口(DescribleTasks)用于查询任务列表
248
+ * 该接口(DescribeTasks)用于查询任务列表
249
249
  */
250
250
  async DescribeTasks(req, cb) {
251
251
  return this.request("DescribeTasks", req, cb);
@@ -381,11 +381,11 @@ export interface DescribeDMSDatabaseResponse {
381
381
  */
382
382
  export interface DescribeTaskListResponse {
383
383
  /**
384
- * 任务对象列表。
384
+ * <p>任务对象列表。</p>
385
385
  */
386
386
  TaskList?: Array<TaskFullRespInfo>;
387
387
  /**
388
- * 实例总数。
388
+ * <p>实例总数。</p>
389
389
  */
390
390
  TotalCount?: number;
391
391
  /**
@@ -1359,48 +1359,43 @@ export interface DescribeUserInfoResponse {
1359
1359
  */
1360
1360
  export interface DescribeTaskListRequest {
1361
1361
  /**
1362
- * 返回数量,默认为10,最大值为100
1362
+ * <p>返回数量,默认为10,最大值为100。</p>
1363
1363
  */
1364
1364
  Limit?: number;
1365
1365
  /**
1366
- * 偏移量,默认为0
1366
+ * <p>偏移量,默认为0。</p>
1367
1367
  */
1368
1368
  Offset?: number;
1369
1369
  /**
1370
- * 过滤条件,如下支持的过滤类型,传参Name应为以下其中一个,其中task-id支持最大50个过滤个数,其他过滤参数支持的总数不超过5个。
1371
- task-id - String - (任务ID准确过滤)task-id取值形如:e386471f-139a-4e59-877f-50ece8135b99。
1372
- task-state - String - (任务状态过滤)取值范围 0(初始化), 1(运行中), 2(成功), -1(失败)。
1373
- task-sql-keyword - String - (SQL语句关键字模糊过滤)取值形如:DROP TABLE。
1374
- task-operator- string (子uin过滤)
1375
- task-kind - string (任务类型过滤)
1370
+ * <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>
1376
1371
  */
1377
1372
  Filters?: Array<Filter>;
1378
1373
  /**
1379
- * 排序字段,支持如下字段类型,create-time(创建时间,默认)、update-time(更新时间)
1374
+ * <p>排序字段,支持如下字段类型,create-time(创建时间,默认)、update-time(更新时间)</p>
1380
1375
  */
1381
1376
  SortBy?: string;
1382
1377
  /**
1383
- * 排序方式,desc表示正序,asc表示反序, 默认为asc
1378
+ * <p>排序方式,desc表示正序,asc表示反序, 默认为asc。</p>
1384
1379
  */
1385
1380
  Sorting?: string;
1386
1381
  /**
1387
- * 起始时间点,格式为yyyy-mm-dd HH:MM:SS。默认为45天前的当前时刻
1382
+ * <p>起始时间点,格式为yyyy-mm-dd HH:MM:SS。默认为45天前的当前时刻</p>
1388
1383
  */
1389
1384
  StartTime?: string;
1390
1385
  /**
1391
- * 结束时间点,格式为yyyy-mm-dd HH:MM:SS时间跨度在(0,30天],支持最近45天数据查询。默认为当前时刻
1386
+ * <p>结束时间点,格式为yyyy-mm-dd HH:MM:SS时间跨度在(0,30天],支持最近45天数据查询。默认为当前时刻</p>
1392
1387
  */
1393
1388
  EndTime?: string;
1394
1389
  /**
1395
- * 数据引擎名称,用于筛选
1390
+ * <p>数据引擎名称,用于筛选</p>
1396
1391
  */
1397
1392
  DataEngineName?: string;
1398
1393
  /**
1399
- * spark引擎资源组名称
1394
+ * <p>spark引擎资源组名称</p>
1400
1395
  */
1401
1396
  ResourceGroupName?: string;
1402
1397
  /**
1403
- * 引擎id列表
1398
+ * <p>引擎id列表</p>
1404
1399
  */
1405
1400
  HouseIds?: Array<string>;
1406
1401
  }