tencentcloud-sdk-wedata 3.0.1054 → 3.0.1056

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: d31f3f02e9a6df75eeb4cedc3831f87ff096f0ae
4
- data.tar.gz: 4879d3655d0cf7a594bd2b37e38f1ee091840444
3
+ metadata.gz: 92cfba72bc15e6f63289e2c6366ae8b3b4e38069
4
+ data.tar.gz: c11153a72927dbb6d46c09cca8c50ebf92975d7c
5
5
  SHA512:
6
- metadata.gz: a4601401f3d08e9ed17e4915510b3224c0bf016a58364f732d21842f985617f3961760b3d044abe59e4297b328f53fa864f56940a3e54296e35b38fdfd846655
7
- data.tar.gz: 20c2d6f3517b05e44de25167d19c36d63904b902f67ab061d6744240fa1e09d6a3ed3a7555d4e32e29f4f831fb60fbc9c81b15416ede9f02b4afdc4fbee583b9
6
+ metadata.gz: c414b8e791c77b3fd6fd2ff51adbf230d886f14d14515d9e67a7b1bc6a1c547a63d7de91439fe8629a2312143499094b43ed4b89e9e9813c4722c9f826849487
7
+ data.tar.gz: 27da14a89498691f8ac3a2f88b377705fdaeb9603dc316d77d56850aecf2d02e664bfc8480698acde3c04a00a0e79d1e24bcd196d2e23cc9e512edad181191ba
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1054
1
+ 3.0.1056
@@ -917,7 +917,7 @@ module TencentCloud
917
917
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
918
918
  end
919
919
 
920
- # 创建任务
920
+ # 创建任务。本接口已废弃,请使用接口CreateTaskNew。
921
921
 
922
922
  # @param request: Request instance for CreateTask.
923
923
  # @type request: :class:`Tencentcloud::wedata::V20210820::CreateTaskRequest`
@@ -989,6 +989,30 @@ module TencentCloud
989
989
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
990
990
  end
991
991
 
992
+ # 聚合创建任务
993
+
994
+ # @param request: Request instance for CreateTaskNew.
995
+ # @type request: :class:`Tencentcloud::wedata::V20210820::CreateTaskNewRequest`
996
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::CreateTaskNewResponse`
997
+ def CreateTaskNew(request)
998
+ body = send_request('CreateTaskNew', request.serialize)
999
+ response = JSON.parse(body)
1000
+ if response['Response'].key?('Error') == false
1001
+ model = CreateTaskNewResponse.new
1002
+ model.deserialize(response['Response'])
1003
+ model
1004
+ else
1005
+ code = response['Response']['Error']['Code']
1006
+ message = response['Response']['Error']['Message']
1007
+ reqid = response['Response']['RequestId']
1008
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1009
+ end
1010
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1011
+ raise e
1012
+ rescue StandardError => e
1013
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1014
+ end
1015
+
992
1016
  # 提交任务版本
993
1017
 
994
1018
  # @param request: Request instance for CreateTaskVersionDs.
@@ -1637,6 +1661,30 @@ module TencentCloud
1637
1661
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1638
1662
  end
1639
1663
 
1664
+ # 数据地图-信息配置 数据类目列表
1665
+
1666
+ # @param request: Request instance for DescribeBaseBizCatalogs.
1667
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaseBizCatalogsRequest`
1668
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaseBizCatalogsResponse`
1669
+ def DescribeBaseBizCatalogs(request)
1670
+ body = send_request('DescribeBaseBizCatalogs', request.serialize)
1671
+ response = JSON.parse(body)
1672
+ if response['Response'].key?('Error') == false
1673
+ model = DescribeBaseBizCatalogsResponse.new
1674
+ model.deserialize(response['Response'])
1675
+ model
1676
+ else
1677
+ code = response['Response']['Error']['Code']
1678
+ message = response['Response']['Error']['Message']
1679
+ reqid = response['Response']['RequestId']
1680
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1681
+ end
1682
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1683
+ raise e
1684
+ rescue StandardError => e
1685
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1686
+ end
1687
+
1640
1688
  # 批量操作页面获取任务列表
1641
1689
 
1642
1690
  # @param request: Request instance for DescribeBatchOperateTask.
@@ -5224,7 +5272,7 @@ module TencentCloud
5224
5272
  end
5225
5273
 
5226
5274
  # <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
5227
- # 添加父任务依赖
5275
+ # 添加父任务依赖。本接口已废弃,请使用接口ModifyTaskLinksDs。
5228
5276
 
5229
5277
  # @param request: Request instance for ModifyTaskLinks.
5230
5278
  # @type request: :class:`Tencentcloud::wedata::V20210820::ModifyTaskLinksRequest`
@@ -5248,6 +5296,30 @@ module TencentCloud
5248
5296
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5249
5297
  end
5250
5298
 
5299
+ # 添加父任务依赖
5300
+
5301
+ # @param request: Request instance for ModifyTaskLinksDs.
5302
+ # @type request: :class:`Tencentcloud::wedata::V20210820::ModifyTaskLinksDsRequest`
5303
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyTaskLinksDsResponse`
5304
+ def ModifyTaskLinksDs(request)
5305
+ body = send_request('ModifyTaskLinksDs', request.serialize)
5306
+ response = JSON.parse(body)
5307
+ if response['Response'].key?('Error') == false
5308
+ model = ModifyTaskLinksDsResponse.new
5309
+ model.deserialize(response['Response'])
5310
+ model
5311
+ else
5312
+ code = response['Response']['Error']['Code']
5313
+ message = response['Response']['Error']['Message']
5314
+ reqid = response['Response']['RequestId']
5315
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5316
+ end
5317
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5318
+ raise e
5319
+ rescue StandardError => e
5320
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5321
+ end
5322
+
5251
5323
  # 重命名任务(任务编辑)
5252
5324
 
5253
5325
  # @param request: Request instance for ModifyTaskName.
@@ -5297,7 +5369,7 @@ module TencentCloud
5297
5369
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5298
5370
  end
5299
5371
 
5300
- # 更新工作流信息
5372
+ # 更新工作流信息。本接口已废弃,请使用接口UpdateWorkflowInfo。
5301
5373
 
5302
5374
  # @param request: Request instance for ModifyWorkflowInfo.
5303
5375
  # @type request: :class:`Tencentcloud::wedata::V20210820::ModifyWorkflowInfoRequest`
@@ -5369,9 +5441,33 @@ module TencentCloud
5369
5441
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5370
5442
  end
5371
5443
 
5372
- # <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
5373
5444
  # 注册事件
5374
5445
 
5446
+ # @param request: Request instance for RegisterDsEvent.
5447
+ # @type request: :class:`Tencentcloud::wedata::V20210820::RegisterDsEventRequest`
5448
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::RegisterDsEventResponse`
5449
+ def RegisterDsEvent(request)
5450
+ body = send_request('RegisterDsEvent', request.serialize)
5451
+ response = JSON.parse(body)
5452
+ if response['Response'].key?('Error') == false
5453
+ model = RegisterDsEventResponse.new
5454
+ model.deserialize(response['Response'])
5455
+ model
5456
+ else
5457
+ code = response['Response']['Error']['Code']
5458
+ message = response['Response']['Error']['Message']
5459
+ reqid = response['Response']['RequestId']
5460
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5461
+ end
5462
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5463
+ raise e
5464
+ rescue StandardError => e
5465
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5466
+ end
5467
+
5468
+ # <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
5469
+ # 注册事件。本接口已废弃,请使用接口RegisterDsEvent。
5470
+
5375
5471
  # @param request: Request instance for RegisterEvent.
5376
5472
  # @type request: :class:`Tencentcloud::wedata::V20210820::RegisterEventRequest`
5377
5473
  # @rtype: :class:`Tencentcloud::wedata::V20210820::RegisterEventResponse`
@@ -5443,6 +5539,30 @@ module TencentCloud
5443
5539
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5444
5540
  end
5445
5541
 
5542
+ # 批量更新工作流下任务责任人
5543
+
5544
+ # @param request: Request instance for RenewWorkflowOwnerDs.
5545
+ # @type request: :class:`Tencentcloud::wedata::V20210820::RenewWorkflowOwnerDsRequest`
5546
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::RenewWorkflowOwnerDsResponse`
5547
+ def RenewWorkflowOwnerDs(request)
5548
+ body = send_request('RenewWorkflowOwnerDs', request.serialize)
5549
+ response = JSON.parse(body)
5550
+ if response['Response'].key?('Error') == false
5551
+ model = RenewWorkflowOwnerDsResponse.new
5552
+ model.deserialize(response['Response'])
5553
+ model
5554
+ else
5555
+ code = response['Response']['Error']['Code']
5556
+ message = response['Response']['Error']['Message']
5557
+ reqid = response['Response']['RequestId']
5558
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5559
+ end
5560
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5561
+ raise e
5562
+ rescue StandardError => e
5563
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5564
+ end
5565
+
5446
5566
  # 更新工作流下任务调度信息
5447
5567
 
5448
5568
  # @param request: Request instance for RenewWorkflowSchedulerInfoDs.
@@ -5998,7 +6118,32 @@ module TencentCloud
5998
6118
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5999
6119
  end
6000
6120
 
6001
- # 修改工作流责任人
6121
+ # <p style="color:red;">[该接口为 ds 中开发]</p>
6122
+ # 更新工作流(包括工作流基本信息与工作流参数)
6123
+
6124
+ # @param request: Request instance for UpdateWorkflowInfo.
6125
+ # @type request: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowInfoRequest`
6126
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowInfoResponse`
6127
+ def UpdateWorkflowInfo(request)
6128
+ body = send_request('UpdateWorkflowInfo', request.serialize)
6129
+ response = JSON.parse(body)
6130
+ if response['Response'].key?('Error') == false
6131
+ model = UpdateWorkflowInfoResponse.new
6132
+ model.deserialize(response['Response'])
6133
+ model
6134
+ else
6135
+ code = response['Response']['Error']['Code']
6136
+ message = response['Response']['Error']['Message']
6137
+ reqid = response['Response']['RequestId']
6138
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
6139
+ end
6140
+ rescue TencentCloud::Common::TencentCloudSDKException => e
6141
+ raise e
6142
+ rescue StandardError => e
6143
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
6144
+ end
6145
+
6146
+ # 修改工作流责任人。本接口已废弃,请使用接口RenewWorkflowOwnerDs。
6002
6147
 
6003
6148
  # @param request: Request instance for UpdateWorkflowOwner.
6004
6149
  # @type request: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowOwnerRequest`
@@ -2380,6 +2380,48 @@ module TencentCloud
2380
2380
  end
2381
2381
  end
2382
2382
 
2383
+ # 数据地图-数据类目信息
2384
+ class BizCatalogsInfo < TencentCloud::Common::AbstractModel
2385
+ # @param AppId: 应用id
2386
+ # 注意:此字段可能返回 null,表示取不到有效值。
2387
+ # @type AppId: String
2388
+ # @param Id: 类目id
2389
+ # 注意:此字段可能返回 null,表示取不到有效值。
2390
+ # @type Id: Integer
2391
+ # @param Level: 类目层级
2392
+ # 注意:此字段可能返回 null,表示取不到有效值。
2393
+ # @type Level: Integer
2394
+ # @param Name: 类目名称
2395
+ # 注意:此字段可能返回 null,表示取不到有效值。
2396
+ # @type Name: String
2397
+ # @param ParentId: 上级类目id
2398
+ # 注意:此字段可能返回 null,表示取不到有效值。
2399
+ # @type ParentId: Integer
2400
+ # @param Position: 类目顺序
2401
+ # 注意:此字段可能返回 null,表示取不到有效值。
2402
+ # @type Position: Integer
2403
+
2404
+ attr_accessor :AppId, :Id, :Level, :Name, :ParentId, :Position
2405
+
2406
+ def initialize(appid=nil, id=nil, level=nil, name=nil, parentid=nil, position=nil)
2407
+ @AppId = appid
2408
+ @Id = id
2409
+ @Level = level
2410
+ @Name = name
2411
+ @ParentId = parentid
2412
+ @Position = position
2413
+ end
2414
+
2415
+ def deserialize(params)
2416
+ @AppId = params['AppId']
2417
+ @Id = params['Id']
2418
+ @Level = params['Level']
2419
+ @Name = params['Name']
2420
+ @ParentId = params['ParentId']
2421
+ @Position = params['Position']
2422
+ end
2423
+ end
2424
+
2383
2425
  # 实时任务同步速度 字节/s
2384
2426
  class BytesSpeed < TencentCloud::Common::AbstractModel
2385
2427
  # @param NodeType: 节点类型
@@ -4849,6 +4891,94 @@ module TencentCloud
4849
4891
  end
4850
4892
  end
4851
4893
 
4894
+ # CreateTaskNew请求参数结构体
4895
+ class CreateTaskNewRequest < TencentCloud::Common::AbstractModel
4896
+ # @param ProjectId: 项目Id
4897
+ # @type ProjectId: String
4898
+ # @param WorkflowId: 工作流id
4899
+ # @type WorkflowId: String
4900
+ # @param TaskName: 任务名
4901
+ # @type TaskName: String
4902
+ # @param TaskType: 26离线同步,30Python,31PySpark,32DLC,33Impala,34Hive SQL,35Shell,36Spark SQL,39Spark,40CDW PG,92MapReduce
4903
+ # @type TaskType: Integer
4904
+ # @param TaskExt: 扩展属性
4905
+ # @type TaskExt: Array
4906
+ # @param ProductName: 产品名称
4907
+ # @type ProductName: String
4908
+ # @param InstanceInitStrategy: 任务实例初始化策略
4909
+ # @type InstanceInitStrategy: String
4910
+ # @param LeftCoordinate: 画布坐标横轴
4911
+ # @type LeftCoordinate: Float
4912
+ # @param TopCoordinate: 画布坐标纵轴
4913
+ # @type TopCoordinate: Float
4914
+ # @param TaskFolderId: 工作流目录ID
4915
+ # @type TaskFolderId: String
4916
+ # @param Content: 指定脚本内容,base64编码
4917
+ # @type Content: String
4918
+ # @param CodeTemplateId: 代码模版ID
4919
+ # @type CodeTemplateId: String
4920
+
4921
+ attr_accessor :ProjectId, :WorkflowId, :TaskName, :TaskType, :TaskExt, :ProductName, :InstanceInitStrategy, :LeftCoordinate, :TopCoordinate, :TaskFolderId, :Content, :CodeTemplateId
4922
+
4923
+ def initialize(projectid=nil, workflowid=nil, taskname=nil, tasktype=nil, taskext=nil, productname=nil, instanceinitstrategy=nil, leftcoordinate=nil, topcoordinate=nil, taskfolderid=nil, content=nil, codetemplateid=nil)
4924
+ @ProjectId = projectid
4925
+ @WorkflowId = workflowid
4926
+ @TaskName = taskname
4927
+ @TaskType = tasktype
4928
+ @TaskExt = taskext
4929
+ @ProductName = productname
4930
+ @InstanceInitStrategy = instanceinitstrategy
4931
+ @LeftCoordinate = leftcoordinate
4932
+ @TopCoordinate = topcoordinate
4933
+ @TaskFolderId = taskfolderid
4934
+ @Content = content
4935
+ @CodeTemplateId = codetemplateid
4936
+ end
4937
+
4938
+ def deserialize(params)
4939
+ @ProjectId = params['ProjectId']
4940
+ @WorkflowId = params['WorkflowId']
4941
+ @TaskName = params['TaskName']
4942
+ @TaskType = params['TaskType']
4943
+ unless params['TaskExt'].nil?
4944
+ @TaskExt = []
4945
+ params['TaskExt'].each do |i|
4946
+ taskextinfo_tmp = TaskExtInfo.new
4947
+ taskextinfo_tmp.deserialize(i)
4948
+ @TaskExt << taskextinfo_tmp
4949
+ end
4950
+ end
4951
+ @ProductName = params['ProductName']
4952
+ @InstanceInitStrategy = params['InstanceInitStrategy']
4953
+ @LeftCoordinate = params['LeftCoordinate']
4954
+ @TopCoordinate = params['TopCoordinate']
4955
+ @TaskFolderId = params['TaskFolderId']
4956
+ @Content = params['Content']
4957
+ @CodeTemplateId = params['CodeTemplateId']
4958
+ end
4959
+ end
4960
+
4961
+ # CreateTaskNew返回参数结构体
4962
+ class CreateTaskNewResponse < TencentCloud::Common::AbstractModel
4963
+ # @param Data: 无
4964
+ # 注意:此字段可能返回 null,表示取不到有效值。
4965
+ # @type Data: String
4966
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4967
+ # @type RequestId: String
4968
+
4969
+ attr_accessor :Data, :RequestId
4970
+
4971
+ def initialize(data=nil, requestid=nil)
4972
+ @Data = data
4973
+ @RequestId = requestid
4974
+ end
4975
+
4976
+ def deserialize(params)
4977
+ @Data = params['Data']
4978
+ @RequestId = params['RequestId']
4979
+ end
4980
+ end
4981
+
4852
4982
  # CreateTask请求参数结构体
4853
4983
  class CreateTaskRequest < TencentCloud::Common::AbstractModel
4854
4984
  # @param ProjectId: 项目Id
@@ -7404,6 +7534,45 @@ module TencentCloud
7404
7534
  end
7405
7535
  end
7406
7536
 
7537
+ # DescribeBaseBizCatalogs请求参数结构体
7538
+ class DescribeBaseBizCatalogsRequest < TencentCloud::Common::AbstractModel
7539
+
7540
+
7541
+ def initialize()
7542
+ end
7543
+
7544
+ def deserialize(params)
7545
+ end
7546
+ end
7547
+
7548
+ # DescribeBaseBizCatalogs返回参数结构体
7549
+ class DescribeBaseBizCatalogsResponse < TencentCloud::Common::AbstractModel
7550
+ # @param Data: 类目列表
7551
+ # 注意:此字段可能返回 null,表示取不到有效值。
7552
+ # @type Data: Array
7553
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7554
+ # @type RequestId: String
7555
+
7556
+ attr_accessor :Data, :RequestId
7557
+
7558
+ def initialize(data=nil, requestid=nil)
7559
+ @Data = data
7560
+ @RequestId = requestid
7561
+ end
7562
+
7563
+ def deserialize(params)
7564
+ unless params['Data'].nil?
7565
+ @Data = []
7566
+ params['Data'].each do |i|
7567
+ bizcatalogsinfo_tmp = BizCatalogsInfo.new
7568
+ bizcatalogsinfo_tmp.deserialize(i)
7569
+ @Data << bizcatalogsinfo_tmp
7570
+ end
7571
+ end
7572
+ @RequestId = params['RequestId']
7573
+ end
7574
+ end
7575
+
7407
7576
  # 批量操作任务列表
7408
7577
  class DescribeBatchOperateTaskDTO < TencentCloud::Common::AbstractModel
7409
7578
  # @param TaskId: 任务ID
@@ -16809,6 +16978,152 @@ module TencentCloud
16809
16978
  end
16810
16979
  end
16811
16980
 
16981
+ # 事件管理- 事件实体
16982
+ class EventDsDto < TencentCloud::Common::AbstractModel
16983
+ # @param Name: 事件名称
16984
+ # 注意:此字段可能返回 null,表示取不到有效值。
16985
+ # @type Name: String
16986
+ # @param EventType: 事件类型GENERAL、TIME_SERIES
16987
+ # 注意:此字段可能返回 null,表示取不到有效值。
16988
+ # @type EventType: String
16989
+ # @param TimeToLive: 存活时间
16990
+ # 注意:此字段可能返回 null,表示取不到有效值。
16991
+ # @type TimeToLive: Integer
16992
+ # @param TimeUnit: 存活时间单位
16993
+ # 注意:此字段可能返回 null,表示取不到有效值。
16994
+ # @type TimeUnit: String
16995
+ # @param EventSubType: 事件分割类型 SECOND、MIN、HOUR、DAY
16996
+ # 注意:此字段可能返回 null,表示取不到有效值。
16997
+ # @type EventSubType: String
16998
+ # @param EventBroadcastType: 事件广播类型SINGLE、BROADCAST
16999
+ # 注意:此字段可能返回 null,表示取不到有效值。
17000
+ # @type EventBroadcastType: String
17001
+ # @param DimensionFormat: 时间格式
17002
+ # 注意:此字段可能返回 null,表示取不到有效值。
17003
+ # @type DimensionFormat: String
17004
+ # @param CreationTs: 创建时间
17005
+ # 注意:此字段可能返回 null,表示取不到有效值。
17006
+ # @type CreationTs: String
17007
+ # @param Owner: 事件所属人
17008
+ # 注意:此字段可能返回 null,表示取不到有效值。
17009
+ # @type Owner: String
17010
+ # @param Properties: 属性
17011
+ # 注意:此字段可能返回 null,表示取不到有效值。
17012
+ # @type Properties: String
17013
+ # @param Description: 描述信息
17014
+ # 注意:此字段可能返回 null,表示取不到有效值。
17015
+ # @type Description: String
17016
+ # @param Listeners: 事件监听者信息
17017
+ # 注意:此字段可能返回 null,表示取不到有效值。
17018
+ # @type Listeners: Array
17019
+ # @param ProjectId: 项目id
17020
+ # 注意:此字段可能返回 null,表示取不到有效值。
17021
+ # @type ProjectId: String
17022
+ # @param ProjectName: 项目名称
17023
+ # 注意:此字段可能返回 null,表示取不到有效值。
17024
+ # @type ProjectName: String
17025
+
17026
+ attr_accessor :Name, :EventType, :TimeToLive, :TimeUnit, :EventSubType, :EventBroadcastType, :DimensionFormat, :CreationTs, :Owner, :Properties, :Description, :Listeners, :ProjectId, :ProjectName
17027
+
17028
+ def initialize(name=nil, eventtype=nil, timetolive=nil, timeunit=nil, eventsubtype=nil, eventbroadcasttype=nil, dimensionformat=nil, creationts=nil, owner=nil, properties=nil, description=nil, listeners=nil, projectid=nil, projectname=nil)
17029
+ @Name = name
17030
+ @EventType = eventtype
17031
+ @TimeToLive = timetolive
17032
+ @TimeUnit = timeunit
17033
+ @EventSubType = eventsubtype
17034
+ @EventBroadcastType = eventbroadcasttype
17035
+ @DimensionFormat = dimensionformat
17036
+ @CreationTs = creationts
17037
+ @Owner = owner
17038
+ @Properties = properties
17039
+ @Description = description
17040
+ @Listeners = listeners
17041
+ @ProjectId = projectid
17042
+ @ProjectName = projectname
17043
+ end
17044
+
17045
+ def deserialize(params)
17046
+ @Name = params['Name']
17047
+ @EventType = params['EventType']
17048
+ @TimeToLive = params['TimeToLive']
17049
+ @TimeUnit = params['TimeUnit']
17050
+ @EventSubType = params['EventSubType']
17051
+ @EventBroadcastType = params['EventBroadcastType']
17052
+ @DimensionFormat = params['DimensionFormat']
17053
+ @CreationTs = params['CreationTs']
17054
+ @Owner = params['Owner']
17055
+ @Properties = params['Properties']
17056
+ @Description = params['Description']
17057
+ unless params['Listeners'].nil?
17058
+ @Listeners = []
17059
+ params['Listeners'].each do |i|
17060
+ eventlistenerdto_tmp = EventListenerDTO.new
17061
+ eventlistenerdto_tmp.deserialize(i)
17062
+ @Listeners << eventlistenerdto_tmp
17063
+ end
17064
+ end
17065
+ @ProjectId = params['ProjectId']
17066
+ @ProjectName = params['ProjectName']
17067
+ end
17068
+ end
17069
+
17070
+ # 事件监听者信息
17071
+ class EventListenerDTO < TencentCloud::Common::AbstractModel
17072
+ # @param Key: 关键字,一般为任务id
17073
+ # 注意:此字段可能返回 null,表示取不到有效值。
17074
+ # @type Key: String
17075
+ # @param Type: REST_API、KAFKA
17076
+ # 注意:此字段可能返回 null,表示取不到有效值。
17077
+ # @type Type: String
17078
+ # @param CreationTs: 创建时间
17079
+ # 注意:此字段可能返回 null,表示取不到有效值。
17080
+ # @type CreationTs: String
17081
+ # @param PropertiesList: 配置信息
17082
+ # 注意:此字段可能返回 null,表示取不到有效值。
17083
+ # @type PropertiesList: Array
17084
+ # @param EventName: 事件名称
17085
+ # 注意:此字段可能返回 null,表示取不到有效值。
17086
+ # @type EventName: String
17087
+ # @param TaskInfo: 监听者任务信息
17088
+ # 注意:此字段可能返回 null,表示取不到有效值。
17089
+ # @type TaskInfo: :class:`Tencentcloud::Wedata.v20210820.models.EventListenerTaskInfo`
17090
+ # @param EventProjectId: 事件所属项目id
17091
+ # 注意:此字段可能返回 null,表示取不到有效值。
17092
+ # @type EventProjectId: String
17093
+
17094
+ attr_accessor :Key, :Type, :CreationTs, :PropertiesList, :EventName, :TaskInfo, :EventProjectId
17095
+
17096
+ def initialize(key=nil, type=nil, creationts=nil, propertieslist=nil, eventname=nil, taskinfo=nil, eventprojectid=nil)
17097
+ @Key = key
17098
+ @Type = type
17099
+ @CreationTs = creationts
17100
+ @PropertiesList = propertieslist
17101
+ @EventName = eventname
17102
+ @TaskInfo = taskinfo
17103
+ @EventProjectId = eventprojectid
17104
+ end
17105
+
17106
+ def deserialize(params)
17107
+ @Key = params['Key']
17108
+ @Type = params['Type']
17109
+ @CreationTs = params['CreationTs']
17110
+ unless params['PropertiesList'].nil?
17111
+ @PropertiesList = []
17112
+ params['PropertiesList'].each do |i|
17113
+ paraminfods_tmp = ParamInfoDs.new
17114
+ paraminfods_tmp.deserialize(i)
17115
+ @PropertiesList << paraminfods_tmp
17116
+ end
17117
+ end
17118
+ @EventName = params['EventName']
17119
+ unless params['TaskInfo'].nil?
17120
+ @TaskInfo = EventListenerTaskInfo.new
17121
+ @TaskInfo.deserialize(params['TaskInfo'])
17122
+ end
17123
+ @EventProjectId = params['EventProjectId']
17124
+ end
17125
+ end
17126
+
16812
17127
  # 事件监听器
16813
17128
  class EventListenerOpsDto < TencentCloud::Common::AbstractModel
16814
17129
  # @param EventName: 事件名称
@@ -16846,6 +17161,58 @@ module TencentCloud
16846
17161
  end
16847
17162
  end
16848
17163
 
17164
+ # 监听者任务信息
17165
+ class EventListenerTaskInfo < TencentCloud::Common::AbstractModel
17166
+ # @param TaskId: 任务id
17167
+ # 注意:此字段可能返回 null,表示取不到有效值。
17168
+ # @type TaskId: String
17169
+ # @param TaskName: 任务名称
17170
+ # 注意:此字段可能返回 null,表示取不到有效值。
17171
+ # @type TaskName: String
17172
+ # @param WorkflowId: 工作流id
17173
+ # 注意:此字段可能返回 null,表示取不到有效值。
17174
+ # @type WorkflowId: String
17175
+ # @param WorkflowName: 工作流名称
17176
+ # 注意:此字段可能返回 null,表示取不到有效值。
17177
+ # @type WorkflowName: String
17178
+ # @param TaskTypeId: 任务类型id
17179
+ # 注意:此字段可能返回 null,表示取不到有效值。
17180
+ # @type TaskTypeId: Integer
17181
+ # @param TaskType: 任务类型名称
17182
+ # 注意:此字段可能返回 null,表示取不到有效值。
17183
+ # @type TaskType: String
17184
+ # @param ProjectId: 项目id
17185
+ # 注意:此字段可能返回 null,表示取不到有效值。
17186
+ # @type ProjectId: String
17187
+ # @param CycleType: 任务周期类型
17188
+ # 注意:此字段可能返回 null,表示取不到有效值。
17189
+ # @type CycleType: String
17190
+
17191
+ attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :TaskTypeId, :TaskType, :ProjectId, :CycleType
17192
+
17193
+ def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, tasktypeid=nil, tasktype=nil, projectid=nil, cycletype=nil)
17194
+ @TaskId = taskid
17195
+ @TaskName = taskname
17196
+ @WorkflowId = workflowid
17197
+ @WorkflowName = workflowname
17198
+ @TaskTypeId = tasktypeid
17199
+ @TaskType = tasktype
17200
+ @ProjectId = projectid
17201
+ @CycleType = cycletype
17202
+ end
17203
+
17204
+ def deserialize(params)
17205
+ @TaskId = params['TaskId']
17206
+ @TaskName = params['TaskName']
17207
+ @WorkflowId = params['WorkflowId']
17208
+ @WorkflowName = params['WorkflowName']
17209
+ @TaskTypeId = params['TaskTypeId']
17210
+ @TaskType = params['TaskType']
17211
+ @ProjectId = params['ProjectId']
17212
+ @CycleType = params['CycleType']
17213
+ end
17214
+ end
17215
+
16849
17216
  # 事件详情
16850
17217
  class EventOpsDto < TencentCloud::Common::AbstractModel
16851
17218
  # @param Name: 事件名称
@@ -22751,6 +23118,97 @@ module TencentCloud
22751
23118
  end
22752
23119
  end
22753
23120
 
23121
+ # ModifyTaskLinksDs请求参数结构体
23122
+ class ModifyTaskLinksDsRequest < TencentCloud::Common::AbstractModel
23123
+ # @param ProjectId: 项目Id
23124
+ # @type ProjectId: String
23125
+ # @param TaskFrom: 父任务ID
23126
+ # @type TaskFrom: String
23127
+ # @param TaskTo: 子任务ID
23128
+ # @type TaskTo: String
23129
+ # @param WorkflowId: 子任务工作流
23130
+ # @type WorkflowId: String
23131
+ # @param RealFromWorkflowId: 父任务工作流
23132
+ # @type RealFromWorkflowId: String
23133
+ # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
23134
+ # @type RequestFromSource: String
23135
+ # @param LinkDependencyType: 父子任务之间的依赖关系
23136
+ # 正常的依赖父任务全部实例 启用
23137
+ # normal_all(1),
23138
+ # normal_first_one(2), 正常的依赖父任务 第一个
23139
+ # normal_last_one(3), 正常的依赖父任务 最后一个
23140
+ # normal_any_one(4), 正常的依赖父任务 任意一个
23141
+ # normal_specific_one(5), 正常的依赖父任务 指定的一个
23142
+ # self(6), 自身依赖,可能用不到
23143
+
23144
+ # 非正常的依赖父任务全部实例 启用(向前依赖 明天)
23145
+ # non_normal_all_forward(11),
23146
+ # non_normal_first_one_forward(12), 非正常的依赖父任务 第一个
23147
+ # non_normal_last_one_forward(13), 非正常的依赖父任务 最后一个
23148
+ # non_normal_any_one_forward(14), 非正常的依赖父任务 任意一个
23149
+ # non_normal_specific_one_forward(15),非正常的依赖父任务 指定一个
23150
+
23151
+ # 非正常的依赖父任务全部实例 启用(向后依赖 昨天)
23152
+ # non_normal_all_backward(21),
23153
+ # non_normal_first_one_backward(22), 非正常的依赖父任务 第一个
23154
+ # non_normal_last_one_backward(23), 非正常的依赖父任务 最后一个
23155
+ # non_normal_any_one_backward(24), 非正常的依赖父任务 任意一个
23156
+ # non_normal_specific_one_backward(25) 非正常的依赖父任务 指定一个
23157
+ # @type LinkDependencyType: String
23158
+ # @param LinkExt: 额外的属性信息 如分支节点、归并节点信息
23159
+ # @type LinkExt: String
23160
+
23161
+ attr_accessor :ProjectId, :TaskFrom, :TaskTo, :WorkflowId, :RealFromWorkflowId, :RequestFromSource, :LinkDependencyType, :LinkExt
23162
+
23163
+ def initialize(projectid=nil, taskfrom=nil, taskto=nil, workflowid=nil, realfromworkflowid=nil, requestfromsource=nil, linkdependencytype=nil, linkext=nil)
23164
+ @ProjectId = projectid
23165
+ @TaskFrom = taskfrom
23166
+ @TaskTo = taskto
23167
+ @WorkflowId = workflowid
23168
+ @RealFromWorkflowId = realfromworkflowid
23169
+ @RequestFromSource = requestfromsource
23170
+ @LinkDependencyType = linkdependencytype
23171
+ @LinkExt = linkext
23172
+ end
23173
+
23174
+ def deserialize(params)
23175
+ @ProjectId = params['ProjectId']
23176
+ @TaskFrom = params['TaskFrom']
23177
+ @TaskTo = params['TaskTo']
23178
+ @WorkflowId = params['WorkflowId']
23179
+ @RealFromWorkflowId = params['RealFromWorkflowId']
23180
+ @RequestFromSource = params['RequestFromSource']
23181
+ @LinkDependencyType = params['LinkDependencyType']
23182
+ @LinkExt = params['LinkExt']
23183
+ end
23184
+ end
23185
+
23186
+ # ModifyTaskLinksDs返回参数结构体
23187
+ class ModifyTaskLinksDsResponse < TencentCloud::Common::AbstractModel
23188
+ # @param Data: 成功或失败
23189
+ # 注意:此字段可能返回 null,表示取不到有效值。
23190
+ # @type Data: Boolean
23191
+ # @param LinkId: linkID
23192
+ # 注意:此字段可能返回 null,表示取不到有效值。
23193
+ # @type LinkId: String
23194
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23195
+ # @type RequestId: String
23196
+
23197
+ attr_accessor :Data, :LinkId, :RequestId
23198
+
23199
+ def initialize(data=nil, linkid=nil, requestid=nil)
23200
+ @Data = data
23201
+ @LinkId = linkid
23202
+ @RequestId = requestid
23203
+ end
23204
+
23205
+ def deserialize(params)
23206
+ @Data = params['Data']
23207
+ @LinkId = params['LinkId']
23208
+ @RequestId = params['RequestId']
23209
+ end
23210
+ end
23211
+
22754
23212
  # ModifyTaskLinks请求参数结构体
22755
23213
  class ModifyTaskLinksRequest < TencentCloud::Common::AbstractModel
22756
23214
  # @param ProjectId: 项目Id
@@ -24727,6 +25185,89 @@ module TencentCloud
24727
25185
  end
24728
25186
  end
24729
25187
 
25188
+ # RegisterDsEvent请求参数结构体
25189
+ class RegisterDsEventRequest < TencentCloud::Common::AbstractModel
25190
+ # @param ProjectId: 项目ID
25191
+ # @type ProjectId: String
25192
+ # @param Name: 事件名称
25193
+ # @type Name: String
25194
+ # @param EventSubType: 事件周期类型 1、分钟:MIN 2、小时 :HOUR 3、天:DAY
25195
+ # @type EventSubType: String
25196
+ # @param TimeToLive: 事件存活时间,值为大于0的整数
25197
+ # @type TimeToLive: String
25198
+ # @param TimeUnit: 事件存活时间单位 1、天:DAYS 2、分钟:MINUTES
25199
+ # @type TimeUnit: String
25200
+ # @param Owner: 事件所属人,账号昵称
25201
+ # @type Owner: String
25202
+ # @param Description: 事件描述
25203
+ # @type Description: String
25204
+ # @param EventType: 事件类型GENERAL、TIME_SERIES
25205
+ # @type EventType: String
25206
+ # @param EventBroadcastType: 事件广播类型SINGLE、BROADCAST
25207
+ # @type EventBroadcastType: String
25208
+ # @param DimensionFormat: 时间格式
25209
+ # @type DimensionFormat: String
25210
+
25211
+ attr_accessor :ProjectId, :Name, :EventSubType, :TimeToLive, :TimeUnit, :Owner, :Description, :EventType, :EventBroadcastType, :DimensionFormat
25212
+ extend Gem::Deprecate
25213
+ deprecate :EventType, :none, 2025, 5
25214
+ deprecate :EventType=, :none, 2025, 5
25215
+ deprecate :EventBroadcastType, :none, 2025, 5
25216
+ deprecate :EventBroadcastType=, :none, 2025, 5
25217
+ deprecate :DimensionFormat, :none, 2025, 5
25218
+ deprecate :DimensionFormat=, :none, 2025, 5
25219
+
25220
+ def initialize(projectid=nil, name=nil, eventsubtype=nil, timetolive=nil, timeunit=nil, owner=nil, description=nil, eventtype=nil, eventbroadcasttype=nil, dimensionformat=nil)
25221
+ @ProjectId = projectid
25222
+ @Name = name
25223
+ @EventSubType = eventsubtype
25224
+ @TimeToLive = timetolive
25225
+ @TimeUnit = timeunit
25226
+ @Owner = owner
25227
+ @Description = description
25228
+ @EventType = eventtype
25229
+ @EventBroadcastType = eventbroadcasttype
25230
+ @DimensionFormat = dimensionformat
25231
+ end
25232
+
25233
+ def deserialize(params)
25234
+ @ProjectId = params['ProjectId']
25235
+ @Name = params['Name']
25236
+ @EventSubType = params['EventSubType']
25237
+ @TimeToLive = params['TimeToLive']
25238
+ @TimeUnit = params['TimeUnit']
25239
+ @Owner = params['Owner']
25240
+ @Description = params['Description']
25241
+ @EventType = params['EventType']
25242
+ @EventBroadcastType = params['EventBroadcastType']
25243
+ @DimensionFormat = params['DimensionFormat']
25244
+ end
25245
+ end
25246
+
25247
+ # RegisterDsEvent返回参数结构体
25248
+ class RegisterDsEventResponse < TencentCloud::Common::AbstractModel
25249
+ # @param Data: 事件信息
25250
+ # 注意:此字段可能返回 null,表示取不到有效值。
25251
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.EventDsDto`
25252
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
25253
+ # @type RequestId: String
25254
+
25255
+ attr_accessor :Data, :RequestId
25256
+
25257
+ def initialize(data=nil, requestid=nil)
25258
+ @Data = data
25259
+ @RequestId = requestid
25260
+ end
25261
+
25262
+ def deserialize(params)
25263
+ unless params['Data'].nil?
25264
+ @Data = EventDsDto.new
25265
+ @Data.deserialize(params['Data'])
25266
+ end
25267
+ @RequestId = params['RequestId']
25268
+ end
25269
+ end
25270
+
24730
25271
  # RegisterEventListener请求参数结构体
24731
25272
  class RegisterEventListenerRequest < TencentCloud::Common::AbstractModel
24732
25273
  # @param Key: 关键字,如果是任务,则传任务Id
@@ -24911,6 +25452,57 @@ module TencentCloud
24911
25452
  end
24912
25453
  end
24913
25454
 
25455
+ # RenewWorkflowOwnerDs请求参数结构体
25456
+ class RenewWorkflowOwnerDsRequest < TencentCloud::Common::AbstractModel
25457
+ # @param ProjectId: 工作流ID
25458
+ # @type ProjectId: String
25459
+ # @param Owner: 责任人
25460
+ # @type Owner: String
25461
+ # @param OwnerId: 责任人ID
25462
+ # @type OwnerId: String
25463
+ # @param WorkflowIds: 工作流ID列表
25464
+ # @type WorkflowIds: Array
25465
+
25466
+ attr_accessor :ProjectId, :Owner, :OwnerId, :WorkflowIds
25467
+
25468
+ def initialize(projectid=nil, owner=nil, ownerid=nil, workflowids=nil)
25469
+ @ProjectId = projectid
25470
+ @Owner = owner
25471
+ @OwnerId = ownerid
25472
+ @WorkflowIds = workflowids
25473
+ end
25474
+
25475
+ def deserialize(params)
25476
+ @ProjectId = params['ProjectId']
25477
+ @Owner = params['Owner']
25478
+ @OwnerId = params['OwnerId']
25479
+ @WorkflowIds = params['WorkflowIds']
25480
+ end
25481
+ end
25482
+
25483
+ # RenewWorkflowOwnerDs返回参数结构体
25484
+ class RenewWorkflowOwnerDsResponse < TencentCloud::Common::AbstractModel
25485
+ # @param Data: 执行结果
25486
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.BatchResultDs`
25487
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
25488
+ # @type RequestId: String
25489
+
25490
+ attr_accessor :Data, :RequestId
25491
+
25492
+ def initialize(data=nil, requestid=nil)
25493
+ @Data = data
25494
+ @RequestId = requestid
25495
+ end
25496
+
25497
+ def deserialize(params)
25498
+ unless params['Data'].nil?
25499
+ @Data = BatchResultDs.new
25500
+ @Data.deserialize(params['Data'])
25501
+ end
25502
+ @RequestId = params['RequestId']
25503
+ end
25504
+ end
25505
+
24914
25506
  # RenewWorkflowSchedulerInfoDs请求参数结构体
24915
25507
  class RenewWorkflowSchedulerInfoDsRequest < TencentCloud::Common::AbstractModel
24916
25508
  # @param ProjectId: 项目ID
@@ -32452,6 +33044,100 @@ module TencentCloud
32452
33044
  end
32453
33045
  end
32454
33046
 
33047
+ # UpdateWorkflowInfo请求参数结构体
33048
+ class UpdateWorkflowInfoRequest < TencentCloud::Common::AbstractModel
33049
+ # @param ProjectId: 项目Id
33050
+ # @type ProjectId: String
33051
+ # @param OperatorName: 操作者名称
33052
+ # @type OperatorName: String
33053
+ # @param WorkflowId: 工作流id
33054
+ # @type WorkflowId: String
33055
+ # @param Owner: 责任人
33056
+ # @type Owner: String
33057
+ # @param OwnerId: 责任人id
33058
+ # @type OwnerId: String
33059
+ # @param WorkflowDesc: 备注
33060
+ # @type WorkflowDesc: String
33061
+ # @param WorkflowName: 工作流名称
33062
+ # @type WorkflowName: String
33063
+ # @param FolderId: 所属文件夹id
33064
+ # @type FolderId: String
33065
+ # @param UserGroupId: 工作流所属用户分组id 若有多个,分号隔开: a;b;c
33066
+ # @type UserGroupId: String
33067
+ # @param UserGroupName: 工作流所属用户分组名称 若有多个,分号隔开: a;b;c
33068
+ # @type UserGroupName: String
33069
+ # @param WorkflowParams: 工作流参数列表
33070
+ # @type WorkflowParams: Array
33071
+ # @param GeneralTaskParams: 用于配置优化参数(线程、内存、CPU核数等),仅作用于Spark SQL节点。多个参数用英文分号分隔。
33072
+ # @type GeneralTaskParams: Array
33073
+
33074
+ attr_accessor :ProjectId, :OperatorName, :WorkflowId, :Owner, :OwnerId, :WorkflowDesc, :WorkflowName, :FolderId, :UserGroupId, :UserGroupName, :WorkflowParams, :GeneralTaskParams
33075
+
33076
+ def initialize(projectid=nil, operatorname=nil, workflowid=nil, owner=nil, ownerid=nil, workflowdesc=nil, workflowname=nil, folderid=nil, usergroupid=nil, usergroupname=nil, workflowparams=nil, generaltaskparams=nil)
33077
+ @ProjectId = projectid
33078
+ @OperatorName = operatorname
33079
+ @WorkflowId = workflowid
33080
+ @Owner = owner
33081
+ @OwnerId = ownerid
33082
+ @WorkflowDesc = workflowdesc
33083
+ @WorkflowName = workflowname
33084
+ @FolderId = folderid
33085
+ @UserGroupId = usergroupid
33086
+ @UserGroupName = usergroupname
33087
+ @WorkflowParams = workflowparams
33088
+ @GeneralTaskParams = generaltaskparams
33089
+ end
33090
+
33091
+ def deserialize(params)
33092
+ @ProjectId = params['ProjectId']
33093
+ @OperatorName = params['OperatorName']
33094
+ @WorkflowId = params['WorkflowId']
33095
+ @Owner = params['Owner']
33096
+ @OwnerId = params['OwnerId']
33097
+ @WorkflowDesc = params['WorkflowDesc']
33098
+ @WorkflowName = params['WorkflowName']
33099
+ @FolderId = params['FolderId']
33100
+ @UserGroupId = params['UserGroupId']
33101
+ @UserGroupName = params['UserGroupName']
33102
+ unless params['WorkflowParams'].nil?
33103
+ @WorkflowParams = []
33104
+ params['WorkflowParams'].each do |i|
33105
+ paraminfo_tmp = ParamInfo.new
33106
+ paraminfo_tmp.deserialize(i)
33107
+ @WorkflowParams << paraminfo_tmp
33108
+ end
33109
+ end
33110
+ unless params['GeneralTaskParams'].nil?
33111
+ @GeneralTaskParams = []
33112
+ params['GeneralTaskParams'].each do |i|
33113
+ generaltaskparam_tmp = GeneralTaskParam.new
33114
+ generaltaskparam_tmp.deserialize(i)
33115
+ @GeneralTaskParams << generaltaskparam_tmp
33116
+ end
33117
+ end
33118
+ end
33119
+ end
33120
+
33121
+ # UpdateWorkflowInfo返回参数结构体
33122
+ class UpdateWorkflowInfoResponse < TencentCloud::Common::AbstractModel
33123
+ # @param Data: true代表成功,false代表失败
33124
+ # @type Data: Boolean
33125
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
33126
+ # @type RequestId: String
33127
+
33128
+ attr_accessor :Data, :RequestId
33129
+
33130
+ def initialize(data=nil, requestid=nil)
33131
+ @Data = data
33132
+ @RequestId = requestid
33133
+ end
33134
+
33135
+ def deserialize(params)
33136
+ @Data = params['Data']
33137
+ @RequestId = params['RequestId']
33138
+ end
33139
+ end
33140
+
32455
33141
  # UpdateWorkflowOwner请求参数结构体
32456
33142
  class UpdateWorkflowOwnerRequest < TencentCloud::Common::AbstractModel
32457
33143
  # @param ProjectId: 项目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.1054
4
+ version: 3.0.1056
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-05-07 00:00:00.000000000 Z
11
+ date: 2025-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common