tencentcloud-sdk-wedata 3.0.609 → 3.0.611

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09ee87dc0b57a5dca754e9be7010ee4d1631f562
4
- data.tar.gz: 92e406900be814a9cff8815fc7c86ee22b1daca6
3
+ metadata.gz: 8bd5253d7a0516686a6207105d00b7fe103e7253
4
+ data.tar.gz: fd5995227e5cb946dfbc949157710480480c3ae7
5
5
  SHA512:
6
- metadata.gz: 07355dbaf84aa33436cda3d96fdd97206e8b08ecf7089bec29506d779857e3a04a054316dbf7e70690107395051cd0ed63d80c2e081bba8858159ebdfaa85b0e
7
- data.tar.gz: abfc9a756f6d6b295139c7d357fd292eaf1952e343999ece2ca4a563e71d37942dcebc4951a78dcf8e80e27a9b8902af50afe8e753c29aa4e60b279beef80401
6
+ metadata.gz: 0add1317b2955fe50626bec3f4da2656f16764f84cfc2d8816f29aa11047bffe981f6d9b5af60b970d90cc93e13c64c4f5478da49ae1620ca2d901ab5fa89012
7
+ data.tar.gz: 0c9c11b9bf8b82bac3f7bfb1554bd418aa0c336c0bd9953084588712f293d92859716c254aee0b3d3c64d28e97eb139faf849a7ea40c9280c68b3f9288401e2b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.609
1
+ 3.0.611
@@ -1383,6 +1383,30 @@ module TencentCloud
1383
1383
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1384
1384
  end
1385
1385
 
1386
+ # 列出字段血缘信息
1387
+
1388
+ # @param request: Request instance for DescribeColumnLineage.
1389
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeColumnLineageRequest`
1390
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeColumnLineageResponse`
1391
+ def DescribeColumnLineage(request)
1392
+ body = send_request('DescribeColumnLineage', request.serialize)
1393
+ response = JSON.parse(body)
1394
+ if response['Response'].key?('Error') == false
1395
+ model = DescribeColumnLineageResponse.new
1396
+ model.deserialize(response['Response'])
1397
+ model
1398
+ else
1399
+ code = response['Response']['Error']['Code']
1400
+ message = response['Response']['Error']['Message']
1401
+ reqid = response['Response']['RequestId']
1402
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1403
+ end
1404
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1405
+ raise e
1406
+ rescue StandardError => e
1407
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1408
+ end
1409
+
1386
1410
  # 查询数据来源列表
1387
1411
 
1388
1412
  # @param request: Request instance for DescribeDataBases.
@@ -3217,6 +3241,30 @@ module TencentCloud
3217
3241
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3218
3242
  end
3219
3243
 
3244
+ # 列出表血缘信息
3245
+
3246
+ # @param request: Request instance for DescribeTableLineage.
3247
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableLineageRequest`
3248
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableLineageResponse`
3249
+ def DescribeTableLineage(request)
3250
+ body = send_request('DescribeTableLineage', request.serialize)
3251
+ response = JSON.parse(body)
3252
+ if response['Response'].key?('Error') == false
3253
+ model = DescribeTableLineageResponse.new
3254
+ model.deserialize(response['Response'])
3255
+ model
3256
+ else
3257
+ code = response['Response']['Error']['Code']
3258
+ message = response['Response']['Error']['Message']
3259
+ reqid = response['Response']['RequestId']
3260
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3261
+ end
3262
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3263
+ raise e
3264
+ rescue StandardError => e
3265
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3266
+ end
3267
+
3220
3268
  # 质量报告-查询表质量详情
3221
3269
 
3222
3270
  # @param request: Request instance for DescribeTableQualityDetails.
@@ -1454,6 +1454,189 @@ module TencentCloud
1454
1454
  end
1455
1455
  end
1456
1456
 
1457
+ # 列血缘聚合信息
1458
+ class ColumnAggregationLineage < TencentCloud::Common::AbstractModel
1459
+ # @param TableName: 表名
1460
+ # 注意:此字段可能返回 null,表示取不到有效值。
1461
+ # @type TableName: String
1462
+ # @param ParentId: 父节点ID
1463
+ # 注意:此字段可能返回 null,表示取不到有效值。
1464
+ # @type ParentId: String
1465
+ # @param MetastoreType: 元数据类型
1466
+ # 注意:此字段可能返回 null,表示取不到有效值。
1467
+ # @type MetastoreType: String
1468
+ # @param ParentSet: 字符串类型的父节点集合
1469
+ # 注意:此字段可能返回 null,表示取不到有效值。
1470
+ # @type ParentSet: String
1471
+ # @param ChildSet: 字符串类型的子节点集合
1472
+ # 注意:此字段可能返回 null,表示取不到有效值。
1473
+ # @type ChildSet: String
1474
+ # @param ColumnInfoSet: 列信息集合
1475
+ # 注意:此字段可能返回 null,表示取不到有效值。
1476
+ # @type ColumnInfoSet: Array
1477
+
1478
+ attr_accessor :TableName, :ParentId, :MetastoreType, :ParentSet, :ChildSet, :ColumnInfoSet
1479
+
1480
+ def initialize(tablename=nil, parentid=nil, metastoretype=nil, parentset=nil, childset=nil, columninfoset=nil)
1481
+ @TableName = tablename
1482
+ @ParentId = parentid
1483
+ @MetastoreType = metastoretype
1484
+ @ParentSet = parentset
1485
+ @ChildSet = childset
1486
+ @ColumnInfoSet = columninfoset
1487
+ end
1488
+
1489
+ def deserialize(params)
1490
+ @TableName = params['TableName']
1491
+ @ParentId = params['ParentId']
1492
+ @MetastoreType = params['MetastoreType']
1493
+ @ParentSet = params['ParentSet']
1494
+ @ChildSet = params['ChildSet']
1495
+ unless params['ColumnInfoSet'].nil?
1496
+ @ColumnInfoSet = []
1497
+ params['ColumnInfoSet'].each do |i|
1498
+ simplecolumninfo_tmp = SimpleColumnInfo.new
1499
+ simplecolumninfo_tmp.deserialize(i)
1500
+ @ColumnInfoSet << simplecolumninfo_tmp
1501
+ end
1502
+ end
1503
+ end
1504
+ end
1505
+
1506
+ # 血缘字段信息
1507
+ class ColumnLineageInfo < TencentCloud::Common::AbstractModel
1508
+ # @param Id: 血缘id
1509
+ # 注意:此字段可能返回 null,表示取不到有效值。
1510
+ # @type Id: String
1511
+ # @param PrefixPath: 由中心节点出发的路径信息
1512
+ # 注意:此字段可能返回 null,表示取不到有效值。
1513
+ # @type PrefixPath: String
1514
+ # @param DatasourceId: 数据源ID
1515
+ # 注意:此字段可能返回 null,表示取不到有效值。
1516
+ # @type DatasourceId: String
1517
+ # @param TableId: 表ID
1518
+ # 注意:此字段可能返回 null,表示取不到有效值。
1519
+ # @type TableId: String
1520
+ # @param ColumnName: 字段名称
1521
+ # 注意:此字段可能返回 null,表示取不到有效值。
1522
+ # @type ColumnName: String
1523
+ # @param ColumnNameCn: 字段中文名称
1524
+ # 注意:此字段可能返回 null,表示取不到有效值。
1525
+ # @type ColumnNameCn: String
1526
+ # @param ColumnType: 字段类型
1527
+ # 注意:此字段可能返回 null,表示取不到有效值。
1528
+ # @type ColumnType: String
1529
+ # @param RelationParams: 关系参数
1530
+ # 注意:此字段可能返回 null,表示取不到有效值。
1531
+ # @type RelationParams: String
1532
+ # @param Params: 参数
1533
+ # 注意:此字段可能返回 null,表示取不到有效值。
1534
+ # @type Params: String
1535
+ # @param ParentId: 父id
1536
+ # 注意:此字段可能返回 null,表示取不到有效值。
1537
+ # @type ParentId: String
1538
+ # @param MetastoreType: 元数据类型
1539
+ # 注意:此字段可能返回 null,表示取不到有效值。
1540
+ # @type MetastoreType: String
1541
+ # @param MetastoreTypeName: 元数据类型名称
1542
+ # 注意:此字段可能返回 null,表示取不到有效值。
1543
+ # @type MetastoreTypeName: String
1544
+ # @param TableName: 表名称
1545
+ # 注意:此字段可能返回 null,表示取不到有效值。
1546
+ # @type TableName: String
1547
+ # @param QualifiedName: 字段全名称
1548
+ # 注意:此字段可能返回 null,表示取不到有效值。
1549
+ # @type QualifiedName: String
1550
+ # @param DownStreamCount: 下游节点数
1551
+ # 注意:此字段可能返回 null,表示取不到有效值。
1552
+ # @type DownStreamCount: Integer
1553
+ # @param UpStreamCount: 上游节点数
1554
+ # 注意:此字段可能返回 null,表示取不到有效值。
1555
+ # @type UpStreamCount: Integer
1556
+ # @param Description: 描述信息
1557
+ # 注意:此字段可能返回 null,表示取不到有效值。
1558
+ # @type Description: String
1559
+ # @param CreateTime: 创建时间
1560
+ # 注意:此字段可能返回 null,表示取不到有效值。
1561
+ # @type CreateTime: String
1562
+ # @param ModifyTime: 更新时间
1563
+ # 注意:此字段可能返回 null,表示取不到有效值。
1564
+ # @type ModifyTime: String
1565
+ # @param Tasks: 任务id列表
1566
+ # 注意:此字段可能返回 null,表示取不到有效值。
1567
+ # @type Tasks: Array
1568
+ # @param ParentSet: 父节点列表字符串
1569
+ # 注意:此字段可能返回 null,表示取不到有效值。
1570
+ # @type ParentSet: String
1571
+ # @param ChildSet: 子节点列表字符串
1572
+ # 注意:此字段可能返回 null,表示取不到有效值。
1573
+ # @type ChildSet: String
1574
+ # @param ExtParams: 额外参数
1575
+ # 注意:此字段可能返回 null,表示取不到有效值。
1576
+ # @type ExtParams: Array
1577
+
1578
+ attr_accessor :Id, :PrefixPath, :DatasourceId, :TableId, :ColumnName, :ColumnNameCn, :ColumnType, :RelationParams, :Params, :ParentId, :MetastoreType, :MetastoreTypeName, :TableName, :QualifiedName, :DownStreamCount, :UpStreamCount, :Description, :CreateTime, :ModifyTime, :Tasks, :ParentSet, :ChildSet, :ExtParams
1579
+
1580
+ def initialize(id=nil, prefixpath=nil, datasourceid=nil, tableid=nil, columnname=nil, columnnamecn=nil, columntype=nil, relationparams=nil, params=nil, parentid=nil, metastoretype=nil, metastoretypename=nil, tablename=nil, qualifiedname=nil, downstreamcount=nil, upstreamcount=nil, description=nil, createtime=nil, modifytime=nil, tasks=nil, parentset=nil, childset=nil, extparams=nil)
1581
+ @Id = id
1582
+ @PrefixPath = prefixpath
1583
+ @DatasourceId = datasourceid
1584
+ @TableId = tableid
1585
+ @ColumnName = columnname
1586
+ @ColumnNameCn = columnnamecn
1587
+ @ColumnType = columntype
1588
+ @RelationParams = relationparams
1589
+ @Params = params
1590
+ @ParentId = parentid
1591
+ @MetastoreType = metastoretype
1592
+ @MetastoreTypeName = metastoretypename
1593
+ @TableName = tablename
1594
+ @QualifiedName = qualifiedname
1595
+ @DownStreamCount = downstreamcount
1596
+ @UpStreamCount = upstreamcount
1597
+ @Description = description
1598
+ @CreateTime = createtime
1599
+ @ModifyTime = modifytime
1600
+ @Tasks = tasks
1601
+ @ParentSet = parentset
1602
+ @ChildSet = childset
1603
+ @ExtParams = extparams
1604
+ end
1605
+
1606
+ def deserialize(params)
1607
+ @Id = params['Id']
1608
+ @PrefixPath = params['PrefixPath']
1609
+ @DatasourceId = params['DatasourceId']
1610
+ @TableId = params['TableId']
1611
+ @ColumnName = params['ColumnName']
1612
+ @ColumnNameCn = params['ColumnNameCn']
1613
+ @ColumnType = params['ColumnType']
1614
+ @RelationParams = params['RelationParams']
1615
+ @Params = params['Params']
1616
+ @ParentId = params['ParentId']
1617
+ @MetastoreType = params['MetastoreType']
1618
+ @MetastoreTypeName = params['MetastoreTypeName']
1619
+ @TableName = params['TableName']
1620
+ @QualifiedName = params['QualifiedName']
1621
+ @DownStreamCount = params['DownStreamCount']
1622
+ @UpStreamCount = params['UpStreamCount']
1623
+ @Description = params['Description']
1624
+ @CreateTime = params['CreateTime']
1625
+ @ModifyTime = params['ModifyTime']
1626
+ @Tasks = params['Tasks']
1627
+ @ParentSet = params['ParentSet']
1628
+ @ChildSet = params['ChildSet']
1629
+ unless params['ExtParams'].nil?
1630
+ @ExtParams = []
1631
+ params['ExtParams'].each do |i|
1632
+ lineageparamrecord_tmp = LineageParamRecord.new
1633
+ lineageparamrecord_tmp.deserialize(i)
1634
+ @ExtParams << lineageparamrecord_tmp
1635
+ end
1636
+ end
1637
+ end
1638
+ end
1639
+
1457
1640
  # CommitExportTask请求参数结构体
1458
1641
  class CommitExportTaskRequest < TencentCloud::Common::AbstractModel
1459
1642
  # @param ProjectId: 项目id
@@ -4314,6 +4497,76 @@ module TencentCloud
4314
4497
  end
4315
4498
  end
4316
4499
 
4500
+ # DescribeColumnLineage请求参数结构体
4501
+ class DescribeColumnLineageRequest < TencentCloud::Common::AbstractModel
4502
+ # @param Direction: 查询方向,INPUT,OUTPUT,BOTH枚举值
4503
+ # @type Direction: String
4504
+ # @param Data: 字段信息
4505
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.ColumnLineageInfo`
4506
+ # @param InputDepth: 单次查询入度
4507
+ # @type InputDepth: Integer
4508
+ # @param OutputDepth: 单次查询出度
4509
+ # @type OutputDepth: Integer
4510
+ # @param ExtParams: 额外参数(传递调用方信息)
4511
+ # @type ExtParams: Array
4512
+ # @param IgnoreTemp: 是否过滤临时表 默认值为true
4513
+ # @type IgnoreTemp: Boolean
4514
+
4515
+ attr_accessor :Direction, :Data, :InputDepth, :OutputDepth, :ExtParams, :IgnoreTemp
4516
+
4517
+ def initialize(direction=nil, data=nil, inputdepth=nil, outputdepth=nil, extparams=nil, ignoretemp=nil)
4518
+ @Direction = direction
4519
+ @Data = data
4520
+ @InputDepth = inputdepth
4521
+ @OutputDepth = outputdepth
4522
+ @ExtParams = extparams
4523
+ @IgnoreTemp = ignoretemp
4524
+ end
4525
+
4526
+ def deserialize(params)
4527
+ @Direction = params['Direction']
4528
+ unless params['Data'].nil?
4529
+ @Data = ColumnLineageInfo.new
4530
+ @Data.deserialize(params['Data'])
4531
+ end
4532
+ @InputDepth = params['InputDepth']
4533
+ @OutputDepth = params['OutputDepth']
4534
+ unless params['ExtParams'].nil?
4535
+ @ExtParams = []
4536
+ params['ExtParams'].each do |i|
4537
+ recordfield_tmp = RecordField.new
4538
+ recordfield_tmp.deserialize(i)
4539
+ @ExtParams << recordfield_tmp
4540
+ end
4541
+ end
4542
+ @IgnoreTemp = params['IgnoreTemp']
4543
+ end
4544
+ end
4545
+
4546
+ # DescribeColumnLineage返回参数结构体
4547
+ class DescribeColumnLineageResponse < TencentCloud::Common::AbstractModel
4548
+ # @param ColumnAggregationLineage: 字段血缘信息
4549
+ # 注意:此字段可能返回 null,表示取不到有效值。
4550
+ # @type ColumnAggregationLineage: :class:`Tencentcloud::Wedata.v20210820.models.ColumnAggregationLineage`
4551
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4552
+ # @type RequestId: String
4553
+
4554
+ attr_accessor :ColumnAggregationLineage, :RequestId
4555
+
4556
+ def initialize(columnaggregationlineage=nil, requestid=nil)
4557
+ @ColumnAggregationLineage = columnaggregationlineage
4558
+ @RequestId = requestid
4559
+ end
4560
+
4561
+ def deserialize(params)
4562
+ unless params['ColumnAggregationLineage'].nil?
4563
+ @ColumnAggregationLineage = ColumnAggregationLineage.new
4564
+ @ColumnAggregationLineage.deserialize(params['ColumnAggregationLineage'])
4565
+ end
4566
+ @RequestId = params['RequestId']
4567
+ end
4568
+ end
4569
+
4317
4570
  # DescribeDataBases请求参数结构体
4318
4571
  class DescribeDataBasesRequest < TencentCloud::Common::AbstractModel
4319
4572
  # @param ProjectId: 项目Id
@@ -8791,6 +9044,76 @@ module TencentCloud
8791
9044
  end
8792
9045
  end
8793
9046
 
9047
+ # DescribeTableLineage请求参数结构体
9048
+ class DescribeTableLineageRequest < TencentCloud::Common::AbstractModel
9049
+ # @param Direction: 查询方向,INPUT,OUTPUT,BOTH枚举值
9050
+ # @type Direction: String
9051
+ # @param Data: 表信息
9052
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.TableLineageInfo`
9053
+ # @param InputDepth: 单次查询入度,默认 1
9054
+ # @type InputDepth: Integer
9055
+ # @param OutputDepth: 单次查询出度,默认 1
9056
+ # @type OutputDepth: Integer
9057
+ # @param ExtParams: 额外参数(传递调用方信息)
9058
+ # @type ExtParams: Array
9059
+ # @param IgnoreTemp: 是否过滤临时表,默认true
9060
+ # @type IgnoreTemp: Boolean
9061
+
9062
+ attr_accessor :Direction, :Data, :InputDepth, :OutputDepth, :ExtParams, :IgnoreTemp
9063
+
9064
+ def initialize(direction=nil, data=nil, inputdepth=nil, outputdepth=nil, extparams=nil, ignoretemp=nil)
9065
+ @Direction = direction
9066
+ @Data = data
9067
+ @InputDepth = inputdepth
9068
+ @OutputDepth = outputdepth
9069
+ @ExtParams = extparams
9070
+ @IgnoreTemp = ignoretemp
9071
+ end
9072
+
9073
+ def deserialize(params)
9074
+ @Direction = params['Direction']
9075
+ unless params['Data'].nil?
9076
+ @Data = TableLineageInfo.new
9077
+ @Data.deserialize(params['Data'])
9078
+ end
9079
+ @InputDepth = params['InputDepth']
9080
+ @OutputDepth = params['OutputDepth']
9081
+ unless params['ExtParams'].nil?
9082
+ @ExtParams = []
9083
+ params['ExtParams'].each do |i|
9084
+ lineageparamrecord_tmp = LineageParamRecord.new
9085
+ lineageparamrecord_tmp.deserialize(i)
9086
+ @ExtParams << lineageparamrecord_tmp
9087
+ end
9088
+ end
9089
+ @IgnoreTemp = params['IgnoreTemp']
9090
+ end
9091
+ end
9092
+
9093
+ # DescribeTableLineage返回参数结构体
9094
+ class DescribeTableLineageResponse < TencentCloud::Common::AbstractModel
9095
+ # @param TableLineage: 表血缘信息
9096
+ # 注意:此字段可能返回 null,表示取不到有效值。
9097
+ # @type TableLineage: :class:`Tencentcloud::Wedata.v20210820.models.TableLineageInfo`
9098
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9099
+ # @type RequestId: String
9100
+
9101
+ attr_accessor :TableLineage, :RequestId
9102
+
9103
+ def initialize(tablelineage=nil, requestid=nil)
9104
+ @TableLineage = tablelineage
9105
+ @RequestId = requestid
9106
+ end
9107
+
9108
+ def deserialize(params)
9109
+ unless params['TableLineage'].nil?
9110
+ @TableLineage = TableLineageInfo.new
9111
+ @TableLineage.deserialize(params['TableLineage'])
9112
+ end
9113
+ @RequestId = params['RequestId']
9114
+ end
9115
+ end
9116
+
8794
9117
  # DescribeTableQualityDetails请求参数结构体
8795
9118
  class DescribeTableQualityDetailsRequest < TencentCloud::Common::AbstractModel
8796
9119
  # @param StatisticsDate: 统计日期
@@ -12205,6 +12528,27 @@ module TencentCloud
12205
12528
  end
12206
12529
  end
12207
12530
 
12531
+ # 血缘参数记录
12532
+ class LineageParamRecord < TencentCloud::Common::AbstractModel
12533
+ # @param Name: 字段名
12534
+ # @type Name: String
12535
+ # @param Value: 字段值
12536
+ # 注意:此字段可能返回 null,表示取不到有效值。
12537
+ # @type Value: String
12538
+
12539
+ attr_accessor :Name, :Value
12540
+
12541
+ def initialize(name=nil, value=nil)
12542
+ @Name = name
12543
+ @Value = value
12544
+ end
12545
+
12546
+ def deserialize(params)
12547
+ @Name = params['Name']
12548
+ @Value = params['Value']
12549
+ end
12550
+ end
12551
+
12208
12552
  # LockIntegrationTask请求参数结构体
12209
12553
  class LockIntegrationTaskRequest < TencentCloud::Common::AbstractModel
12210
12554
  # @param TaskId: 任务id
@@ -16984,6 +17328,93 @@ module TencentCloud
16984
17328
  end
16985
17329
  end
16986
17330
 
17331
+ # 血缘列描述
17332
+ class SimpleColumnInfo < TencentCloud::Common::AbstractModel
17333
+ # @param Id: 列ID
17334
+ # 注意:此字段可能返回 null,表示取不到有效值。
17335
+ # @type Id: String
17336
+ # @param QualifiedName: 限定名
17337
+ # 注意:此字段可能返回 null,表示取不到有效值。
17338
+ # @type QualifiedName: String
17339
+ # @param ColumnName: 列名
17340
+ # 注意:此字段可能返回 null,表示取不到有效值。
17341
+ # @type ColumnName: String
17342
+ # @param ColumnNameCn: 列中文名
17343
+ # 注意:此字段可能返回 null,表示取不到有效值。
17344
+ # @type ColumnNameCn: String
17345
+ # @param ColumnType: 列类型
17346
+ # 注意:此字段可能返回 null,表示取不到有效值。
17347
+ # @type ColumnType: String
17348
+ # @param Description: 列描述
17349
+ # 注意:此字段可能返回 null,表示取不到有效值。
17350
+ # @type Description: String
17351
+ # @param PrefixPath: 前缀路径
17352
+ # 注意:此字段可能返回 null,表示取不到有效值。
17353
+ # @type PrefixPath: String
17354
+ # @param CreateTime: 创建时间
17355
+ # 注意:此字段可能返回 null,表示取不到有效值。
17356
+ # @type CreateTime: String
17357
+ # @param ModifyTime: 修改时间
17358
+ # 注意:此字段可能返回 null,表示取不到有效值。
17359
+ # @type ModifyTime: String
17360
+ # @param DatasourceId: 数据源ID
17361
+ # 注意:此字段可能返回 null,表示取不到有效值。
17362
+ # @type DatasourceId: String
17363
+ # @param DownStreamCount: 下游数量
17364
+ # 注意:此字段可能返回 null,表示取不到有效值。
17365
+ # @type DownStreamCount: Integer
17366
+ # @param UpStreamCount: 上游数量
17367
+ # 注意:此字段可能返回 null,表示取不到有效值。
17368
+ # @type UpStreamCount: Integer
17369
+ # @param RelationParams: 关系参数
17370
+ # 注意:此字段可能返回 null,表示取不到有效值。
17371
+ # @type RelationParams: String
17372
+ # @param Params: 参数
17373
+ # 注意:此字段可能返回 null,表示取不到有效值。
17374
+ # @type Params: String
17375
+ # @param Tasks: 任务集合
17376
+ # 注意:此字段可能返回 null,表示取不到有效值。
17377
+ # @type Tasks: Array
17378
+
17379
+ attr_accessor :Id, :QualifiedName, :ColumnName, :ColumnNameCn, :ColumnType, :Description, :PrefixPath, :CreateTime, :ModifyTime, :DatasourceId, :DownStreamCount, :UpStreamCount, :RelationParams, :Params, :Tasks
17380
+
17381
+ def initialize(id=nil, qualifiedname=nil, columnname=nil, columnnamecn=nil, columntype=nil, description=nil, prefixpath=nil, createtime=nil, modifytime=nil, datasourceid=nil, downstreamcount=nil, upstreamcount=nil, relationparams=nil, params=nil, tasks=nil)
17382
+ @Id = id
17383
+ @QualifiedName = qualifiedname
17384
+ @ColumnName = columnname
17385
+ @ColumnNameCn = columnnamecn
17386
+ @ColumnType = columntype
17387
+ @Description = description
17388
+ @PrefixPath = prefixpath
17389
+ @CreateTime = createtime
17390
+ @ModifyTime = modifytime
17391
+ @DatasourceId = datasourceid
17392
+ @DownStreamCount = downstreamcount
17393
+ @UpStreamCount = upstreamcount
17394
+ @RelationParams = relationparams
17395
+ @Params = params
17396
+ @Tasks = tasks
17397
+ end
17398
+
17399
+ def deserialize(params)
17400
+ @Id = params['Id']
17401
+ @QualifiedName = params['QualifiedName']
17402
+ @ColumnName = params['ColumnName']
17403
+ @ColumnNameCn = params['ColumnNameCn']
17404
+ @ColumnType = params['ColumnType']
17405
+ @Description = params['Description']
17406
+ @PrefixPath = params['PrefixPath']
17407
+ @CreateTime = params['CreateTime']
17408
+ @ModifyTime = params['ModifyTime']
17409
+ @DatasourceId = params['DatasourceId']
17410
+ @DownStreamCount = params['DownStreamCount']
17411
+ @UpStreamCount = params['UpStreamCount']
17412
+ @RelationParams = params['RelationParams']
17413
+ @Params = params['Params']
17414
+ @Tasks = params['Tasks']
17415
+ end
17416
+ end
17417
+
16987
17418
  # 简单Task信息
16988
17419
  class SimpleTaskInfo < TencentCloud::Common::AbstractModel
16989
17420
  # @param TaskId: 任务ID
@@ -17606,6 +18037,127 @@ module TencentCloud
17606
18037
  end
17607
18038
  end
17608
18039
 
18040
+ # 表血缘详细信息
18041
+ class TableLineageInfo < TencentCloud::Common::AbstractModel
18042
+ # @param MetastoreType: 元数据类型
18043
+ # 注意:此字段可能返回 null,表示取不到有效值。
18044
+ # @type MetastoreType: String
18045
+ # @param PrefixPath: 由中心节点到该节点的路径
18046
+ # 注意:此字段可能返回 null,表示取不到有效值。
18047
+ # @type PrefixPath: String
18048
+ # @param ProjectId: 空间id
18049
+ # 注意:此字段可能返回 null,表示取不到有效值。
18050
+ # @type ProjectId: String
18051
+ # @param DatasourceId: 数据源id
18052
+ # 注意:此字段可能返回 null,表示取不到有效值。
18053
+ # @type DatasourceId: String
18054
+ # @param TableId: 表id
18055
+ # 注意:此字段可能返回 null,表示取不到有效值。
18056
+ # @type TableId: String
18057
+ # @param Params: 表血缘参数
18058
+ # 注意:此字段可能返回 null,表示取不到有效值。
18059
+ # @type Params: Array
18060
+ # @param ParentSet: 父节点列表
18061
+ # 注意:此字段可能返回 null,表示取不到有效值。
18062
+ # @type ParentSet: String
18063
+ # @param ChildSet: 子节点列表
18064
+ # 注意:此字段可能返回 null,表示取不到有效值。
18065
+ # @type ChildSet: String
18066
+ # @param ExtParams: 额外参数
18067
+ # 注意:此字段可能返回 null,表示取不到有效值。
18068
+ # @type ExtParams: Array
18069
+ # @param Id: 血缘id
18070
+ # 注意:此字段可能返回 null,表示取不到有效值。
18071
+ # @type Id: String
18072
+ # @param MetastoreTypeName: 元数据类型名称
18073
+ # 注意:此字段可能返回 null,表示取不到有效值。
18074
+ # @type MetastoreTypeName: String
18075
+ # @param TableName: 表名称
18076
+ # 注意:此字段可能返回 null,表示取不到有效值。
18077
+ # @type TableName: String
18078
+ # @param QualifiedName: 表全称
18079
+ # 注意:此字段可能返回 null,表示取不到有效值。
18080
+ # @type QualifiedName: String
18081
+ # @param DownStreamCount: 血缘下游节点数
18082
+ # 注意:此字段可能返回 null,表示取不到有效值。
18083
+ # @type DownStreamCount: Integer
18084
+ # @param UpStreamCount: 血缘上游节点数
18085
+ # 注意:此字段可能返回 null,表示取不到有效值。
18086
+ # @type UpStreamCount: Integer
18087
+ # @param Description: 血缘描述
18088
+ # 注意:此字段可能返回 null,表示取不到有效值。
18089
+ # @type Description: String
18090
+ # @param CreateTime: 血缘创建时间
18091
+ # 注意:此字段可能返回 null,表示取不到有效值。
18092
+ # @type CreateTime: String
18093
+ # @param ModifyTime: 血缘更新时间
18094
+ # 注意:此字段可能返回 null,表示取不到有效值。
18095
+ # @type ModifyTime: String
18096
+ # @param Tasks: 修改血缘的任务id列表
18097
+ # 注意:此字段可能返回 null,表示取不到有效值。
18098
+ # @type Tasks: Array
18099
+
18100
+ attr_accessor :MetastoreType, :PrefixPath, :ProjectId, :DatasourceId, :TableId, :Params, :ParentSet, :ChildSet, :ExtParams, :Id, :MetastoreTypeName, :TableName, :QualifiedName, :DownStreamCount, :UpStreamCount, :Description, :CreateTime, :ModifyTime, :Tasks
18101
+
18102
+ def initialize(metastoretype=nil, prefixpath=nil, projectid=nil, datasourceid=nil, tableid=nil, params=nil, parentset=nil, childset=nil, extparams=nil, id=nil, metastoretypename=nil, tablename=nil, qualifiedname=nil, downstreamcount=nil, upstreamcount=nil, description=nil, createtime=nil, modifytime=nil, tasks=nil)
18103
+ @MetastoreType = metastoretype
18104
+ @PrefixPath = prefixpath
18105
+ @ProjectId = projectid
18106
+ @DatasourceId = datasourceid
18107
+ @TableId = tableid
18108
+ @Params = params
18109
+ @ParentSet = parentset
18110
+ @ChildSet = childset
18111
+ @ExtParams = extparams
18112
+ @Id = id
18113
+ @MetastoreTypeName = metastoretypename
18114
+ @TableName = tablename
18115
+ @QualifiedName = qualifiedname
18116
+ @DownStreamCount = downstreamcount
18117
+ @UpStreamCount = upstreamcount
18118
+ @Description = description
18119
+ @CreateTime = createtime
18120
+ @ModifyTime = modifytime
18121
+ @Tasks = tasks
18122
+ end
18123
+
18124
+ def deserialize(params)
18125
+ @MetastoreType = params['MetastoreType']
18126
+ @PrefixPath = params['PrefixPath']
18127
+ @ProjectId = params['ProjectId']
18128
+ @DatasourceId = params['DatasourceId']
18129
+ @TableId = params['TableId']
18130
+ unless params['Params'].nil?
18131
+ @Params = []
18132
+ params['Params'].each do |i|
18133
+ lineageparamrecord_tmp = LineageParamRecord.new
18134
+ lineageparamrecord_tmp.deserialize(i)
18135
+ @Params << lineageparamrecord_tmp
18136
+ end
18137
+ end
18138
+ @ParentSet = params['ParentSet']
18139
+ @ChildSet = params['ChildSet']
18140
+ unless params['ExtParams'].nil?
18141
+ @ExtParams = []
18142
+ params['ExtParams'].each do |i|
18143
+ recordfield_tmp = RecordField.new
18144
+ recordfield_tmp.deserialize(i)
18145
+ @ExtParams << recordfield_tmp
18146
+ end
18147
+ end
18148
+ @Id = params['Id']
18149
+ @MetastoreTypeName = params['MetastoreTypeName']
18150
+ @TableName = params['TableName']
18151
+ @QualifiedName = params['QualifiedName']
18152
+ @DownStreamCount = params['DownStreamCount']
18153
+ @UpStreamCount = params['UpStreamCount']
18154
+ @Description = params['Description']
18155
+ @CreateTime = params['CreateTime']
18156
+ @ModifyTime = params['ModifyTime']
18157
+ @Tasks = params['Tasks']
18158
+ end
18159
+ end
18160
+
17609
18161
  # 表质量详情
17610
18162
  class TableQualityDetail < TencentCloud::Common::AbstractModel
17611
18163
  # @param DatabaseId: 数据库id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.609
4
+ version: 3.0.611
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-10 00:00:00.000000000 Z
11
+ date: 2023-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20210820/client.rb
37
- - lib/v20210820/models.rb
38
36
  - lib/tencentcloud-sdk-wedata.rb
37
+ - lib/v20210820/models.rb
38
+ - lib/v20210820/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: