tencentcloud-sdk-wedata 3.0.1110 → 3.0.1114

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: 99522e57e53e1d092053c2c31e7329bc32529564
4
- data.tar.gz: 07bb6dd52c066d5285247ff2fce92395d8b701e7
3
+ metadata.gz: 71aad523e6e940b5adac1b351c928eb49fd17dfc
4
+ data.tar.gz: 259125a94e43a2e61589a8865a5c19aec89e66fd
5
5
  SHA512:
6
- metadata.gz: b16c06e34261445f2635ae006f67e27173e06ea6aecda600d80bc0c45d5174628f65b9ff589b0191bf8f0f536c0bf6288fb46df36a40d9c69cd36e02b86b9f62
7
- data.tar.gz: ce8be3348362b4e03ab89dd306452038f599f24e263b7862a325fd123e2588dfed4acc3ae612aea5fef8786d2270be7cc38cde9d8fc2ff3193ae56861f57fcf3
6
+ metadata.gz: af857b9b3c1e8985b842267207f712b65ad31d4f7d649a3c837d1ec9463349bf39aa43a1d1ca05ecd101c692d30e64209e1a69b5d3117e7da6e0b967abd701b2
7
+ data.tar.gz: f5ce552042620ce2eb665d3b8f1dcf1b19a19b4d9b1900821854d565fa2b923b1e756bd6c77ac57eb8f2614f8db9c2f1fb13a29e4fd01f26452fa0b84439c5fc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1110
1
+ 3.0.1114
@@ -4186,6 +4186,30 @@ module TencentCloud
4186
4186
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4187
4187
  end
4188
4188
 
4189
+ # 获取下游任务信息批量
4190
+
4191
+ # @param request: Request instance for DescribeSuccessorTaskInfoList.
4192
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSuccessorTaskInfoListRequest`
4193
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSuccessorTaskInfoListResponse`
4194
+ def DescribeSuccessorTaskInfoList(request)
4195
+ body = send_request('DescribeSuccessorTaskInfoList', request.serialize)
4196
+ response = JSON.parse(body)
4197
+ if response['Response'].key?('Error') == false
4198
+ model = DescribeSuccessorTaskInfoListResponse.new
4199
+ model.deserialize(response['Response'])
4200
+ model
4201
+ else
4202
+ code = response['Response']['Error']['Code']
4203
+ message = response['Response']['Error']['Message']
4204
+ reqid = response['Response']['RequestId']
4205
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4206
+ end
4207
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4208
+ raise e
4209
+ rescue StandardError => e
4210
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4211
+ end
4212
+
4189
4213
  # 元数据模型-表基础信息查询接口
4190
4214
 
4191
4215
  # @param request: Request instance for DescribeTableBasicInfo.
@@ -12946,6 +12946,8 @@ module TencentCloud
12946
12946
 
12947
12947
  # DescribeProjectUsers请求参数结构体
12948
12948
  class DescribeProjectUsersRequest < TencentCloud::Common::AbstractModel
12949
+ # @param ProjectId: 项目id
12950
+ # @type ProjectId: String
12949
12951
  # @param PageNumber: 分页号
12950
12952
  # @type PageNumber: Integer
12951
12953
  # @param PageSize: 分页大小
@@ -12957,9 +12959,10 @@ module TencentCloud
12957
12959
  # @param IsProjectAdmin: 是否项目管理员
12958
12960
  # @type IsProjectAdmin: Boolean
12959
12961
 
12960
- attr_accessor :PageNumber, :PageSize, :Filters, :OrderFields, :IsProjectAdmin
12962
+ attr_accessor :ProjectId, :PageNumber, :PageSize, :Filters, :OrderFields, :IsProjectAdmin
12961
12963
 
12962
- def initialize(pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, isprojectadmin=nil)
12964
+ def initialize(projectid=nil, pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, isprojectadmin=nil)
12965
+ @ProjectId = projectid
12963
12966
  @PageNumber = pagenumber
12964
12967
  @PageSize = pagesize
12965
12968
  @Filters = filters
@@ -12968,6 +12971,7 @@ module TencentCloud
12968
12971
  end
12969
12972
 
12970
12973
  def deserialize(params)
12974
+ @ProjectId = params['ProjectId']
12971
12975
  @PageNumber = params['PageNumber']
12972
12976
  @PageSize = params['PageSize']
12973
12977
  unless params['Filters'].nil?
@@ -13605,8 +13609,6 @@ module TencentCloud
13605
13609
  # @type PageNum: Integer
13606
13610
  # @param PageSize: 每页条数
13607
13611
  # @type PageSize: Integer
13608
- # @param TenantId: 租户id
13609
- # @type TenantId: String
13610
13612
  # @param ProjectId: 项目id
13611
13613
  # @type ProjectId: String
13612
13614
  # @param TaskId: 任务id
@@ -13626,12 +13628,11 @@ module TencentCloud
13626
13628
  # @param EndTime: 结束时间
13627
13629
  # @type EndTime: String
13628
13630
 
13629
- attr_accessor :PageNum, :PageSize, :TenantId, :ProjectId, :TaskId, :InstanceId, :JobId, :EngineTaskId, :ProductSource, :OnwerUid, :StartTime, :EndTime
13631
+ attr_accessor :PageNum, :PageSize, :ProjectId, :TaskId, :InstanceId, :JobId, :EngineTaskId, :ProductSource, :OnwerUid, :StartTime, :EndTime
13630
13632
 
13631
- def initialize(pagenum=nil, pagesize=nil, tenantid=nil, projectid=nil, taskid=nil, instanceid=nil, jobid=nil, enginetaskid=nil, productsource=nil, onweruid=nil, starttime=nil, endtime=nil)
13633
+ def initialize(pagenum=nil, pagesize=nil, projectid=nil, taskid=nil, instanceid=nil, jobid=nil, enginetaskid=nil, productsource=nil, onweruid=nil, starttime=nil, endtime=nil)
13632
13634
  @PageNum = pagenum
13633
13635
  @PageSize = pagesize
13634
- @TenantId = tenantid
13635
13636
  @ProjectId = projectid
13636
13637
  @TaskId = taskid
13637
13638
  @InstanceId = instanceid
@@ -13646,7 +13647,6 @@ module TencentCloud
13646
13647
  def deserialize(params)
13647
13648
  @PageNum = params['PageNum']
13648
13649
  @PageSize = params['PageSize']
13649
- @TenantId = params['TenantId']
13650
13650
  @ProjectId = params['ProjectId']
13651
13651
  @TaskId = params['TaskId']
13652
13652
  @InstanceId = params['InstanceId']
@@ -15336,6 +15336,53 @@ module TencentCloud
15336
15336
  end
15337
15337
  end
15338
15338
 
15339
+ # DescribeSuccessorTaskInfoList请求参数结构体
15340
+ class DescribeSuccessorTaskInfoListRequest < TencentCloud::Common::AbstractModel
15341
+ # @param TaskIds: 任务id集合
15342
+ # @type TaskIds: Array
15343
+ # @param ProjectId: 项目id
15344
+ # @type ProjectId: String
15345
+
15346
+ attr_accessor :TaskIds, :ProjectId
15347
+
15348
+ def initialize(taskids=nil, projectid=nil)
15349
+ @TaskIds = taskids
15350
+ @ProjectId = projectid
15351
+ end
15352
+
15353
+ def deserialize(params)
15354
+ @TaskIds = params['TaskIds']
15355
+ @ProjectId = params['ProjectId']
15356
+ end
15357
+ end
15358
+
15359
+ # DescribeSuccessorTaskInfoList返回参数结构体
15360
+ class DescribeSuccessorTaskInfoListResponse < TencentCloud::Common::AbstractModel
15361
+ # @param Data: 出参
15362
+ # @type Data: Array
15363
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15364
+ # @type RequestId: String
15365
+
15366
+ attr_accessor :Data, :RequestId
15367
+
15368
+ def initialize(data=nil, requestid=nil)
15369
+ @Data = data
15370
+ @RequestId = requestid
15371
+ end
15372
+
15373
+ def deserialize(params)
15374
+ unless params['Data'].nil?
15375
+ @Data = []
15376
+ params['Data'].each do |i|
15377
+ successortaskinfo_tmp = SuccessorTaskInfo.new
15378
+ successortaskinfo_tmp.deserialize(i)
15379
+ @Data << successortaskinfo_tmp
15380
+ end
15381
+ end
15382
+ @RequestId = params['RequestId']
15383
+ end
15384
+ end
15385
+
15339
15386
  # DescribeTableBasicInfo请求参数结构体
15340
15387
  class DescribeTableBasicInfoRequest < TencentCloud::Common::AbstractModel
15341
15388
  # @param PageNumber: 分页页码
@@ -34089,6 +34136,73 @@ module TencentCloud
34089
34136
  end
34090
34137
  end
34091
34138
 
34139
+ # 下游任务列表
34140
+ class SuccessorTaskInfo < TencentCloud::Common::AbstractModel
34141
+ # @param TaskId: 任务id
34142
+ # @type TaskId: String
34143
+ # @param WorkflowId: 所属工作流id
34144
+ # @type WorkflowId: String
34145
+ # @param TaskName: 任务名
34146
+ # @type TaskName: String
34147
+ # @param Layer: 层级,0表示当前任务
34148
+ # @type Layer: Integer
34149
+ # @param Status: 任务状态
34150
+ # @type Status: String
34151
+ # @param TaskTypeId: 任务类型,-1表示跨流任务
34152
+ # @type TaskTypeId: Integer
34153
+ # @param InCharge: 责任人
34154
+ # @type InCharge: String
34155
+ # @param ProjectId: 项目id
34156
+ # @type ProjectId: String
34157
+ # @param ProjectName: 项目名称
34158
+ # @type ProjectName: String
34159
+ # @param WorkflowName: 所属工作流名称
34160
+ # @type WorkflowName: String
34161
+ # @param CycleUnit: 周期单位
34162
+ # 注意:此字段可能返回 null,表示取不到有效值。
34163
+ # @type CycleUnit: String
34164
+ # @param ScheduleDesc: 调度计划
34165
+ # 注意:此字段可能返回 null,表示取不到有效值。
34166
+ # @type ScheduleDesc: String
34167
+ # @param TaskTypeDesc: 任务类型描述
34168
+ # 注意:此字段可能返回 null,表示取不到有效值。
34169
+ # @type TaskTypeDesc: String
34170
+
34171
+ attr_accessor :TaskId, :WorkflowId, :TaskName, :Layer, :Status, :TaskTypeId, :InCharge, :ProjectId, :ProjectName, :WorkflowName, :CycleUnit, :ScheduleDesc, :TaskTypeDesc
34172
+
34173
+ def initialize(taskid=nil, workflowid=nil, taskname=nil, layer=nil, status=nil, tasktypeid=nil, incharge=nil, projectid=nil, projectname=nil, workflowname=nil, cycleunit=nil, scheduledesc=nil, tasktypedesc=nil)
34174
+ @TaskId = taskid
34175
+ @WorkflowId = workflowid
34176
+ @TaskName = taskname
34177
+ @Layer = layer
34178
+ @Status = status
34179
+ @TaskTypeId = tasktypeid
34180
+ @InCharge = incharge
34181
+ @ProjectId = projectid
34182
+ @ProjectName = projectname
34183
+ @WorkflowName = workflowname
34184
+ @CycleUnit = cycleunit
34185
+ @ScheduleDesc = scheduledesc
34186
+ @TaskTypeDesc = tasktypedesc
34187
+ end
34188
+
34189
+ def deserialize(params)
34190
+ @TaskId = params['TaskId']
34191
+ @WorkflowId = params['WorkflowId']
34192
+ @TaskName = params['TaskName']
34193
+ @Layer = params['Layer']
34194
+ @Status = params['Status']
34195
+ @TaskTypeId = params['TaskTypeId']
34196
+ @InCharge = params['InCharge']
34197
+ @ProjectId = params['ProjectId']
34198
+ @ProjectName = params['ProjectName']
34199
+ @WorkflowName = params['WorkflowName']
34200
+ @CycleUnit = params['CycleUnit']
34201
+ @ScheduleDesc = params['ScheduleDesc']
34202
+ @TaskTypeDesc = params['TaskTypeDesc']
34203
+ end
34204
+ end
34205
+
34092
34206
  # SuspendIntegrationTask请求参数结构体
34093
34207
  class SuspendIntegrationTaskRequest < TencentCloud::Common::AbstractModel
34094
34208
  # @param TaskId: 任务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.1110
4
+ version: 3.0.1114
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-07-28 00:00:00.000000000 Z
11
+ date: 2025-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common