tencentcloud-sdk-nodejs 4.1.64 → 4.1.65
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/es/common/sdk_version.js +1 -1
- package/es/services/bh/v20230418/bh_client.js +20 -2
- package/es/services/kms/v20190118/kms_client.js +59 -14
- package/es/services/lke/v20231130/lke_client.js +16 -4
- package/es/services/trocket/v20230308/trocket_client.js +5 -2
- package/es/services/wedata/v20210820/wedata_client.js +10 -4
- package/package.json +1 -1
- package/tencentcloud/common/abstract_client.d.ts +111 -13
- package/tencentcloud/common/abstract_client.js +82 -15
- package/tencentcloud/common/common_client.d.ts +7 -0
- package/tencentcloud/common/common_client.js +7 -0
- package/tencentcloud/common/cvm_role_credential.d.ts +6 -0
- package/tencentcloud/common/cvm_role_credential.js +10 -1
- package/tencentcloud/common/http/http_connection.js +1 -2
- package/tencentcloud/common/interface.d.ts +35 -36
- package/tencentcloud/common/interface.js +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/common/sign.js +1 -1
- package/tencentcloud/common/sse_response_model.d.ts +26 -2
- package/tencentcloud/common/sse_response_model.js +17 -2
- package/tencentcloud/services/bh/v20230418/bh_client.d.ts +27 -3
- package/tencentcloud/services/bh/v20230418/bh_client.js +39 -3
- package/tencentcloud/services/bh/v20230418/bh_models.d.ts +311 -56
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +25 -19
- package/tencentcloud/services/cdb/v20170320/cdb_client.js +25 -19
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +143 -107
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +44 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +12 -0
- package/tencentcloud/services/dsgc/v20190723/dsgc_client.d.ts +1 -3
- package/tencentcloud/services/dsgc/v20190723/dsgc_client.js +1 -3
- package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +93 -6
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +1 -1
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +5703 -5666
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +12 -2
- package/tencentcloud/services/kms/v20190118/kms_client.d.ts +76 -16
- package/tencentcloud/services/kms/v20190118/kms_client.js +112 -22
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +572 -53
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +21 -5
- package/tencentcloud/services/lke/v20231130/lke_client.js +30 -6
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +5094 -4554
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +0 -4
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +4 -0
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +14 -2
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +4 -0
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +10 -6
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +12 -6
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +195 -117
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +4 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +33 -9
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +15 -7
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +20 -8
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +256 -54
|
@@ -284,6 +284,36 @@ export interface DescribeStreamTaskLogListRequest {
|
|
|
284
284
|
*/
|
|
285
285
|
Keyword?: string;
|
|
286
286
|
}
|
|
287
|
+
/**
|
|
288
|
+
* 事件发布者信息
|
|
289
|
+
*/
|
|
290
|
+
export interface EventPublisherDTO {
|
|
291
|
+
/**
|
|
292
|
+
* 关键字,一般为任务id
|
|
293
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
294
|
+
*/
|
|
295
|
+
Key: string;
|
|
296
|
+
/**
|
|
297
|
+
* REST_API、KAFKA
|
|
298
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
299
|
+
*/
|
|
300
|
+
Type: string;
|
|
301
|
+
/**
|
|
302
|
+
* 创建时间
|
|
303
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
304
|
+
*/
|
|
305
|
+
CreationTs: string;
|
|
306
|
+
/**
|
|
307
|
+
* 配置信息
|
|
308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
309
|
+
*/
|
|
310
|
+
PropertiesList: Array<ParamInfoDs>;
|
|
311
|
+
/**
|
|
312
|
+
* 描述信息
|
|
313
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
314
|
+
*/
|
|
315
|
+
Description: string;
|
|
316
|
+
}
|
|
287
317
|
/**
|
|
288
318
|
* 数据源信息
|
|
289
319
|
*/
|
|
@@ -993,29 +1023,14 @@ export interface TaskInnerInfo {
|
|
|
993
1023
|
DependencyWorkflow?: string;
|
|
994
1024
|
}
|
|
995
1025
|
/**
|
|
996
|
-
*
|
|
1026
|
+
* DescribeDsTaskVersionInfo返回参数结构体
|
|
997
1027
|
*/
|
|
998
|
-
export interface
|
|
999
|
-
/**
|
|
1000
|
-
* cos地域
|
|
1001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1002
|
-
*/
|
|
1003
|
-
Region?: string;
|
|
1028
|
+
export interface DescribeDsTaskVersionInfoResponse {
|
|
1004
1029
|
/**
|
|
1005
|
-
*
|
|
1030
|
+
* 任务版本详情信息
|
|
1006
1031
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1007
1032
|
*/
|
|
1008
|
-
|
|
1009
|
-
/**
|
|
1010
|
-
* 桶名
|
|
1011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1012
|
-
*/
|
|
1013
|
-
Bucket?: string;
|
|
1014
|
-
/**
|
|
1015
|
-
* 终止点(针对私有云环境)
|
|
1016
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1017
|
-
*/
|
|
1018
|
-
EndPoint?: string;
|
|
1033
|
+
Data?: TaskVersionDsDTO;
|
|
1019
1034
|
/**
|
|
1020
1035
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1021
1036
|
*/
|
|
@@ -6056,7 +6071,7 @@ export interface DimensionScoreInfo {
|
|
|
6056
6071
|
*/
|
|
6057
6072
|
export interface DescribeTaskScriptResponse {
|
|
6058
6073
|
/**
|
|
6059
|
-
*
|
|
6074
|
+
* 任务脚本内容,BASE64编码
|
|
6060
6075
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6061
6076
|
*/
|
|
6062
6077
|
Data?: TaskScriptContent;
|
|
@@ -6295,6 +6310,35 @@ export interface TableLineageInfo {
|
|
|
6295
6310
|
*/
|
|
6296
6311
|
CollectJobId?: string;
|
|
6297
6312
|
}
|
|
6313
|
+
/**
|
|
6314
|
+
* GetCosToken返回参数结构体
|
|
6315
|
+
*/
|
|
6316
|
+
export interface GetCosTokenResponse {
|
|
6317
|
+
/**
|
|
6318
|
+
* cos地域
|
|
6319
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6320
|
+
*/
|
|
6321
|
+
Region?: string;
|
|
6322
|
+
/**
|
|
6323
|
+
* Token信息
|
|
6324
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6325
|
+
*/
|
|
6326
|
+
Token?: CosTokenResponse;
|
|
6327
|
+
/**
|
|
6328
|
+
* 桶名
|
|
6329
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6330
|
+
*/
|
|
6331
|
+
Bucket?: string;
|
|
6332
|
+
/**
|
|
6333
|
+
* 终止点(针对私有云环境)
|
|
6334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6335
|
+
*/
|
|
6336
|
+
EndPoint?: string;
|
|
6337
|
+
/**
|
|
6338
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6339
|
+
*/
|
|
6340
|
+
RequestId?: string;
|
|
6341
|
+
}
|
|
6298
6342
|
/**
|
|
6299
6343
|
* DescribeSchedulerInstanceStatus返回参数结构体
|
|
6300
6344
|
*/
|
|
@@ -13149,6 +13193,23 @@ export interface BatchModifyOpsOwnersResponse {
|
|
|
13149
13193
|
*/
|
|
13150
13194
|
RequestId?: string;
|
|
13151
13195
|
}
|
|
13196
|
+
/**
|
|
13197
|
+
* DescribeDsTaskVersionList请求参数结构体
|
|
13198
|
+
*/
|
|
13199
|
+
export interface DescribeDsTaskVersionListRequest {
|
|
13200
|
+
/**
|
|
13201
|
+
* 任务ID
|
|
13202
|
+
*/
|
|
13203
|
+
TaskId: string;
|
|
13204
|
+
/**
|
|
13205
|
+
* 项目ID
|
|
13206
|
+
*/
|
|
13207
|
+
ProjectId?: string;
|
|
13208
|
+
/**
|
|
13209
|
+
* 是否仅返回当前编辑版本
|
|
13210
|
+
*/
|
|
13211
|
+
IsOnlyCurrentEditingVersion?: boolean;
|
|
13212
|
+
}
|
|
13152
13213
|
/**
|
|
13153
13214
|
* CreateTaskAlarmRegular返回参数结构体
|
|
13154
13215
|
*/
|
|
@@ -15126,6 +15187,116 @@ export interface ListInstancesRequest {
|
|
|
15126
15187
|
*/
|
|
15127
15188
|
ScheduleTimeZone?: string;
|
|
15128
15189
|
}
|
|
15190
|
+
/**
|
|
15191
|
+
* TaskVersionVO
|
|
15192
|
+
*/
|
|
15193
|
+
export interface TaskVersionDsDTO {
|
|
15194
|
+
/**
|
|
15195
|
+
* 版本ID
|
|
15196
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15197
|
+
*/
|
|
15198
|
+
VersionId?: string;
|
|
15199
|
+
/**
|
|
15200
|
+
* 任务id
|
|
15201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15202
|
+
*/
|
|
15203
|
+
TaskId?: string;
|
|
15204
|
+
/**
|
|
15205
|
+
* 版本号
|
|
15206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15207
|
+
*/
|
|
15208
|
+
VersionNum?: string;
|
|
15209
|
+
/**
|
|
15210
|
+
* 版本备注
|
|
15211
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15212
|
+
*/
|
|
15213
|
+
VersionRemark?: string;
|
|
15214
|
+
/**
|
|
15215
|
+
* 版本创建人
|
|
15216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15217
|
+
*/
|
|
15218
|
+
Creator?: string;
|
|
15219
|
+
/**
|
|
15220
|
+
* 版本创建时间
|
|
15221
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15222
|
+
*/
|
|
15223
|
+
CreateTime?: string;
|
|
15224
|
+
/**
|
|
15225
|
+
* 版本更新时间
|
|
15226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15227
|
+
*/
|
|
15228
|
+
UpdateTime?: string;
|
|
15229
|
+
/**
|
|
15230
|
+
* 最新调度计划变更时间 生产态存储
|
|
15231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15232
|
+
*/
|
|
15233
|
+
LastSchedulerCommitTime?: string;
|
|
15234
|
+
/**
|
|
15235
|
+
* 版本是否正在使用
|
|
15236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15237
|
+
*/
|
|
15238
|
+
UsedVersion?: number;
|
|
15239
|
+
/**
|
|
15240
|
+
* 任务信息
|
|
15241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15242
|
+
*/
|
|
15243
|
+
TaskInfo?: TaskDsDTO;
|
|
15244
|
+
/**
|
|
15245
|
+
* 任务参数信息
|
|
15246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15247
|
+
*/
|
|
15248
|
+
TaskParaInfo?: Array<ParameterTaskDsDto>;
|
|
15249
|
+
/**
|
|
15250
|
+
* TaskInputParam输入参数
|
|
15251
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15252
|
+
*/
|
|
15253
|
+
TaskInputParam?: Array<ParameterTaskInDsDto>;
|
|
15254
|
+
/**
|
|
15255
|
+
* TaskOutputParam输出参数
|
|
15256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15257
|
+
*/
|
|
15258
|
+
TaskOutputParam?: Array<ParameterTaskOutDsDto>;
|
|
15259
|
+
/**
|
|
15260
|
+
* 任务上游依赖信息
|
|
15261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15262
|
+
*/
|
|
15263
|
+
TaskLinkInfo?: Array<TaskLinkDsDTO>;
|
|
15264
|
+
/**
|
|
15265
|
+
* 审批状态
|
|
15266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15267
|
+
*/
|
|
15268
|
+
ApproveStatus?: string;
|
|
15269
|
+
/**
|
|
15270
|
+
* 审批人名称
|
|
15271
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15272
|
+
*/
|
|
15273
|
+
ApproveName?: string;
|
|
15274
|
+
/**
|
|
15275
|
+
* 任务事件绑定
|
|
15276
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15277
|
+
*/
|
|
15278
|
+
TaskEventPublisher?: Array<EventPublisherDTO>;
|
|
15279
|
+
/**
|
|
15280
|
+
* 任务产出登记信息
|
|
15281
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15282
|
+
*/
|
|
15283
|
+
TaskRegisterOutputTable?: Array<TaskDataRegistryDTO>;
|
|
15284
|
+
/**
|
|
15285
|
+
* 循环依赖信息
|
|
15286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15287
|
+
*/
|
|
15288
|
+
TaskCycleLinkInfo?: Array<TaskCycleLinkDTO>;
|
|
15289
|
+
/**
|
|
15290
|
+
* 事件监听信息
|
|
15291
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15292
|
+
*/
|
|
15293
|
+
TaskEventListener?: Array<EventListenerDTO>;
|
|
15294
|
+
/**
|
|
15295
|
+
* 审批时间
|
|
15296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15297
|
+
*/
|
|
15298
|
+
ApproveTime?: string;
|
|
15299
|
+
}
|
|
15129
15300
|
/**
|
|
15130
15301
|
* RenewWorkflowOwnerDs请求参数结构体
|
|
15131
15302
|
*/
|
|
@@ -18643,7 +18814,7 @@ export interface ModifyTaskScriptRequest {
|
|
|
18643
18814
|
*/
|
|
18644
18815
|
TaskId: string;
|
|
18645
18816
|
/**
|
|
18646
|
-
*
|
|
18817
|
+
* 必填,脚本内容 base64编码
|
|
18647
18818
|
*/
|
|
18648
18819
|
ScriptContent?: string;
|
|
18649
18820
|
/**
|
|
@@ -19650,18 +19821,14 @@ export interface IntegrationNodeSchema {
|
|
|
19650
19821
|
Category?: string;
|
|
19651
19822
|
}
|
|
19652
19823
|
/**
|
|
19653
|
-
*
|
|
19824
|
+
* DescribeOpsWorkflows返回参数结构体
|
|
19654
19825
|
*/
|
|
19655
|
-
export interface
|
|
19826
|
+
export interface DescribeOpsWorkflowsResponse {
|
|
19656
19827
|
/**
|
|
19657
|
-
*
|
|
19828
|
+
* 工作流列表
|
|
19658
19829
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19659
19830
|
*/
|
|
19660
|
-
|
|
19661
|
-
/**
|
|
19662
|
-
* 总记录数
|
|
19663
|
-
*/
|
|
19664
|
-
TotalCount?: number;
|
|
19831
|
+
Data?: WorkflowExtOpsDtoPage;
|
|
19665
19832
|
/**
|
|
19666
19833
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
19667
19834
|
*/
|
|
@@ -19839,6 +20006,23 @@ export interface ResumeIntegrationTaskRequest {
|
|
|
19839
20006
|
*/
|
|
19840
20007
|
EventDesc?: string;
|
|
19841
20008
|
}
|
|
20009
|
+
/**
|
|
20010
|
+
* SuspendIntegrationTask请求参数结构体
|
|
20011
|
+
*/
|
|
20012
|
+
export interface SuspendIntegrationTaskRequest {
|
|
20013
|
+
/**
|
|
20014
|
+
* 任务id
|
|
20015
|
+
*/
|
|
20016
|
+
TaskId: string;
|
|
20017
|
+
/**
|
|
20018
|
+
* 项目id
|
|
20019
|
+
*/
|
|
20020
|
+
ProjectId: string;
|
|
20021
|
+
/**
|
|
20022
|
+
* 事件类型(START, STOP, SUSPEND, SUSPEND_WITHOUT_SP,RESUME, COMMIT, TIMESTAMP)
|
|
20023
|
+
*/
|
|
20024
|
+
Event?: string;
|
|
20025
|
+
}
|
|
19842
20026
|
/**
|
|
19843
20027
|
* DeleteCodeTemplate返回参数结构体
|
|
19844
20028
|
*/
|
|
@@ -27525,21 +27709,22 @@ export interface DailyScoreInfo {
|
|
|
27525
27709
|
Score: number;
|
|
27526
27710
|
}
|
|
27527
27711
|
/**
|
|
27528
|
-
*
|
|
27712
|
+
* DescribeColumnsMeta返回参数结构体
|
|
27529
27713
|
*/
|
|
27530
|
-
export interface
|
|
27714
|
+
export interface DescribeColumnsMetaResponse {
|
|
27531
27715
|
/**
|
|
27532
|
-
*
|
|
27716
|
+
* 分页返回的
|
|
27717
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
27533
27718
|
*/
|
|
27534
|
-
|
|
27719
|
+
ColumnMetaSet?: Array<ColumnMeta>;
|
|
27535
27720
|
/**
|
|
27536
|
-
*
|
|
27721
|
+
* 总记录数
|
|
27537
27722
|
*/
|
|
27538
|
-
|
|
27723
|
+
TotalCount?: number;
|
|
27539
27724
|
/**
|
|
27540
|
-
*
|
|
27725
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
27541
27726
|
*/
|
|
27542
|
-
|
|
27727
|
+
RequestId?: string;
|
|
27543
27728
|
}
|
|
27544
27729
|
/**
|
|
27545
27730
|
* 任务提交预校验详细信息
|
|
@@ -28170,6 +28355,23 @@ export interface DescribeDatabaseInfoListRequest {
|
|
|
28170
28355
|
*/
|
|
28171
28356
|
ConnectionType: string;
|
|
28172
28357
|
}
|
|
28358
|
+
/**
|
|
28359
|
+
* DescribeRuleExecLog请求参数结构体
|
|
28360
|
+
*/
|
|
28361
|
+
export interface DescribeRuleExecLogRequest {
|
|
28362
|
+
/**
|
|
28363
|
+
* 规则执行Id
|
|
28364
|
+
*/
|
|
28365
|
+
RuleExecId: number;
|
|
28366
|
+
/**
|
|
28367
|
+
* 项目id
|
|
28368
|
+
*/
|
|
28369
|
+
ProjectId: string;
|
|
28370
|
+
/**
|
|
28371
|
+
* 规则组执行id
|
|
28372
|
+
*/
|
|
28373
|
+
RuleGroupExecId: number;
|
|
28374
|
+
}
|
|
28173
28375
|
/**
|
|
28174
28376
|
* DescribeIntegrationTask返回参数结构体
|
|
28175
28377
|
*/
|
|
@@ -28440,18 +28642,21 @@ export interface StopIntegrationTaskResponse {
|
|
|
28440
28642
|
RequestId?: string;
|
|
28441
28643
|
}
|
|
28442
28644
|
/**
|
|
28443
|
-
*
|
|
28645
|
+
* DescribeDsTaskVersionInfo请求参数结构体
|
|
28444
28646
|
*/
|
|
28445
|
-
export interface
|
|
28647
|
+
export interface DescribeDsTaskVersionInfoRequest {
|
|
28446
28648
|
/**
|
|
28447
|
-
*
|
|
28448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
28649
|
+
* 任务ID
|
|
28449
28650
|
*/
|
|
28450
|
-
|
|
28651
|
+
TaskId: string;
|
|
28451
28652
|
/**
|
|
28452
|
-
*
|
|
28653
|
+
* 版本
|
|
28453
28654
|
*/
|
|
28454
|
-
|
|
28655
|
+
TaskVersion: string;
|
|
28656
|
+
/**
|
|
28657
|
+
* 项目id
|
|
28658
|
+
*/
|
|
28659
|
+
ProjectId?: string;
|
|
28455
28660
|
}
|
|
28456
28661
|
/**
|
|
28457
28662
|
* 任务信息
|
|
@@ -29756,21 +29961,18 @@ export interface DescribeTableLineageResponse {
|
|
|
29756
29961
|
RequestId?: string;
|
|
29757
29962
|
}
|
|
29758
29963
|
/**
|
|
29759
|
-
*
|
|
29964
|
+
* DescribeDsTaskVersionList返回参数结构体
|
|
29760
29965
|
*/
|
|
29761
|
-
export interface
|
|
29762
|
-
/**
|
|
29763
|
-
* 规则执行Id
|
|
29764
|
-
*/
|
|
29765
|
-
RuleExecId: number;
|
|
29966
|
+
export interface DescribeDsTaskVersionListResponse {
|
|
29766
29967
|
/**
|
|
29767
|
-
*
|
|
29968
|
+
* 版本列表
|
|
29969
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29768
29970
|
*/
|
|
29769
|
-
|
|
29971
|
+
Data?: Array<TaskVersionDsDTO>;
|
|
29770
29972
|
/**
|
|
29771
|
-
*
|
|
29973
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
29772
29974
|
*/
|
|
29773
|
-
|
|
29975
|
+
RequestId?: string;
|
|
29774
29976
|
}
|
|
29775
29977
|
/**
|
|
29776
29978
|
* BatchRerunIntegrationTaskInstances返回参数结构体
|