tencentcloud-sdk-wedata 3.0.879 → 3.0.881

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: 716e4bd029f7e252dfd67305dc4b5ce0672ff072
4
- data.tar.gz: 8e0941f4c09d2357685e50d4ac791f9ac6d40fd8
3
+ metadata.gz: aa4be2e1b261a03310336c739831b644ca13b929
4
+ data.tar.gz: 12a472d093c44421618d41bc1ebd8c41c9e1cb27
5
5
  SHA512:
6
- metadata.gz: f79f0897fe3220d0bb865c8b639e402973cda1f0dc75b811ae67ea39c172157dba0404f7d9719835daa5e51e50ac905417ffa439462bf3ae1bdb10a4f2b401c2
7
- data.tar.gz: 277bf6054bbcb74151b52bf86af9a8f496a16b55d3ded9956b405142026b808f5649ab0beeed803cc433300e7d5e71bf6bbc59e76c9501d4d68f50e4a664a72e
6
+ metadata.gz: c040d00911b6637f09144d4a74bd9a8103e6c8aa95c5ed098c6f9a0e69ad8ea927b157e5f483a89065c86ede9207a104092b0de05d7a9baeecf2808024d3f7f7
7
+ data.tar.gz: 9f02365a965be0346b8db04eba759e437284c0c7e646ff94858624fb86e0e6e6e0e356ebcfc5ab0aa5bd52ccdc6b04a343e0b290cc09b7c744d3132bd7b2d7d5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.879
1
+ 3.0.881
@@ -3776,6 +3776,30 @@ module TencentCloud
3776
3776
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3777
3777
  end
3778
3778
 
3779
+ # 通过任务查询表的血缘关系
3780
+
3781
+ # @param request: Request instance for DescribeTaskLineage.
3782
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskLineageRequest`
3783
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskLineageResponse`
3784
+ def DescribeTaskLineage(request)
3785
+ body = send_request('DescribeTaskLineage', request.serialize)
3786
+ response = JSON.parse(body)
3787
+ if response['Response'].key?('Error') == false
3788
+ model = DescribeTaskLineageResponse.new
3789
+ model.deserialize(response['Response'])
3790
+ model
3791
+ else
3792
+ code = response['Response']['Error']['Code']
3793
+ message = response['Response']['Error']['Message']
3794
+ reqid = response['Response']['RequestId']
3795
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3796
+ end
3797
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3798
+ raise e
3799
+ rescue StandardError => e
3800
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3801
+ end
3802
+
3779
3803
  # 查看任务锁状态信息
3780
3804
 
3781
3805
  # @param request: Request instance for DescribeTaskLockStatus.
@@ -190,10 +190,13 @@ module TencentCloud
190
190
  # @param Threshold: 指标阈值
191
191
  # 注意:此字段可能返回 null,表示取不到有效值。
192
192
  # @type Threshold: Float
193
+ # @param AlarmReason: 告警原因
194
+ # 注意:此字段可能返回 null,表示取不到有效值。
195
+ # @type AlarmReason: String
193
196
 
194
- attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :InQuitePeriods, :RecordId, :MessageId, :Operator, :RegularId, :AlarmRecipientName, :TaskType, :SendResult, :MonitorObjectId, :MonitorObjectName, :Threshold
197
+ attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :InQuitePeriods, :RecordId, :MessageId, :Operator, :RegularId, :AlarmRecipientName, :TaskType, :SendResult, :MonitorObjectId, :MonitorObjectName, :Threshold, :AlarmReason
195
198
 
196
- def initialize(alarmid=nil, alarmtime=nil, taskid=nil, regularname=nil, alarmlevel=nil, alarmway=nil, alarmrecipientid=nil, projectid=nil, alarmindicator=nil, alarmindicatordesc=nil, triggertype=nil, estimatedtime=nil, instanceid=nil, taskname=nil, issendsuccess=nil, inquiteperiods=nil, recordid=nil, messageid=nil, operator=nil, regularid=nil, alarmrecipientname=nil, tasktype=nil, sendresult=nil, monitorobjectid=nil, monitorobjectname=nil, threshold=nil)
199
+ def initialize(alarmid=nil, alarmtime=nil, taskid=nil, regularname=nil, alarmlevel=nil, alarmway=nil, alarmrecipientid=nil, projectid=nil, alarmindicator=nil, alarmindicatordesc=nil, triggertype=nil, estimatedtime=nil, instanceid=nil, taskname=nil, issendsuccess=nil, inquiteperiods=nil, recordid=nil, messageid=nil, operator=nil, regularid=nil, alarmrecipientname=nil, tasktype=nil, sendresult=nil, monitorobjectid=nil, monitorobjectname=nil, threshold=nil, alarmreason=nil)
197
200
  @AlarmId = alarmid
198
201
  @AlarmTime = alarmtime
199
202
  @TaskId = taskid
@@ -220,6 +223,7 @@ module TencentCloud
220
223
  @MonitorObjectId = monitorobjectid
221
224
  @MonitorObjectName = monitorobjectname
222
225
  @Threshold = threshold
226
+ @AlarmReason = alarmreason
223
227
  end
224
228
 
225
229
  def deserialize(params)
@@ -249,6 +253,7 @@ module TencentCloud
249
253
  @MonitorObjectId = params['MonitorObjectId']
250
254
  @MonitorObjectName = params['MonitorObjectName']
251
255
  @Threshold = params['Threshold']
256
+ @AlarmReason = params['AlarmReason']
252
257
  end
253
258
  end
254
259
 
@@ -1908,8 +1913,8 @@ module TencentCloud
1908
1913
 
1909
1914
  attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
1910
1915
  extend Gem::Deprecate
1911
- deprecate :TaskId, :none, 2024, 7
1912
- deprecate :TaskId=, :none, 2024, 7
1916
+ deprecate :TaskId, :none, 2024, 8
1917
+ deprecate :TaskId=, :none, 2024, 8
1913
1918
 
1914
1919
  def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
1915
1920
  @ProjectId = projectid
@@ -2609,10 +2614,13 @@ module TencentCloud
2609
2614
  # @param LevelRank: 安全等级:值范围1-10
2610
2615
  # 注意:此字段可能返回 null,表示取不到有效值。
2611
2616
  # @type LevelRank: Integer
2617
+ # @param InfluxCategory: influxdb字段类别
2618
+ # 注意:此字段可能返回 null,表示取不到有效值。
2619
+ # @type InfluxCategory: String
2612
2620
 
2613
- attr_accessor :NameEn, :NameCn, :Type, :Description, :Position, :IsPartition, :Name, :ColumnFamiliesFieldSet, :DictionaryId, :DictionaryName, :LevelName, :LevelRank
2621
+ attr_accessor :NameEn, :NameCn, :Type, :Description, :Position, :IsPartition, :Name, :ColumnFamiliesFieldSet, :DictionaryId, :DictionaryName, :LevelName, :LevelRank, :InfluxCategory
2614
2622
 
2615
- def initialize(nameen=nil, namecn=nil, type=nil, description=nil, position=nil, ispartition=nil, name=nil, columnfamiliesfieldset=nil, dictionaryid=nil, dictionaryname=nil, levelname=nil, levelrank=nil)
2623
+ def initialize(nameen=nil, namecn=nil, type=nil, description=nil, position=nil, ispartition=nil, name=nil, columnfamiliesfieldset=nil, dictionaryid=nil, dictionaryname=nil, levelname=nil, levelrank=nil, influxcategory=nil)
2616
2624
  @NameEn = nameen
2617
2625
  @NameCn = namecn
2618
2626
  @Type = type
@@ -2625,6 +2633,7 @@ module TencentCloud
2625
2633
  @DictionaryName = dictionaryname
2626
2634
  @LevelName = levelname
2627
2635
  @LevelRank = levelrank
2636
+ @InfluxCategory = influxcategory
2628
2637
  end
2629
2638
 
2630
2639
  def deserialize(params)
@@ -2647,6 +2656,7 @@ module TencentCloud
2647
2656
  @DictionaryName = params['DictionaryName']
2648
2657
  @LevelName = params['LevelName']
2649
2658
  @LevelRank = params['LevelRank']
2659
+ @InfluxCategory = params['InfluxCategory']
2650
2660
  end
2651
2661
  end
2652
2662
 
@@ -3199,10 +3209,12 @@ module TencentCloud
3199
3209
  # @type ConnectResult: String
3200
3210
  # @param DevelopmentParams: 开发环境数据源配置
3201
3211
  # @type DevelopmentParams: String
3212
+ # @param ProjectId: 新建数据源的项目ID
3213
+ # @type ProjectId: String
3202
3214
 
3203
- attr_accessor :Name, :Category, :Type, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :BizParams, :Params, :Description, :Display, :DatabaseName, :Instance, :Status, :ClusterId, :Collect, :COSBucket, :COSRegion, :ConnectResult, :DevelopmentParams
3215
+ attr_accessor :Name, :Category, :Type, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :BizParams, :Params, :Description, :Display, :DatabaseName, :Instance, :Status, :ClusterId, :Collect, :COSBucket, :COSRegion, :ConnectResult, :DevelopmentParams, :ProjectId
3204
3216
 
3205
- def initialize(name=nil, category=nil, type=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, bizparams=nil, params=nil, description=nil, display=nil, databasename=nil, instance=nil, status=nil, clusterid=nil, collect=nil, cosbucket=nil, cosregion=nil, connectresult=nil, developmentparams=nil)
3217
+ def initialize(name=nil, category=nil, type=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, bizparams=nil, params=nil, description=nil, display=nil, databasename=nil, instance=nil, status=nil, clusterid=nil, collect=nil, cosbucket=nil, cosregion=nil, connectresult=nil, developmentparams=nil, projectid=nil)
3206
3218
  @Name = name
3207
3219
  @Category = category
3208
3220
  @Type = type
@@ -3222,6 +3234,7 @@ module TencentCloud
3222
3234
  @COSRegion = cosregion
3223
3235
  @ConnectResult = connectresult
3224
3236
  @DevelopmentParams = developmentparams
3237
+ @ProjectId = projectid
3225
3238
  end
3226
3239
 
3227
3240
  def deserialize(params)
@@ -3244,6 +3257,7 @@ module TencentCloud
3244
3257
  @COSRegion = params['COSRegion']
3245
3258
  @ConnectResult = params['ConnectResult']
3246
3259
  @DevelopmentParams = params['DevelopmentParams']
3260
+ @ProjectId = params['ProjectId']
3247
3261
  end
3248
3262
  end
3249
3263
 
@@ -3688,10 +3702,16 @@ module TencentCloud
3688
3702
  # @type SchedulerResourceGroupName: String
3689
3703
  # @param IntegrationResourceGroupName: 补录指定的集成资源组名称 为空则表示使用任务原有集成执行资源组
3690
3704
  # @type IntegrationResourceGroupName: String
3705
+ # @param MakeExtList: 补录扩展属性
3706
+ # @type MakeExtList: Array
3707
+ # @param SameSelfWorkflowDependType: 补录扩展属性
3708
+ # @type SameSelfWorkflowDependType: Boolean
3709
+ # @param SelfWorkflowDependency: 补录扩展属性
3710
+ # @type SelfWorkflowDependency: String
3691
3711
 
3692
- attr_accessor :ProjectId, :MakeName, :TaskIdList, :MakeDatetimeList, :ProjectIdent, :CheckParent, :CheckParentType, :ProjectName, :SelfDependence, :ParallelNum, :SameCycle, :TargetTaskCycle, :TargetTaskAction, :MapParamList, :CreatorId, :Creator, :Remark, :SameSelfDependType, :SourceTaskCycle, :SchedulerResourceGroup, :IntegrationResourceGroup, :SchedulerResourceGroupName, :IntegrationResourceGroupName
3712
+ attr_accessor :ProjectId, :MakeName, :TaskIdList, :MakeDatetimeList, :ProjectIdent, :CheckParent, :CheckParentType, :ProjectName, :SelfDependence, :ParallelNum, :SameCycle, :TargetTaskCycle, :TargetTaskAction, :MapParamList, :CreatorId, :Creator, :Remark, :SameSelfDependType, :SourceTaskCycle, :SchedulerResourceGroup, :IntegrationResourceGroup, :SchedulerResourceGroupName, :IntegrationResourceGroupName, :MakeExtList, :SameSelfWorkflowDependType, :SelfWorkflowDependency
3693
3713
 
3694
- def initialize(projectid=nil, makename=nil, taskidlist=nil, makedatetimelist=nil, projectident=nil, checkparent=nil, checkparenttype=nil, projectname=nil, selfdependence=nil, parallelnum=nil, samecycle=nil, targettaskcycle=nil, targettaskaction=nil, mapparamlist=nil, creatorid=nil, creator=nil, remark=nil, sameselfdependtype=nil, sourcetaskcycle=nil, schedulerresourcegroup=nil, integrationresourcegroup=nil, schedulerresourcegroupname=nil, integrationresourcegroupname=nil)
3714
+ def initialize(projectid=nil, makename=nil, taskidlist=nil, makedatetimelist=nil, projectident=nil, checkparent=nil, checkparenttype=nil, projectname=nil, selfdependence=nil, parallelnum=nil, samecycle=nil, targettaskcycle=nil, targettaskaction=nil, mapparamlist=nil, creatorid=nil, creator=nil, remark=nil, sameselfdependtype=nil, sourcetaskcycle=nil, schedulerresourcegroup=nil, integrationresourcegroup=nil, schedulerresourcegroupname=nil, integrationresourcegroupname=nil, makeextlist=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil)
3695
3715
  @ProjectId = projectid
3696
3716
  @MakeName = makename
3697
3717
  @TaskIdList = taskidlist
@@ -3715,6 +3735,9 @@ module TencentCloud
3715
3735
  @IntegrationResourceGroup = integrationresourcegroup
3716
3736
  @SchedulerResourceGroupName = schedulerresourcegroupname
3717
3737
  @IntegrationResourceGroupName = integrationresourcegroupname
3738
+ @MakeExtList = makeextlist
3739
+ @SameSelfWorkflowDependType = sameselfworkflowdependtype
3740
+ @SelfWorkflowDependency = selfworkflowdependency
3718
3741
  end
3719
3742
 
3720
3743
  def deserialize(params)
@@ -3755,6 +3778,16 @@ module TencentCloud
3755
3778
  @IntegrationResourceGroup = params['IntegrationResourceGroup']
3756
3779
  @SchedulerResourceGroupName = params['SchedulerResourceGroupName']
3757
3780
  @IntegrationResourceGroupName = params['IntegrationResourceGroupName']
3781
+ unless params['MakeExtList'].nil?
3782
+ @MakeExtList = []
3783
+ params['MakeExtList'].each do |i|
3784
+ strtostrmap_tmp = StrToStrMap.new
3785
+ strtostrmap_tmp.deserialize(i)
3786
+ @MakeExtList << strtostrmap_tmp
3787
+ end
3788
+ end
3789
+ @SameSelfWorkflowDependType = params['SameSelfWorkflowDependType']
3790
+ @SelfWorkflowDependency = params['SelfWorkflowDependency']
3758
3791
  end
3759
3792
  end
3760
3793
 
@@ -4696,10 +4729,16 @@ module TencentCloud
4696
4729
  # @param DsEnvType: 0或者未返回.未定义,1.生产 2.开发
4697
4730
  # 注意:此字段可能返回 null,表示取不到有效值。
4698
4731
  # @type DsEnvType: Integer
4732
+ # @param ClusterDeployType: EMR引擎部署方式:CVM/TKE
4733
+ # 注意:此字段可能返回 null,表示取不到有效值。
4734
+ # @type ClusterDeployType: String
4735
+ # @param SchemaName: 模式名称
4736
+ # 注意:此字段可能返回 null,表示取不到有效值。
4737
+ # @type SchemaName: String
4699
4738
 
4700
- attr_accessor :DatasourceName, :DatasourceId, :DatabaseName, :DatabaseId, :InstanceId, :DatasourceType, :OriginDatabaseName, :OriginSchemaName, :DsEnvType
4739
+ attr_accessor :DatasourceName, :DatasourceId, :DatabaseName, :DatabaseId, :InstanceId, :DatasourceType, :OriginDatabaseName, :OriginSchemaName, :DsEnvType, :ClusterDeployType, :SchemaName
4701
4740
 
4702
- def initialize(datasourcename=nil, datasourceid=nil, databasename=nil, databaseid=nil, instanceid=nil, datasourcetype=nil, origindatabasename=nil, originschemaname=nil, dsenvtype=nil)
4741
+ def initialize(datasourcename=nil, datasourceid=nil, databasename=nil, databaseid=nil, instanceid=nil, datasourcetype=nil, origindatabasename=nil, originschemaname=nil, dsenvtype=nil, clusterdeploytype=nil, schemaname=nil)
4703
4742
  @DatasourceName = datasourcename
4704
4743
  @DatasourceId = datasourceid
4705
4744
  @DatabaseName = databasename
@@ -4709,6 +4748,8 @@ module TencentCloud
4709
4748
  @OriginDatabaseName = origindatabasename
4710
4749
  @OriginSchemaName = originschemaname
4711
4750
  @DsEnvType = dsenvtype
4751
+ @ClusterDeployType = clusterdeploytype
4752
+ @SchemaName = schemaname
4712
4753
  end
4713
4754
 
4714
4755
  def deserialize(params)
@@ -4721,6 +4762,8 @@ module TencentCloud
4721
4762
  @OriginDatabaseName = params['OriginDatabaseName']
4722
4763
  @OriginSchemaName = params['OriginSchemaName']
4723
4764
  @DsEnvType = params['DsEnvType']
4765
+ @ClusterDeployType = params['ClusterDeployType']
4766
+ @SchemaName = params['SchemaName']
4724
4767
  end
4725
4768
  end
4726
4769
 
@@ -6925,12 +6968,18 @@ module TencentCloud
6925
6968
  # @type Filters: Array
6926
6969
  # @param OrderFields: 排序字段,如name
6927
6970
  # @type OrderFields: Array
6971
+ # @param PageSize: pagesize
6972
+ # @type PageSize: Integer
6973
+ # @param PageNumber: pageNumber
6974
+ # @type PageNumber: Integer
6928
6975
 
6929
- attr_accessor :Filters, :OrderFields
6976
+ attr_accessor :Filters, :OrderFields, :PageSize, :PageNumber
6930
6977
 
6931
- def initialize(filters=nil, orderfields=nil)
6978
+ def initialize(filters=nil, orderfields=nil, pagesize=nil, pagenumber=nil)
6932
6979
  @Filters = filters
6933
6980
  @OrderFields = orderfields
6981
+ @PageSize = pagesize
6982
+ @PageNumber = pagenumber
6934
6983
  end
6935
6984
 
6936
6985
  def deserialize(params)
@@ -6950,6 +6999,8 @@ module TencentCloud
6950
6999
  @OrderFields << orderfield_tmp
6951
7000
  end
6952
7001
  end
7002
+ @PageSize = params['PageSize']
7003
+ @PageNumber = params['PageNumber']
6953
7004
  end
6954
7005
  end
6955
7006
 
@@ -7578,12 +7629,12 @@ module TencentCloud
7578
7629
 
7579
7630
  attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
7580
7631
  extend Gem::Deprecate
7581
- deprecate :EventType, :none, 2024, 7
7582
- deprecate :EventType=, :none, 2024, 7
7583
- deprecate :EventBroadcastType, :none, 2024, 7
7584
- deprecate :EventBroadcastType=, :none, 2024, 7
7585
- deprecate :Status, :none, 2024, 7
7586
- deprecate :Status=, :none, 2024, 7
7632
+ deprecate :EventType, :none, 2024, 8
7633
+ deprecate :EventType=, :none, 2024, 8
7634
+ deprecate :EventBroadcastType, :none, 2024, 8
7635
+ deprecate :EventBroadcastType=, :none, 2024, 8
7636
+ deprecate :Status, :none, 2024, 8
7637
+ deprecate :Status=, :none, 2024, 8
7587
7638
 
7588
7639
  def initialize(projectid=nil, category=nil, pagenumber=nil, pagesize=nil, eventname=nil, eventtype=nil, eventsubtype=nil, eventbroadcasttype=nil, status=nil, creationtimestart=nil, creationtimeend=nil, eventtriggeredtimestart=nil, eventtriggeredtimeend=nil, logtimestart=nil, logtimeend=nil, dimension=nil, timetolive=nil, sortitem=nil, sorttype=nil)
7589
7640
  @ProjectId = projectid
@@ -8898,7 +8949,7 @@ module TencentCloud
8898
8949
  # @type PageNumber: Integer
8899
8950
  # @param PageSize: 分页大小
8900
8951
  # @type PageSize: Integer
8901
- # @param Filters: 查询filter
8952
+ # @param Filters: 查询filter;默认查询任务的开发态,如需查询生产态任务需添加{"Values":["true"],"Name":"ProductionState"};如需查询查询任务状态需要查询生产态任务列表
8902
8953
  # @type Filters: Array
8903
8954
  # @param OrderFields: 排序字段信息
8904
8955
  # @type OrderFields: Array
@@ -9293,15 +9344,18 @@ module TencentCloud
9293
9344
  # @type PageNumber: Integer
9294
9345
  # @param PageSize: 分页大小,默认值10
9295
9346
  # @type PageSize: Integer
9347
+ # @param StateList: 实例状态列表
9348
+ # @type StateList: Array
9296
9349
 
9297
- attr_accessor :ProjectId, :PlanId, :TaskId, :PageNumber, :PageSize
9350
+ attr_accessor :ProjectId, :PlanId, :TaskId, :PageNumber, :PageSize, :StateList
9298
9351
 
9299
- def initialize(projectid=nil, planid=nil, taskid=nil, pagenumber=nil, pagesize=nil)
9352
+ def initialize(projectid=nil, planid=nil, taskid=nil, pagenumber=nil, pagesize=nil, statelist=nil)
9300
9353
  @ProjectId = projectid
9301
9354
  @PlanId = planid
9302
9355
  @TaskId = taskid
9303
9356
  @PageNumber = pagenumber
9304
9357
  @PageSize = pagesize
9358
+ @StateList = statelist
9305
9359
  end
9306
9360
 
9307
9361
  def deserialize(params)
@@ -9310,6 +9364,7 @@ module TencentCloud
9310
9364
  @TaskId = params['TaskId']
9311
9365
  @PageNumber = params['PageNumber']
9312
9366
  @PageSize = params['PageSize']
9367
+ @StateList = params['StateList']
9313
9368
  end
9314
9369
  end
9315
9370
 
@@ -11834,13 +11889,16 @@ module TencentCloud
11834
11889
  # @type TableNameFilter: :class:`Tencentcloud::Wedata.v20210820.models.TableNameFilter`
11835
11890
  # @param TableFilterType: 查询条件类型0按id,1按名称,默认为0
11836
11891
  # @type TableFilterType: Integer
11892
+ # @param SearchNames: 查询字段列表
11893
+ # @type SearchNames: Array
11837
11894
 
11838
- attr_accessor :TableId, :TableNameFilter, :TableFilterType
11895
+ attr_accessor :TableId, :TableNameFilter, :TableFilterType, :SearchNames
11839
11896
 
11840
- def initialize(tableid=nil, tablenamefilter=nil, tablefiltertype=nil)
11897
+ def initialize(tableid=nil, tablenamefilter=nil, tablefiltertype=nil, searchnames=nil)
11841
11898
  @TableId = tableid
11842
11899
  @TableNameFilter = tablenamefilter
11843
11900
  @TableFilterType = tablefiltertype
11901
+ @SearchNames = searchnames
11844
11902
  end
11845
11903
 
11846
11904
  def deserialize(params)
@@ -11850,6 +11908,7 @@ module TencentCloud
11850
11908
  @TableNameFilter.deserialize(params['TableNameFilter'])
11851
11909
  end
11852
11910
  @TableFilterType = params['TableFilterType']
11911
+ @SearchNames = params['SearchNames']
11853
11912
  end
11854
11913
  end
11855
11914
 
@@ -11858,13 +11917,21 @@ module TencentCloud
11858
11917
  # @param TableMeta: 表的元数据信息
11859
11918
  # 注意:此字段可能返回 null,表示取不到有效值。
11860
11919
  # @type TableMeta: :class:`Tencentcloud::Wedata.v20210820.models.TableMeta`
11920
+ # @param LifecycleInfo: 生命周期信息
11921
+ # 注意:此字段可能返回 null,表示取不到有效值。
11922
+ # @type LifecycleInfo: :class:`Tencentcloud::Wedata.v20210820.models.LifecycleInfo`
11923
+ # @param TagVoteSumList: 标签
11924
+ # 注意:此字段可能返回 null,表示取不到有效值。
11925
+ # @type TagVoteSumList: :class:`Tencentcloud::Wedata.v20210820.models.TagVoteSum`
11861
11926
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11862
11927
  # @type RequestId: String
11863
11928
 
11864
- attr_accessor :TableMeta, :RequestId
11929
+ attr_accessor :TableMeta, :LifecycleInfo, :TagVoteSumList, :RequestId
11865
11930
 
11866
- def initialize(tablemeta=nil, requestid=nil)
11931
+ def initialize(tablemeta=nil, lifecycleinfo=nil, tagvotesumlist=nil, requestid=nil)
11867
11932
  @TableMeta = tablemeta
11933
+ @LifecycleInfo = lifecycleinfo
11934
+ @TagVoteSumList = tagvotesumlist
11868
11935
  @RequestId = requestid
11869
11936
  end
11870
11937
 
@@ -11873,6 +11940,14 @@ module TencentCloud
11873
11940
  @TableMeta = TableMeta.new
11874
11941
  @TableMeta.deserialize(params['TableMeta'])
11875
11942
  end
11943
+ unless params['LifecycleInfo'].nil?
11944
+ @LifecycleInfo = LifecycleInfo.new
11945
+ @LifecycleInfo.deserialize(params['LifecycleInfo'])
11946
+ end
11947
+ unless params['TagVoteSumList'].nil?
11948
+ @TagVoteSumList = TagVoteSum.new
11949
+ @TagVoteSumList.deserialize(params['TagVoteSumList'])
11950
+ end
11876
11951
  @RequestId = params['RequestId']
11877
11952
  end
11878
11953
  end
@@ -12050,10 +12125,16 @@ module TencentCloud
12050
12125
  # @type SchemaName: String
12051
12126
  # @param ProjectId: 项目空间ID
12052
12127
  # @type ProjectId: String
12128
+ # @param Env: 环境信息
12129
+ # @type Env: String
12130
+ # @param Model: 空间模式
12131
+ # @type Model: String
12132
+ # @param DevDatasourceId: 开发态的datasourceId
12133
+ # @type DevDatasourceId: String
12053
12134
 
12054
- attr_accessor :Name, :DatabaseName, :MsType, :DatasourceId, :ConnectionType, :SchemaName, :ProjectId
12135
+ attr_accessor :Name, :DatabaseName, :MsType, :DatasourceId, :ConnectionType, :SchemaName, :ProjectId, :Env, :Model, :DevDatasourceId
12055
12136
 
12056
- def initialize(name=nil, databasename=nil, mstype=nil, datasourceid=nil, connectiontype=nil, schemaname=nil, projectid=nil)
12137
+ def initialize(name=nil, databasename=nil, mstype=nil, datasourceid=nil, connectiontype=nil, schemaname=nil, projectid=nil, env=nil, model=nil, devdatasourceid=nil)
12057
12138
  @Name = name
12058
12139
  @DatabaseName = databasename
12059
12140
  @MsType = mstype
@@ -12061,6 +12142,9 @@ module TencentCloud
12061
12142
  @ConnectionType = connectiontype
12062
12143
  @SchemaName = schemaname
12063
12144
  @ProjectId = projectid
12145
+ @Env = env
12146
+ @Model = model
12147
+ @DevDatasourceId = devdatasourceid
12064
12148
  end
12065
12149
 
12066
12150
  def deserialize(params)
@@ -12071,6 +12155,9 @@ module TencentCloud
12071
12155
  @ConnectionType = params['ConnectionType']
12072
12156
  @SchemaName = params['SchemaName']
12073
12157
  @ProjectId = params['ProjectId']
12158
+ @Env = params['Env']
12159
+ @Model = params['Model']
12160
+ @DevDatasourceId = params['DevDatasourceId']
12074
12161
  end
12075
12162
  end
12076
12163
 
@@ -12436,6 +12523,58 @@ module TencentCloud
12436
12523
  end
12437
12524
  end
12438
12525
 
12526
+ # DescribeTaskLineage请求参数结构体
12527
+ class DescribeTaskLineageRequest < TencentCloud::Common::AbstractModel
12528
+ # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
12529
+ # @type RequestFromSource: String
12530
+ # @param TaskId: 任务ID
12531
+ # @type TaskId: String
12532
+
12533
+ attr_accessor :RequestFromSource, :TaskId
12534
+
12535
+ def initialize(requestfromsource=nil, taskid=nil)
12536
+ @RequestFromSource = requestfromsource
12537
+ @TaskId = taskid
12538
+ end
12539
+
12540
+ def deserialize(params)
12541
+ @RequestFromSource = params['RequestFromSource']
12542
+ @TaskId = params['TaskId']
12543
+ end
12544
+ end
12545
+
12546
+ # DescribeTaskLineage返回参数结构体
12547
+ class DescribeTaskLineageResponse < TencentCloud::Common::AbstractModel
12548
+ # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
12549
+ # 注意:此字段可能返回 null,表示取不到有效值。
12550
+ # @type RequestFromSource: String
12551
+ # @param TaskLineageInfos: 通过任务ID查询集成任务信息列表
12552
+ # @type TaskLineageInfos: Array
12553
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12554
+ # @type RequestId: String
12555
+
12556
+ attr_accessor :RequestFromSource, :TaskLineageInfos, :RequestId
12557
+
12558
+ def initialize(requestfromsource=nil, tasklineageinfos=nil, requestid=nil)
12559
+ @RequestFromSource = requestfromsource
12560
+ @TaskLineageInfos = tasklineageinfos
12561
+ @RequestId = requestid
12562
+ end
12563
+
12564
+ def deserialize(params)
12565
+ @RequestFromSource = params['RequestFromSource']
12566
+ unless params['TaskLineageInfos'].nil?
12567
+ @TaskLineageInfos = []
12568
+ params['TaskLineageInfos'].each do |i|
12569
+ tasklineageinfopair_tmp = TaskLineageInfoPair.new
12570
+ tasklineageinfopair_tmp.deserialize(i)
12571
+ @TaskLineageInfos << tasklineageinfopair_tmp
12572
+ end
12573
+ end
12574
+ @RequestId = params['RequestId']
12575
+ end
12576
+ end
12577
+
12439
12578
  # DescribeTaskLockStatus请求参数结构体
12440
12579
  class DescribeTaskLockStatusRequest < TencentCloud::Common::AbstractModel
12441
12580
  # @param TaskId: 任务id
@@ -13159,8 +13298,8 @@ module TencentCloud
13159
13298
 
13160
13299
  attr_accessor :DimType, :Count, :QualityDim
13161
13300
  extend Gem::Deprecate
13162
- deprecate :DimType, :none, 2024, 7
13163
- deprecate :DimType=, :none, 2024, 7
13301
+ deprecate :DimType, :none, 2024, 8
13302
+ deprecate :DimType=, :none, 2024, 8
13164
13303
 
13165
13304
  def initialize(dimtype=nil, count=nil, qualitydim=nil)
13166
13305
  @DimType = dimtype
@@ -16509,10 +16648,13 @@ module TencentCloud
16509
16648
  # @param Comment: 字段备注
16510
16649
  # 注意:此字段可能返回 null,表示取不到有效值。
16511
16650
  # @type Comment: String
16651
+ # @param Category: category
16652
+ # 注意:此字段可能返回 null,表示取不到有效值。
16653
+ # @type Category: String
16512
16654
 
16513
- attr_accessor :Id, :Name, :Type, :Value, :Properties, :Alias, :Comment
16655
+ attr_accessor :Id, :Name, :Type, :Value, :Properties, :Alias, :Comment, :Category
16514
16656
 
16515
- def initialize(id=nil, name=nil, type=nil, value=nil, properties=nil, _alias=nil, comment=nil)
16657
+ def initialize(id=nil, name=nil, type=nil, value=nil, properties=nil, _alias=nil, comment=nil, category=nil)
16516
16658
  @Id = id
16517
16659
  @Name = name
16518
16660
  @Type = type
@@ -16520,6 +16662,7 @@ module TencentCloud
16520
16662
  @Properties = properties
16521
16663
  @Alias = _alias
16522
16664
  @Comment = comment
16665
+ @Category = category
16523
16666
  end
16524
16667
 
16525
16668
  def deserialize(params)
@@ -16537,6 +16680,7 @@ module TencentCloud
16537
16680
  end
16538
16681
  @Alias = params['Alias']
16539
16682
  @Comment = params['Comment']
16683
+ @Category = params['Category']
16540
16684
  end
16541
16685
  end
16542
16686
 
@@ -16625,7 +16769,7 @@ module TencentCloud
16625
16769
  # @param AppId: 应用id
16626
16770
  # 注意:此字段可能返回 null,表示取不到有效值。
16627
16771
  # @type AppId: String
16628
- # @param Status: 1:未开始|2:操作中|3:运行中|4:暂停|5:任务停止中|6:停止|7:执行失败|20:异常|21:未知|
16772
+ # @param Status: 0:新建(任务开发态默认状态)|1:未开始|2:操作中|3:运行中|4:暂停|5:任务停止中|6:停止|7:执行失败|20:异常|21:未知|
16629
16773
  # 注意:此字段可能返回 null,表示取不到有效值。
16630
16774
  # @type Status: Integer
16631
16775
  # @param Nodes: 节点列表
@@ -17042,6 +17186,33 @@ module TencentCloud
17042
17186
  end
17043
17187
  end
17044
17188
 
17189
+ # 表生命周期相关信息
17190
+ class LifecycleInfo < TencentCloud::Common::AbstractModel
17191
+ # @param Lifecycle: 生命周期值
17192
+ # 注意:此字段可能返回 null,表示取不到有效值。
17193
+ # @type Lifecycle: Integer
17194
+ # @param Columns: 列名
17195
+ # 注意:此字段可能返回 null,表示取不到有效值。
17196
+ # @type Columns: Array
17197
+ # @param DateFormat: 日期格式
17198
+ # 注意:此字段可能返回 null,表示取不到有效值。
17199
+ # @type DateFormat: Array
17200
+
17201
+ attr_accessor :Lifecycle, :Columns, :DateFormat
17202
+
17203
+ def initialize(lifecycle=nil, columns=nil, dateformat=nil)
17204
+ @Lifecycle = lifecycle
17205
+ @Columns = columns
17206
+ @DateFormat = dateformat
17207
+ end
17208
+
17209
+ def deserialize(params)
17210
+ @Lifecycle = params['Lifecycle']
17211
+ @Columns = params['Columns']
17212
+ @DateFormat = params['DateFormat']
17213
+ end
17214
+ end
17215
+
17045
17216
  # 血缘参数记录
17046
17217
  class LineageParamRecord < TencentCloud::Common::AbstractModel
17047
17218
  # @param Name: 字段名
@@ -18219,10 +18390,16 @@ module TencentCloud
18219
18390
  # @type TargetObjectValue: String
18220
18391
  # @param SourceEngineTypes: 该规则适配的执行引擎
18221
18392
  # @type SourceEngineTypes: Array
18393
+ # @param TargetDatabaseName: 目标库名
18394
+ # @type TargetDatabaseName: String
18395
+ # @param TargetSchemaName: 目标模式名
18396
+ # @type TargetSchemaName: String
18397
+ # @param TargetTableName: 目标表名
18398
+ # @type TargetTableName: String
18222
18399
 
18223
- attr_accessor :ProjectId, :RuleId, :RuleGroupId, :Name, :TableId, :RuleTemplateId, :Type, :QualityDim, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :TargetDatabaseId, :TargetTableId, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :TargetObjectValue, :SourceEngineTypes
18400
+ attr_accessor :ProjectId, :RuleId, :RuleGroupId, :Name, :TableId, :RuleTemplateId, :Type, :QualityDim, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :TargetDatabaseId, :TargetTableId, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :TargetObjectValue, :SourceEngineTypes, :TargetDatabaseName, :TargetSchemaName, :TargetTableName
18224
18401
 
18225
- def initialize(projectid=nil, ruleid=nil, rulegroupid=nil, name=nil, tableid=nil, ruletemplateid=nil, type=nil, qualitydim=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, targetdatabaseid=nil, targettableid=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, targetobjectvalue=nil, sourceenginetypes=nil)
18402
+ def initialize(projectid=nil, ruleid=nil, rulegroupid=nil, name=nil, tableid=nil, ruletemplateid=nil, type=nil, qualitydim=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, targetdatabaseid=nil, targettableid=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, targetobjectvalue=nil, sourceenginetypes=nil, targetdatabasename=nil, targetschemaname=nil, targettablename=nil)
18226
18403
  @ProjectId = projectid
18227
18404
  @RuleId = ruleid
18228
18405
  @RuleGroupId = rulegroupid
@@ -18246,6 +18423,9 @@ module TencentCloud
18246
18423
  @FieldConfig = fieldconfig
18247
18424
  @TargetObjectValue = targetobjectvalue
18248
18425
  @SourceEngineTypes = sourceenginetypes
18426
+ @TargetDatabaseName = targetdatabasename
18427
+ @TargetSchemaName = targetschemaname
18428
+ @TargetTableName = targettablename
18249
18429
  end
18250
18430
 
18251
18431
  def deserialize(params)
@@ -18278,6 +18458,9 @@ module TencentCloud
18278
18458
  end
18279
18459
  @TargetObjectValue = params['TargetObjectValue']
18280
18460
  @SourceEngineTypes = params['SourceEngineTypes']
18461
+ @TargetDatabaseName = params['TargetDatabaseName']
18462
+ @TargetSchemaName = params['TargetSchemaName']
18463
+ @TargetTableName = params['TargetTableName']
18281
18464
  end
18282
18465
  end
18283
18466
 
@@ -18496,8 +18679,8 @@ module TencentCloud
18496
18679
 
18497
18680
  attr_accessor :ProjectId, :TaskId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :CrontabExpression, :ExecutionStartTime, :ExecutionEndTime, :TaskName, :RetryWait, :TryLimit, :Retriable, :RunPriority, :TaskExt, :ResourceGroup, :YarnQueue, :BrokerIp, :InCharge, :Notes, :TaskParamInfos, :SourceServer, :TargetServer, :DependencyWorkflow, :DependencyConfigDTOs, :ExecutionTTL, :ScriptChange, :InChargeIds
18498
18681
  extend Gem::Deprecate
18499
- deprecate :InCharge, :none, 2024, 7
18500
- deprecate :InCharge=, :none, 2024, 7
18682
+ deprecate :InCharge, :none, 2024, 8
18683
+ deprecate :InCharge=, :none, 2024, 8
18501
18684
 
18502
18685
  def initialize(projectid=nil, taskid=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, executionstarttime=nil, executionendtime=nil, taskname=nil, retrywait=nil, trylimit=nil, retriable=nil, runpriority=nil, taskext=nil, resourcegroup=nil, yarnqueue=nil, brokerip=nil, incharge=nil, notes=nil, taskparaminfos=nil, sourceserver=nil, targetserver=nil, dependencyworkflow=nil, dependencyconfigdtos=nil, executionttl=nil, scriptchange=nil, inchargeids=nil)
18503
18686
  @ProjectId = projectid
@@ -20840,10 +21023,19 @@ module TencentCloud
20840
21023
  # @param DsEnvType: 0或者未返回或者null:未定义,1:生产,2:开发
20841
21024
  # 注意:此字段可能返回 null,表示取不到有效值。
20842
21025
  # @type DsEnvType: Integer
21026
+ # @param DatasourceType: 数据源类型
21027
+ # 注意:此字段可能返回 null,表示取不到有效值。
21028
+ # @type DatasourceType: Integer
21029
+ # @param SchemaName: 模式名称
21030
+ # 注意:此字段可能返回 null,表示取不到有效值。
21031
+ # @type SchemaName: String
21032
+ # @param TargetSchemaName: 目标模式名称
21033
+ # 注意:此字段可能返回 null,表示取不到有效值。
21034
+ # @type TargetSchemaName: String
20843
21035
 
20844
- attr_accessor :RuleId, :RuleGroupId, :TableId, :Name, :Type, :RuleTemplateId, :RuleTemplateContent, :QualityDim, :SourceObjectType, :SourceObjectDataType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :Operator, :TargetDatabaseId, :TargetDatabaseName, :TargetTableId, :TargetTableName, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :MultiSourceFlag, :WhereFlag, :TemplateSql, :SubQualityDim, :TargetObjectType, :TargetObjectDataType, :TargetObjectDataTypeName, :TargetObjectValue, :SourceEngineTypes, :TableName, :TableOwnerName, :ExecStrategy, :Subscription, :CreateTime, :DatasourceId, :DatabaseId, :MonitorStatus, :TriggerCondition, :DsEnvType
21036
+ attr_accessor :RuleId, :RuleGroupId, :TableId, :Name, :Type, :RuleTemplateId, :RuleTemplateContent, :QualityDim, :SourceObjectType, :SourceObjectDataType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :Operator, :TargetDatabaseId, :TargetDatabaseName, :TargetTableId, :TargetTableName, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :MultiSourceFlag, :WhereFlag, :TemplateSql, :SubQualityDim, :TargetObjectType, :TargetObjectDataType, :TargetObjectDataTypeName, :TargetObjectValue, :SourceEngineTypes, :TableName, :TableOwnerName, :ExecStrategy, :Subscription, :CreateTime, :DatasourceId, :DatabaseId, :MonitorStatus, :TriggerCondition, :DsEnvType, :DatasourceType, :SchemaName, :TargetSchemaName
20845
21037
 
20846
- def initialize(ruleid=nil, rulegroupid=nil, tableid=nil, name=nil, type=nil, ruletemplateid=nil, ruletemplatecontent=nil, qualitydim=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, operator=nil, targetdatabaseid=nil, targetdatabasename=nil, targettableid=nil, targettablename=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, multisourceflag=nil, whereflag=nil, templatesql=nil, subqualitydim=nil, targetobjecttype=nil, targetobjectdatatype=nil, targetobjectdatatypename=nil, targetobjectvalue=nil, sourceenginetypes=nil, tablename=nil, tableownername=nil, execstrategy=nil, subscription=nil, createtime=nil, datasourceid=nil, databaseid=nil, monitorstatus=nil, triggercondition=nil, dsenvtype=nil)
21038
+ def initialize(ruleid=nil, rulegroupid=nil, tableid=nil, name=nil, type=nil, ruletemplateid=nil, ruletemplatecontent=nil, qualitydim=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, operator=nil, targetdatabaseid=nil, targetdatabasename=nil, targettableid=nil, targettablename=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, multisourceflag=nil, whereflag=nil, templatesql=nil, subqualitydim=nil, targetobjecttype=nil, targetobjectdatatype=nil, targetobjectdatatypename=nil, targetobjectvalue=nil, sourceenginetypes=nil, tablename=nil, tableownername=nil, execstrategy=nil, subscription=nil, createtime=nil, datasourceid=nil, databaseid=nil, monitorstatus=nil, triggercondition=nil, dsenvtype=nil, datasourcetype=nil, schemaname=nil, targetschemaname=nil)
20847
21039
  @RuleId = ruleid
20848
21040
  @RuleGroupId = rulegroupid
20849
21041
  @TableId = tableid
@@ -20889,6 +21081,9 @@ module TencentCloud
20889
21081
  @MonitorStatus = monitorstatus
20890
21082
  @TriggerCondition = triggercondition
20891
21083
  @DsEnvType = dsenvtype
21084
+ @DatasourceType = datasourcetype
21085
+ @SchemaName = schemaname
21086
+ @TargetSchemaName = targetschemaname
20892
21087
  end
20893
21088
 
20894
21089
  def deserialize(params)
@@ -20949,6 +21144,9 @@ module TencentCloud
20949
21144
  @MonitorStatus = params['MonitorStatus']
20950
21145
  @TriggerCondition = params['TriggerCondition']
20951
21146
  @DsEnvType = params['DsEnvType']
21147
+ @DatasourceType = params['DatasourceType']
21148
+ @SchemaName = params['SchemaName']
21149
+ @TargetSchemaName = params['TargetSchemaName']
20952
21150
  end
20953
21151
  end
20954
21152
 
@@ -21042,19 +21240,24 @@ module TencentCloud
21042
21240
  # @param EngineType: 运行的执行引擎,不传时会请求该数据源下默认的执行引擎
21043
21241
  # 注意:此字段可能返回 null,表示取不到有效值。
21044
21242
  # @type EngineType: String
21243
+ # @param DlcGroupName: DLC执行引擎资源组
21244
+ # 注意:此字段可能返回 null,表示取不到有效值。
21245
+ # @type DlcGroupName: String
21045
21246
 
21046
- attr_accessor :QueueName, :ExecutorGroupId, :EngineType
21247
+ attr_accessor :QueueName, :ExecutorGroupId, :EngineType, :DlcGroupName
21047
21248
 
21048
- def initialize(queuename=nil, executorgroupid=nil, enginetype=nil)
21249
+ def initialize(queuename=nil, executorgroupid=nil, enginetype=nil, dlcgroupname=nil)
21049
21250
  @QueueName = queuename
21050
21251
  @ExecutorGroupId = executorgroupid
21051
21252
  @EngineType = enginetype
21253
+ @DlcGroupName = dlcgroupname
21052
21254
  end
21053
21255
 
21054
21256
  def deserialize(params)
21055
21257
  @QueueName = params['QueueName']
21056
21258
  @ExecutorGroupId = params['ExecutorGroupId']
21057
21259
  @EngineType = params['EngineType']
21260
+ @DlcGroupName = params['DlcGroupName']
21058
21261
  end
21059
21262
  end
21060
21263
 
@@ -21259,10 +21462,13 @@ module TencentCloud
21259
21462
  # @param DatasourceType: 2.HIVE 3.DLC
21260
21463
  # 注意:此字段可能返回 null,表示取不到有效值。
21261
21464
  # @type DatasourceType: Integer
21465
+ # @param ClusterDeployType: 集群部署类型,CVM/TKE
21466
+ # 注意:此字段可能返回 null,表示取不到有效值。
21467
+ # @type ClusterDeployType: String
21262
21468
 
21263
- attr_accessor :DatasourceId, :DatasourceName, :DatabaseId, :DatabaseName, :InstanceId, :TableId, :TableName, :RuleExecResult, :TableOwnerUserId, :DatasourceType
21469
+ attr_accessor :DatasourceId, :DatasourceName, :DatabaseId, :DatabaseName, :InstanceId, :TableId, :TableName, :RuleExecResult, :TableOwnerUserId, :DatasourceType, :ClusterDeployType
21264
21470
 
21265
- def initialize(datasourceid=nil, datasourcename=nil, databaseid=nil, databasename=nil, instanceid=nil, tableid=nil, tablename=nil, ruleexecresult=nil, tableowneruserid=nil, datasourcetype=nil)
21471
+ def initialize(datasourceid=nil, datasourcename=nil, databaseid=nil, databasename=nil, instanceid=nil, tableid=nil, tablename=nil, ruleexecresult=nil, tableowneruserid=nil, datasourcetype=nil, clusterdeploytype=nil)
21266
21472
  @DatasourceId = datasourceid
21267
21473
  @DatasourceName = datasourcename
21268
21474
  @DatabaseId = databaseid
@@ -21273,6 +21479,7 @@ module TencentCloud
21273
21479
  @RuleExecResult = ruleexecresult
21274
21480
  @TableOwnerUserId = tableowneruserid
21275
21481
  @DatasourceType = datasourcetype
21482
+ @ClusterDeployType = clusterdeploytype
21276
21483
  end
21277
21484
 
21278
21485
  def deserialize(params)
@@ -21289,6 +21496,7 @@ module TencentCloud
21289
21496
  end
21290
21497
  @TableOwnerUserId = params['TableOwnerUserId']
21291
21498
  @DatasourceType = params['DatasourceType']
21499
+ @ClusterDeployType = params['ClusterDeployType']
21292
21500
  end
21293
21501
  end
21294
21502
 
@@ -21481,6 +21689,9 @@ module TencentCloud
21481
21689
  # @param DatabaseName: 数据库名称
21482
21690
  # 注意:此字段可能返回 null,表示取不到有效值。
21483
21691
  # @type DatabaseName: String
21692
+ # @param SchemaName: 模式名称
21693
+ # 注意:此字段可能返回 null,表示取不到有效值。
21694
+ # @type SchemaName: String
21484
21695
  # @param Permission: 是否有权限
21485
21696
  # 注意:此字段可能返回 null,表示取不到有效值。
21486
21697
  # @type Permission: Boolean
@@ -21508,10 +21719,13 @@ module TencentCloud
21508
21719
  # @param DsEnvType: 数据源环境:0或者未返回.未定义,1.生产 2.开发
21509
21720
  # 注意:此字段可能返回 null,表示取不到有效值。
21510
21721
  # @type DsEnvType: Integer
21722
+ # @param ClusterDeployType: EMR集群部署方式:CVM/TKE
21723
+ # 注意:此字段可能返回 null,表示取不到有效值。
21724
+ # @type ClusterDeployType: String
21511
21725
 
21512
- attr_accessor :RuleGroupId, :DatasourceId, :DatasourceName, :DatasourceType, :MonitorType, :UpdateTime, :TableName, :TableId, :TableOwnerName, :ExecStrategy, :Subscription, :DatabaseId, :DatabaseName, :Permission, :RuleCount, :MonitorStatus, :TableOwnerUserId, :InstanceId, :CreateTime, :StrategyConfig, :SubscribeConfig, :DsEnvType
21726
+ attr_accessor :RuleGroupId, :DatasourceId, :DatasourceName, :DatasourceType, :MonitorType, :UpdateTime, :TableName, :TableId, :TableOwnerName, :ExecStrategy, :Subscription, :DatabaseId, :DatabaseName, :SchemaName, :Permission, :RuleCount, :MonitorStatus, :TableOwnerUserId, :InstanceId, :CreateTime, :StrategyConfig, :SubscribeConfig, :DsEnvType, :ClusterDeployType
21513
21727
 
21514
- def initialize(rulegroupid=nil, datasourceid=nil, datasourcename=nil, datasourcetype=nil, monitortype=nil, updatetime=nil, tablename=nil, tableid=nil, tableownername=nil, execstrategy=nil, subscription=nil, databaseid=nil, databasename=nil, permission=nil, rulecount=nil, monitorstatus=nil, tableowneruserid=nil, instanceid=nil, createtime=nil, strategyconfig=nil, subscribeconfig=nil, dsenvtype=nil)
21728
+ def initialize(rulegroupid=nil, datasourceid=nil, datasourcename=nil, datasourcetype=nil, monitortype=nil, updatetime=nil, tablename=nil, tableid=nil, tableownername=nil, execstrategy=nil, subscription=nil, databaseid=nil, databasename=nil, schemaname=nil, permission=nil, rulecount=nil, monitorstatus=nil, tableowneruserid=nil, instanceid=nil, createtime=nil, strategyconfig=nil, subscribeconfig=nil, dsenvtype=nil, clusterdeploytype=nil)
21515
21729
  @RuleGroupId = rulegroupid
21516
21730
  @DatasourceId = datasourceid
21517
21731
  @DatasourceName = datasourcename
@@ -21525,6 +21739,7 @@ module TencentCloud
21525
21739
  @Subscription = subscription
21526
21740
  @DatabaseId = databaseid
21527
21741
  @DatabaseName = databasename
21742
+ @SchemaName = schemaname
21528
21743
  @Permission = permission
21529
21744
  @RuleCount = rulecount
21530
21745
  @MonitorStatus = monitorstatus
@@ -21534,6 +21749,7 @@ module TencentCloud
21534
21749
  @StrategyConfig = strategyconfig
21535
21750
  @SubscribeConfig = subscribeconfig
21536
21751
  @DsEnvType = dsenvtype
21752
+ @ClusterDeployType = clusterdeploytype
21537
21753
  end
21538
21754
 
21539
21755
  def deserialize(params)
@@ -21556,6 +21772,7 @@ module TencentCloud
21556
21772
  end
21557
21773
  @DatabaseId = params['DatabaseId']
21558
21774
  @DatabaseName = params['DatabaseName']
21775
+ @SchemaName = params['SchemaName']
21559
21776
  @Permission = params['Permission']
21560
21777
  @RuleCount = params['RuleCount']
21561
21778
  @MonitorStatus = params['MonitorStatus']
@@ -21565,6 +21782,7 @@ module TencentCloud
21565
21782
  @StrategyConfig = params['StrategyConfig']
21566
21783
  @SubscribeConfig = params['SubscribeConfig']
21567
21784
  @DsEnvType = params['DsEnvType']
21785
+ @ClusterDeployType = params['ClusterDeployType']
21568
21786
  end
21569
21787
  end
21570
21788
 
@@ -21618,10 +21836,25 @@ module TencentCloud
21618
21836
  # @param RuleExecResultVOList: 规则执行结果
21619
21837
  # 注意:此字段可能返回 null,表示取不到有效值。
21620
21838
  # @type RuleExecResultVOList: Array
21839
+ # @param DatabaseName: 数据库名称
21840
+ # 注意:此字段可能返回 null,表示取不到有效值。
21841
+ # @type DatabaseName: String
21842
+ # @param RuleGroupTableId: 本地规则表id
21843
+ # 注意:此字段可能返回 null,表示取不到有效值。
21844
+ # @type RuleGroupTableId: String
21845
+ # @param ClusterDeployType: 集群部署类型
21846
+ # 注意:此字段可能返回 null,表示取不到有效值。
21847
+ # @type ClusterDeployType: String
21848
+ # @param InstanceId: 实例id
21849
+ # 注意:此字段可能返回 null,表示取不到有效值。
21850
+ # @type InstanceId: String
21851
+ # @param DsEnvType: 数据库所属环境,0.未定义,1.生产 2.开发
21852
+ # 注意:此字段可能返回 null,表示取不到有效值。
21853
+ # @type DsEnvType: String
21621
21854
 
21622
- attr_accessor :RuleGroupExecId, :RuleGroupId, :TriggerType, :ExecTime, :Status, :AlarmRuleCount, :TotalRuleCount, :TableOwnerName, :TableName, :TableId, :DatabaseId, :DatasourceId, :Permission, :ExecDetail, :EngineType, :RuleExecResultVOList
21855
+ attr_accessor :RuleGroupExecId, :RuleGroupId, :TriggerType, :ExecTime, :Status, :AlarmRuleCount, :TotalRuleCount, :TableOwnerName, :TableName, :TableId, :DatabaseId, :DatasourceId, :Permission, :ExecDetail, :EngineType, :RuleExecResultVOList, :DatabaseName, :RuleGroupTableId, :ClusterDeployType, :InstanceId, :DsEnvType
21623
21856
 
21624
- def initialize(rulegroupexecid=nil, rulegroupid=nil, triggertype=nil, exectime=nil, status=nil, alarmrulecount=nil, totalrulecount=nil, tableownername=nil, tablename=nil, tableid=nil, databaseid=nil, datasourceid=nil, permission=nil, execdetail=nil, enginetype=nil, ruleexecresultvolist=nil)
21857
+ def initialize(rulegroupexecid=nil, rulegroupid=nil, triggertype=nil, exectime=nil, status=nil, alarmrulecount=nil, totalrulecount=nil, tableownername=nil, tablename=nil, tableid=nil, databaseid=nil, datasourceid=nil, permission=nil, execdetail=nil, enginetype=nil, ruleexecresultvolist=nil, databasename=nil, rulegrouptableid=nil, clusterdeploytype=nil, instanceid=nil, dsenvtype=nil)
21625
21858
  @RuleGroupExecId = rulegroupexecid
21626
21859
  @RuleGroupId = rulegroupid
21627
21860
  @TriggerType = triggertype
@@ -21638,6 +21871,11 @@ module TencentCloud
21638
21871
  @ExecDetail = execdetail
21639
21872
  @EngineType = enginetype
21640
21873
  @RuleExecResultVOList = ruleexecresultvolist
21874
+ @DatabaseName = databasename
21875
+ @RuleGroupTableId = rulegrouptableid
21876
+ @ClusterDeployType = clusterdeploytype
21877
+ @InstanceId = instanceid
21878
+ @DsEnvType = dsenvtype
21641
21879
  end
21642
21880
 
21643
21881
  def deserialize(params)
@@ -21664,6 +21902,11 @@ module TencentCloud
21664
21902
  @RuleExecResultVOList << ruleexecresult_tmp
21665
21903
  end
21666
21904
  end
21905
+ @DatabaseName = params['DatabaseName']
21906
+ @RuleGroupTableId = params['RuleGroupTableId']
21907
+ @ClusterDeployType = params['ClusterDeployType']
21908
+ @InstanceId = params['InstanceId']
21909
+ @DsEnvType = params['DsEnvType']
21667
21910
  end
21668
21911
  end
21669
21912
 
@@ -24468,6 +24711,9 @@ module TencentCloud
24468
24711
  # @param TableName: 表名称
24469
24712
  # 注意:此字段可能返回 null,表示取不到有效值。
24470
24713
  # @type TableName: String
24714
+ # @param TableType: 表类型,view/table
24715
+ # 注意:此字段可能返回 null,表示取不到有效值。
24716
+ # @type TableType: String
24471
24717
  # @param OriginDatabaseName: 表databaseName
24472
24718
  # 注意:此字段可能返回 null,表示取不到有效值。
24473
24719
  # @type OriginDatabaseName: String
@@ -24475,11 +24721,12 @@ module TencentCloud
24475
24721
  # 注意:此字段可能返回 null,表示取不到有效值。
24476
24722
  # @type OriginSchemaName: String
24477
24723
 
24478
- attr_accessor :TableId, :TableName, :OriginDatabaseName, :OriginSchemaName
24724
+ attr_accessor :TableId, :TableName, :TableType, :OriginDatabaseName, :OriginSchemaName
24479
24725
 
24480
- def initialize(tableid=nil, tablename=nil, origindatabasename=nil, originschemaname=nil)
24726
+ def initialize(tableid=nil, tablename=nil, tabletype=nil, origindatabasename=nil, originschemaname=nil)
24481
24727
  @TableId = tableid
24482
24728
  @TableName = tablename
24729
+ @TableType = tabletype
24483
24730
  @OriginDatabaseName = origindatabasename
24484
24731
  @OriginSchemaName = originschemaname
24485
24732
  end
@@ -24487,6 +24734,7 @@ module TencentCloud
24487
24734
  def deserialize(params)
24488
24735
  @TableId = params['TableId']
24489
24736
  @TableName = params['TableName']
24737
+ @TableType = params['TableType']
24490
24738
  @OriginDatabaseName = params['OriginDatabaseName']
24491
24739
  @OriginSchemaName = params['OriginSchemaName']
24492
24740
  end
@@ -24934,10 +25182,16 @@ module TencentCloud
24934
25182
  # @param TableProperties: 表附属信息
24935
25183
  # 注意:此字段可能返回 null,表示取不到有效值。
24936
25184
  # @type TableProperties: Array
25185
+ # @param Environment: 环境,取值 prod或者 dev
25186
+ # 注意:此字段可能返回 null,表示取不到有效值。
25187
+ # @type Environment: String
25188
+ # @param Schema: 数据库模式
25189
+ # 注意:此字段可能返回 null,表示取不到有效值。
25190
+ # @type Schema: String
24937
25191
 
24938
- attr_accessor :TableId, :TableName, :TableOwnerName, :DatasourceId, :ClusterName, :DatasourceName, :DatabaseName, :TablePath, :TableNameCn, :MetastoreId, :MetastoreType, :Description, :ColumnSeparator, :StorageFormat, :StorageSize, :TableType, :CreateTime, :ModifyTime, :DdlModifyTime, :LastAccessTime, :ProjectName, :BizCatalogIds, :BizCatalogNames, :HasFavorite, :LifeCycleTime, :StorageSizeWithUnit, :InstanceId, :TechnologyType, :TableNameEn, :ProjectId, :Partitions, :ReplicationFactor, :ProjectDisplayName, :DataModifyTime, :ClusterId, :HasAdminAuthority, :DatasourceDisplayName, :DatabaseId, :FavoriteCount, :LikeCount, :HasLike, :TablePropertyScore, :TableHeat, :OwnerProjectId, :TableOwnerId, :DataSourceCategory, :Columns, :MetaCrawlType, :IsView, :Location, :IsPartitionTable, :PartitionColumns, :PartitionExpireDays, :TableProperties
25192
+ attr_accessor :TableId, :TableName, :TableOwnerName, :DatasourceId, :ClusterName, :DatasourceName, :DatabaseName, :TablePath, :TableNameCn, :MetastoreId, :MetastoreType, :Description, :ColumnSeparator, :StorageFormat, :StorageSize, :TableType, :CreateTime, :ModifyTime, :DdlModifyTime, :LastAccessTime, :ProjectName, :BizCatalogIds, :BizCatalogNames, :HasFavorite, :LifeCycleTime, :StorageSizeWithUnit, :InstanceId, :TechnologyType, :TableNameEn, :ProjectId, :Partitions, :ReplicationFactor, :ProjectDisplayName, :DataModifyTime, :ClusterId, :HasAdminAuthority, :DatasourceDisplayName, :DatabaseId, :FavoriteCount, :LikeCount, :HasLike, :TablePropertyScore, :TableHeat, :OwnerProjectId, :TableOwnerId, :DataSourceCategory, :Columns, :MetaCrawlType, :IsView, :Location, :IsPartitionTable, :PartitionColumns, :PartitionExpireDays, :TableProperties, :Environment, :Schema
24939
25193
 
24940
- def initialize(tableid=nil, tablename=nil, tableownername=nil, datasourceid=nil, clustername=nil, datasourcename=nil, databasename=nil, tablepath=nil, tablenamecn=nil, metastoreid=nil, metastoretype=nil, description=nil, columnseparator=nil, storageformat=nil, storagesize=nil, tabletype=nil, createtime=nil, modifytime=nil, ddlmodifytime=nil, lastaccesstime=nil, projectname=nil, bizcatalogids=nil, bizcatalognames=nil, hasfavorite=nil, lifecycletime=nil, storagesizewithunit=nil, instanceid=nil, technologytype=nil, tablenameen=nil, projectid=nil, partitions=nil, replicationfactor=nil, projectdisplayname=nil, datamodifytime=nil, clusterid=nil, hasadminauthority=nil, datasourcedisplayname=nil, databaseid=nil, favoritecount=nil, likecount=nil, haslike=nil, tablepropertyscore=nil, tableheat=nil, ownerprojectid=nil, tableownerid=nil, datasourcecategory=nil, columns=nil, metacrawltype=nil, isview=nil, location=nil, ispartitiontable=nil, partitioncolumns=nil, partitionexpiredays=nil, tableproperties=nil)
25194
+ def initialize(tableid=nil, tablename=nil, tableownername=nil, datasourceid=nil, clustername=nil, datasourcename=nil, databasename=nil, tablepath=nil, tablenamecn=nil, metastoreid=nil, metastoretype=nil, description=nil, columnseparator=nil, storageformat=nil, storagesize=nil, tabletype=nil, createtime=nil, modifytime=nil, ddlmodifytime=nil, lastaccesstime=nil, projectname=nil, bizcatalogids=nil, bizcatalognames=nil, hasfavorite=nil, lifecycletime=nil, storagesizewithunit=nil, instanceid=nil, technologytype=nil, tablenameen=nil, projectid=nil, partitions=nil, replicationfactor=nil, projectdisplayname=nil, datamodifytime=nil, clusterid=nil, hasadminauthority=nil, datasourcedisplayname=nil, databaseid=nil, favoritecount=nil, likecount=nil, haslike=nil, tablepropertyscore=nil, tableheat=nil, ownerprojectid=nil, tableownerid=nil, datasourcecategory=nil, columns=nil, metacrawltype=nil, isview=nil, location=nil, ispartitiontable=nil, partitioncolumns=nil, partitionexpiredays=nil, tableproperties=nil, environment=nil, schema=nil)
24941
25195
  @TableId = tableid
24942
25196
  @TableName = tablename
24943
25197
  @TableOwnerName = tableownername
@@ -24992,6 +25246,8 @@ module TencentCloud
24992
25246
  @PartitionColumns = partitioncolumns
24993
25247
  @PartitionExpireDays = partitionexpiredays
24994
25248
  @TableProperties = tableproperties
25249
+ @Environment = environment
25250
+ @Schema = schema
24995
25251
  end
24996
25252
 
24997
25253
  def deserialize(params)
@@ -25069,6 +25325,8 @@ module TencentCloud
25069
25325
  @TableProperties << tablemetaproperty_tmp
25070
25326
  end
25071
25327
  end
25328
+ @Environment = params['Environment']
25329
+ @Schema = params['Schema']
25072
25330
  end
25073
25331
  end
25074
25332
 
@@ -25202,10 +25460,16 @@ module TencentCloud
25202
25460
  # @param DsEnvType: 0或者未返回或者null:未定义,1:生产,2:开发
25203
25461
  # 注意:此字段可能返回 null,表示取不到有效值。
25204
25462
  # @type DsEnvType: Integer
25463
+ # @param SchemaName: 模式名称
25464
+ # 注意:此字段可能返回 null,表示取不到有效值。
25465
+ # @type SchemaName: String
25466
+ # @param RuleGroupTableId: 规则表
25467
+ # 注意:此字段可能返回 null,表示取不到有效值。
25468
+ # @type RuleGroupTableId: String
25205
25469
 
25206
- attr_accessor :DatabaseId, :DatabaseName, :TableId, :TableName, :OwnerUserId, :OwnerUserName, :DatabaseScore, :TableScore, :LastPeriodRatio, :DsEnvType
25470
+ attr_accessor :DatabaseId, :DatabaseName, :TableId, :TableName, :OwnerUserId, :OwnerUserName, :DatabaseScore, :TableScore, :LastPeriodRatio, :DsEnvType, :SchemaName, :RuleGroupTableId
25207
25471
 
25208
- def initialize(databaseid=nil, databasename=nil, tableid=nil, tablename=nil, owneruserid=nil, ownerusername=nil, databasescore=nil, tablescore=nil, lastperiodratio=nil, dsenvtype=nil)
25472
+ def initialize(databaseid=nil, databasename=nil, tableid=nil, tablename=nil, owneruserid=nil, ownerusername=nil, databasescore=nil, tablescore=nil, lastperiodratio=nil, dsenvtype=nil, schemaname=nil, rulegrouptableid=nil)
25209
25473
  @DatabaseId = databaseid
25210
25474
  @DatabaseName = databasename
25211
25475
  @TableId = tableid
@@ -25216,6 +25480,8 @@ module TencentCloud
25216
25480
  @TableScore = tablescore
25217
25481
  @LastPeriodRatio = lastperiodratio
25218
25482
  @DsEnvType = dsenvtype
25483
+ @SchemaName = schemaname
25484
+ @RuleGroupTableId = rulegrouptableid
25219
25485
  end
25220
25486
 
25221
25487
  def deserialize(params)
@@ -25229,6 +25495,8 @@ module TencentCloud
25229
25495
  @TableScore = params['TableScore']
25230
25496
  @LastPeriodRatio = params['LastPeriodRatio']
25231
25497
  @DsEnvType = params['DsEnvType']
25498
+ @SchemaName = params['SchemaName']
25499
+ @RuleGroupTableId = params['RuleGroupTableId']
25232
25500
  end
25233
25501
  end
25234
25502
 
@@ -25288,6 +25556,34 @@ module TencentCloud
25288
25556
  end
25289
25557
  end
25290
25558
 
25559
+ # 基于表的标签统计信息
25560
+ class TagVoteSum < TencentCloud::Common::AbstractModel
25561
+ # @param TagId: 标签id
25562
+ # @type TagId: Integer
25563
+ # @param VoteSum: 该表该标签投票次数
25564
+ # @type VoteSum: Integer
25565
+ # @param Status: 当前用户对这张表是否加了该标签 true 已添加 false 未添加
25566
+ # @type Status: Boolean
25567
+ # @param TagName: 标签名
25568
+ # @type TagName: String
25569
+
25570
+ attr_accessor :TagId, :VoteSum, :Status, :TagName
25571
+
25572
+ def initialize(tagid=nil, votesum=nil, status=nil, tagname=nil)
25573
+ @TagId = tagid
25574
+ @VoteSum = votesum
25575
+ @Status = status
25576
+ @TagName = tagname
25577
+ end
25578
+
25579
+ def deserialize(params)
25580
+ @TagId = params['TagId']
25581
+ @VoteSum = params['VoteSum']
25582
+ @Status = params['Status']
25583
+ @TagName = params['TagName']
25584
+ end
25585
+ end
25586
+
25291
25587
  # 任务告警信息
25292
25588
  class TaskAlarmInfo < TencentCloud::Common::AbstractModel
25293
25589
  # @param TaskId: 任务ID
@@ -25637,6 +25933,93 @@ module TencentCloud
25637
25933
  end
25638
25934
  end
25639
25935
 
25936
+ # 任务集成信息
25937
+ class TaskLineageInfo < TencentCloud::Common::AbstractModel
25938
+ # @param TaskId: 任务 ID
25939
+ # 注意:此字段可能返回 null,表示取不到有效值。
25940
+ # @type TaskId: String
25941
+ # @param TaskName: 任务名称
25942
+ # 注意:此字段可能返回 null,表示取不到有效值。
25943
+ # @type TaskName: String
25944
+ # @param TableName: 表名称
25945
+ # 注意:此字段可能返回 null,表示取不到有效值。
25946
+ # @type TableName: String
25947
+ # @param TableUri: 表 URI,格式:dsn.name
25948
+ # 注意:此字段可能返回 null,表示取不到有效值。
25949
+ # @type TableUri: String
25950
+ # @param Type: 表方向类型
25951
+ # - 0 - table作为源表
25952
+ # - 1 - table作为目标表
25953
+ # 注意:此字段可能返回 null,表示取不到有效值。
25954
+ # @type Type: Integer
25955
+ # @param DataSourceId: 数据源ID
25956
+ # 注意:此字段可能返回 null,表示取不到有效值。
25957
+ # @type DataSourceId: Integer
25958
+ # @param DataSourceType: 数据源类型
25959
+ # 注意:此字段可能返回 null,表示取不到有效值。
25960
+ # @type DataSourceType: String
25961
+ # @param DatabaseName: 数据库名称
25962
+ # 注意:此字段可能返回 null,表示取不到有效值。
25963
+ # @type DatabaseName: String
25964
+ # @param SchemaName: 模型名称
25965
+ # 注意:此字段可能返回 null,表示取不到有效值。
25966
+ # @type SchemaName: String
25967
+
25968
+ attr_accessor :TaskId, :TaskName, :TableName, :TableUri, :Type, :DataSourceId, :DataSourceType, :DatabaseName, :SchemaName
25969
+
25970
+ def initialize(taskid=nil, taskname=nil, tablename=nil, tableuri=nil, type=nil, datasourceid=nil, datasourcetype=nil, databasename=nil, schemaname=nil)
25971
+ @TaskId = taskid
25972
+ @TaskName = taskname
25973
+ @TableName = tablename
25974
+ @TableUri = tableuri
25975
+ @Type = type
25976
+ @DataSourceId = datasourceid
25977
+ @DataSourceType = datasourcetype
25978
+ @DatabaseName = databasename
25979
+ @SchemaName = schemaname
25980
+ end
25981
+
25982
+ def deserialize(params)
25983
+ @TaskId = params['TaskId']
25984
+ @TaskName = params['TaskName']
25985
+ @TableName = params['TableName']
25986
+ @TableUri = params['TableUri']
25987
+ @Type = params['Type']
25988
+ @DataSourceId = params['DataSourceId']
25989
+ @DataSourceType = params['DataSourceType']
25990
+ @DatabaseName = params['DatabaseName']
25991
+ @SchemaName = params['SchemaName']
25992
+ end
25993
+ end
25994
+
25995
+ # 任务血缘信息,包括源表和目标表
25996
+ class TaskLineageInfoPair < TencentCloud::Common::AbstractModel
25997
+ # @param SourceTable: 表血缘-源表
25998
+ # 注意:此字段可能返回 null,表示取不到有效值。
25999
+ # @type SourceTable: :class:`Tencentcloud::Wedata.v20210820.models.TaskLineageInfo`
26000
+ # @param TargetTable: 表血缘-目标表
26001
+ # 注意:此字段可能返回 null,表示取不到有效值。
26002
+ # @type TargetTable: :class:`Tencentcloud::Wedata.v20210820.models.TaskLineageInfo`
26003
+
26004
+ attr_accessor :SourceTable, :TargetTable
26005
+
26006
+ def initialize(sourcetable=nil, targettable=nil)
26007
+ @SourceTable = sourcetable
26008
+ @TargetTable = targettable
26009
+ end
26010
+
26011
+ def deserialize(params)
26012
+ unless params['SourceTable'].nil?
26013
+ @SourceTable = TaskLineageInfo.new
26014
+ @SourceTable.deserialize(params['SourceTable'])
26015
+ end
26016
+ unless params['TargetTable'].nil?
26017
+ @TargetTable = TaskLineageInfo.new
26018
+ @TargetTable.deserialize(params['TargetTable'])
26019
+ end
26020
+ end
26021
+ end
26022
+
25640
26023
  # 任务锁的状态
25641
26024
  class TaskLockStatus < TencentCloud::Common::AbstractModel
25642
26025
  # @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.879
4
+ version: 3.0.881
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-05 00:00:00.000000000 Z
11
+ date: 2024-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common