tencentcloud-sdk-nodejs-wedata 4.0.905 → 4.0.913
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 +1 -1
- package/products.md +58 -58
- package/src/services/wedata/v20210820/wedata_client.ts +17 -1
- package/src/services/wedata/v20210820/wedata_models.ts +347 -26
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +341 -26
|
@@ -578,6 +578,10 @@ export interface CreateDataSourceRequest {
|
|
|
578
578
|
* 开发环境数据源配置
|
|
579
579
|
*/
|
|
580
580
|
DevelopmentParams?: string
|
|
581
|
+
/**
|
|
582
|
+
* 新建数据源的项目ID
|
|
583
|
+
*/
|
|
584
|
+
ProjectId?: string
|
|
581
585
|
}
|
|
582
586
|
|
|
583
587
|
/**
|
|
@@ -1202,6 +1206,22 @@ export interface ColumnLineageInfo {
|
|
|
1202
1206
|
TableId?: string
|
|
1203
1207
|
}
|
|
1204
1208
|
|
|
1209
|
+
/**
|
|
1210
|
+
* 任务血缘信息,包括源表和目标表
|
|
1211
|
+
*/
|
|
1212
|
+
export interface TaskLineageInfoPair {
|
|
1213
|
+
/**
|
|
1214
|
+
* 表血缘-源表
|
|
1215
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1216
|
+
*/
|
|
1217
|
+
SourceTable?: TaskLineageInfo
|
|
1218
|
+
/**
|
|
1219
|
+
* 表血缘-目标表
|
|
1220
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1221
|
+
*/
|
|
1222
|
+
TargetTable?: TaskLineageInfo
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1205
1225
|
/**
|
|
1206
1226
|
* SubmitTask请求参数结构体
|
|
1207
1227
|
*/
|
|
@@ -1300,6 +1320,11 @@ export interface RuleExecResultDetail {
|
|
|
1300
1320
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1301
1321
|
*/
|
|
1302
1322
|
DatasourceType?: number
|
|
1323
|
+
/**
|
|
1324
|
+
* 集群部署类型,CVM/TKE
|
|
1325
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1326
|
+
*/
|
|
1327
|
+
ClusterDeployType?: string
|
|
1303
1328
|
}
|
|
1304
1329
|
|
|
1305
1330
|
/**
|
|
@@ -1742,6 +1767,31 @@ export interface RuleGroupExecResult {
|
|
|
1742
1767
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1743
1768
|
*/
|
|
1744
1769
|
RuleExecResultVOList?: Array<RuleExecResult>
|
|
1770
|
+
/**
|
|
1771
|
+
* 数据库名称
|
|
1772
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1773
|
+
*/
|
|
1774
|
+
DatabaseName?: string
|
|
1775
|
+
/**
|
|
1776
|
+
* 本地规则表id
|
|
1777
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1778
|
+
*/
|
|
1779
|
+
RuleGroupTableId?: string
|
|
1780
|
+
/**
|
|
1781
|
+
* 集群部署类型
|
|
1782
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1783
|
+
*/
|
|
1784
|
+
ClusterDeployType?: string
|
|
1785
|
+
/**
|
|
1786
|
+
* 实例id
|
|
1787
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1788
|
+
*/
|
|
1789
|
+
InstanceId?: string
|
|
1790
|
+
/**
|
|
1791
|
+
* 数据库所属环境,0.未定义,1.生产 2.开发
|
|
1792
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1793
|
+
*/
|
|
1794
|
+
DsEnvType?: string
|
|
1745
1795
|
}
|
|
1746
1796
|
|
|
1747
1797
|
/**
|
|
@@ -1869,6 +1919,25 @@ export interface AlarmEventInfo {
|
|
|
1869
1919
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1870
1920
|
*/
|
|
1871
1921
|
Threshold?: number
|
|
1922
|
+
/**
|
|
1923
|
+
* 告警原因
|
|
1924
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1925
|
+
*/
|
|
1926
|
+
AlarmReason?: string
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
/**
|
|
1930
|
+
* DescribeTaskLineage请求参数结构体
|
|
1931
|
+
*/
|
|
1932
|
+
export interface DescribeTaskLineageRequest {
|
|
1933
|
+
/**
|
|
1934
|
+
* 请求来源,WEB 前端;CLIENT 客户端
|
|
1935
|
+
*/
|
|
1936
|
+
RequestFromSource?: string
|
|
1937
|
+
/**
|
|
1938
|
+
* 任务ID
|
|
1939
|
+
*/
|
|
1940
|
+
TaskId?: string
|
|
1872
1941
|
}
|
|
1873
1942
|
|
|
1874
1943
|
/**
|
|
@@ -3905,6 +3974,21 @@ export interface Rule {
|
|
|
3905
3974
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3906
3975
|
*/
|
|
3907
3976
|
DsEnvType?: number
|
|
3977
|
+
/**
|
|
3978
|
+
* 数据源类型
|
|
3979
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3980
|
+
*/
|
|
3981
|
+
DatasourceType?: number
|
|
3982
|
+
/**
|
|
3983
|
+
* 模式名称
|
|
3984
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3985
|
+
*/
|
|
3986
|
+
SchemaName?: string
|
|
3987
|
+
/**
|
|
3988
|
+
* 目标模式名称
|
|
3989
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3990
|
+
*/
|
|
3991
|
+
TargetSchemaName?: string
|
|
3908
3992
|
}
|
|
3909
3993
|
|
|
3910
3994
|
/**
|
|
@@ -5268,97 +5352,97 @@ export interface DatabaseMeta {
|
|
|
5268
5352
|
* 项目Id
|
|
5269
5353
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5270
5354
|
*/
|
|
5271
|
-
ProjectId
|
|
5355
|
+
ProjectId?: string
|
|
5272
5356
|
/**
|
|
5273
5357
|
* 技术类型
|
|
5274
5358
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5275
5359
|
*/
|
|
5276
|
-
MetastoreType
|
|
5360
|
+
MetastoreType?: string
|
|
5277
5361
|
/**
|
|
5278
5362
|
* 数据源名称
|
|
5279
5363
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5280
5364
|
*/
|
|
5281
|
-
DatasourceName
|
|
5365
|
+
DatasourceName?: string
|
|
5282
5366
|
/**
|
|
5283
5367
|
* 数据源Id
|
|
5284
5368
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5285
5369
|
*/
|
|
5286
|
-
DatasourceId
|
|
5370
|
+
DatasourceId?: number
|
|
5287
5371
|
/**
|
|
5288
5372
|
* 项目英文名
|
|
5289
5373
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5290
5374
|
*/
|
|
5291
|
-
ProjectName
|
|
5375
|
+
ProjectName?: string
|
|
5292
5376
|
/**
|
|
5293
5377
|
* 数据源类别:绑定引擎、绑定数据库,可用值:DB,ENGINE
|
|
5294
5378
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5295
5379
|
*/
|
|
5296
|
-
Category
|
|
5380
|
+
Category?: string
|
|
5297
5381
|
/**
|
|
5298
5382
|
* 数据源描述信息
|
|
5299
5383
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5300
5384
|
*/
|
|
5301
|
-
Description
|
|
5385
|
+
Description?: string
|
|
5302
5386
|
/**
|
|
5303
5387
|
* 数据源引擎的实例ID,如CDB实例ID
|
|
5304
5388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5305
5389
|
*/
|
|
5306
|
-
Instance
|
|
5390
|
+
Instance?: string
|
|
5307
5391
|
/**
|
|
5308
5392
|
* 数据源引擎所属区域
|
|
5309
5393
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5310
5394
|
*/
|
|
5311
|
-
Region
|
|
5395
|
+
Region?: string
|
|
5312
5396
|
/**
|
|
5313
5397
|
* 数据源数据源的可见性,1为可见、0为不可见。默认为1
|
|
5314
5398
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5315
5399
|
*/
|
|
5316
|
-
Status
|
|
5400
|
+
Status?: number
|
|
5317
5401
|
/**
|
|
5318
5402
|
* db名称
|
|
5319
5403
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5320
5404
|
*/
|
|
5321
|
-
DatabaseName
|
|
5405
|
+
DatabaseName?: string
|
|
5322
5406
|
/**
|
|
5323
5407
|
* 项目中文名
|
|
5324
5408
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5325
5409
|
*/
|
|
5326
|
-
ProjectDisplayName
|
|
5410
|
+
ProjectDisplayName?: string
|
|
5327
5411
|
/**
|
|
5328
5412
|
* 责任人名称
|
|
5329
5413
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5330
5414
|
*/
|
|
5331
|
-
OwnerAccountName
|
|
5415
|
+
OwnerAccountName?: string
|
|
5332
5416
|
/**
|
|
5333
5417
|
* 数据来源展示名称
|
|
5334
5418
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5335
5419
|
*/
|
|
5336
|
-
DisplayName
|
|
5420
|
+
DisplayName?: string
|
|
5337
5421
|
/**
|
|
5338
5422
|
* 数据库ID
|
|
5339
5423
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5340
5424
|
*/
|
|
5341
|
-
DatabaseId
|
|
5425
|
+
DatabaseId?: string
|
|
5342
5426
|
/**
|
|
5343
5427
|
* 数据来源类型:hive/mysql/hbase等
|
|
5344
5428
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5345
5429
|
*/
|
|
5346
|
-
Catalog
|
|
5430
|
+
Catalog?: string
|
|
5347
5431
|
/**
|
|
5348
5432
|
* 存储量大小,单位为 byte
|
|
5349
5433
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5350
5434
|
*/
|
|
5351
|
-
StorageSize
|
|
5435
|
+
StorageSize?: number
|
|
5352
5436
|
/**
|
|
5353
5437
|
* 格式化后的存储量大小,带单位,如 12B
|
|
5354
5438
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5355
5439
|
*/
|
|
5356
|
-
StorageSizeWithUnit
|
|
5440
|
+
StorageSizeWithUnit?: string
|
|
5357
5441
|
/**
|
|
5358
5442
|
* 创建时间
|
|
5359
5443
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5360
5444
|
*/
|
|
5361
|
-
CreateTime
|
|
5445
|
+
CreateTime?: string
|
|
5362
5446
|
}
|
|
5363
5447
|
|
|
5364
5448
|
/**
|
|
@@ -5748,7 +5832,7 @@ export interface IntegrationTaskInfo {
|
|
|
5748
5832
|
*/
|
|
5749
5833
|
AppId?: string
|
|
5750
5834
|
/**
|
|
5751
|
-
* 1:未开始|2:操作中|3:运行中|4:暂停|5:任务停止中|6:停止|7:执行失败|20:异常|21:未知|
|
|
5835
|
+
* 0:新建(任务开发态默认状态)|1:未开始|2:操作中|3:运行中|4:暂停|5:任务停止中|6:停止|7:执行失败|20:异常|21:未知|
|
|
5752
5836
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5753
5837
|
*/
|
|
5754
5838
|
Status?: number
|
|
@@ -6100,6 +6184,11 @@ export interface RuleGroup {
|
|
|
6100
6184
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6101
6185
|
*/
|
|
6102
6186
|
DatabaseName?: string
|
|
6187
|
+
/**
|
|
6188
|
+
* 模式名称
|
|
6189
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6190
|
+
*/
|
|
6191
|
+
SchemaName?: string
|
|
6103
6192
|
/**
|
|
6104
6193
|
* 是否有权限
|
|
6105
6194
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -6145,6 +6234,11 @@ export interface RuleGroup {
|
|
|
6145
6234
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6146
6235
|
*/
|
|
6147
6236
|
DsEnvType?: number
|
|
6237
|
+
/**
|
|
6238
|
+
* EMR集群部署方式:CVM/TKE
|
|
6239
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6240
|
+
*/
|
|
6241
|
+
ClusterDeployType?: string
|
|
6148
6242
|
}
|
|
6149
6243
|
|
|
6150
6244
|
/**
|
|
@@ -6431,6 +6525,18 @@ export interface ModifyRuleRequest {
|
|
|
6431
6525
|
* 该规则适配的执行引擎
|
|
6432
6526
|
*/
|
|
6433
6527
|
SourceEngineTypes?: Array<number | bigint>
|
|
6528
|
+
/**
|
|
6529
|
+
* 目标库名
|
|
6530
|
+
*/
|
|
6531
|
+
TargetDatabaseName?: string
|
|
6532
|
+
/**
|
|
6533
|
+
* 目标模式名
|
|
6534
|
+
*/
|
|
6535
|
+
TargetSchemaName?: string
|
|
6536
|
+
/**
|
|
6537
|
+
* 目标表名
|
|
6538
|
+
*/
|
|
6539
|
+
TargetTableName?: string
|
|
6434
6540
|
}
|
|
6435
6541
|
|
|
6436
6542
|
/**
|
|
@@ -6624,6 +6730,27 @@ export interface FindAllFolderResponse {
|
|
|
6624
6730
|
RequestId?: string
|
|
6625
6731
|
}
|
|
6626
6732
|
|
|
6733
|
+
/**
|
|
6734
|
+
* 表生命周期相关信息
|
|
6735
|
+
*/
|
|
6736
|
+
export interface LifecycleInfo {
|
|
6737
|
+
/**
|
|
6738
|
+
* 生命周期值
|
|
6739
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6740
|
+
*/
|
|
6741
|
+
Lifecycle?: number
|
|
6742
|
+
/**
|
|
6743
|
+
* 列名
|
|
6744
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6745
|
+
*/
|
|
6746
|
+
Columns?: Array<string>
|
|
6747
|
+
/**
|
|
6748
|
+
* 日期格式
|
|
6749
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6750
|
+
*/
|
|
6751
|
+
DateFormat?: Array<string>
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6627
6754
|
/**
|
|
6628
6755
|
* 资源管理目录树节点
|
|
6629
6756
|
*/
|
|
@@ -8587,6 +8714,10 @@ export interface DescribeOpsMakePlanInstancesRequest {
|
|
|
8587
8714
|
* 分页大小,默认值10
|
|
8588
8715
|
*/
|
|
8589
8716
|
PageSize?: number
|
|
8717
|
+
/**
|
|
8718
|
+
* 实例状态列表
|
|
8719
|
+
*/
|
|
8720
|
+
StateList?: Array<number | bigint>
|
|
8590
8721
|
}
|
|
8591
8722
|
|
|
8592
8723
|
/**
|
|
@@ -9166,6 +9297,11 @@ export interface TableInfo {
|
|
|
9166
9297
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9167
9298
|
*/
|
|
9168
9299
|
TableName?: string
|
|
9300
|
+
/**
|
|
9301
|
+
* 表类型,view/table
|
|
9302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9303
|
+
*/
|
|
9304
|
+
TableType?: string
|
|
9169
9305
|
/**
|
|
9170
9306
|
* 表databaseName
|
|
9171
9307
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -9548,6 +9684,20 @@ export interface DescribeBatchOperateTaskResponse {
|
|
|
9548
9684
|
RequestId?: string
|
|
9549
9685
|
}
|
|
9550
9686
|
|
|
9687
|
+
/**
|
|
9688
|
+
* StartIntegrationTask返回参数结构体
|
|
9689
|
+
*/
|
|
9690
|
+
export interface StartIntegrationTaskResponse {
|
|
9691
|
+
/**
|
|
9692
|
+
* 操作成功与否标识
|
|
9693
|
+
*/
|
|
9694
|
+
Data?: boolean
|
|
9695
|
+
/**
|
|
9696
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9697
|
+
*/
|
|
9698
|
+
RequestId?: string
|
|
9699
|
+
}
|
|
9700
|
+
|
|
9551
9701
|
/**
|
|
9552
9702
|
* 提交工作流实体
|
|
9553
9703
|
*/
|
|
@@ -9899,6 +10049,16 @@ export interface TableQualityDetail {
|
|
|
9899
10049
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9900
10050
|
*/
|
|
9901
10051
|
DsEnvType?: number
|
|
10052
|
+
/**
|
|
10053
|
+
* 模式名称
|
|
10054
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10055
|
+
*/
|
|
10056
|
+
SchemaName?: string
|
|
10057
|
+
/**
|
|
10058
|
+
* 规则表
|
|
10059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10060
|
+
*/
|
|
10061
|
+
RuleGroupTableId?: string
|
|
9902
10062
|
}
|
|
9903
10063
|
|
|
9904
10064
|
/**
|
|
@@ -10131,6 +10291,11 @@ export interface RuleExecConfig {
|
|
|
10131
10291
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10132
10292
|
*/
|
|
10133
10293
|
EngineType?: string
|
|
10294
|
+
/**
|
|
10295
|
+
* DLC执行引擎资源组
|
|
10296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10297
|
+
*/
|
|
10298
|
+
DlcGroupName?: string
|
|
10134
10299
|
}
|
|
10135
10300
|
|
|
10136
10301
|
/**
|
|
@@ -10624,6 +10789,18 @@ export interface CreateOpsMakePlanRequest {
|
|
|
10624
10789
|
* 补录指定的集成资源组名称 为空则表示使用任务原有集成执行资源组
|
|
10625
10790
|
*/
|
|
10626
10791
|
IntegrationResourceGroupName?: string
|
|
10792
|
+
/**
|
|
10793
|
+
* 补录扩展属性
|
|
10794
|
+
*/
|
|
10795
|
+
MakeExtList?: Array<StrToStrMap>
|
|
10796
|
+
/**
|
|
10797
|
+
* 补录扩展属性
|
|
10798
|
+
*/
|
|
10799
|
+
SameSelfWorkflowDependType?: boolean
|
|
10800
|
+
/**
|
|
10801
|
+
* 补录扩展属性
|
|
10802
|
+
*/
|
|
10803
|
+
SelfWorkflowDependency?: string
|
|
10627
10804
|
}
|
|
10628
10805
|
|
|
10629
10806
|
/**
|
|
@@ -11389,6 +11566,10 @@ export interface DescribeTableMetaRequest {
|
|
|
11389
11566
|
* 查询条件类型0按id,1按名称,默认为0
|
|
11390
11567
|
*/
|
|
11391
11568
|
TableFilterType?: number
|
|
11569
|
+
/**
|
|
11570
|
+
* 查询字段列表
|
|
11571
|
+
*/
|
|
11572
|
+
SearchNames?: Array<string>
|
|
11392
11573
|
}
|
|
11393
11574
|
|
|
11394
11575
|
/**
|
|
@@ -12511,6 +12692,14 @@ export interface DescribeDatabaseMetasRequest {
|
|
|
12511
12692
|
* 排序字段,如name
|
|
12512
12693
|
*/
|
|
12513
12694
|
OrderFields?: Array<OrderField>
|
|
12695
|
+
/**
|
|
12696
|
+
* pagesize
|
|
12697
|
+
*/
|
|
12698
|
+
PageSize?: number
|
|
12699
|
+
/**
|
|
12700
|
+
* pageNumber
|
|
12701
|
+
*/
|
|
12702
|
+
PageNumber?: number
|
|
12514
12703
|
}
|
|
12515
12704
|
|
|
12516
12705
|
/**
|
|
@@ -13428,6 +13617,11 @@ export interface IntegrationNodeSchema {
|
|
|
13428
13617
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13429
13618
|
*/
|
|
13430
13619
|
Comment?: string
|
|
13620
|
+
/**
|
|
13621
|
+
* category
|
|
13622
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13623
|
+
*/
|
|
13624
|
+
Category?: string
|
|
13431
13625
|
}
|
|
13432
13626
|
|
|
13433
13627
|
/**
|
|
@@ -13860,6 +14054,59 @@ export interface DescribeDutyScheduleDetailsResponse {
|
|
|
13860
14054
|
RequestId?: string
|
|
13861
14055
|
}
|
|
13862
14056
|
|
|
14057
|
+
/**
|
|
14058
|
+
* 任务集成信息
|
|
14059
|
+
*/
|
|
14060
|
+
export interface TaskLineageInfo {
|
|
14061
|
+
/**
|
|
14062
|
+
* 任务 ID
|
|
14063
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14064
|
+
*/
|
|
14065
|
+
TaskId?: string
|
|
14066
|
+
/**
|
|
14067
|
+
* 任务名称
|
|
14068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14069
|
+
*/
|
|
14070
|
+
TaskName?: string
|
|
14071
|
+
/**
|
|
14072
|
+
* 表名称
|
|
14073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14074
|
+
*/
|
|
14075
|
+
TableName?: string
|
|
14076
|
+
/**
|
|
14077
|
+
* 表 URI,格式:dsn.name
|
|
14078
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14079
|
+
*/
|
|
14080
|
+
TableUri?: string
|
|
14081
|
+
/**
|
|
14082
|
+
* 表方向类型
|
|
14083
|
+
- 0 - table作为源表
|
|
14084
|
+
- 1 - table作为目标表
|
|
14085
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14086
|
+
*/
|
|
14087
|
+
Type?: number
|
|
14088
|
+
/**
|
|
14089
|
+
* 数据源ID
|
|
14090
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14091
|
+
*/
|
|
14092
|
+
DataSourceId?: number
|
|
14093
|
+
/**
|
|
14094
|
+
* 数据源类型
|
|
14095
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14096
|
+
*/
|
|
14097
|
+
DataSourceType?: string
|
|
14098
|
+
/**
|
|
14099
|
+
* 数据库名称
|
|
14100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14101
|
+
*/
|
|
14102
|
+
DatabaseName?: string
|
|
14103
|
+
/**
|
|
14104
|
+
* 模型名称
|
|
14105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14106
|
+
*/
|
|
14107
|
+
SchemaName?: string
|
|
14108
|
+
}
|
|
14109
|
+
|
|
13863
14110
|
/**
|
|
13864
14111
|
* DescribeTableQualityDetails返回参数结构体
|
|
13865
14112
|
*/
|
|
@@ -14451,6 +14698,16 @@ TABLE, VIEW, MANAGED_TABLE(Hive管理表), EXTERNAL_TABLE(Hive外部表), VIRTUA
|
|
|
14451
14698
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14452
14699
|
*/
|
|
14453
14700
|
TableProperties?: Array<TableMetaProperty>
|
|
14701
|
+
/**
|
|
14702
|
+
* 环境,取值 prod或者 dev
|
|
14703
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14704
|
+
*/
|
|
14705
|
+
Environment?: string
|
|
14706
|
+
/**
|
|
14707
|
+
* 数据库模式
|
|
14708
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14709
|
+
*/
|
|
14710
|
+
Schema?: string
|
|
14454
14711
|
}
|
|
14455
14712
|
|
|
14456
14713
|
/**
|
|
@@ -15303,6 +15560,16 @@ export interface DescribeTableMetaResponse {
|
|
|
15303
15560
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15304
15561
|
*/
|
|
15305
15562
|
TableMeta?: TableMeta
|
|
15563
|
+
/**
|
|
15564
|
+
* 生命周期信息
|
|
15565
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15566
|
+
*/
|
|
15567
|
+
LifecycleInfo?: LifecycleInfo
|
|
15568
|
+
/**
|
|
15569
|
+
* 标签
|
|
15570
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15571
|
+
*/
|
|
15572
|
+
TagVoteSumList?: TagVoteSum
|
|
15306
15573
|
/**
|
|
15307
15574
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15308
15575
|
*/
|
|
@@ -16264,6 +16531,11 @@ export interface ColumnMeta {
|
|
|
16264
16531
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16265
16532
|
*/
|
|
16266
16533
|
LevelRank?: number
|
|
16534
|
+
/**
|
|
16535
|
+
* influxdb字段类别
|
|
16536
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16537
|
+
*/
|
|
16538
|
+
InfluxCategory?: string
|
|
16267
16539
|
}
|
|
16268
16540
|
|
|
16269
16541
|
/**
|
|
@@ -16641,7 +16913,7 @@ export interface DescribeDatabaseMetasResponse {
|
|
|
16641
16913
|
* 无
|
|
16642
16914
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16643
16915
|
*/
|
|
16644
|
-
DatabaseMeta
|
|
16916
|
+
DatabaseMeta?: Array<DatabaseMeta>
|
|
16645
16917
|
/**
|
|
16646
16918
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
16647
16919
|
*/
|
|
@@ -16956,6 +17228,18 @@ export interface DescribeTableSchemaInfoRequest {
|
|
|
16956
17228
|
* 项目空间ID
|
|
16957
17229
|
*/
|
|
16958
17230
|
ProjectId?: string
|
|
17231
|
+
/**
|
|
17232
|
+
* 环境信息
|
|
17233
|
+
*/
|
|
17234
|
+
Env?: string
|
|
17235
|
+
/**
|
|
17236
|
+
* 空间模式
|
|
17237
|
+
*/
|
|
17238
|
+
Model?: string
|
|
17239
|
+
/**
|
|
17240
|
+
* 开发态的datasourceId
|
|
17241
|
+
*/
|
|
17242
|
+
DevDatasourceId?: string
|
|
16959
17243
|
}
|
|
16960
17244
|
|
|
16961
17245
|
/**
|
|
@@ -17243,13 +17527,18 @@ export interface DescribeDutyScheduleListRequest {
|
|
|
17243
17527
|
}
|
|
17244
17528
|
|
|
17245
17529
|
/**
|
|
17246
|
-
*
|
|
17530
|
+
* DescribeTaskLineage返回参数结构体
|
|
17247
17531
|
*/
|
|
17248
|
-
export interface
|
|
17532
|
+
export interface DescribeTaskLineageResponse {
|
|
17249
17533
|
/**
|
|
17250
|
-
*
|
|
17534
|
+
* 请求来源,WEB 前端;CLIENT 客户端
|
|
17535
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17251
17536
|
*/
|
|
17252
|
-
|
|
17537
|
+
RequestFromSource?: string
|
|
17538
|
+
/**
|
|
17539
|
+
* 通过任务ID查询集成任务信息列表
|
|
17540
|
+
*/
|
|
17541
|
+
TaskLineageInfos?: Array<TaskLineageInfoPair>
|
|
17253
17542
|
/**
|
|
17254
17543
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
17255
17544
|
*/
|
|
@@ -19774,6 +20063,16 @@ export interface DatabaseInfo {
|
|
|
19774
20063
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19775
20064
|
*/
|
|
19776
20065
|
DsEnvType?: number
|
|
20066
|
+
/**
|
|
20067
|
+
* EMR引擎部署方式:CVM/TKE
|
|
20068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
20069
|
+
*/
|
|
20070
|
+
ClusterDeployType?: string
|
|
20071
|
+
/**
|
|
20072
|
+
* 模式名称
|
|
20073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
20074
|
+
*/
|
|
20075
|
+
SchemaName?: string
|
|
19777
20076
|
}
|
|
19778
20077
|
|
|
19779
20078
|
/**
|
|
@@ -20514,6 +20813,28 @@ export interface RealTimeTaskSpeed {
|
|
|
20514
20813
|
BytesSpeedList: Array<BytesSpeed>
|
|
20515
20814
|
}
|
|
20516
20815
|
|
|
20816
|
+
/**
|
|
20817
|
+
* 基于表的标签统计信息
|
|
20818
|
+
*/
|
|
20819
|
+
export interface TagVoteSum {
|
|
20820
|
+
/**
|
|
20821
|
+
* 标签id
|
|
20822
|
+
*/
|
|
20823
|
+
TagId: number
|
|
20824
|
+
/**
|
|
20825
|
+
* 该表该标签投票次数
|
|
20826
|
+
*/
|
|
20827
|
+
VoteSum: number
|
|
20828
|
+
/**
|
|
20829
|
+
* 当前用户对这张表是否加了该标签 true 已添加 false 未添加
|
|
20830
|
+
*/
|
|
20831
|
+
Status: boolean
|
|
20832
|
+
/**
|
|
20833
|
+
* 标签名
|
|
20834
|
+
*/
|
|
20835
|
+
TagName: string
|
|
20836
|
+
}
|
|
20837
|
+
|
|
20517
20838
|
/**
|
|
20518
20839
|
* BatchCreateIntegrationTaskAlarms返回参数结构体
|
|
20519
20840
|
*/
|
|
@@ -21060,7 +21381,7 @@ export interface DescribeIntegrationTasksRequest {
|
|
|
21060
21381
|
*/
|
|
21061
21382
|
PageSize: number
|
|
21062
21383
|
/**
|
|
21063
|
-
* 查询filter
|
|
21384
|
+
* 查询filter;默认查询任务的开发态,如需查询生产态任务需添加{"Values":["true"],"Name":"ProductionState"};如需查询查询任务状态需要查询生产态任务列表
|
|
21064
21385
|
*/
|
|
21065
21386
|
Filters?: Array<Filter>
|
|
21066
21387
|
/**
|