tencentcloud-sdk-wedata 3.0.699 → 3.0.701

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: 29e843ebe824bcfc73bceb3f0d1e30b4e8af6f36
4
- data.tar.gz: 336adea5c3e1c5ef2f573910c9cab22a5428706a
3
+ metadata.gz: a9b6f0c72a901ee61cd38fe8b9b7c2b74b6802b6
4
+ data.tar.gz: 383231264b9145497730b0e548b4bd7b2eaa068d
5
5
  SHA512:
6
- metadata.gz: f5c85cb3146d552403f77d40c7e11ea173e433be3619cfcc2fe42b97225944fadecdfad85776d8cf7f45a30c3f729c8077ab7ff730e7ddbe08b6145f97ec909a
7
- data.tar.gz: 12e4faf6321476b53cc1941abc5b5e2a72c56a7514c7f816574f065baeeba50f2d928b9cbf82b8a7eda0d33d71f65d0a4abaece7ee8c68a81ae174b4f6e50600
6
+ metadata.gz: 863611a1ec9617920844f1d5ec1c2a87833c4d100fdc5e1fc8342f0254a5995e343c9a7f74220384f11c69b55c9874bc092b62d227cd424f5185c29c51f3a03a
7
+ data.tar.gz: 29c62410edd4748ca9c3537982fb86ba06db87d9c32d31f02057cbc66d15db2183930a6c6fba26ddbd94304cdf159c4365cf5e82cb5cb9397d0b82c3fe40d19d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.699
1
+ 3.0.701
@@ -4947,6 +4947,30 @@ module TencentCloud
4947
4947
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4948
4948
  end
4949
4949
 
4950
+ # 获取表元数据list
4951
+
4952
+ # @param request: Request instance for DescribeTableMetas.
4953
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableMetasRequest`
4954
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableMetasResponse`
4955
+ def DescribeTableMetas(request)
4956
+ body = send_request('DescribeTableMetas', request.serialize)
4957
+ response = JSON.parse(body)
4958
+ if response['Response'].key?('Error') == false
4959
+ model = DescribeTableMetasResponse.new
4960
+ model.deserialize(response['Response'])
4961
+ model
4962
+ else
4963
+ code = response['Response']['Error']['Code']
4964
+ message = response['Response']['Error']['Message']
4965
+ reqid = response['Response']['RequestId']
4966
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4967
+ end
4968
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4969
+ raise e
4970
+ rescue StandardError => e
4971
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4972
+ end
4973
+
4950
4974
  # 质量报告-查询表质量详情
4951
4975
 
4952
4976
  # @param request: Request instance for DescribeTableQualityDetails.
@@ -14880,6 +14880,81 @@ module TencentCloud
14880
14880
  end
14881
14881
  end
14882
14882
 
14883
+ # DescribeTableMetas请求参数结构体
14884
+ class DescribeTableMetasRequest < TencentCloud::Common::AbstractModel
14885
+ # @param PageNumber: 分页页码
14886
+ # @type PageNumber: Integer
14887
+ # @param PageSize: 分页大小
14888
+ # @type PageSize: Integer
14889
+ # @param Filters: 过滤字段
14890
+ # @type Filters: Array
14891
+ # @param OrderFields: 排序字段
14892
+ # @type OrderFields: Array
14893
+
14894
+ attr_accessor :PageNumber, :PageSize, :Filters, :OrderFields
14895
+
14896
+ def initialize(pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil)
14897
+ @PageNumber = pagenumber
14898
+ @PageSize = pagesize
14899
+ @Filters = filters
14900
+ @OrderFields = orderfields
14901
+ end
14902
+
14903
+ def deserialize(params)
14904
+ @PageNumber = params['PageNumber']
14905
+ @PageSize = params['PageSize']
14906
+ unless params['Filters'].nil?
14907
+ @Filters = []
14908
+ params['Filters'].each do |i|
14909
+ filter_tmp = Filter.new
14910
+ filter_tmp.deserialize(i)
14911
+ @Filters << filter_tmp
14912
+ end
14913
+ end
14914
+ unless params['OrderFields'].nil?
14915
+ @OrderFields = []
14916
+ params['OrderFields'].each do |i|
14917
+ orderfield_tmp = OrderField.new
14918
+ orderfield_tmp.deserialize(i)
14919
+ @OrderFields << orderfield_tmp
14920
+ end
14921
+ end
14922
+ end
14923
+ end
14924
+
14925
+ # DescribeTableMetas返回参数结构体
14926
+ class DescribeTableMetasResponse < TencentCloud::Common::AbstractModel
14927
+ # @param TableMetas: 表元数据
14928
+ # 注意:此字段可能返回 null,表示取不到有效值。
14929
+ # @type TableMetas: Array
14930
+ # @param TotalCount: 总条数
14931
+ # 注意:此字段可能返回 null,表示取不到有效值。
14932
+ # @type TotalCount: Integer
14933
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14934
+ # @type RequestId: String
14935
+
14936
+ attr_accessor :TableMetas, :TotalCount, :RequestId
14937
+
14938
+ def initialize(tablemetas=nil, totalcount=nil, requestid=nil)
14939
+ @TableMetas = tablemetas
14940
+ @TotalCount = totalcount
14941
+ @RequestId = requestid
14942
+ end
14943
+
14944
+ def deserialize(params)
14945
+ unless params['TableMetas'].nil?
14946
+ @TableMetas = []
14947
+ params['TableMetas'].each do |i|
14948
+ tablemeta_tmp = TableMeta.new
14949
+ tablemeta_tmp.deserialize(i)
14950
+ @TableMetas << tablemeta_tmp
14951
+ end
14952
+ end
14953
+ @TotalCount = params['TotalCount']
14954
+ @RequestId = params['RequestId']
14955
+ end
14956
+ end
14957
+
14883
14958
  # DescribeTableQualityDetails请求参数结构体
14884
14959
  class DescribeTableQualityDetailsRequest < TencentCloud::Common::AbstractModel
14885
14960
  # @param StatisticsDate: 统计日期
@@ -27520,6 +27595,83 @@ module TencentCloud
27520
27595
  end
27521
27596
  end
27522
27597
 
27598
+ # 表字段信息
27599
+ class SearchColumnDocVO < TencentCloud::Common::AbstractModel
27600
+ # @param Name: 字段名称
27601
+ # 注意:此字段可能返回 null,表示取不到有效值。
27602
+ # @type Name: String
27603
+ # @param ChineseName: 字段中文名称
27604
+ # 注意:此字段可能返回 null,表示取不到有效值。
27605
+ # @type ChineseName: String
27606
+ # @param Type: 字段类型
27607
+ # 注意:此字段可能返回 null,表示取不到有效值。
27608
+ # @type Type: String
27609
+ # @param Length: 字段类型长度
27610
+ # 注意:此字段可能返回 null,表示取不到有效值。
27611
+ # @type Length: Integer
27612
+ # @param Precision: 字段类型精度
27613
+ # 注意:此字段可能返回 null,表示取不到有效值。
27614
+ # @type Precision: Integer
27615
+ # @param Scale: 字段类型scale
27616
+ # 注意:此字段可能返回 null,表示取不到有效值。
27617
+ # @type Scale: Integer
27618
+ # @param DefaultValue: 字段默认值
27619
+ # 注意:此字段可能返回 null,表示取不到有效值。
27620
+ # @type DefaultValue: String
27621
+ # @param Description: 字段描述
27622
+ # 注意:此字段可能返回 null,表示取不到有效值。
27623
+ # @type Description: String
27624
+ # @param Position: 字段的顺序
27625
+ # 注意:此字段可能返回 null,表示取不到有效值。
27626
+ # @type Position: Integer
27627
+ # @param IsPartition: 是否为分区字段
27628
+ # 注意:此字段可能返回 null,表示取不到有效值。
27629
+ # @type IsPartition: Boolean
27630
+ # @param ColumnKey: 列上的索引类型 主键: PRI,唯一索引: UNI,一般索引: MUL
27631
+ # 注意:此字段可能返回 null,表示取不到有效值。
27632
+ # @type ColumnKey: String
27633
+ # @param CreateTime: 创建时间
27634
+ # 注意:此字段可能返回 null,表示取不到有效值。
27635
+ # @type CreateTime: String
27636
+ # @param ModifiedTime: 更新时间
27637
+ # 注意:此字段可能返回 null,表示取不到有效值。
27638
+ # @type ModifiedTime: String
27639
+
27640
+ attr_accessor :Name, :ChineseName, :Type, :Length, :Precision, :Scale, :DefaultValue, :Description, :Position, :IsPartition, :ColumnKey, :CreateTime, :ModifiedTime
27641
+
27642
+ def initialize(name=nil, chinesename=nil, type=nil, length=nil, precision=nil, scale=nil, defaultvalue=nil, description=nil, position=nil, ispartition=nil, columnkey=nil, createtime=nil, modifiedtime=nil)
27643
+ @Name = name
27644
+ @ChineseName = chinesename
27645
+ @Type = type
27646
+ @Length = length
27647
+ @Precision = precision
27648
+ @Scale = scale
27649
+ @DefaultValue = defaultvalue
27650
+ @Description = description
27651
+ @Position = position
27652
+ @IsPartition = ispartition
27653
+ @ColumnKey = columnkey
27654
+ @CreateTime = createtime
27655
+ @ModifiedTime = modifiedtime
27656
+ end
27657
+
27658
+ def deserialize(params)
27659
+ @Name = params['Name']
27660
+ @ChineseName = params['ChineseName']
27661
+ @Type = params['Type']
27662
+ @Length = params['Length']
27663
+ @Precision = params['Precision']
27664
+ @Scale = params['Scale']
27665
+ @DefaultValue = params['DefaultValue']
27666
+ @Description = params['Description']
27667
+ @Position = params['Position']
27668
+ @IsPartition = params['IsPartition']
27669
+ @ColumnKey = params['ColumnKey']
27670
+ @CreateTime = params['CreateTime']
27671
+ @ModifiedTime = params['ModifiedTime']
27672
+ end
27673
+ end
27674
+
27523
27675
  # 查询实例条件
27524
27676
  class SearchCondition < TencentCloud::Common::AbstractModel
27525
27677
  # @param Instance: 查询框架,必选
@@ -28870,6 +29022,38 @@ module TencentCloud
28870
29022
  end
28871
29023
  end
28872
29024
 
29025
+ # 过去七天(不算当天)表的热度值
29026
+ class TableHeat < TencentCloud::Common::AbstractModel
29027
+ # @param TableId: 表ID
29028
+ # 注意:此字段可能返回 null,表示取不到有效值。
29029
+ # @type TableId: String
29030
+ # @param DayTime: 统计日期
29031
+ # 注意:此字段可能返回 null,表示取不到有效值。
29032
+ # @type DayTime: String
29033
+ # @param Heat: 表热度
29034
+ # 注意:此字段可能返回 null,表示取不到有效值。
29035
+ # @type Heat: Float
29036
+ # @param MaxHeat: 表热度最大值
29037
+ # 注意:此字段可能返回 null,表示取不到有效值。
29038
+ # @type MaxHeat: Float
29039
+
29040
+ attr_accessor :TableId, :DayTime, :Heat, :MaxHeat
29041
+
29042
+ def initialize(tableid=nil, daytime=nil, heat=nil, maxheat=nil)
29043
+ @TableId = tableid
29044
+ @DayTime = daytime
29045
+ @Heat = heat
29046
+ @MaxHeat = maxheat
29047
+ end
29048
+
29049
+ def deserialize(params)
29050
+ @TableId = params['TableId']
29051
+ @DayTime = params['DayTime']
29052
+ @Heat = params['Heat']
29053
+ @MaxHeat = params['MaxHeat']
29054
+ end
29055
+ end
29056
+
28873
29057
  # 元数据表详细信息
28874
29058
  class TableInfo < TencentCloud::Common::AbstractModel
28875
29059
  # @param TableId: 表Id
@@ -29023,6 +29207,310 @@ module TencentCloud
29023
29207
  end
29024
29208
  end
29025
29209
 
29210
+ # 表的元数据信息
29211
+ class TableMeta < TencentCloud::Common::AbstractModel
29212
+ # @param TableId: 表的全局唯一ID
29213
+ # 注意:此字段可能返回 null,表示取不到有效值。
29214
+ # @type TableId: String
29215
+ # @param TableName: 表名称
29216
+ # 注意:此字段可能返回 null,表示取不到有效值。
29217
+ # @type TableName: String
29218
+ # @param TableOwnerName: 责任人
29219
+ # 注意:此字段可能返回 null,表示取不到有效值。
29220
+ # @type TableOwnerName: String
29221
+ # @param DatasourceId: 数据源全局唯一ID
29222
+ # 注意:此字段可能返回 null,表示取不到有效值。
29223
+ # @type DatasourceId: Integer
29224
+ # @param ClusterName: 所属集群名称
29225
+ # 注意:此字段可能返回 null,表示取不到有效值。
29226
+ # @type ClusterName: String
29227
+ # @param DatasourceName: 数据源名
29228
+ # 注意:此字段可能返回 null,表示取不到有效值。
29229
+ # @type DatasourceName: String
29230
+ # @param DatabaseName: 数据库名
29231
+ # 注意:此字段可能返回 null,表示取不到有效值。
29232
+ # @type DatabaseName: String
29233
+ # @param TablePath: 表路径
29234
+ # 注意:此字段可能返回 null,表示取不到有效值。
29235
+ # @type TablePath: String
29236
+ # @param TableNameCn: 表中文名
29237
+ # 注意:此字段可能返回 null,表示取不到有效值。
29238
+ # @type TableNameCn: String
29239
+ # @param MetastoreId: 元数据租户ID
29240
+ # 注意:此字段可能返回 null,表示取不到有效值。
29241
+ # @type MetastoreId: Integer
29242
+ # @param MetastoreType: 技术类型,可用值:HIVE,MYSQL,KAFKA, HBASE
29243
+ # 注意:此字段可能返回 null,表示取不到有效值。
29244
+ # @type MetastoreType: String
29245
+ # @param Description: 表描述
29246
+ # 注意:此字段可能返回 null,表示取不到有效值。
29247
+ # @type Description: String
29248
+ # @param ColumnSeparator: 列分隔符
29249
+ # 注意:此字段可能返回 null,表示取不到有效值。
29250
+ # @type ColumnSeparator: String
29251
+ # @param StorageFormat: 存储格式
29252
+ # 注意:此字段可能返回 null,表示取不到有效值。
29253
+ # @type StorageFormat: String
29254
+ # @param StorageSize: 存储量,字节数
29255
+ # 注意:此字段可能返回 null,表示取不到有效值。
29256
+ # @type StorageSize: Integer
29257
+ # @param TableType: 表类型,如hive MANAGED_TABLE;EXTERNAL_TABLE
29258
+ # 注意:此字段可能返回 null,表示取不到有效值。
29259
+ # @type TableType: String
29260
+ # @param CreateTime: 创建时间
29261
+ # 注意:此字段可能返回 null,表示取不到有效值。
29262
+ # @type CreateTime: String
29263
+ # @param ModifyTime: 最近数据变更时间
29264
+ # 注意:此字段可能返回 null,表示取不到有效值。
29265
+ # @type ModifyTime: String
29266
+ # @param DdlModifyTime: 最近DDL变更时间
29267
+ # 注意:此字段可能返回 null,表示取不到有效值。
29268
+ # @type DdlModifyTime: String
29269
+ # @param LastAccessTime: 数据最后访问时间
29270
+ # 注意:此字段可能返回 null,表示取不到有效值。
29271
+ # @type LastAccessTime: String
29272
+ # @param ProjectName: 所属项目英文名
29273
+ # 注意:此字段可能返回 null,表示取不到有效值。
29274
+ # @type ProjectName: String
29275
+ # @param BizCatalogIds: 所属数据目录id(可能多个)
29276
+ # 注意:此字段可能返回 null,表示取不到有效值。
29277
+ # @type BizCatalogIds: Array
29278
+ # @param BizCatalogNames: 所属数据目录(可能多个)
29279
+ # 注意:此字段可能返回 null,表示取不到有效值。
29280
+ # @type BizCatalogNames: Array
29281
+ # @param HasFavorite: true已收藏/false表示未收藏状态
29282
+ # 注意:此字段可能返回 null,表示取不到有效值。
29283
+ # @type HasFavorite: Boolean
29284
+ # @param LifeCycleTime: 生命周期
29285
+ # 注意:此字段可能返回 null,表示取不到有效值。
29286
+ # @type LifeCycleTime: Integer
29287
+ # @param StorageSizeWithUnit: 存储量,已转为适合的单位展示
29288
+ # 注意:此字段可能返回 null,表示取不到有效值。
29289
+ # @type StorageSizeWithUnit: String
29290
+ # @param InstanceId: 数据源引擎的实例ID:如EMR集群实例ID/数据源实例ID
29291
+ # 注意:此字段可能返回 null,表示取不到有效值。
29292
+ # @type InstanceId: String
29293
+ # @param TechnologyType: 数据来源技术类型:HIVE/MYSQL/HBASE/KAFKA等
29294
+ # 注意:此字段可能返回 null,表示取不到有效值。
29295
+ # @type TechnologyType: String
29296
+ # @param TableNameEn: 表英文名
29297
+ # 注意:此字段可能返回 null,表示取不到有效值。
29298
+ # @type TableNameEn: String
29299
+ # @param ProjectId: 项目Id
29300
+ # 注意:此字段可能返回 null,表示取不到有效值。
29301
+ # @type ProjectId: String
29302
+ # @param Partitions: Kafka Topic 分区数
29303
+ # 注意:此字段可能返回 null,表示取不到有效值。
29304
+ # @type Partitions: String
29305
+ # @param ReplicationFactor: Kafka Topic 副本数
29306
+ # 注意:此字段可能返回 null,表示取不到有效值。
29307
+ # @type ReplicationFactor: String
29308
+ # @param ProjectDisplayName: 所属项目英中文名
29309
+ # 注意:此字段可能返回 null,表示取不到有效值。
29310
+ # @type ProjectDisplayName: String
29311
+ # @param DataModifyTime: 数据最后修改时间
29312
+ # 注意:此字段可能返回 null,表示取不到有效值。
29313
+ # @type DataModifyTime: String
29314
+ # @param ClusterId: 集群ID
29315
+ # 注意:此字段可能返回 null,表示取不到有效值。
29316
+ # @type ClusterId: String
29317
+ # @param HasAdminAuthority: 当前用户是否有管理员权限
29318
+ # 注意:此字段可能返回 null,表示取不到有效值。
29319
+ # @type HasAdminAuthority: Boolean
29320
+ # @param DatasourceDisplayName: 数据源展示名称
29321
+ # 注意:此字段可能返回 null,表示取不到有效值。
29322
+ # @type DatasourceDisplayName: String
29323
+ # @param DatabaseId: 数据库ID
29324
+ # 注意:此字段可能返回 null,表示取不到有效值。
29325
+ # @type DatabaseId: String
29326
+ # @param FavoriteCount: 租户下对表的收藏总次数
29327
+ # 注意:此字段可能返回 null,表示取不到有效值。
29328
+ # @type FavoriteCount: Integer
29329
+ # @param LikeCount: 租户下对表的点赞总次数
29330
+ # 注意:此字段可能返回 null,表示取不到有效值。
29331
+ # @type LikeCount: Integer
29332
+ # @param HasLike: true已点赞/false表示未点赞状态
29333
+ # 注意:此字段可能返回 null,表示取不到有效值。
29334
+ # @type HasLike: Boolean
29335
+ # @param TablePropertyScore: 表的资产评分
29336
+ # 注意:此字段可能返回 null,表示取不到有效值。
29337
+ # @type TablePropertyScore: :class:`Tencentcloud::Wedata.v20210820.models.TablePropertyScore`
29338
+ # @param TableHeat: 表的热度值
29339
+ # 注意:此字段可能返回 null,表示取不到有效值。
29340
+ # @type TableHeat: :class:`Tencentcloud::Wedata.v20210820.models.TableHeat`
29341
+ # @param OwnerProjectId: 数据源ownerProjectId
29342
+ # 注意:此字段可能返回 null,表示取不到有效值。
29343
+ # @type OwnerProjectId: String
29344
+ # @param TableOwnerId: 表负责人ID
29345
+ # 注意:此字段可能返回 null,表示取不到有效值。
29346
+ # @type TableOwnerId: String
29347
+ # @param DataSourceCategory: 系统源-CLUSTER, DB-自定义源
29348
+ # 注意:此字段可能返回 null,表示取不到有效值。
29349
+ # @type DataSourceCategory: String
29350
+ # @param Columns: 表字段信息
29351
+ # 注意:此字段可能返回 null,表示取不到有效值。
29352
+ # @type Columns: Array
29353
+
29354
+ attr_accessor :TableId, :TableName, :TableOwnerName, :DatasourceId, :ClusterName, :DatasourceName, :DatabaseName, :TablePath, :TableNameCn, :MetastoreId, :MetastoreType, :Description, :ColumnSeparator, :StorageFormat, :StorageSize, :TableType, :CreateTime, :ModifyTime, :DdlModifyTime, :LastAccessTime, :ProjectName, :BizCatalogIds, :BizCatalogNames, :HasFavorite, :LifeCycleTime, :StorageSizeWithUnit, :InstanceId, :TechnologyType, :TableNameEn, :ProjectId, :Partitions, :ReplicationFactor, :ProjectDisplayName, :DataModifyTime, :ClusterId, :HasAdminAuthority, :DatasourceDisplayName, :DatabaseId, :FavoriteCount, :LikeCount, :HasLike, :TablePropertyScore, :TableHeat, :OwnerProjectId, :TableOwnerId, :DataSourceCategory, :Columns
29355
+
29356
+ def initialize(tableid=nil, tablename=nil, tableownername=nil, datasourceid=nil, clustername=nil, datasourcename=nil, databasename=nil, tablepath=nil, tablenamecn=nil, metastoreid=nil, metastoretype=nil, description=nil, columnseparator=nil, storageformat=nil, storagesize=nil, tabletype=nil, createtime=nil, modifytime=nil, ddlmodifytime=nil, lastaccesstime=nil, projectname=nil, bizcatalogids=nil, bizcatalognames=nil, hasfavorite=nil, lifecycletime=nil, storagesizewithunit=nil, instanceid=nil, technologytype=nil, tablenameen=nil, projectid=nil, partitions=nil, replicationfactor=nil, projectdisplayname=nil, datamodifytime=nil, clusterid=nil, hasadminauthority=nil, datasourcedisplayname=nil, databaseid=nil, favoritecount=nil, likecount=nil, haslike=nil, tablepropertyscore=nil, tableheat=nil, ownerprojectid=nil, tableownerid=nil, datasourcecategory=nil, columns=nil)
29357
+ @TableId = tableid
29358
+ @TableName = tablename
29359
+ @TableOwnerName = tableownername
29360
+ @DatasourceId = datasourceid
29361
+ @ClusterName = clustername
29362
+ @DatasourceName = datasourcename
29363
+ @DatabaseName = databasename
29364
+ @TablePath = tablepath
29365
+ @TableNameCn = tablenamecn
29366
+ @MetastoreId = metastoreid
29367
+ @MetastoreType = metastoretype
29368
+ @Description = description
29369
+ @ColumnSeparator = columnseparator
29370
+ @StorageFormat = storageformat
29371
+ @StorageSize = storagesize
29372
+ @TableType = tabletype
29373
+ @CreateTime = createtime
29374
+ @ModifyTime = modifytime
29375
+ @DdlModifyTime = ddlmodifytime
29376
+ @LastAccessTime = lastaccesstime
29377
+ @ProjectName = projectname
29378
+ @BizCatalogIds = bizcatalogids
29379
+ @BizCatalogNames = bizcatalognames
29380
+ @HasFavorite = hasfavorite
29381
+ @LifeCycleTime = lifecycletime
29382
+ @StorageSizeWithUnit = storagesizewithunit
29383
+ @InstanceId = instanceid
29384
+ @TechnologyType = technologytype
29385
+ @TableNameEn = tablenameen
29386
+ @ProjectId = projectid
29387
+ @Partitions = partitions
29388
+ @ReplicationFactor = replicationfactor
29389
+ @ProjectDisplayName = projectdisplayname
29390
+ @DataModifyTime = datamodifytime
29391
+ @ClusterId = clusterid
29392
+ @HasAdminAuthority = hasadminauthority
29393
+ @DatasourceDisplayName = datasourcedisplayname
29394
+ @DatabaseId = databaseid
29395
+ @FavoriteCount = favoritecount
29396
+ @LikeCount = likecount
29397
+ @HasLike = haslike
29398
+ @TablePropertyScore = tablepropertyscore
29399
+ @TableHeat = tableheat
29400
+ @OwnerProjectId = ownerprojectid
29401
+ @TableOwnerId = tableownerid
29402
+ @DataSourceCategory = datasourcecategory
29403
+ @Columns = columns
29404
+ end
29405
+
29406
+ def deserialize(params)
29407
+ @TableId = params['TableId']
29408
+ @TableName = params['TableName']
29409
+ @TableOwnerName = params['TableOwnerName']
29410
+ @DatasourceId = params['DatasourceId']
29411
+ @ClusterName = params['ClusterName']
29412
+ @DatasourceName = params['DatasourceName']
29413
+ @DatabaseName = params['DatabaseName']
29414
+ @TablePath = params['TablePath']
29415
+ @TableNameCn = params['TableNameCn']
29416
+ @MetastoreId = params['MetastoreId']
29417
+ @MetastoreType = params['MetastoreType']
29418
+ @Description = params['Description']
29419
+ @ColumnSeparator = params['ColumnSeparator']
29420
+ @StorageFormat = params['StorageFormat']
29421
+ @StorageSize = params['StorageSize']
29422
+ @TableType = params['TableType']
29423
+ @CreateTime = params['CreateTime']
29424
+ @ModifyTime = params['ModifyTime']
29425
+ @DdlModifyTime = params['DdlModifyTime']
29426
+ @LastAccessTime = params['LastAccessTime']
29427
+ @ProjectName = params['ProjectName']
29428
+ @BizCatalogIds = params['BizCatalogIds']
29429
+ @BizCatalogNames = params['BizCatalogNames']
29430
+ @HasFavorite = params['HasFavorite']
29431
+ @LifeCycleTime = params['LifeCycleTime']
29432
+ @StorageSizeWithUnit = params['StorageSizeWithUnit']
29433
+ @InstanceId = params['InstanceId']
29434
+ @TechnologyType = params['TechnologyType']
29435
+ @TableNameEn = params['TableNameEn']
29436
+ @ProjectId = params['ProjectId']
29437
+ @Partitions = params['Partitions']
29438
+ @ReplicationFactor = params['ReplicationFactor']
29439
+ @ProjectDisplayName = params['ProjectDisplayName']
29440
+ @DataModifyTime = params['DataModifyTime']
29441
+ @ClusterId = params['ClusterId']
29442
+ @HasAdminAuthority = params['HasAdminAuthority']
29443
+ @DatasourceDisplayName = params['DatasourceDisplayName']
29444
+ @DatabaseId = params['DatabaseId']
29445
+ @FavoriteCount = params['FavoriteCount']
29446
+ @LikeCount = params['LikeCount']
29447
+ @HasLike = params['HasLike']
29448
+ unless params['TablePropertyScore'].nil?
29449
+ @TablePropertyScore = TablePropertyScore.new
29450
+ @TablePropertyScore.deserialize(params['TablePropertyScore'])
29451
+ end
29452
+ unless params['TableHeat'].nil?
29453
+ @TableHeat = TableHeat.new
29454
+ @TableHeat.deserialize(params['TableHeat'])
29455
+ end
29456
+ @OwnerProjectId = params['OwnerProjectId']
29457
+ @TableOwnerId = params['TableOwnerId']
29458
+ @DataSourceCategory = params['DataSourceCategory']
29459
+ unless params['Columns'].nil?
29460
+ @Columns = []
29461
+ params['Columns'].each do |i|
29462
+ searchcolumndocvo_tmp = SearchColumnDocVO.new
29463
+ searchcolumndocvo_tmp.deserialize(i)
29464
+ @Columns << searchcolumndocvo_tmp
29465
+ end
29466
+ end
29467
+ end
29468
+ end
29469
+
29470
+ # 按天更新的表的资产评分
29471
+ class TablePropertyScore < TencentCloud::Common::AbstractModel
29472
+ # @param TableId: 表ID
29473
+ # @type TableId: String
29474
+ # @param DayTime: 统计日期
29475
+ # @type DayTime: String
29476
+ # @param Integrity: 表完整性评分
29477
+ # @type Integrity: Float
29478
+ # @param Safety: 表保障性评分
29479
+ # @type Safety: Float
29480
+ # @param Timeliness: 表及时性评分
29481
+ # @type Timeliness: Float
29482
+ # @param Stability: 表稳定性评分
29483
+ # @type Stability: Float
29484
+ # @param Normative: 表规范性评分
29485
+ # @type Normative: Float
29486
+ # @param Average: 资产评分平均分
29487
+ # @type Average: Float
29488
+
29489
+ attr_accessor :TableId, :DayTime, :Integrity, :Safety, :Timeliness, :Stability, :Normative, :Average
29490
+
29491
+ def initialize(tableid=nil, daytime=nil, integrity=nil, safety=nil, timeliness=nil, stability=nil, normative=nil, average=nil)
29492
+ @TableId = tableid
29493
+ @DayTime = daytime
29494
+ @Integrity = integrity
29495
+ @Safety = safety
29496
+ @Timeliness = timeliness
29497
+ @Stability = stability
29498
+ @Normative = normative
29499
+ @Average = average
29500
+ end
29501
+
29502
+ def deserialize(params)
29503
+ @TableId = params['TableId']
29504
+ @DayTime = params['DayTime']
29505
+ @Integrity = params['Integrity']
29506
+ @Safety = params['Safety']
29507
+ @Timeliness = params['Timeliness']
29508
+ @Stability = params['Stability']
29509
+ @Normative = params['Normative']
29510
+ @Average = params['Average']
29511
+ end
29512
+ end
29513
+
29026
29514
  # 表质量详情
29027
29515
  class TableQualityDetail < TencentCloud::Common::AbstractModel
29028
29516
  # @param DatabaseId: 数据库id
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.699
4
+ version: 3.0.701
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-wedata.rb
37
36
  - lib/v20210820/client.rb
38
37
  - lib/v20210820/models.rb
38
+ - lib/tencentcloud-sdk-wedata.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: