tencentcloud-sdk-nodejs 4.0.767 → 4.0.768

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/SERVICE_CHANGELOG.md +61 -224
  3. package/package.json +1 -1
  4. package/products.md +8 -8
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cat/v20180409/cat_models.ts +1 -1
  7. package/src/services/ess/v20201111/ess_client.ts +4 -5
  8. package/src/services/ess/v20201111/ess_models.ts +17 -13
  9. package/src/services/essbasic/v20210526/essbasic_models.ts +24 -10
  10. package/src/services/ivld/v20210903/ivld_models.ts +3 -3
  11. package/src/services/omics/v20221128/omics_models.ts +21 -4
  12. package/src/services/ssm/v20190923/ssm_models.ts +2 -2
  13. package/src/services/tsf/v20180326/tsf_client.ts +1 -1
  14. package/src/services/tsf/v20180326/tsf_models.ts +1 -1
  15. package/src/services/wedata/v20210820/wedata_client.ts +55 -16
  16. package/src/services/wedata/v20210820/wedata_models.ts +552 -71
  17. package/tencentcloud/common/sdk_version.d.ts +1 -1
  18. package/tencentcloud/common/sdk_version.js +1 -1
  19. package/tencentcloud/services/cat/v20180409/cat_models.d.ts +1 -1
  20. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +4 -5
  21. package/tencentcloud/services/ess/v20201111/ess_client.js +4 -5
  22. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +17 -13
  23. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +24 -10
  24. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +3 -3
  25. package/tencentcloud/services/omics/v20221128/omics_models.d.ts +21 -4
  26. package/tencentcloud/services/ssm/v20190923/ssm_models.d.ts +2 -2
  27. package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +1 -1
  28. package/tencentcloud/services/tsf/v20180326/tsf_client.js +1 -1
  29. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +1 -1
  30. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +17 -5
  31. package/tencentcloud/services/wedata/v20210820/wedata_client.js +24 -6
  32. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +545 -73
  33. package/test/wedata.v20210820.test.js +34 -4
@@ -527,6 +527,40 @@ export interface DescribeTaskAlarmRegulationsResponse {
527
527
  RequestId?: string
528
528
  }
529
529
 
530
+ /**
531
+ * DescribeTableLineageInfo请求参数结构体
532
+ */
533
+ export interface DescribeTableLineageInfoRequest {
534
+ /**
535
+ * 查询方向,INPUT,OUTPUT,BOTH枚举值
536
+ */
537
+ Direction: string
538
+ /**
539
+ * 表信息
540
+ */
541
+ Data: TableLineageInfo
542
+ /**
543
+ * 单次查询入度,默认 1
544
+ */
545
+ InputDepth?: number
546
+ /**
547
+ * 单次查询出度,默认 1
548
+ */
549
+ OutputDepth?: number
550
+ /**
551
+ * 额外参数(传递调用方信息)
552
+ */
553
+ ExtParams?: Array<LineageParamRecord>
554
+ /**
555
+ * 是否过滤临时表,默认true
556
+ */
557
+ IgnoreTemp?: boolean
558
+ /**
559
+ * 是否递归查询二级节点数目,默认为true
560
+ */
561
+ RecursiveSecond?: boolean
562
+ }
563
+
530
564
  /**
531
565
  * CheckIntegrationTaskNameExists返回参数结构体
532
566
  */
@@ -2341,6 +2375,26 @@ export interface DescribeInstanceByCycleReportResponse {
2341
2375
  RequestId?: string
2342
2376
  }
2343
2377
 
2378
+ /**
2379
+ * DescribeFieldBasicInfo返回参数结构体
2380
+ */
2381
+ export interface DescribeFieldBasicInfoResponse {
2382
+ /**
2383
+ * 字段元数据
2384
+ 注意:此字段可能返回 null,表示取不到有效值。
2385
+ */
2386
+ ColumnBasicInfoList?: Array<ColumnBasicInfo>
2387
+ /**
2388
+ * 总条数
2389
+ 注意:此字段可能返回 null,表示取不到有效值。
2390
+ */
2391
+ TotalCount?: number
2392
+ /**
2393
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2394
+ */
2395
+ RequestId?: string
2396
+ }
2397
+
2344
2398
  /**
2345
2399
  * DescribeRuleExecResultsByPage返回参数结构体
2346
2400
  */
@@ -2698,6 +2752,44 @@ export interface CheckTaskNameExistRequest {
2698
2752
  TaskName: string
2699
2753
  }
2700
2754
 
2755
+ /**
2756
+ * 按天更新的表的资产评分
2757
+ */
2758
+ export interface TablePropertyScore {
2759
+ /**
2760
+ * 表ID
2761
+ */
2762
+ TableId: string
2763
+ /**
2764
+ * 统计日期
2765
+ */
2766
+ DayTime: string
2767
+ /**
2768
+ * 表完整性评分
2769
+ */
2770
+ Integrity: number
2771
+ /**
2772
+ * 表保障性评分
2773
+ */
2774
+ Safety: number
2775
+ /**
2776
+ * 表及时性评分
2777
+ */
2778
+ Timeliness: number
2779
+ /**
2780
+ * 表稳定性评分
2781
+ */
2782
+ Stability: number
2783
+ /**
2784
+ * 表规范性评分
2785
+ */
2786
+ Normative: number
2787
+ /**
2788
+ * 资产评分平均分
2789
+ */
2790
+ Average: number
2791
+ }
2792
+
2701
2793
  /**
2702
2794
  * 数据质量阈值
2703
2795
  */
@@ -3698,6 +3790,107 @@ export interface DescribeDependOpsTasksRequest {
3698
3790
  WorkflowId: string
3699
3791
  }
3700
3792
 
3793
+ /**
3794
+ * 表的元数据信息
3795
+ */
3796
+ export interface ColumnBasicInfo {
3797
+ /**
3798
+ * 表的全局唯一ID
3799
+ 注意:此字段可能返回 null,表示取不到有效值。
3800
+ */
3801
+ TableId?: string
3802
+ /**
3803
+ * 数据源全局唯一ID
3804
+ 注意:此字段可能返回 null,表示取不到有效值。
3805
+ */
3806
+ DatasourceId?: string
3807
+ /**
3808
+ * 数据源名
3809
+ 注意:此字段可能返回 null,表示取不到有效值。
3810
+ */
3811
+ DatasourceName?: string
3812
+ /**
3813
+ * 数据库ID
3814
+ 注意:此字段可能返回 null,表示取不到有效值。
3815
+ */
3816
+ DatabaseId?: string
3817
+ /**
3818
+ * 数据库名
3819
+ 注意:此字段可能返回 null,表示取不到有效值。
3820
+ */
3821
+ DatabaseName?: string
3822
+ /**
3823
+ * 表名称
3824
+ 注意:此字段可能返回 null,表示取不到有效值。
3825
+ */
3826
+ TableName?: string
3827
+ /**
3828
+ * 字段名称
3829
+ 注意:此字段可能返回 null,表示取不到有效值。
3830
+ */
3831
+ ColumnName?: string
3832
+ /**
3833
+ * 数据类型,string/int等
3834
+ 注意:此字段可能返回 null,表示取不到有效值。
3835
+ */
3836
+ DataType?: string
3837
+ /**
3838
+ * 字段类型, varchar(32)/int(10)等
3839
+ 注意:此字段可能返回 null,表示取不到有效值。
3840
+ */
3841
+ ColumnType?: string
3842
+ /**
3843
+ * 字段默认值
3844
+ 注意:此字段可能返回 null,表示取不到有效值。
3845
+ */
3846
+ ColumnDefault?: string
3847
+ /**
3848
+ * 索引类型, PRI/MUL/PARTITION等,普通字段该值为空串
3849
+ 注意:此字段可能返回 null,表示取不到有效值。
3850
+ */
3851
+ ColumnKey?: string
3852
+ /**
3853
+ * 字段顺序标识
3854
+ 注意:此字段可能返回 null,表示取不到有效值。
3855
+ */
3856
+ ColumnPosition?: number
3857
+ /**
3858
+ * 字段注释
3859
+ 注意:此字段可能返回 null,表示取不到有效值。
3860
+ */
3861
+ ColumnComment?: string
3862
+ /**
3863
+ * 数据类型
3864
+ 注意:此字段可能返回 null,表示取不到有效值。
3865
+ */
3866
+ StoreType?: string
3867
+ /**
3868
+ * 所属项目ID
3869
+ 注意:此字段可能返回 null,表示取不到有效值。
3870
+ */
3871
+ ProjectId?: string
3872
+ /**
3873
+ * 所属项目英文名
3874
+ 注意:此字段可能返回 null,表示取不到有效值。
3875
+ */
3876
+ ProjectName?: string
3877
+ /**
3878
+ * 所属项目中文名
3879
+ 注意:此字段可能返回 null,表示取不到有效值。
3880
+ */
3881
+ ProjectDisplayName?: string
3882
+ /**
3883
+ * 创建时间
3884
+ 注意:此字段可能返回 null,表示取不到有效值。
3885
+ */
3886
+ CreateTime?: string
3887
+ /**
3888
+ * 更新时间
3889
+ 注意:此字段可能返回 null,表示取不到有效值。
3890
+ */
3891
+ UpdateTime?: string
3892
+ }
3893
+
3701
3894
  /**
3702
3895
  * DescribeClusterNamespaceList返回参数结构体
3703
3896
  */
@@ -6421,17 +6614,23 @@ export interface DescribeIntegrationStatisticsInstanceTrendResponse {
6421
6614
  }
6422
6615
 
6423
6616
  /**
6424
- * DescribeInstanceLogList请求参数结构体
6617
+ * 操作结果
6425
6618
  */
6426
- export interface DescribeInstanceLogListRequest {
6619
+ export interface BatchReturn {
6427
6620
  /**
6428
- * 任务id
6621
+ * 执行结果
6429
6622
  */
6430
- TaskId: string
6623
+ Result: boolean
6431
6624
  /**
6432
- * 数据时间
6625
+ * 执行情况备注
6626
+ 注意:此字段可能返回 null,表示取不到有效值。
6433
6627
  */
6434
- CurRunDate: string
6628
+ ErrorDesc: string
6629
+ /**
6630
+ * 执行情况id
6631
+ 注意:此字段可能返回 null,表示取不到有效值。
6632
+ */
6633
+ ErrorId: string
6435
6634
  }
6436
6635
 
6437
6636
  /**
@@ -8383,23 +8582,17 @@ export interface DescribeTableMetasResponse {
8383
8582
  }
8384
8583
 
8385
8584
  /**
8386
- * 操作结果
8585
+ * DescribeInstanceLogList请求参数结构体
8387
8586
  */
8388
- export interface BatchReturn {
8389
- /**
8390
- * 执行结果
8391
- */
8392
- Result: boolean
8587
+ export interface DescribeInstanceLogListRequest {
8393
8588
  /**
8394
- * 执行情况备注
8395
- 注意:此字段可能返回 null,表示取不到有效值。
8589
+ * 任务id
8396
8590
  */
8397
- ErrorDesc: string
8591
+ TaskId: string
8398
8592
  /**
8399
- * 执行情况id
8400
- 注意:此字段可能返回 null,表示取不到有效值。
8593
+ * 数据时间
8401
8594
  */
8402
- ErrorId: string
8595
+ CurRunDate: string
8403
8596
  }
8404
8597
 
8405
8598
  /**
@@ -9944,7 +10137,108 @@ export interface GetFileInfoRequest {
9944
10137
  /**
9945
10138
  * 文件路径
9946
10139
  */
9947
- FilePath: string
10140
+ FilePath: string
10141
+ }
10142
+
10143
+ /**
10144
+ * 表血缘详细信息
10145
+ */
10146
+ export interface TableLineageBaseInfo {
10147
+ /**
10148
+ * 元数据类型
10149
+ 注意:此字段可能返回 null,表示取不到有效值。
10150
+ */
10151
+ MetastoreType: string
10152
+ /**
10153
+ * 由中心节点到该节点的路径
10154
+ 注意:此字段可能返回 null,表示取不到有效值。
10155
+ */
10156
+ PrefixPath: string
10157
+ /**
10158
+ * 空间id
10159
+ 注意:此字段可能返回 null,表示取不到有效值。
10160
+ */
10161
+ ProjectId?: string
10162
+ /**
10163
+ * 数据源id
10164
+ 注意:此字段可能返回 null,表示取不到有效值。
10165
+ */
10166
+ DatasourceId?: string
10167
+ /**
10168
+ * 表id
10169
+ 注意:此字段可能返回 null,表示取不到有效值。
10170
+ */
10171
+ TableId?: string
10172
+ /**
10173
+ * 表血缘参数
10174
+ 注意:此字段可能返回 null,表示取不到有效值。
10175
+ */
10176
+ Params?: Array<LineageParamRecord>
10177
+ /**
10178
+ * 父节点列表
10179
+ 注意:此字段可能返回 null,表示取不到有效值。
10180
+ */
10181
+ ParentSet?: string
10182
+ /**
10183
+ * 子节点列表
10184
+ 注意:此字段可能返回 null,表示取不到有效值。
10185
+ */
10186
+ ChildSet?: string
10187
+ /**
10188
+ * 额外参数
10189
+ 注意:此字段可能返回 null,表示取不到有效值。
10190
+ */
10191
+ ExtParams?: Array<RecordField>
10192
+ /**
10193
+ * 血缘id
10194
+ 注意:此字段可能返回 null,表示取不到有效值。
10195
+ */
10196
+ Id?: string
10197
+ /**
10198
+ * 元数据类型名称
10199
+ 注意:此字段可能返回 null,表示取不到有效值。
10200
+ */
10201
+ MetastoreTypeName?: string
10202
+ /**
10203
+ * 表名称
10204
+ 注意:此字段可能返回 null,表示取不到有效值。
10205
+ */
10206
+ TableName?: string
10207
+ /**
10208
+ * 表全称
10209
+ 注意:此字段可能返回 null,表示取不到有效值。
10210
+ */
10211
+ QualifiedName?: string
10212
+ /**
10213
+ * 血缘下游节点数
10214
+ 注意:此字段可能返回 null,表示取不到有效值。
10215
+ */
10216
+ DownStreamCount?: number
10217
+ /**
10218
+ * 血缘上游节点数
10219
+ 注意:此字段可能返回 null,表示取不到有效值。
10220
+ */
10221
+ UpStreamCount?: number
10222
+ /**
10223
+ * 血缘描述
10224
+ 注意:此字段可能返回 null,表示取不到有效值。
10225
+ */
10226
+ Description?: string
10227
+ /**
10228
+ * 血缘创建时间
10229
+ 注意:此字段可能返回 null,表示取不到有效值。
10230
+ */
10231
+ CreateTime?: string
10232
+ /**
10233
+ * 血缘更新时间
10234
+ 注意:此字段可能返回 null,表示取不到有效值。
10235
+ */
10236
+ ModifyTime?: string
10237
+ /**
10238
+ * 修改血缘的任务id列表
10239
+ 注意:此字段可能返回 null,表示取不到有效值。
10240
+ */
10241
+ Tasks?: Array<string>
9948
10242
  }
9949
10243
 
9950
10244
  /**
@@ -10869,6 +11163,26 @@ export interface CandidateDsDTo {
10869
11163
  ValueDesc?: string
10870
11164
  }
10871
11165
 
11166
+ /**
11167
+ * DescribeTableBasicInfo返回参数结构体
11168
+ */
11169
+ export interface DescribeTableBasicInfoResponse {
11170
+ /**
11171
+ * 表元数据
11172
+ 注意:此字段可能返回 null,表示取不到有效值。
11173
+ */
11174
+ TableBasicInfoList?: Array<TableBasicInfo>
11175
+ /**
11176
+ * 总条数
11177
+ 注意:此字段可能返回 null,表示取不到有效值。
11178
+ */
11179
+ TotalCount?: number
11180
+ /**
11181
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11182
+ */
11183
+ RequestId?: string
11184
+ }
11185
+
10872
11186
  /**
10873
11187
  * DescribeDiagnosticInfoByBaselineId返回参数结构体
10874
11188
  */
@@ -13340,6 +13654,152 @@ export interface SearchConditionInstance {
13340
13654
  ResourceGroup?: number
13341
13655
  }
13342
13656
 
13657
+ /**
13658
+ * 表的元数据信息
13659
+ */
13660
+ export interface TableBasicInfo {
13661
+ /**
13662
+ * 表的全局唯一ID
13663
+ 注意:此字段可能返回 null,表示取不到有效值。
13664
+ */
13665
+ TableId?: string
13666
+ /**
13667
+ * 数据源全局唯一ID
13668
+ 注意:此字段可能返回 null,表示取不到有效值。
13669
+ */
13670
+ DatasourceId?: string
13671
+ /**
13672
+ * 数据源名
13673
+ 注意:此字段可能返回 null,表示取不到有效值。
13674
+ */
13675
+ DatasourceName?: string
13676
+ /**
13677
+ * 数据库ID
13678
+ 注意:此字段可能返回 null,表示取不到有效值。
13679
+ */
13680
+ DatabaseId?: string
13681
+ /**
13682
+ * 数据库名
13683
+ 注意:此字段可能返回 null,表示取不到有效值。
13684
+ */
13685
+ DatabaseName?: string
13686
+ /**
13687
+ * 表名称
13688
+ 注意:此字段可能返回 null,表示取不到有效值。
13689
+ */
13690
+ TableName?: string
13691
+ /**
13692
+ * 引擎/存储类型
13693
+ 注意:此字段可能返回 null,表示取不到有效值。
13694
+ */
13695
+ EngineType?: string
13696
+ /**
13697
+ * 表类型,视图,外部表等
13698
+ 注意:此字段可能返回 null,表示取不到有效值。
13699
+ */
13700
+ TableType?: string
13701
+ /**
13702
+ * 项目Id
13703
+ 注意:此字段可能返回 null,表示取不到有效值。
13704
+ */
13705
+ ProjectId?: string
13706
+ /**
13707
+ * 所属项目英文名
13708
+ 注意:此字段可能返回 null,表示取不到有效值。
13709
+ */
13710
+ ProjectName?: string
13711
+ /**
13712
+ * 所属项目英中文名
13713
+ 注意:此字段可能返回 null,表示取不到有效值。
13714
+ */
13715
+ ProjectDisplayName?: string
13716
+ /**
13717
+ * 责任人ID
13718
+ 注意:此字段可能返回 null,表示取不到有效值。
13719
+ */
13720
+ TableOwnerId?: string
13721
+ /**
13722
+ * 责任人名称
13723
+ 注意:此字段可能返回 null,表示取不到有效值。
13724
+ */
13725
+ TableOwnerName?: string
13726
+ /**
13727
+ * 存储位置
13728
+ 注意:此字段可能返回 null,表示取不到有效值。
13729
+ */
13730
+ StorageLocation?: number
13731
+ /**
13732
+ * 表描述
13733
+ 注意:此字段可能返回 null,表示取不到有效值。
13734
+ */
13735
+ Description?: string
13736
+ /**
13737
+ * 是否分区表,0-全量表 1-分区表
13738
+ 注意:此字段可能返回 null,表示取不到有效值。
13739
+ */
13740
+ IsPartitionTable?: number
13741
+ /**
13742
+ * 分区字段list
13743
+ 注意:此字段可能返回 null,表示取不到有效值。
13744
+ */
13745
+ PartitionColumns?: Array<string>
13746
+ /**
13747
+ * 存储格式
13748
+ 注意:此字段可能返回 null,表示取不到有效值。
13749
+ */
13750
+ StorageFormat?: string
13751
+ /**
13752
+ * 存储量,字节数
13753
+ 注意:此字段可能返回 null,表示取不到有效值。
13754
+ */
13755
+ StorageSize?: number
13756
+ /**
13757
+ * 存储量,单位
13758
+ 注意:此字段可能返回 null,表示取不到有效值。
13759
+ */
13760
+ StorageSizeWithUnit?: string
13761
+ /**
13762
+ * 累计存储【MB】
13763
+ 注意:此字段可能返回 null,表示取不到有效值。
13764
+ */
13765
+ TotalSizeMb?: number
13766
+ /**
13767
+ * 副本数量
13768
+ 注意:此字段可能返回 null,表示取不到有效值。
13769
+ */
13770
+ ReplicaCount?: number
13771
+ /**
13772
+ * 文件数
13773
+ 注意:此字段可能返回 null,表示取不到有效值。
13774
+ */
13775
+ FileCount?: number
13776
+ /**
13777
+ * 分区总数(包含hive,iceberg)
13778
+ 注意:此字段可能返回 null,表示取不到有效值。
13779
+ */
13780
+ PartitionCount?: number
13781
+ /**
13782
+ * 分区字段数量(包含hive,iceberg)
13783
+ 注意:此字段可能返回 null,表示取不到有效值。
13784
+ */
13785
+ PartitionFieldCount?: number
13786
+ /**
13787
+ * 生命周期-分区保留天数【分区保留策略时有效】
13788
+ 注意:此字段可能返回 null,表示取不到有效值。
13789
+ */
13790
+ PartitionExpireDays?: number
13791
+ /**
13792
+ * 创建时间
13793
+ 注意:此字段可能返回 null,表示取不到有效值。
13794
+ */
13795
+ CreateTime?: string
13796
+ /**
13797
+ * 更新时间
13798
+ 注意:此字段可能返回 null,表示取不到有效值。
13799
+ */
13800
+ UpdateTime?: string
13801
+ }
13802
+
13343
13803
  /**
13344
13804
  * DescribeSchedulerRunTimeInstanceCntByStatus返回参数结构体
13345
13805
  */
@@ -14263,41 +14723,25 @@ export interface RerunInstancesRequest {
14263
14723
  }
14264
14724
 
14265
14725
  /**
14266
- * 按天更新的表的资产评分
14726
+ * DescribeFieldBasicInfo请求参数结构体
14267
14727
  */
14268
- export interface TablePropertyScore {
14269
- /**
14270
- * 表ID
14271
- */
14272
- TableId: string
14728
+ export interface DescribeFieldBasicInfoRequest {
14273
14729
  /**
14274
- * 统计日期
14275
- */
14276
- DayTime: string
14277
- /**
14278
- * 表完整性评分
14279
- */
14280
- Integrity: number
14281
- /**
14282
- * 表保障性评分
14283
- */
14284
- Safety: number
14285
- /**
14286
- * 表及时性评分
14730
+ * 分页页码
14287
14731
  */
14288
- Timeliness: number
14732
+ PageNumber?: number
14289
14733
  /**
14290
- * 表稳定性评分
14734
+ * 分页大小
14291
14735
  */
14292
- Stability: number
14736
+ PageSize?: number
14293
14737
  /**
14294
- * 表规范性评分
14738
+ * 过滤字段
14295
14739
  */
14296
- Normative: number
14740
+ Filters?: Array<Filter>
14297
14741
  /**
14298
- * 资产评分平均分
14742
+ * 排序字段
14299
14743
  */
14300
- Average: number
14744
+ OrderFields?: Array<OrderField>
14301
14745
  }
14302
14746
 
14303
14747
  /**
@@ -17314,6 +17758,44 @@ export interface CreateRuleRequest {
17314
17758
  SourceEngineTypes?: Array<number | bigint>
17315
17759
  }
17316
17760
 
17761
+ /**
17762
+ * 集成节点schema
17763
+ */
17764
+ export interface IntegrationNodeSchema {
17765
+ /**
17766
+ * schema id
17767
+ */
17768
+ Id: string
17769
+ /**
17770
+ * schema名称
17771
+ */
17772
+ Name: string
17773
+ /**
17774
+ * schema类型
17775
+ */
17776
+ Type: string
17777
+ /**
17778
+ * schema值
17779
+ 注意:此字段可能返回 null,表示取不到有效值。
17780
+ */
17781
+ Value?: string
17782
+ /**
17783
+ * schema拓展属性
17784
+ 注意:此字段可能返回 null,表示取不到有效值。
17785
+ */
17786
+ Properties?: Array<RecordField>
17787
+ /**
17788
+ * schema别名
17789
+ 注意:此字段可能返回 null,表示取不到有效值。
17790
+ */
17791
+ Alias?: string
17792
+ /**
17793
+ * 字段备注
17794
+ 注意:此字段可能返回 null,表示取不到有效值。
17795
+ */
17796
+ Comment?: string
17797
+ }
17798
+
17317
17799
  /**
17318
17800
  * DescribeColumnsMeta返回参数结构体
17319
17801
  */
@@ -22661,41 +23143,25 @@ export interface DescribeDatasourceResponse {
22661
23143
  }
22662
23144
 
22663
23145
  /**
22664
- * 集成节点schema
23146
+ * DescribeTableBasicInfo请求参数结构体
22665
23147
  */
22666
- export interface IntegrationNodeSchema {
22667
- /**
22668
- * schema id
22669
- */
22670
- Id: string
22671
- /**
22672
- * schema名称
22673
- */
22674
- Name: string
22675
- /**
22676
- * schema类型
22677
- */
22678
- Type: string
23148
+ export interface DescribeTableBasicInfoRequest {
22679
23149
  /**
22680
- * schema值
22681
- 注意:此字段可能返回 null,表示取不到有效值。
23150
+ * 分页页码
22682
23151
  */
22683
- Value?: string
23152
+ PageNumber?: number
22684
23153
  /**
22685
- * schema拓展属性
22686
- 注意:此字段可能返回 null,表示取不到有效值。
23154
+ * 分页大小
22687
23155
  */
22688
- Properties?: Array<RecordField>
23156
+ PageSize?: number
22689
23157
  /**
22690
- * schema别名
22691
- 注意:此字段可能返回 null,表示取不到有效值。
23158
+ * 过滤字段
22692
23159
  */
22693
- Alias?: string
23160
+ Filters?: Array<Filter>
22694
23161
  /**
22695
- * 字段备注
22696
- 注意:此字段可能返回 null,表示取不到有效值。
23162
+ * 排序字段
22697
23163
  */
22698
- Comment?: string
23164
+ OrderFields?: Array<OrderField>
22699
23165
  }
22700
23166
 
22701
23167
  /**
@@ -23502,6 +23968,21 @@ export interface DescribeAlarmReceiverResponse {
23502
23968
  RequestId?: string
23503
23969
  }
23504
23970
 
23971
+ /**
23972
+ * DescribeTableLineageInfo返回参数结构体
23973
+ */
23974
+ export interface DescribeTableLineageInfoResponse {
23975
+ /**
23976
+ * 表血缘信息
23977
+ 注意:此字段可能返回 null,表示取不到有效值。
23978
+ */
23979
+ TableLineageBasicInfo?: TableLineageBaseInfo
23980
+ /**
23981
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
23982
+ */
23983
+ RequestId?: string
23984
+ }
23985
+
23505
23986
  /**
23506
23987
  * 快照过期治理项
23507
23988
  */