tencentcloud-sdk-wedata 3.0.1181 → 3.0.1185

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: e823bd02a9a65b20586bcc73861fc84b7fce26e2
4
- data.tar.gz: cf507d393c7da4879ed531eb691c37e588a3f2aa
3
+ metadata.gz: 7e7dba70eb7b9ae3f3a778046a49392d8563cc40
4
+ data.tar.gz: a4dd7ef177a115fe1d7e34bf44e3d9eb9107876c
5
5
  SHA512:
6
- metadata.gz: c443c4f443d06748fe0c552d60eec7c5f2a63f52e75cd0625c6e38ab6079b3bcd2ec4a3f12ebbdc2882689ed27e5c69a5f3c9237db8ccda9c8bbffbf7abe9ad1
7
- data.tar.gz: e8596fbd351e14f31360f85f1b1b8ab6cdf5e8b6f5434f0f390cfc4165341e1a3481ab95cd026c4b948aa77fd2dbddde78d6cd15ba1c3914c817e602d7e48ee8
6
+ metadata.gz: 76d3f5ce42e3d9777d716816a1563565f4f008f66f18f0b606b3e33e3f783f5854565c5f58b6758b886f1835537fada223dbce61f02b27a06935f5a51fe6ea70
7
+ data.tar.gz: fce86973328d2c975f14374c13fe83d8bd2e5d3a4a8ad1bb9e07560f6a04fcf0d311389a6f2fe4ede56c7e42de5794849c2fa5653622079c5a6aa3d7a1b72d71
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1181
1
+ 3.0.1185
@@ -2,12 +2,12 @@
2
2
 
3
3
  require 'tencentcloud-sdk-common'
4
4
 
5
- require_relative 'v20250806/client'
6
- require_relative 'v20250806/models'
7
-
8
5
  require_relative 'v20210820/client'
9
6
  require_relative 'v20210820/models'
10
7
 
8
+ require_relative 'v20250806/client'
9
+ require_relative 'v20250806/models'
10
+
11
11
  module TencentCloud
12
12
  module Wedata
13
13
  end
@@ -3005,6 +3005,30 @@ module TencentCloud
3005
3005
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3006
3006
  end
3007
3007
 
3008
+ # 通用血缘查询接口
3009
+
3010
+ # @param request: Request instance for DescribeLineageInfo.
3011
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeLineageInfoRequest`
3012
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeLineageInfoResponse`
3013
+ def DescribeLineageInfo(request)
3014
+ body = send_request('DescribeLineageInfo', request.serialize)
3015
+ response = JSON.parse(body)
3016
+ if response['Response'].key?('Error') == false
3017
+ model = DescribeLineageInfoResponse.new
3018
+ model.deserialize(response['Response'])
3019
+ model
3020
+ else
3021
+ code = response['Response']['Error']['Code']
3022
+ message = response['Response']['Error']['Message']
3023
+ reqid = response['Response']['RequestId']
3024
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3025
+ end
3026
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3027
+ raise e
3028
+ rescue StandardError => e
3029
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3030
+ end
3031
+
3008
3032
  # 查询手动任务触发记录
3009
3033
 
3010
3034
  # @param request: Request instance for DescribeManualTriggerRecordPage.
@@ -4520,6 +4544,30 @@ module TencentCloud
4520
4544
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4521
4545
  end
4522
4546
 
4547
+ # 分组获取编排空间调试任务实例状态信息
4548
+
4549
+ # @param request: Request instance for DescribeTaskInstancesStatus.
4550
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstancesStatusRequest`
4551
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstancesStatusResponse`
4552
+ def DescribeTaskInstancesStatus(request)
4553
+ body = send_request('DescribeTaskInstancesStatus', request.serialize)
4554
+ response = JSON.parse(body)
4555
+ if response['Response'].key?('Error') == false
4556
+ model = DescribeTaskInstancesStatusResponse.new
4557
+ model.deserialize(response['Response'])
4558
+ model
4559
+ else
4560
+ code = response['Response']['Error']['Code']
4561
+ message = response['Response']['Error']['Message']
4562
+ reqid = response['Response']['RequestId']
4563
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4564
+ end
4565
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4566
+ raise e
4567
+ rescue StandardError => e
4568
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4569
+ end
4570
+
4523
4571
  # 通过任务查询表的血缘关系
4524
4572
 
4525
4573
  # @param request: Request instance for DescribeTaskLineage.
@@ -12438,6 +12438,82 @@ module TencentCloud
12438
12438
  end
12439
12439
  end
12440
12440
 
12441
+ # DescribeLineageInfo请求参数结构体
12442
+ class DescribeLineageInfoRequest < TencentCloud::Common::AbstractModel
12443
+ # @param ResourceOriId: 实体原始唯一ID
12444
+ # @type ResourceOriId: String
12445
+ # @param ResourceType: 实体类型
12446
+ # @type ResourceType: String
12447
+ # @param QualifiedId: 血缘唯一ID
12448
+ # @type QualifiedId: String
12449
+ # @param Direction: 查询方向
12450
+ # @type Direction: String
12451
+ # @param InputDepth: 查询入度
12452
+ # @type InputDepth: Integer
12453
+ # @param OutputDepth: 查询出度
12454
+ # @type OutputDepth: Integer
12455
+ # @param Platform: 数据来源
12456
+ # @type Platform: String
12457
+ # @param LineageType: 血缘类型(分页使用)
12458
+ # @type LineageType: String
12459
+ # @param PageNumber: 页码
12460
+ # @type PageNumber: Integer
12461
+ # @param PageSize: 分页大小
12462
+ # @type PageSize: Integer
12463
+
12464
+ attr_accessor :ResourceOriId, :ResourceType, :QualifiedId, :Direction, :InputDepth, :OutputDepth, :Platform, :LineageType, :PageNumber, :PageSize
12465
+
12466
+ def initialize(resourceoriid=nil, resourcetype=nil, qualifiedid=nil, direction=nil, inputdepth=nil, outputdepth=nil, platform=nil, lineagetype=nil, pagenumber=nil, pagesize=nil)
12467
+ @ResourceOriId = resourceoriid
12468
+ @ResourceType = resourcetype
12469
+ @QualifiedId = qualifiedid
12470
+ @Direction = direction
12471
+ @InputDepth = inputdepth
12472
+ @OutputDepth = outputdepth
12473
+ @Platform = platform
12474
+ @LineageType = lineagetype
12475
+ @PageNumber = pagenumber
12476
+ @PageSize = pagesize
12477
+ end
12478
+
12479
+ def deserialize(params)
12480
+ @ResourceOriId = params['ResourceOriId']
12481
+ @ResourceType = params['ResourceType']
12482
+ @QualifiedId = params['QualifiedId']
12483
+ @Direction = params['Direction']
12484
+ @InputDepth = params['InputDepth']
12485
+ @OutputDepth = params['OutputDepth']
12486
+ @Platform = params['Platform']
12487
+ @LineageType = params['LineageType']
12488
+ @PageNumber = params['PageNumber']
12489
+ @PageSize = params['PageSize']
12490
+ end
12491
+ end
12492
+
12493
+ # DescribeLineageInfo返回参数结构体
12494
+ class DescribeLineageInfoResponse < TencentCloud::Common::AbstractModel
12495
+ # @param Data: 血缘信息
12496
+ # 注意:此字段可能返回 null,表示取不到有效值。
12497
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.LineageCommonInfoVO`
12498
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12499
+ # @type RequestId: String
12500
+
12501
+ attr_accessor :Data, :RequestId
12502
+
12503
+ def initialize(data=nil, requestid=nil)
12504
+ @Data = data
12505
+ @RequestId = requestid
12506
+ end
12507
+
12508
+ def deserialize(params)
12509
+ unless params['Data'].nil?
12510
+ @Data = LineageCommonInfoVO.new
12511
+ @Data.deserialize(params['Data'])
12512
+ end
12513
+ @RequestId = params['RequestId']
12514
+ end
12515
+ end
12516
+
12441
12517
  # DescribeManualTriggerRecordPage请求参数结构体
12442
12518
  class DescribeManualTriggerRecordPageRequest < TencentCloud::Common::AbstractModel
12443
12519
  # @param ProjectId: 项目ID
@@ -16983,6 +17059,81 @@ module TencentCloud
16983
17059
  end
16984
17060
  end
16985
17061
 
17062
+ # 分组获取编排空间测试运行记录
17063
+ class DescribeTaskInstancesStatusDto < TencentCloud::Common::AbstractModel
17064
+ # @param Instances: 根据任务信息获取实例状态信息实例
17065
+ # 注意:此字段可能返回 null,表示取不到有效值。
17066
+ # @type Instances: Array
17067
+
17068
+ attr_accessor :Instances
17069
+
17070
+ def initialize(instances=nil)
17071
+ @Instances = instances
17072
+ end
17073
+
17074
+ def deserialize(params)
17075
+ unless params['Instances'].nil?
17076
+ @Instances = []
17077
+ params['Instances'].each do |i|
17078
+ paramgettaskinstancesstatusinforesponseinstance_tmp = ParamGetTaskInstancesStatusInfoResponseInstance.new
17079
+ paramgettaskinstancesstatusinforesponseinstance_tmp.deserialize(i)
17080
+ @Instances << paramgettaskinstancesstatusinforesponseinstance_tmp
17081
+ end
17082
+ end
17083
+ end
17084
+ end
17085
+
17086
+ # DescribeTaskInstancesStatus请求参数结构体
17087
+ class DescribeTaskInstancesStatusRequest < TencentCloud::Common::AbstractModel
17088
+ # @param RecordIdList: 任务列表
17089
+ # @type RecordIdList: Array
17090
+ # @param WorkflowId: 工作流id
17091
+ # @type WorkflowId: String
17092
+ # @param ProjectId: 项目id
17093
+ # @type ProjectId: String
17094
+
17095
+ attr_accessor :RecordIdList, :WorkflowId, :ProjectId
17096
+
17097
+ def initialize(recordidlist=nil, workflowid=nil, projectid=nil)
17098
+ @RecordIdList = recordidlist
17099
+ @WorkflowId = workflowid
17100
+ @ProjectId = projectid
17101
+ end
17102
+
17103
+ def deserialize(params)
17104
+ @RecordIdList = params['RecordIdList']
17105
+ @WorkflowId = params['WorkflowId']
17106
+ @ProjectId = params['ProjectId']
17107
+ end
17108
+ end
17109
+
17110
+ # DescribeTaskInstancesStatus返回参数结构体
17111
+ class DescribeTaskInstancesStatusResponse < TencentCloud::Common::AbstractModel
17112
+ # @param Data: 实例列表
17113
+ # @type Data: Array
17114
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17115
+ # @type RequestId: String
17116
+
17117
+ attr_accessor :Data, :RequestId
17118
+
17119
+ def initialize(data=nil, requestid=nil)
17120
+ @Data = data
17121
+ @RequestId = requestid
17122
+ end
17123
+
17124
+ def deserialize(params)
17125
+ unless params['Data'].nil?
17126
+ @Data = []
17127
+ params['Data'].each do |i|
17128
+ describetaskinstancesstatusdto_tmp = DescribeTaskInstancesStatusDto.new
17129
+ describetaskinstancesstatusdto_tmp.deserialize(i)
17130
+ @Data << describetaskinstancesstatusdto_tmp
17131
+ end
17132
+ end
17133
+ @RequestId = params['RequestId']
17134
+ end
17135
+ end
17136
+
16986
17137
  # DescribeTaskLineage请求参数结构体
16987
17138
  class DescribeTaskLineageRequest < TencentCloud::Common::AbstractModel
16988
17139
  # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
@@ -24904,6 +25055,132 @@ module TencentCloud
24904
25055
  end
24905
25056
  end
24906
25057
 
25058
+ # LineageCommonInfoVO
25059
+ class LineageCommonInfoVO < TencentCloud::Common::AbstractModel
25060
+ # @param CurrentResource: 当前节点
25061
+ # 注意:此字段可能返回 null,表示取不到有效值。
25062
+ # @type CurrentResource: :class:`Tencentcloud::Wedata.v20210820.models.LineageResouce`
25063
+ # @param ParentSet: 上游节点
25064
+ # 注意:此字段可能返回 null,表示取不到有效值。
25065
+ # @type ParentSet: Array
25066
+ # @param ChildSet: 下游节点
25067
+ # 注意:此字段可能返回 null,表示取不到有效值。
25068
+ # @type ChildSet: Array
25069
+ # @param DownStreamCount: 下游数量
25070
+ # 注意:此字段可能返回 null,表示取不到有效值。
25071
+ # @type DownStreamCount: Integer
25072
+ # @param UpStreamCount: 上游数量
25073
+ # 注意:此字段可能返回 null,表示取不到有效值。
25074
+ # @type UpStreamCount: Integer
25075
+ # @param StreamCountFlag: 父/子节点是否展示上下游数量
25076
+ # 注意:此字段可能返回 null,表示取不到有效值。
25077
+ # @type StreamCountFlag: Boolean
25078
+
25079
+ attr_accessor :CurrentResource, :ParentSet, :ChildSet, :DownStreamCount, :UpStreamCount, :StreamCountFlag
25080
+
25081
+ def initialize(currentresource=nil, parentset=nil, childset=nil, downstreamcount=nil, upstreamcount=nil, streamcountflag=nil)
25082
+ @CurrentResource = currentresource
25083
+ @ParentSet = parentset
25084
+ @ChildSet = childset
25085
+ @DownStreamCount = downstreamcount
25086
+ @UpStreamCount = upstreamcount
25087
+ @StreamCountFlag = streamcountflag
25088
+ end
25089
+
25090
+ def deserialize(params)
25091
+ unless params['CurrentResource'].nil?
25092
+ @CurrentResource = LineageResouce.new
25093
+ @CurrentResource.deserialize(params['CurrentResource'])
25094
+ end
25095
+ unless params['ParentSet'].nil?
25096
+ @ParentSet = []
25097
+ params['ParentSet'].each do |i|
25098
+ lineagenodeinfovo_tmp = LineageNodeInfoVO.new
25099
+ lineagenodeinfovo_tmp.deserialize(i)
25100
+ @ParentSet << lineagenodeinfovo_tmp
25101
+ end
25102
+ end
25103
+ unless params['ChildSet'].nil?
25104
+ @ChildSet = []
25105
+ params['ChildSet'].each do |i|
25106
+ lineagenodeinfovo_tmp = LineageNodeInfoVO.new
25107
+ lineagenodeinfovo_tmp.deserialize(i)
25108
+ @ChildSet << lineagenodeinfovo_tmp
25109
+ end
25110
+ end
25111
+ @DownStreamCount = params['DownStreamCount']
25112
+ @UpStreamCount = params['UpStreamCount']
25113
+ @StreamCountFlag = params['StreamCountFlag']
25114
+ end
25115
+ end
25116
+
25117
+ # LineageNodeInfoVo
25118
+ class LineageNodeInfoVO < TencentCloud::Common::AbstractModel
25119
+ # @param CurrentResource: 当前资源
25120
+ # 注意:此字段可能返回 null,表示取不到有效值。
25121
+ # @type CurrentResource: :class:`Tencentcloud::Wedata.v20210820.models.LineageResouce`
25122
+ # @param Relation: 关系
25123
+ # 注意:此字段可能返回 null,表示取不到有效值。
25124
+ # @type Relation: :class:`Tencentcloud::Wedata.v20210820.models.LineageRelationVO`
25125
+ # @param DownStreamCount: 上游数量
25126
+ # 注意:此字段可能返回 null,表示取不到有效值。
25127
+ # @type DownStreamCount: Integer
25128
+ # @param UpStreamCount: 下游数量
25129
+ # 注意:此字段可能返回 null,表示取不到有效值。
25130
+ # @type UpStreamCount: Integer
25131
+ # @param ParentSet: 上游节点
25132
+ # 注意:此字段可能返回 null,表示取不到有效值。
25133
+ # @type ParentSet: Array
25134
+ # @param ChildSet: 下游节点
25135
+ # 注意:此字段可能返回 null,表示取不到有效值。
25136
+ # @type ChildSet: Array
25137
+ # @param StreamCountFlag: 父/子节点是否展示上下游数量
25138
+ # 注意:此字段可能返回 null,表示取不到有效值。
25139
+ # @type StreamCountFlag: Boolean
25140
+
25141
+ attr_accessor :CurrentResource, :Relation, :DownStreamCount, :UpStreamCount, :ParentSet, :ChildSet, :StreamCountFlag
25142
+
25143
+ def initialize(currentresource=nil, relation=nil, downstreamcount=nil, upstreamcount=nil, parentset=nil, childset=nil, streamcountflag=nil)
25144
+ @CurrentResource = currentresource
25145
+ @Relation = relation
25146
+ @DownStreamCount = downstreamcount
25147
+ @UpStreamCount = upstreamcount
25148
+ @ParentSet = parentset
25149
+ @ChildSet = childset
25150
+ @StreamCountFlag = streamcountflag
25151
+ end
25152
+
25153
+ def deserialize(params)
25154
+ unless params['CurrentResource'].nil?
25155
+ @CurrentResource = LineageResouce.new
25156
+ @CurrentResource.deserialize(params['CurrentResource'])
25157
+ end
25158
+ unless params['Relation'].nil?
25159
+ @Relation = LineageRelationVO.new
25160
+ @Relation.deserialize(params['Relation'])
25161
+ end
25162
+ @DownStreamCount = params['DownStreamCount']
25163
+ @UpStreamCount = params['UpStreamCount']
25164
+ unless params['ParentSet'].nil?
25165
+ @ParentSet = []
25166
+ params['ParentSet'].each do |i|
25167
+ lineagenodeinfovo_tmp = LineageNodeInfoVO.new
25168
+ lineagenodeinfovo_tmp.deserialize(i)
25169
+ @ParentSet << lineagenodeinfovo_tmp
25170
+ end
25171
+ end
25172
+ unless params['ChildSet'].nil?
25173
+ @ChildSet = []
25174
+ params['ChildSet'].each do |i|
25175
+ lineagenodeinfovo_tmp = LineageNodeInfoVO.new
25176
+ lineagenodeinfovo_tmp.deserialize(i)
25177
+ @ChildSet << lineagenodeinfovo_tmp
25178
+ end
25179
+ end
25180
+ @StreamCountFlag = params['StreamCountFlag']
25181
+ end
25182
+ end
25183
+
24907
25184
  # 血缘参数记录
24908
25185
  class LineageParamRecord < TencentCloud::Common::AbstractModel
24909
25186
  # @param Name: 字段名
@@ -24925,6 +25202,192 @@ module TencentCloud
24925
25202
  end
24926
25203
  end
24927
25204
 
25205
+ # LineageProcessVO
25206
+ class LineageProcessVO < TencentCloud::Common::AbstractModel
25207
+ # @param ProcessId: 原始唯一ID
25208
+ # 注意:此字段可能返回 null,表示取不到有效值。
25209
+ # @type ProcessId: String
25210
+ # @param ProcessType: 任务类型
25211
+ # 注意:此字段可能返回 null,表示取不到有效值。
25212
+ # @type ProcessType: String
25213
+ # @param ProcessSubType: 任务子类型
25214
+ # 注意:此字段可能返回 null,表示取不到有效值。
25215
+ # @type ProcessSubType: String
25216
+ # @param ProcessName: 名称
25217
+ # 注意:此字段可能返回 null,表示取不到有效值。
25218
+ # @type ProcessName: String
25219
+ # @param Description: 描述
25220
+ # 注意:此字段可能返回 null,表示取不到有效值。
25221
+ # @type Description: String
25222
+ # @param QualifiedId: 唯一ID
25223
+ # 注意:此字段可能返回 null,表示取不到有效值。
25224
+ # @type QualifiedId: String
25225
+ # @param Platform: 来源
25226
+ # 注意:此字段可能返回 null,表示取不到有效值。
25227
+ # @type Platform: String
25228
+ # @param ProcessProperties: 额外扩展参数
25229
+ # 注意:此字段可能返回 null,表示取不到有效值。
25230
+ # @type ProcessProperties: Array
25231
+
25232
+ attr_accessor :ProcessId, :ProcessType, :ProcessSubType, :ProcessName, :Description, :QualifiedId, :Platform, :ProcessProperties
25233
+
25234
+ def initialize(processid=nil, processtype=nil, processsubtype=nil, processname=nil, description=nil, qualifiedid=nil, platform=nil, processproperties=nil)
25235
+ @ProcessId = processid
25236
+ @ProcessType = processtype
25237
+ @ProcessSubType = processsubtype
25238
+ @ProcessName = processname
25239
+ @Description = description
25240
+ @QualifiedId = qualifiedid
25241
+ @Platform = platform
25242
+ @ProcessProperties = processproperties
25243
+ end
25244
+
25245
+ def deserialize(params)
25246
+ @ProcessId = params['ProcessId']
25247
+ @ProcessType = params['ProcessType']
25248
+ @ProcessSubType = params['ProcessSubType']
25249
+ @ProcessName = params['ProcessName']
25250
+ @Description = params['Description']
25251
+ @QualifiedId = params['QualifiedId']
25252
+ @Platform = params['Platform']
25253
+ unless params['ProcessProperties'].nil?
25254
+ @ProcessProperties = []
25255
+ params['ProcessProperties'].each do |i|
25256
+ lineageproperty_tmp = LineageProperty.new
25257
+ lineageproperty_tmp.deserialize(i)
25258
+ @ProcessProperties << lineageproperty_tmp
25259
+ end
25260
+ end
25261
+ end
25262
+ end
25263
+
25264
+ # LineageProperty额外扩展参数
25265
+ class LineageProperty < TencentCloud::Common::AbstractModel
25266
+ # @param Name: 属性名称
25267
+ # 注意:此字段可能返回 null,表示取不到有效值。
25268
+ # @type Name: String
25269
+ # @param Value: 属性值
25270
+ # 注意:此字段可能返回 null,表示取不到有效值。
25271
+ # @type Value: String
25272
+
25273
+ attr_accessor :Name, :Value
25274
+
25275
+ def initialize(name=nil, value=nil)
25276
+ @Name = name
25277
+ @Value = value
25278
+ end
25279
+
25280
+ def deserialize(params)
25281
+ @Name = params['Name']
25282
+ @Value = params['Value']
25283
+ end
25284
+ end
25285
+
25286
+ # LineageRelationVO
25287
+ class LineageRelationVO < TencentCloud::Common::AbstractModel
25288
+ # @param RelationId: 关联ID
25289
+ # 注意:此字段可能返回 null,表示取不到有效值。
25290
+ # @type RelationId: String
25291
+ # @param SourceQualifiedId: 源端唯一血缘ID
25292
+ # 注意:此字段可能返回 null,表示取不到有效值。
25293
+ # @type SourceQualifiedId: String
25294
+ # @param TargetQualifiedId: 目标端唯一血缘ID
25295
+ # 注意:此字段可能返回 null,表示取不到有效值。
25296
+ # @type TargetQualifiedId: String
25297
+ # @param Processes: 血缘加工过程
25298
+ # 注意:此字段可能返回 null,表示取不到有效值。
25299
+ # @type Processes: Array
25300
+
25301
+ attr_accessor :RelationId, :SourceQualifiedId, :TargetQualifiedId, :Processes
25302
+
25303
+ def initialize(relationid=nil, sourcequalifiedid=nil, targetqualifiedid=nil, processes=nil)
25304
+ @RelationId = relationid
25305
+ @SourceQualifiedId = sourcequalifiedid
25306
+ @TargetQualifiedId = targetqualifiedid
25307
+ @Processes = processes
25308
+ end
25309
+
25310
+ def deserialize(params)
25311
+ @RelationId = params['RelationId']
25312
+ @SourceQualifiedId = params['SourceQualifiedId']
25313
+ @TargetQualifiedId = params['TargetQualifiedId']
25314
+ unless params['Processes'].nil?
25315
+ @Processes = []
25316
+ params['Processes'].each do |i|
25317
+ lineageprocessvo_tmp = LineageProcessVO.new
25318
+ lineageprocessvo_tmp.deserialize(i)
25319
+ @Processes << lineageprocessvo_tmp
25320
+ end
25321
+ end
25322
+ end
25323
+ end
25324
+
25325
+ # 血缘实体
25326
+ class LineageResouce < TencentCloud::Common::AbstractModel
25327
+ # @param ResourceOriId: 实体原始唯一ID
25328
+ # 注意:此字段可能返回 null,表示取不到有效值。
25329
+ # @type ResourceOriId: String
25330
+ # @param ResourceName: 业务名称:库名.表名|指标名称|模型名称|字段名称
25331
+ # 注意:此字段可能返回 null,表示取不到有效值。
25332
+ # @type ResourceName: String
25333
+ # @param ResourceType: 实体类型
25334
+ # TABLE|METRIC|MODEL|SERVICE|COLUMN
25335
+ # 注意:此字段可能返回 null,表示取不到有效值。
25336
+ # @type ResourceType: String
25337
+ # @param QualifiedId: 血缘全局唯一ID
25338
+ # 注意:此字段可能返回 null,表示取不到有效值。
25339
+ # @type QualifiedId: String
25340
+ # @param Description: 描述:表类型|指标描述|模型描述|字段描述
25341
+ # 注意:此字段可能返回 null,表示取不到有效值。
25342
+ # @type Description: String
25343
+ # @param Platform: 来源:WEDATA|THIRD
25344
+ # 默认wedata
25345
+ # 注意:此字段可能返回 null,表示取不到有效值。
25346
+ # @type Platform: String
25347
+ # @param CreateTime: 创建时间
25348
+ # 注意:此字段可能返回 null,表示取不到有效值。
25349
+ # @type CreateTime: String
25350
+ # @param UpdateTime: 更新时间
25351
+ # 注意:此字段可能返回 null,表示取不到有效值。
25352
+ # @type UpdateTime: String
25353
+ # @param ResourceProperties: resource 额外扩展参数
25354
+ # 注意:此字段可能返回 null,表示取不到有效值。
25355
+ # @type ResourceProperties: Array
25356
+
25357
+ attr_accessor :ResourceOriId, :ResourceName, :ResourceType, :QualifiedId, :Description, :Platform, :CreateTime, :UpdateTime, :ResourceProperties
25358
+
25359
+ def initialize(resourceoriid=nil, resourcename=nil, resourcetype=nil, qualifiedid=nil, description=nil, platform=nil, createtime=nil, updatetime=nil, resourceproperties=nil)
25360
+ @ResourceOriId = resourceoriid
25361
+ @ResourceName = resourcename
25362
+ @ResourceType = resourcetype
25363
+ @QualifiedId = qualifiedid
25364
+ @Description = description
25365
+ @Platform = platform
25366
+ @CreateTime = createtime
25367
+ @UpdateTime = updatetime
25368
+ @ResourceProperties = resourceproperties
25369
+ end
25370
+
25371
+ def deserialize(params)
25372
+ @ResourceOriId = params['ResourceOriId']
25373
+ @ResourceName = params['ResourceName']
25374
+ @ResourceType = params['ResourceType']
25375
+ @QualifiedId = params['QualifiedId']
25376
+ @Description = params['Description']
25377
+ @Platform = params['Platform']
25378
+ @CreateTime = params['CreateTime']
25379
+ @UpdateTime = params['UpdateTime']
25380
+ unless params['ResourceProperties'].nil?
25381
+ @ResourceProperties = []
25382
+ params['ResourceProperties'].each do |i|
25383
+ lineageproperty_tmp = LineageProperty.new
25384
+ lineageproperty_tmp.deserialize(i)
25385
+ @ResourceProperties << lineageproperty_tmp
25386
+ end
25387
+ end
25388
+ end
25389
+ end
25390
+
24928
25391
  # 血缘任务
24929
25392
  class LineageTask < TencentCloud::Common::AbstractModel
24930
25393
  # @param TaskId: 任务id
@@ -28789,6 +29252,38 @@ module TencentCloud
28789
29252
  end
28790
29253
  end
28791
29254
 
29255
+ # 根据任务信息获取实例状态信息实例
29256
+ class ParamGetTaskInstancesStatusInfoResponseInstance < TencentCloud::Common::AbstractModel
29257
+ # @param InstanceId: 实例编号
29258
+ # 注意:此字段可能返回 null,表示取不到有效值。
29259
+ # @type InstanceId: String
29260
+ # @param Status: 状态
29261
+ # 注意:此字段可能返回 null,表示取不到有效值。
29262
+ # @type Status: String
29263
+ # @param RecordId: 记录编号
29264
+ # 注意:此字段可能返回 null,表示取不到有效值。
29265
+ # @type RecordId: String
29266
+ # @param TaskId: 任务编号
29267
+ # 注意:此字段可能返回 null,表示取不到有效值。
29268
+ # @type TaskId: String
29269
+
29270
+ attr_accessor :InstanceId, :Status, :RecordId, :TaskId
29271
+
29272
+ def initialize(instanceid=nil, status=nil, recordid=nil, taskid=nil)
29273
+ @InstanceId = instanceid
29274
+ @Status = status
29275
+ @RecordId = recordid
29276
+ @TaskId = taskid
29277
+ end
29278
+
29279
+ def deserialize(params)
29280
+ @InstanceId = params['InstanceId']
29281
+ @Status = params['Status']
29282
+ @RecordId = params['RecordId']
29283
+ @TaskId = params['TaskId']
29284
+ end
29285
+ end
29286
+
28792
29287
  # 参数参数
28793
29288
  class ParamInfo < TencentCloud::Common::AbstractModel
28794
29289
  # @param ParamKey: 参数名
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.1181
4
+ version: 3.0.1185
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-10 00:00:00.000000000 Z
11
+ date: 2025-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,11 +33,11 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20210820/models.rb
37
36
  - lib/v20210820/client.rb
37
+ - lib/v20210820/models.rb
38
38
  - lib/tencentcloud-sdk-wedata.rb
39
- - lib/v20250806/models.rb
40
39
  - lib/v20250806/client.rb
40
+ - lib/v20250806/models.rb
41
41
  - lib/VERSION
42
42
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
43
43
  licenses: