tencentcloud-sdk-wedata 3.0.1055 → 3.0.1057

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.
@@ -868,6 +868,33 @@ module TencentCloud
868
868
  end
869
869
  end
870
870
 
871
+ # AttributeItemVO参数
872
+ class AttributeItemDsVO < TencentCloud::Common::AbstractModel
873
+ # @param Key: Key值
874
+ # 注意:此字段可能返回 null,表示取不到有效值。
875
+ # @type Key: String
876
+ # @param Value: Value值
877
+ # 注意:此字段可能返回 null,表示取不到有效值。
878
+ # @type Value: String
879
+ # @param Description: 描述
880
+ # 注意:此字段可能返回 null,表示取不到有效值。
881
+ # @type Description: String
882
+
883
+ attr_accessor :Key, :Value, :Description
884
+
885
+ def initialize(key=nil, value=nil, description=nil)
886
+ @Key = key
887
+ @Value = value
888
+ @Description = description
889
+ end
890
+
891
+ def deserialize(params)
892
+ @Key = params['Key']
893
+ @Value = params['Value']
894
+ @Description = params['Description']
895
+ end
896
+ end
897
+
871
898
  # 集群基础信息
872
899
  class BaseClusterInfo < TencentCloud::Common::AbstractModel
873
900
  # @param ClusterId: 集群id
@@ -2380,6 +2407,48 @@ module TencentCloud
2380
2407
  end
2381
2408
  end
2382
2409
 
2410
+ # 数据地图-数据类目信息
2411
+ class BizCatalogsInfo < TencentCloud::Common::AbstractModel
2412
+ # @param AppId: 应用id
2413
+ # 注意:此字段可能返回 null,表示取不到有效值。
2414
+ # @type AppId: String
2415
+ # @param Id: 类目id
2416
+ # 注意:此字段可能返回 null,表示取不到有效值。
2417
+ # @type Id: Integer
2418
+ # @param Level: 类目层级
2419
+ # 注意:此字段可能返回 null,表示取不到有效值。
2420
+ # @type Level: Integer
2421
+ # @param Name: 类目名称
2422
+ # 注意:此字段可能返回 null,表示取不到有效值。
2423
+ # @type Name: String
2424
+ # @param ParentId: 上级类目id
2425
+ # 注意:此字段可能返回 null,表示取不到有效值。
2426
+ # @type ParentId: Integer
2427
+ # @param Position: 类目顺序
2428
+ # 注意:此字段可能返回 null,表示取不到有效值。
2429
+ # @type Position: Integer
2430
+
2431
+ attr_accessor :AppId, :Id, :Level, :Name, :ParentId, :Position
2432
+
2433
+ def initialize(appid=nil, id=nil, level=nil, name=nil, parentid=nil, position=nil)
2434
+ @AppId = appid
2435
+ @Id = id
2436
+ @Level = level
2437
+ @Name = name
2438
+ @ParentId = parentid
2439
+ @Position = position
2440
+ end
2441
+
2442
+ def deserialize(params)
2443
+ @AppId = params['AppId']
2444
+ @Id = params['Id']
2445
+ @Level = params['Level']
2446
+ @Name = params['Name']
2447
+ @ParentId = params['ParentId']
2448
+ @Position = params['Position']
2449
+ end
2450
+ end
2451
+
2383
2452
  # 实时任务同步速度 字节/s
2384
2453
  class BytesSpeed < TencentCloud::Common::AbstractModel
2385
2454
  # @param NodeType: 节点类型
@@ -2960,6 +3029,61 @@ module TencentCloud
2960
3029
  end
2961
3030
  end
2962
3031
 
3032
+ # 列血缘节点
3033
+ class ColumnLineage < TencentCloud::Common::AbstractModel
3034
+ # @param DatasourceId: 数据源id
3035
+ # @type DatasourceId: String
3036
+ # @param DatabaseName: database 名称
3037
+ # @type DatabaseName: String
3038
+ # @param TableName: 表名称
3039
+ # @type TableName: String
3040
+ # @param ColumnName: 列名称
3041
+ # @type ColumnName: String
3042
+ # @param CatalogName: catalog 名称
3043
+ # @type CatalogName: String
3044
+ # @param SchemaName: schema 名称
3045
+ # @type SchemaName: String
3046
+ # @param ExtParams: 扩展参数
3047
+ # @type ExtParams: Array
3048
+ # @param TableType: 表类型
3049
+ # @type TableType: String
3050
+ # @param ColumnType: 列类型
3051
+ # @type ColumnType: String
3052
+
3053
+ attr_accessor :DatasourceId, :DatabaseName, :TableName, :ColumnName, :CatalogName, :SchemaName, :ExtParams, :TableType, :ColumnType
3054
+
3055
+ def initialize(datasourceid=nil, databasename=nil, tablename=nil, columnname=nil, catalogname=nil, schemaname=nil, extparams=nil, tabletype=nil, columntype=nil)
3056
+ @DatasourceId = datasourceid
3057
+ @DatabaseName = databasename
3058
+ @TableName = tablename
3059
+ @ColumnName = columnname
3060
+ @CatalogName = catalogname
3061
+ @SchemaName = schemaname
3062
+ @ExtParams = extparams
3063
+ @TableType = tabletype
3064
+ @ColumnType = columntype
3065
+ end
3066
+
3067
+ def deserialize(params)
3068
+ @DatasourceId = params['DatasourceId']
3069
+ @DatabaseName = params['DatabaseName']
3070
+ @TableName = params['TableName']
3071
+ @ColumnName = params['ColumnName']
3072
+ @CatalogName = params['CatalogName']
3073
+ @SchemaName = params['SchemaName']
3074
+ unless params['ExtParams'].nil?
3075
+ @ExtParams = []
3076
+ params['ExtParams'].each do |i|
3077
+ extparam_tmp = ExtParam.new
3078
+ extparam_tmp.deserialize(i)
3079
+ @ExtParams << extparam_tmp
3080
+ end
3081
+ end
3082
+ @TableType = params['TableType']
3083
+ @ColumnType = params['ColumnType']
3084
+ end
3085
+ end
3086
+
2963
3087
  # 血缘字段信息
2964
3088
  class ColumnLineageInfo < TencentCloud::Common::AbstractModel
2965
3089
  # @param Id: 血缘id
@@ -3094,6 +3218,36 @@ module TencentCloud
3094
3218
  end
3095
3219
  end
3096
3220
 
3221
+ # 列血缘对
3222
+ class ColumnLineagePair < TencentCloud::Common::AbstractModel
3223
+ # @param Sources: 列血缘来源方
3224
+ # @type Sources: Array
3225
+ # @param Target: 列血缘目标方
3226
+ # @type Target: :class:`Tencentcloud::Wedata.v20210820.models.ColumnLineage`
3227
+
3228
+ attr_accessor :Sources, :Target
3229
+
3230
+ def initialize(sources=nil, target=nil)
3231
+ @Sources = sources
3232
+ @Target = target
3233
+ end
3234
+
3235
+ def deserialize(params)
3236
+ unless params['Sources'].nil?
3237
+ @Sources = []
3238
+ params['Sources'].each do |i|
3239
+ columnlineage_tmp = ColumnLineage.new
3240
+ columnlineage_tmp.deserialize(i)
3241
+ @Sources << columnlineage_tmp
3242
+ end
3243
+ end
3244
+ unless params['Target'].nil?
3245
+ @Target = ColumnLineage.new
3246
+ @Target.deserialize(params['Target'])
3247
+ end
3248
+ end
3249
+ end
3250
+
3097
3251
  # 列的元数据
3098
3252
  class ColumnMeta < TencentCloud::Common::AbstractModel
3099
3253
  # @param NameEn: 字段英文名称
@@ -3709,6 +3863,128 @@ module TencentCloud
3709
3863
  end
3710
3864
  end
3711
3865
 
3866
+ # CreateCodeTemplate请求参数结构体
3867
+ class CreateCodeTemplateRequest < TencentCloud::Common::AbstractModel
3868
+ # @param ProjectId: 项目Id
3869
+ # @type ProjectId: String
3870
+ # @param CodeTemplateName: 模版名
3871
+ # @type CodeTemplateName: String
3872
+ # @param TaskType: 30Python,32DLC,50 DLC-PySpark
3873
+ # @type TaskType: Integer
3874
+ # @param CodeTemplateDesc: 模版描述
3875
+ # @type CodeTemplateDesc: String
3876
+ # @param FolderId: 文件夹ID
3877
+ # @type FolderId: String
3878
+ # @param Content: 指定脚本内容
3879
+ # @type Content: String
3880
+
3881
+ attr_accessor :ProjectId, :CodeTemplateName, :TaskType, :CodeTemplateDesc, :FolderId, :Content
3882
+
3883
+ def initialize(projectid=nil, codetemplatename=nil, tasktype=nil, codetemplatedesc=nil, folderid=nil, content=nil)
3884
+ @ProjectId = projectid
3885
+ @CodeTemplateName = codetemplatename
3886
+ @TaskType = tasktype
3887
+ @CodeTemplateDesc = codetemplatedesc
3888
+ @FolderId = folderid
3889
+ @Content = content
3890
+ end
3891
+
3892
+ def deserialize(params)
3893
+ @ProjectId = params['ProjectId']
3894
+ @CodeTemplateName = params['CodeTemplateName']
3895
+ @TaskType = params['TaskType']
3896
+ @CodeTemplateDesc = params['CodeTemplateDesc']
3897
+ @FolderId = params['FolderId']
3898
+ @Content = params['Content']
3899
+ end
3900
+ end
3901
+
3902
+ # CreateCodeTemplate返回参数结构体
3903
+ class CreateCodeTemplateResponse < TencentCloud::Common::AbstractModel
3904
+ # @param Data: 模版id
3905
+ # 注意:此字段可能返回 null,表示取不到有效值。
3906
+ # @type Data: String
3907
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3908
+ # @type RequestId: String
3909
+
3910
+ attr_accessor :Data, :RequestId
3911
+
3912
+ def initialize(data=nil, requestid=nil)
3913
+ @Data = data
3914
+ @RequestId = requestid
3915
+ end
3916
+
3917
+ def deserialize(params)
3918
+ @Data = params['Data']
3919
+ @RequestId = params['RequestId']
3920
+ end
3921
+ end
3922
+
3923
+ # CreateCodeTemplateVersion请求参数结构体
3924
+ class CreateCodeTemplateVersionRequest < TencentCloud::Common::AbstractModel
3925
+ # @param CodeTemplateId: 模版Id
3926
+ # @type CodeTemplateId: String
3927
+ # @param ProjectId: 项目Id
3928
+ # @type ProjectId: String
3929
+ # @param Tasks: 模版关联的任务以及调度参数设置
3930
+ # @type Tasks: Array
3931
+ # @param OriginalParams: 代码模本脚本内置参数
3932
+ # @type OriginalParams: Array
3933
+ # @param VersionRemark: 提交描述
3934
+ # @type VersionRemark: String
3935
+ # @param NeedSubmitScheduleForTemplate: true表示:针对新建、已下线状态的任务仅生成开发态保存版本,您可在任务中自行提交到生产。针对调度中、已暂停、已失效的任务生成开发态保存版本并提交到生产(即本次代码模板的改动在调度中生效);
3936
+ # false表示:针对所有状态的任务均仅生成开发态保存版本。
3937
+ # @type NeedSubmitScheduleForTemplate: Boolean
3938
+
3939
+ attr_accessor :CodeTemplateId, :ProjectId, :Tasks, :OriginalParams, :VersionRemark, :NeedSubmitScheduleForTemplate
3940
+
3941
+ def initialize(codetemplateid=nil, projectid=nil, tasks=nil, originalparams=nil, versionremark=nil, needsubmitschedulefortemplate=nil)
3942
+ @CodeTemplateId = codetemplateid
3943
+ @ProjectId = projectid
3944
+ @Tasks = tasks
3945
+ @OriginalParams = originalparams
3946
+ @VersionRemark = versionremark
3947
+ @NeedSubmitScheduleForTemplate = needsubmitschedulefortemplate
3948
+ end
3949
+
3950
+ def deserialize(params)
3951
+ @CodeTemplateId = params['CodeTemplateId']
3952
+ @ProjectId = params['ProjectId']
3953
+ unless params['Tasks'].nil?
3954
+ @Tasks = []
3955
+ params['Tasks'].each do |i|
3956
+ taskformparams_tmp = TaskFormParams.new
3957
+ taskformparams_tmp.deserialize(i)
3958
+ @Tasks << taskformparams_tmp
3959
+ end
3960
+ end
3961
+ @OriginalParams = params['OriginalParams']
3962
+ @VersionRemark = params['VersionRemark']
3963
+ @NeedSubmitScheduleForTemplate = params['NeedSubmitScheduleForTemplate']
3964
+ end
3965
+ end
3966
+
3967
+ # CreateCodeTemplateVersion返回参数结构体
3968
+ class CreateCodeTemplateVersionResponse < TencentCloud::Common::AbstractModel
3969
+ # @param Data: 批量操作JobId
3970
+ # 注意:此字段可能返回 null,表示取不到有效值。
3971
+ # @type Data: Integer
3972
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3973
+ # @type RequestId: String
3974
+
3975
+ attr_accessor :Data, :RequestId
3976
+
3977
+ def initialize(data=nil, requestid=nil)
3978
+ @Data = data
3979
+ @RequestId = requestid
3980
+ end
3981
+
3982
+ def deserialize(params)
3983
+ @Data = params['Data']
3984
+ @RequestId = params['RequestId']
3985
+ end
3986
+ end
3987
+
3712
3988
  # CreateCustomFunction请求参数结构体
3713
3989
  class CreateCustomFunctionRequest < TencentCloud::Common::AbstractModel
3714
3990
  # @param Type: 枚举值:HIVE、SPARK、DLC
@@ -6095,6 +6371,47 @@ module TencentCloud
6095
6371
  end
6096
6372
  end
6097
6373
 
6374
+ # DeleteCodeTemplate请求参数结构体
6375
+ class DeleteCodeTemplateRequest < TencentCloud::Common::AbstractModel
6376
+ # @param ProjectId: 项目ID
6377
+ # @type ProjectId: String
6378
+ # @param CodeTemplateId: 模版ID
6379
+ # @type CodeTemplateId: String
6380
+
6381
+ attr_accessor :ProjectId, :CodeTemplateId
6382
+
6383
+ def initialize(projectid=nil, codetemplateid=nil)
6384
+ @ProjectId = projectid
6385
+ @CodeTemplateId = codetemplateid
6386
+ end
6387
+
6388
+ def deserialize(params)
6389
+ @ProjectId = params['ProjectId']
6390
+ @CodeTemplateId = params['CodeTemplateId']
6391
+ end
6392
+ end
6393
+
6394
+ # DeleteCodeTemplate返回参数结构体
6395
+ class DeleteCodeTemplateResponse < TencentCloud::Common::AbstractModel
6396
+ # @param Data: 是否成功
6397
+ # 注意:此字段可能返回 null,表示取不到有效值。
6398
+ # @type Data: Boolean
6399
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6400
+ # @type RequestId: String
6401
+
6402
+ attr_accessor :Data, :RequestId
6403
+
6404
+ def initialize(data=nil, requestid=nil)
6405
+ @Data = data
6406
+ @RequestId = requestid
6407
+ end
6408
+
6409
+ def deserialize(params)
6410
+ @Data = params['Data']
6411
+ @RequestId = params['RequestId']
6412
+ end
6413
+ end
6414
+
6098
6415
  # DeleteCustomFunction请求参数结构体
6099
6416
  class DeleteCustomFunctionRequest < TencentCloud::Common::AbstractModel
6100
6417
  # @param ClusterIdentifier: 集群实例 ID
@@ -7492,6 +7809,45 @@ module TencentCloud
7492
7809
  end
7493
7810
  end
7494
7811
 
7812
+ # DescribeBaseBizCatalogs请求参数结构体
7813
+ class DescribeBaseBizCatalogsRequest < TencentCloud::Common::AbstractModel
7814
+
7815
+
7816
+ def initialize()
7817
+ end
7818
+
7819
+ def deserialize(params)
7820
+ end
7821
+ end
7822
+
7823
+ # DescribeBaseBizCatalogs返回参数结构体
7824
+ class DescribeBaseBizCatalogsResponse < TencentCloud::Common::AbstractModel
7825
+ # @param Data: 类目列表
7826
+ # 注意:此字段可能返回 null,表示取不到有效值。
7827
+ # @type Data: Array
7828
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7829
+ # @type RequestId: String
7830
+
7831
+ attr_accessor :Data, :RequestId
7832
+
7833
+ def initialize(data=nil, requestid=nil)
7834
+ @Data = data
7835
+ @RequestId = requestid
7836
+ end
7837
+
7838
+ def deserialize(params)
7839
+ unless params['Data'].nil?
7840
+ @Data = []
7841
+ params['Data'].each do |i|
7842
+ bizcatalogsinfo_tmp = BizCatalogsInfo.new
7843
+ bizcatalogsinfo_tmp.deserialize(i)
7844
+ @Data << bizcatalogsinfo_tmp
7845
+ end
7846
+ end
7847
+ @RequestId = params['RequestId']
7848
+ end
7849
+ end
7850
+
7495
7851
  # 批量操作任务列表
7496
7852
  class DescribeBatchOperateTaskDTO < TencentCloud::Common::AbstractModel
7497
7853
  # @param TaskId: 任务ID
@@ -9238,19 +9594,23 @@ module TencentCloud
9238
9594
  # @type PageNumber: Integer
9239
9595
  # @param PageSize: 每页数目
9240
9596
  # @type PageSize: Integer
9597
+ # @param ProjectId: 项目ID
9598
+ # @type ProjectId: String
9241
9599
 
9242
- attr_accessor :EventCaseId, :PageNumber, :PageSize
9600
+ attr_accessor :EventCaseId, :PageNumber, :PageSize, :ProjectId
9243
9601
 
9244
- def initialize(eventcaseid=nil, pagenumber=nil, pagesize=nil)
9602
+ def initialize(eventcaseid=nil, pagenumber=nil, pagesize=nil, projectid=nil)
9245
9603
  @EventCaseId = eventcaseid
9246
9604
  @PageNumber = pagenumber
9247
9605
  @PageSize = pagesize
9606
+ @ProjectId = projectid
9248
9607
  end
9249
9608
 
9250
9609
  def deserialize(params)
9251
9610
  @EventCaseId = params['EventCaseId']
9252
9611
  @PageNumber = params['PageNumber']
9253
9612
  @PageSize = params['PageSize']
9613
+ @ProjectId = params['ProjectId']
9254
9614
  end
9255
9615
  end
9256
9616
 
@@ -9532,6 +9892,62 @@ module TencentCloud
9532
9892
  end
9533
9893
  end
9534
9894
 
9895
+ # DescribeFormVersionParam请求参数结构体
9896
+ class DescribeFormVersionParamRequest < TencentCloud::Common::AbstractModel
9897
+ # @param ProjectId: 项目Id
9898
+ # @type ProjectId: String
9899
+ # @param CodeTemplateId: 模版Id
9900
+ # @type CodeTemplateId: String
9901
+ # @param OriginalParams: 脚本中的参数
9902
+ # @type OriginalParams: Array
9903
+ # @param Page: 页码
9904
+ # @type Page: Integer
9905
+ # @param Size: 页号
9906
+ # @type Size: Integer
9907
+
9908
+ attr_accessor :ProjectId, :CodeTemplateId, :OriginalParams, :Page, :Size
9909
+
9910
+ def initialize(projectid=nil, codetemplateid=nil, originalparams=nil, page=nil, size=nil)
9911
+ @ProjectId = projectid
9912
+ @CodeTemplateId = codetemplateid
9913
+ @OriginalParams = originalparams
9914
+ @Page = page
9915
+ @Size = size
9916
+ end
9917
+
9918
+ def deserialize(params)
9919
+ @ProjectId = params['ProjectId']
9920
+ @CodeTemplateId = params['CodeTemplateId']
9921
+ @OriginalParams = params['OriginalParams']
9922
+ @Page = params['Page']
9923
+ @Size = params['Size']
9924
+ end
9925
+ end
9926
+
9927
+ # DescribeFormVersionParam返回参数结构体
9928
+ class DescribeFormVersionParamResponse < TencentCloud::Common::AbstractModel
9929
+ # @param Data: 结果集
9930
+ # 注意:此字段可能返回 null,表示取不到有效值。
9931
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.TaskCollectionParamDTO`
9932
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9933
+ # @type RequestId: String
9934
+
9935
+ attr_accessor :Data, :RequestId
9936
+
9937
+ def initialize(data=nil, requestid=nil)
9938
+ @Data = data
9939
+ @RequestId = requestid
9940
+ end
9941
+
9942
+ def deserialize(params)
9943
+ unless params['Data'].nil?
9944
+ @Data = TaskCollectionParamDTO.new
9945
+ @Data.deserialize(params['Data'])
9946
+ end
9947
+ @RequestId = params['RequestId']
9948
+ end
9949
+ end
9950
+
9535
9951
  # DescribeFunctionKinds请求参数结构体
9536
9952
  class DescribeFunctionKindsRequest < TencentCloud::Common::AbstractModel
9537
9953
 
@@ -15087,6 +15503,111 @@ module TencentCloud
15087
15503
  end
15088
15504
  end
15089
15505
 
15506
+ # 批量操作任务列表分页
15507
+ class DescribeTasksForCodeTemplatePage < TencentCloud::Common::AbstractModel
15508
+ # @param PageCount: 总页码数
15509
+ # 注意:此字段可能返回 null,表示取不到有效值。
15510
+ # @type PageCount: Integer
15511
+ # @param Items: 内容
15512
+ # 注意:此字段可能返回 null,表示取不到有效值。
15513
+ # @type Items: Array
15514
+ # @param TotalCount: 总个数
15515
+ # 注意:此字段可能返回 null,表示取不到有效值。
15516
+ # @type TotalCount: Integer
15517
+
15518
+ attr_accessor :PageCount, :Items, :TotalCount
15519
+
15520
+ def initialize(pagecount=nil, items=nil, totalcount=nil)
15521
+ @PageCount = pagecount
15522
+ @Items = items
15523
+ @TotalCount = totalcount
15524
+ end
15525
+
15526
+ def deserialize(params)
15527
+ @PageCount = params['PageCount']
15528
+ unless params['Items'].nil?
15529
+ @Items = []
15530
+ params['Items'].each do |i|
15531
+ tasksimplevo_tmp = TaskSimpleVo.new
15532
+ tasksimplevo_tmp.deserialize(i)
15533
+ @Items << tasksimplevo_tmp
15534
+ end
15535
+ end
15536
+ @TotalCount = params['TotalCount']
15537
+ end
15538
+ end
15539
+
15540
+ # DescribeTasksForCodeTemplate请求参数结构体
15541
+ class DescribeTasksForCodeTemplateRequest < TencentCloud::Common::AbstractModel
15542
+ # @param ProjectId: 项目Id
15543
+ # @type ProjectId: String
15544
+ # @param PageNumber: 页码,最小1
15545
+ # @type PageNumber: Integer
15546
+ # @param PageSize: 单页大小,最小10,最大200
15547
+ # @type PageSize: Integer
15548
+ # @param TemplateId: 模板id
15549
+ # @type TemplateId: String
15550
+ # @param WorkflowIdList: 工作流id列表
15551
+ # @type WorkflowIdList: Array
15552
+ # @param OwnerIdList: 责任人名列表
15553
+ # @type OwnerIdList: Array
15554
+ # @param TaskName: 任务名
15555
+ # @type TaskName: String
15556
+ # @param OrderCondition: 排序提交,目前只支持workflowName
15557
+ # @type OrderCondition: :class:`Tencentcloud::Wedata.v20210820.models.OrderCondition`
15558
+
15559
+ attr_accessor :ProjectId, :PageNumber, :PageSize, :TemplateId, :WorkflowIdList, :OwnerIdList, :TaskName, :OrderCondition
15560
+
15561
+ def initialize(projectid=nil, pagenumber=nil, pagesize=nil, templateid=nil, workflowidlist=nil, owneridlist=nil, taskname=nil, ordercondition=nil)
15562
+ @ProjectId = projectid
15563
+ @PageNumber = pagenumber
15564
+ @PageSize = pagesize
15565
+ @TemplateId = templateid
15566
+ @WorkflowIdList = workflowidlist
15567
+ @OwnerIdList = owneridlist
15568
+ @TaskName = taskname
15569
+ @OrderCondition = ordercondition
15570
+ end
15571
+
15572
+ def deserialize(params)
15573
+ @ProjectId = params['ProjectId']
15574
+ @PageNumber = params['PageNumber']
15575
+ @PageSize = params['PageSize']
15576
+ @TemplateId = params['TemplateId']
15577
+ @WorkflowIdList = params['WorkflowIdList']
15578
+ @OwnerIdList = params['OwnerIdList']
15579
+ @TaskName = params['TaskName']
15580
+ unless params['OrderCondition'].nil?
15581
+ @OrderCondition = OrderCondition.new
15582
+ @OrderCondition.deserialize(params['OrderCondition'])
15583
+ end
15584
+ end
15585
+ end
15586
+
15587
+ # DescribeTasksForCodeTemplate返回参数结构体
15588
+ class DescribeTasksForCodeTemplateResponse < TencentCloud::Common::AbstractModel
15589
+ # @param Data: 无
15590
+ # 注意:此字段可能返回 null,表示取不到有效值。
15591
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.DescribeTasksForCodeTemplatePage`
15592
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15593
+ # @type RequestId: String
15594
+
15595
+ attr_accessor :Data, :RequestId
15596
+
15597
+ def initialize(data=nil, requestid=nil)
15598
+ @Data = data
15599
+ @RequestId = requestid
15600
+ end
15601
+
15602
+ def deserialize(params)
15603
+ unless params['Data'].nil?
15604
+ @Data = DescribeTasksForCodeTemplatePage.new
15605
+ @Data.deserialize(params['Data'])
15606
+ end
15607
+ @RequestId = params['RequestId']
15608
+ end
15609
+ end
15610
+
15090
15611
  # DescribeTemplateDimCount请求参数结构体
15091
15612
  class DescribeTemplateDimCountRequest < TencentCloud::Common::AbstractModel
15092
15613
  # @param Type: 模板类型
@@ -17223,6 +17744,26 @@ module TencentCloud
17223
17744
  end
17224
17745
  end
17225
17746
 
17747
+ # 扩展参数
17748
+ class ExtParam < TencentCloud::Common::AbstractModel
17749
+ # @param Key: key
17750
+ # @type Key: String
17751
+ # @param Value: 具体值
17752
+ # @type Value: String
17753
+
17754
+ attr_accessor :Key, :Value
17755
+
17756
+ def initialize(key=nil, value=nil)
17757
+ @Key = key
17758
+ @Value = value
17759
+ end
17760
+
17761
+ def deserialize(params)
17762
+ @Key = params['Key']
17763
+ @Value = params['Value']
17764
+ end
17765
+ end
17766
+
17226
17767
  # 扩展信息参数
17227
17768
  class ExtResourceFlagDto < TencentCloud::Common::AbstractModel
17228
17769
  # @param ParentTask: 父任务信息获取标识
@@ -21184,6 +21725,41 @@ module TencentCloud
21184
21725
  end
21185
21726
  end
21186
21727
 
21728
+ # 血缘任务
21729
+ class LineageTask < TencentCloud::Common::AbstractModel
21730
+ # @param TaskId: 任务id
21731
+ # @type TaskId: String
21732
+ # @param TaskType: 任务类型
21733
+ # @type TaskType: String
21734
+ # @param TaskSource: 任务来源
21735
+ # @type TaskSource: String
21736
+ # @param ExtParams: 任务扩展参数
21737
+ # @type ExtParams: Array
21738
+
21739
+ attr_accessor :TaskId, :TaskType, :TaskSource, :ExtParams
21740
+
21741
+ def initialize(taskid=nil, tasktype=nil, tasksource=nil, extparams=nil)
21742
+ @TaskId = taskid
21743
+ @TaskType = tasktype
21744
+ @TaskSource = tasksource
21745
+ @ExtParams = extparams
21746
+ end
21747
+
21748
+ def deserialize(params)
21749
+ @TaskId = params['TaskId']
21750
+ @TaskType = params['TaskType']
21751
+ @TaskSource = params['TaskSource']
21752
+ unless params['ExtParams'].nil?
21753
+ @ExtParams = []
21754
+ params['ExtParams'].each do |i|
21755
+ extparam_tmp = ExtParam.new
21756
+ extparam_tmp.deserialize(i)
21757
+ @ExtParams << extparam_tmp
21758
+ end
21759
+ end
21760
+ end
21761
+ end
21762
+
21187
21763
  # 任务依赖边详情
21188
21764
  class LinkOpsDto < TencentCloud::Common::AbstractModel
21189
21765
  # @param Id: 边的id
@@ -24089,6 +24665,28 @@ module TencentCloud
24089
24665
  end
24090
24666
  end
24091
24667
 
24668
+ # 通用排序字段名和排序方向
24669
+ class OrderCondition < TencentCloud::Common::AbstractModel
24670
+ # @param Name: name
24671
+ # 注意:此字段可能返回 null,表示取不到有效值。
24672
+ # @type Name: String
24673
+ # @param Direction: 降序DESC; 升序ASC
24674
+ # 注意:此字段可能返回 null,表示取不到有效值。
24675
+ # @type Direction: String
24676
+
24677
+ attr_accessor :Name, :Direction
24678
+
24679
+ def initialize(name=nil, direction=nil)
24680
+ @Name = name
24681
+ @Direction = direction
24682
+ end
24683
+
24684
+ def deserialize(params)
24685
+ @Name = params['Name']
24686
+ @Direction = params['Direction']
24687
+ end
24688
+ end
24689
+
24092
24690
  # 通用排序字段
24093
24691
  class OrderField < TencentCloud::Common::AbstractModel
24094
24692
  # @param Name: 排序字段名称
@@ -24449,6 +25047,28 @@ module TencentCloud
24449
25047
  end
24450
25048
  end
24451
25049
 
25050
+ # ds参数map结构体
25051
+ class ParamMapDsDto < TencentCloud::Common::AbstractModel
25052
+ # @param Key: k
25053
+ # 注意:此字段可能返回 null,表示取不到有效值。
25054
+ # @type Key: String
25055
+ # @param Value: v
25056
+ # 注意:此字段可能返回 null,表示取不到有效值。
25057
+ # @type Value: String
25058
+
25059
+ attr_accessor :Key, :Value
25060
+
25061
+ def initialize(key=nil, value=nil)
25062
+ @Key = key
25063
+ @Value = value
25064
+ end
25065
+
25066
+ def deserialize(params)
25067
+ @Key = params['Key']
25068
+ @Value = params['Value']
25069
+ end
25070
+ end
25071
+
24452
25072
  # 分区参数
24453
25073
  class Partition < TencentCloud::Common::AbstractModel
24454
25074
  # @param Transform: 分区转换策略
@@ -25593,6 +26213,80 @@ module TencentCloud
25593
26213
  end
25594
26214
  end
25595
26215
 
26216
+ # ReportTaskLineage请求参数结构体
26217
+ class ReportTaskLineageRequest < TencentCloud::Common::AbstractModel
26218
+ # @param ChannelType: 上报渠道
26219
+ # @type ChannelType: String
26220
+ # @param Task: 血缘任务
26221
+ # @type Task: :class:`Tencentcloud::Wedata.v20210820.models.LineageTask`
26222
+ # @param ProjectId: 项目ID
26223
+ # @type ProjectId: String
26224
+ # @param TableLineages: 表血缘关系
26225
+ # @type TableLineages: Array
26226
+ # @param ColumnLineages: 列血缘关系
26227
+ # @type ColumnLineages: Array
26228
+
26229
+ attr_accessor :ChannelType, :Task, :ProjectId, :TableLineages, :ColumnLineages
26230
+
26231
+ def initialize(channeltype=nil, task=nil, projectid=nil, tablelineages=nil, columnlineages=nil)
26232
+ @ChannelType = channeltype
26233
+ @Task = task
26234
+ @ProjectId = projectid
26235
+ @TableLineages = tablelineages
26236
+ @ColumnLineages = columnlineages
26237
+ end
26238
+
26239
+ def deserialize(params)
26240
+ @ChannelType = params['ChannelType']
26241
+ unless params['Task'].nil?
26242
+ @Task = LineageTask.new
26243
+ @Task.deserialize(params['Task'])
26244
+ end
26245
+ @ProjectId = params['ProjectId']
26246
+ unless params['TableLineages'].nil?
26247
+ @TableLineages = []
26248
+ params['TableLineages'].each do |i|
26249
+ tablelineagepair_tmp = TableLineagePair.new
26250
+ tablelineagepair_tmp.deserialize(i)
26251
+ @TableLineages << tablelineagepair_tmp
26252
+ end
26253
+ end
26254
+ unless params['ColumnLineages'].nil?
26255
+ @ColumnLineages = []
26256
+ params['ColumnLineages'].each do |i|
26257
+ columnlineagepair_tmp = ColumnLineagePair.new
26258
+ columnlineagepair_tmp.deserialize(i)
26259
+ @ColumnLineages << columnlineagepair_tmp
26260
+ end
26261
+ end
26262
+ end
26263
+ end
26264
+
26265
+ # ReportTaskLineage返回参数结构体
26266
+ class ReportTaskLineageResponse < TencentCloud::Common::AbstractModel
26267
+ # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
26268
+ # 注意:此字段可能返回 null,表示取不到有效值。
26269
+ # @type RequestFromSource: String
26270
+ # @param Data: 上报结果
26271
+ # @type Data: Boolean
26272
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
26273
+ # @type RequestId: String
26274
+
26275
+ attr_accessor :RequestFromSource, :Data, :RequestId
26276
+
26277
+ def initialize(requestfromsource=nil, data=nil, requestid=nil)
26278
+ @RequestFromSource = requestfromsource
26279
+ @Data = data
26280
+ @RequestId = requestid
26281
+ end
26282
+
26283
+ def deserialize(params)
26284
+ @RequestFromSource = params['RequestFromSource']
26285
+ @Data = params['Data']
26286
+ @RequestId = params['RequestId']
26287
+ end
26288
+ end
26289
+
25596
26290
  # 上报任务信息
25597
26291
  class ReportTaskListInfo < TencentCloud::Common::AbstractModel
25598
26292
  # @param Rows: 任务列表详情
@@ -29987,6 +30681,53 @@ module TencentCloud
29987
30681
  end
29988
30682
  end
29989
30683
 
30684
+ # 表血缘节点
30685
+ class TableLineage < TencentCloud::Common::AbstractModel
30686
+ # @param DatasourceId: 数据源id
30687
+ # @type DatasourceId: String
30688
+ # @param DatabaseName: 库名称
30689
+ # @type DatabaseName: String
30690
+ # @param TableName: 表名称
30691
+ # @type TableName: String
30692
+ # @param CatalogName: catalog值
30693
+ # @type CatalogName: String
30694
+ # @param SchemaName: schema名称
30695
+ # @type SchemaName: String
30696
+ # @param ExtParams: 扩展参数
30697
+ # @type ExtParams: Array
30698
+ # @param TableType: table类型 TABLE|VIEW
30699
+ # @type TableType: String
30700
+
30701
+ attr_accessor :DatasourceId, :DatabaseName, :TableName, :CatalogName, :SchemaName, :ExtParams, :TableType
30702
+
30703
+ def initialize(datasourceid=nil, databasename=nil, tablename=nil, catalogname=nil, schemaname=nil, extparams=nil, tabletype=nil)
30704
+ @DatasourceId = datasourceid
30705
+ @DatabaseName = databasename
30706
+ @TableName = tablename
30707
+ @CatalogName = catalogname
30708
+ @SchemaName = schemaname
30709
+ @ExtParams = extparams
30710
+ @TableType = tabletype
30711
+ end
30712
+
30713
+ def deserialize(params)
30714
+ @DatasourceId = params['DatasourceId']
30715
+ @DatabaseName = params['DatabaseName']
30716
+ @TableName = params['TableName']
30717
+ @CatalogName = params['CatalogName']
30718
+ @SchemaName = params['SchemaName']
30719
+ unless params['ExtParams'].nil?
30720
+ @ExtParams = []
30721
+ params['ExtParams'].each do |i|
30722
+ extparam_tmp = ExtParam.new
30723
+ extparam_tmp.deserialize(i)
30724
+ @ExtParams << extparam_tmp
30725
+ end
30726
+ end
30727
+ @TableType = params['TableType']
30728
+ end
30729
+ end
30730
+
29990
30731
  # 表血缘详细信息
29991
30732
  class TableLineageBaseInfo < TencentCloud::Common::AbstractModel
29992
30733
  # @param MetastoreType: 元数据类型
@@ -30274,6 +31015,36 @@ module TencentCloud
30274
31015
  end
30275
31016
  end
30276
31017
 
31018
+ # 表血缘关系对
31019
+ class TableLineagePair < TencentCloud::Common::AbstractModel
31020
+ # @param Sources: 血缘数据来源表
31021
+ # @type Sources: Array
31022
+ # @param Target: 血缘数据目标表
31023
+ # @type Target: :class:`Tencentcloud::Wedata.v20210820.models.TableLineage`
31024
+
31025
+ attr_accessor :Sources, :Target
31026
+
31027
+ def initialize(sources=nil, target=nil)
31028
+ @Sources = sources
31029
+ @Target = target
31030
+ end
31031
+
31032
+ def deserialize(params)
31033
+ unless params['Sources'].nil?
31034
+ @Sources = []
31035
+ params['Sources'].each do |i|
31036
+ tablelineage_tmp = TableLineage.new
31037
+ tablelineage_tmp.deserialize(i)
31038
+ @Sources << tablelineage_tmp
31039
+ end
31040
+ end
31041
+ unless params['Target'].nil?
31042
+ @Target = TableLineage.new
31043
+ @Target.deserialize(params['Target'])
31044
+ end
31045
+ end
31046
+ end
31047
+
30277
31048
  # 表的元数据信息
30278
31049
  class TableMeta < TencentCloud::Common::AbstractModel
30279
31050
  # @param TableId: 表的全局唯一ID
@@ -31222,6 +31993,93 @@ module TencentCloud
31222
31993
  end
31223
31994
  end
31224
31995
 
31996
+ # 分页数据集
31997
+ class TaskCollectionParamDTO < TencentCloud::Common::AbstractModel
31998
+ # @param TotalCount: 总数据条数
31999
+ # 注意:此字段可能返回 null,表示取不到有效值。
32000
+ # @type TotalCount: Integer
32001
+ # @param PageCount: 总页数
32002
+ # 注意:此字段可能返回 null,表示取不到有效值。
32003
+ # @type PageCount: Integer
32004
+ # @param Items: 数据
32005
+ # 注意:此字段可能返回 null,表示取不到有效值。
32006
+ # @type Items: Array
32007
+
32008
+ attr_accessor :TotalCount, :PageCount, :Items
32009
+
32010
+ def initialize(totalcount=nil, pagecount=nil, items=nil)
32011
+ @TotalCount = totalcount
32012
+ @PageCount = pagecount
32013
+ @Items = items
32014
+ end
32015
+
32016
+ def deserialize(params)
32017
+ @TotalCount = params['TotalCount']
32018
+ @PageCount = params['PageCount']
32019
+ unless params['Items'].nil?
32020
+ @Items = []
32021
+ params['Items'].each do |i|
32022
+ taskformparams_tmp = TaskFormParams.new
32023
+ taskformparams_tmp.deserialize(i)
32024
+ @Items << taskformparams_tmp
32025
+ end
32026
+ end
32027
+ end
32028
+ end
32029
+
32030
+ # 属性配置
32031
+ class TaskExtDsVO < TencentCloud::Common::AbstractModel
32032
+ # @param TaskId: 任务ID
32033
+ # 注意:此字段可能返回 null,表示取不到有效值。
32034
+ # @type TaskId: String
32035
+ # @param Properties: 任务属性
32036
+ # 注意:此字段可能返回 null,表示取不到有效值。
32037
+ # @type Properties: Array
32038
+ # @param DryRunExtAttributes: 任务试运行扩展业务属性
32039
+ # 注意:此字段可能返回 null,表示取不到有效值。
32040
+ # @type DryRunExtAttributes: Array
32041
+ # @param DryRunParameter: 任务试运行动态传参
32042
+ # 注意:此字段可能返回 null,表示取不到有效值。
32043
+ # @type DryRunParameter: Array
32044
+
32045
+ attr_accessor :TaskId, :Properties, :DryRunExtAttributes, :DryRunParameter
32046
+
32047
+ def initialize(taskid=nil, properties=nil, dryrunextattributes=nil, dryrunparameter=nil)
32048
+ @TaskId = taskid
32049
+ @Properties = properties
32050
+ @DryRunExtAttributes = dryrunextattributes
32051
+ @DryRunParameter = dryrunparameter
32052
+ end
32053
+
32054
+ def deserialize(params)
32055
+ @TaskId = params['TaskId']
32056
+ unless params['Properties'].nil?
32057
+ @Properties = []
32058
+ params['Properties'].each do |i|
32059
+ paraminfods_tmp = ParamInfoDs.new
32060
+ paraminfods_tmp.deserialize(i)
32061
+ @Properties << paraminfods_tmp
32062
+ end
32063
+ end
32064
+ unless params['DryRunExtAttributes'].nil?
32065
+ @DryRunExtAttributes = []
32066
+ params['DryRunExtAttributes'].each do |i|
32067
+ attributeitemdsvo_tmp = AttributeItemDsVO.new
32068
+ attributeitemdsvo_tmp.deserialize(i)
32069
+ @DryRunExtAttributes << attributeitemdsvo_tmp
32070
+ end
32071
+ end
32072
+ unless params['DryRunParameter'].nil?
32073
+ @DryRunParameter = []
32074
+ params['DryRunParameter'].each do |i|
32075
+ attributeitemdsvo_tmp = AttributeItemDsVO.new
32076
+ attributeitemdsvo_tmp.deserialize(i)
32077
+ @DryRunParameter << attributeitemdsvo_tmp
32078
+ end
32079
+ end
32080
+ end
32081
+ end
32082
+
31225
32083
  # 任务扩展信息
31226
32084
  class TaskExtInfo < TencentCloud::Common::AbstractModel
31227
32085
  # @param Key: 键
@@ -31242,6 +32100,77 @@ module TencentCloud
31242
32100
  end
31243
32101
  end
31244
32102
 
32103
+ # 任务参数
32104
+ class TaskFormParams < TencentCloud::Common::AbstractModel
32105
+ # @param TaskId: 任务ID
32106
+ # 注意:此字段可能返回 null,表示取不到有效值。
32107
+ # @type TaskId: String
32108
+ # @param MapParamList: 参数值
32109
+ # 注意:此字段可能返回 null,表示取不到有效值。
32110
+ # @type MapParamList: Array
32111
+ # @param WorkflowId: 工作流ID
32112
+ # 注意:此字段可能返回 null,表示取不到有效值。
32113
+ # @type WorkflowId: String
32114
+ # @param WorkflowName: 工作流名称
32115
+ # 注意:此字段可能返回 null,表示取不到有效值。
32116
+ # @type WorkflowName: String
32117
+ # @param InChargeId: 负责人ID
32118
+ # 注意:此字段可能返回 null,表示取不到有效值。
32119
+ # @type InChargeId: String
32120
+ # @param InCharge: 负责人名称
32121
+ # 注意:此字段可能返回 null,表示取不到有效值。
32122
+ # @type InCharge: String
32123
+ # @param TaskName: 任务名
32124
+ # 注意:此字段可能返回 null,表示取不到有效值。
32125
+ # @type TaskName: String
32126
+ # @param ProductName: 任务类型
32127
+ # 普通任务:dev
32128
+ # 子任务:dev_container
32129
+ # 注意:此字段可能返回 null,表示取不到有效值。
32130
+ # @type ProductName: String
32131
+ # @param LatestSavedVersion: 如果最新保存版本和调度版本不一致,显示最新保存版本
32132
+ # 注意:此字段可能返回 null,表示取不到有效值。
32133
+ # @type LatestSavedVersion: String
32134
+ # @param LatestSavedVersionId: 保存版本ID
32135
+ # 注意:此字段可能返回 null,表示取不到有效值。
32136
+ # @type LatestSavedVersionId: String
32137
+
32138
+ attr_accessor :TaskId, :MapParamList, :WorkflowId, :WorkflowName, :InChargeId, :InCharge, :TaskName, :ProductName, :LatestSavedVersion, :LatestSavedVersionId
32139
+
32140
+ def initialize(taskid=nil, mapparamlist=nil, workflowid=nil, workflowname=nil, inchargeid=nil, incharge=nil, taskname=nil, productname=nil, latestsavedversion=nil, latestsavedversionid=nil)
32141
+ @TaskId = taskid
32142
+ @MapParamList = mapparamlist
32143
+ @WorkflowId = workflowid
32144
+ @WorkflowName = workflowname
32145
+ @InChargeId = inchargeid
32146
+ @InCharge = incharge
32147
+ @TaskName = taskname
32148
+ @ProductName = productname
32149
+ @LatestSavedVersion = latestsavedversion
32150
+ @LatestSavedVersionId = latestsavedversionid
32151
+ end
32152
+
32153
+ def deserialize(params)
32154
+ @TaskId = params['TaskId']
32155
+ unless params['MapParamList'].nil?
32156
+ @MapParamList = []
32157
+ params['MapParamList'].each do |i|
32158
+ parammapdsdto_tmp = ParamMapDsDto.new
32159
+ parammapdsdto_tmp.deserialize(i)
32160
+ @MapParamList << parammapdsdto_tmp
32161
+ end
32162
+ end
32163
+ @WorkflowId = params['WorkflowId']
32164
+ @WorkflowName = params['WorkflowName']
32165
+ @InChargeId = params['InChargeId']
32166
+ @InCharge = params['InCharge']
32167
+ @TaskName = params['TaskName']
32168
+ @ProductName = params['ProductName']
32169
+ @LatestSavedVersion = params['LatestSavedVersion']
32170
+ @LatestSavedVersionId = params['LatestSavedVersionId']
32171
+ end
32172
+ end
32173
+
31245
32174
  # 集成任务导入到编排空间配置
31246
32175
  class TaskImportInfo < TencentCloud::Common::AbstractModel
31247
32176
  # @param IsImport: 是否导入编排空间
@@ -32165,6 +33094,67 @@ module TencentCloud
32165
33094
  end
32166
33095
  end
32167
33096
 
33097
+ # 任务信息简易版
33098
+ class TaskSimpleVo < TencentCloud::Common::AbstractModel
33099
+ # @param TaskId: 任务id
33100
+ # @type TaskId: String
33101
+ # @param TaskName: 任务名
33102
+ # 注意:此字段可能返回 null,表示取不到有效值。
33103
+ # @type TaskName: String
33104
+ # @param ProjectId: 项目id
33105
+ # 注意:此字段可能返回 null,表示取不到有效值。
33106
+ # @type ProjectId: String
33107
+ # @param WorkflowId: 工作流id
33108
+ # 注意:此字段可能返回 null,表示取不到有效值。
33109
+ # @type WorkflowId: String
33110
+ # @param WorkflowName: 工作流名
33111
+ # 注意:此字段可能返回 null,表示取不到有效值。
33112
+ # @type WorkflowName: String
33113
+ # @param InCharge: 负责人名
33114
+ # 注意:此字段可能返回 null,表示取不到有效值。
33115
+ # @type InCharge: String
33116
+ # @param OwnId: 主账号
33117
+ # 注意:此字段可能返回 null,表示取不到有效值。
33118
+ # @type OwnId: String
33119
+ # @param UserId: 子账号
33120
+ # 注意:此字段可能返回 null,表示取不到有效值。
33121
+ # @type UserId: String
33122
+ # @param TenantId: 租户id
33123
+ # 注意:此字段可能返回 null,表示取不到有效值。
33124
+ # @type TenantId: String
33125
+ # @param TaskTypeId: 任务类型
33126
+ # 注意:此字段可能返回 null,表示取不到有效值。
33127
+ # @type TaskTypeId: Integer
33128
+
33129
+ attr_accessor :TaskId, :TaskName, :ProjectId, :WorkflowId, :WorkflowName, :InCharge, :OwnId, :UserId, :TenantId, :TaskTypeId
33130
+
33131
+ def initialize(taskid=nil, taskname=nil, projectid=nil, workflowid=nil, workflowname=nil, incharge=nil, ownid=nil, userid=nil, tenantid=nil, tasktypeid=nil)
33132
+ @TaskId = taskid
33133
+ @TaskName = taskname
33134
+ @ProjectId = projectid
33135
+ @WorkflowId = workflowid
33136
+ @WorkflowName = workflowname
33137
+ @InCharge = incharge
33138
+ @OwnId = ownid
33139
+ @UserId = userid
33140
+ @TenantId = tenantid
33141
+ @TaskTypeId = tasktypeid
33142
+ end
33143
+
33144
+ def deserialize(params)
33145
+ @TaskId = params['TaskId']
33146
+ @TaskName = params['TaskName']
33147
+ @ProjectId = params['ProjectId']
33148
+ @WorkflowId = params['WorkflowId']
33149
+ @WorkflowName = params['WorkflowName']
33150
+ @InCharge = params['InCharge']
33151
+ @OwnId = params['OwnId']
33152
+ @UserId = params['UserId']
33153
+ @TenantId = params['TenantId']
33154
+ @TaskTypeId = params['TaskTypeId']
33155
+ end
33156
+ end
33157
+
32168
33158
  # 任务提交预校验详细信息
32169
33159
  class TaskSubmitPreCheckDetailInfo < TencentCloud::Common::AbstractModel
32170
33160
  # @param TaskId: 任务编号
@@ -32839,6 +33829,86 @@ module TencentCloud
32839
33829
  end
32840
33830
  end
32841
33831
 
33832
+ # UpdateCodeTemplate请求参数结构体
33833
+ class UpdateCodeTemplateRequest < TencentCloud::Common::AbstractModel
33834
+ # @param ProjectId: 项目Id
33835
+ # @type ProjectId: String
33836
+ # @param CodeTemplateId: 模版id
33837
+ # @type CodeTemplateId: String
33838
+ # @param CodeTemplateName: 模版名
33839
+ # @type CodeTemplateName: String
33840
+ # @param InChargeId: 责任人列表
33841
+ # @type InChargeId: String
33842
+ # @param InCharge: 责任人名称
33843
+ # @type InCharge: String
33844
+ # @param Ext: 扩展属性
33845
+ # @type Ext: :class:`Tencentcloud::Wedata.v20210820.models.TaskExtDsVO`
33846
+ # @param BrokerIp: 执行机ip
33847
+ # @type BrokerIp: String
33848
+ # @param ResourceGroup: 资源组id
33849
+ # @type ResourceGroup: String
33850
+ # @param CodeTemplateDesc: 模版描述
33851
+ # @type CodeTemplateDesc: String
33852
+ # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
33853
+ # @type RequestFromSource: String
33854
+ # @param ScriptChange: 脚本是否发生变化
33855
+ # @type ScriptChange: Boolean
33856
+
33857
+ attr_accessor :ProjectId, :CodeTemplateId, :CodeTemplateName, :InChargeId, :InCharge, :Ext, :BrokerIp, :ResourceGroup, :CodeTemplateDesc, :RequestFromSource, :ScriptChange
33858
+
33859
+ def initialize(projectid=nil, codetemplateid=nil, codetemplatename=nil, inchargeid=nil, incharge=nil, ext=nil, brokerip=nil, resourcegroup=nil, codetemplatedesc=nil, requestfromsource=nil, scriptchange=nil)
33860
+ @ProjectId = projectid
33861
+ @CodeTemplateId = codetemplateid
33862
+ @CodeTemplateName = codetemplatename
33863
+ @InChargeId = inchargeid
33864
+ @InCharge = incharge
33865
+ @Ext = ext
33866
+ @BrokerIp = brokerip
33867
+ @ResourceGroup = resourcegroup
33868
+ @CodeTemplateDesc = codetemplatedesc
33869
+ @RequestFromSource = requestfromsource
33870
+ @ScriptChange = scriptchange
33871
+ end
33872
+
33873
+ def deserialize(params)
33874
+ @ProjectId = params['ProjectId']
33875
+ @CodeTemplateId = params['CodeTemplateId']
33876
+ @CodeTemplateName = params['CodeTemplateName']
33877
+ @InChargeId = params['InChargeId']
33878
+ @InCharge = params['InCharge']
33879
+ unless params['Ext'].nil?
33880
+ @Ext = TaskExtDsVO.new
33881
+ @Ext.deserialize(params['Ext'])
33882
+ end
33883
+ @BrokerIp = params['BrokerIp']
33884
+ @ResourceGroup = params['ResourceGroup']
33885
+ @CodeTemplateDesc = params['CodeTemplateDesc']
33886
+ @RequestFromSource = params['RequestFromSource']
33887
+ @ScriptChange = params['ScriptChange']
33888
+ end
33889
+ end
33890
+
33891
+ # UpdateCodeTemplate返回参数结构体
33892
+ class UpdateCodeTemplateResponse < TencentCloud::Common::AbstractModel
33893
+ # @param Data: 详情
33894
+ # 注意:此字段可能返回 null,表示取不到有效值。
33895
+ # @type Data: Boolean
33896
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
33897
+ # @type RequestId: String
33898
+
33899
+ attr_accessor :Data, :RequestId
33900
+
33901
+ def initialize(data=nil, requestid=nil)
33902
+ @Data = data
33903
+ @RequestId = requestid
33904
+ end
33905
+
33906
+ def deserialize(params)
33907
+ @Data = params['Data']
33908
+ @RequestId = params['RequestId']
33909
+ end
33910
+ end
33911
+
32842
33912
  # UpdateDataModelRegistryInfo请求参数结构体
32843
33913
  class UpdateDataModelRegistryInfoRequest < TencentCloud::Common::AbstractModel
32844
33914
  # @param CloudappId: 云应用的实例id