tencentcloud-sdk-wedata 3.0.1187 → 3.0.1189
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/models.rb +586 -31
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e11b23c18c6aa806e51b817e93c345bad4b248c
|
|
4
|
+
data.tar.gz: 42b1ed64dc06fffd4c20f99d11a5200abe5bd23d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 858f4c4db7020da03049f727bb39423326314333413c924541ec4be82d67c768657a253affbdd7be7299b9a6e174d82a0e3cab98b97391c4bf4b88f9af5939d0
|
|
7
|
+
data.tar.gz: 09a1888e0468f62fbab2756e864c5e7559c42b7c1ca2685ccd1db9e309b4203d11e5c94050f007bd3efc32e6bc2141069e59d1eecd3e8c2d409abc113dd8ff44
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1189
|
data/lib/v20210820/models.rb
CHANGED
|
@@ -642,6 +642,57 @@ module TencentCloud
|
|
|
642
642
|
end
|
|
643
643
|
end
|
|
644
644
|
|
|
645
|
+
# 告警分组信息
|
|
646
|
+
class AlarmGroup < TencentCloud::Common::AbstractModel
|
|
647
|
+
# @param AlarmWays: 告警方式,1.邮件,2.短信,3.微信,4.语音,5.企业微信,6.Http,7.企业微信群;告警方式code列表(默认1.邮件)
|
|
648
|
+
# @type AlarmWays: Array
|
|
649
|
+
# @param AlarmRecipientType: 告警接收人类型:1.指定人员,2.任务责任人,3.值班表(默认1.指定人员)
|
|
650
|
+
# @type AlarmRecipientType: Integer
|
|
651
|
+
# @param AlarmRecipients: 告警接收人
|
|
652
|
+
# @type AlarmRecipients: Array
|
|
653
|
+
# @param AlarmRecipientIds: 告警接收人ID
|
|
654
|
+
# @type AlarmRecipientIds: Array
|
|
655
|
+
# @param AlarmEscalationRecipients: 告警升级人
|
|
656
|
+
# @type AlarmEscalationRecipients: Array
|
|
657
|
+
# @param AlarmEscalationRecipientIds: 告警升级人ID
|
|
658
|
+
# @type AlarmEscalationRecipientIds: Array
|
|
659
|
+
# @param AlarmEscalationInterval: 告警升级间隔
|
|
660
|
+
# @type AlarmEscalationInterval: Integer
|
|
661
|
+
# @param NotificationFatigue: 告警通知疲劳度配置。
|
|
662
|
+
# @type NotificationFatigue: :class:`Tencentcloud::Wedata.v20210820.models.NotificationFatigue`
|
|
663
|
+
# @param AlarmMessageRule: 告警渠道规则 json 格式
|
|
664
|
+
# @type AlarmMessageRule: String
|
|
665
|
+
|
|
666
|
+
attr_accessor :AlarmWays, :AlarmRecipientType, :AlarmRecipients, :AlarmRecipientIds, :AlarmEscalationRecipients, :AlarmEscalationRecipientIds, :AlarmEscalationInterval, :NotificationFatigue, :AlarmMessageRule
|
|
667
|
+
|
|
668
|
+
def initialize(alarmways=nil, alarmrecipienttype=nil, alarmrecipients=nil, alarmrecipientids=nil, alarmescalationrecipients=nil, alarmescalationrecipientids=nil, alarmescalationinterval=nil, notificationfatigue=nil, alarmmessagerule=nil)
|
|
669
|
+
@AlarmWays = alarmways
|
|
670
|
+
@AlarmRecipientType = alarmrecipienttype
|
|
671
|
+
@AlarmRecipients = alarmrecipients
|
|
672
|
+
@AlarmRecipientIds = alarmrecipientids
|
|
673
|
+
@AlarmEscalationRecipients = alarmescalationrecipients
|
|
674
|
+
@AlarmEscalationRecipientIds = alarmescalationrecipientids
|
|
675
|
+
@AlarmEscalationInterval = alarmescalationinterval
|
|
676
|
+
@NotificationFatigue = notificationfatigue
|
|
677
|
+
@AlarmMessageRule = alarmmessagerule
|
|
678
|
+
end
|
|
679
|
+
|
|
680
|
+
def deserialize(params)
|
|
681
|
+
@AlarmWays = params['AlarmWays']
|
|
682
|
+
@AlarmRecipientType = params['AlarmRecipientType']
|
|
683
|
+
@AlarmRecipients = params['AlarmRecipients']
|
|
684
|
+
@AlarmRecipientIds = params['AlarmRecipientIds']
|
|
685
|
+
@AlarmEscalationRecipients = params['AlarmEscalationRecipients']
|
|
686
|
+
@AlarmEscalationRecipientIds = params['AlarmEscalationRecipientIds']
|
|
687
|
+
@AlarmEscalationInterval = params['AlarmEscalationInterval']
|
|
688
|
+
unless params['NotificationFatigue'].nil?
|
|
689
|
+
@NotificationFatigue = NotificationFatigue.new
|
|
690
|
+
@NotificationFatigue.deserialize(params['NotificationFatigue'])
|
|
691
|
+
end
|
|
692
|
+
@AlarmMessageRule = params['AlarmMessageRule']
|
|
693
|
+
end
|
|
694
|
+
end
|
|
695
|
+
|
|
645
696
|
# 告警指标
|
|
646
697
|
class AlarmIndicatorInfo < TencentCloud::Common::AbstractModel
|
|
647
698
|
# @param Id: 指标id
|
|
@@ -768,6 +819,33 @@ module TencentCloud
|
|
|
768
819
|
end
|
|
769
820
|
end
|
|
770
821
|
|
|
822
|
+
# 告警免打扰时间区间
|
|
823
|
+
class AlarmQuietInterval < TencentCloud::Common::AbstractModel
|
|
824
|
+
# @param DaysOfWeek: ISO标准,1表示周一,7表示周日。
|
|
825
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
826
|
+
# @type DaysOfWeek: Array
|
|
827
|
+
# @param StartTime: 开始时间,精度时分秒,格式 HH:mm:ss
|
|
828
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
829
|
+
# @type StartTime: String
|
|
830
|
+
# @param EndTime: 结束时间,精度时分秒,格式 HH:mm:ss
|
|
831
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
832
|
+
# @type EndTime: String
|
|
833
|
+
|
|
834
|
+
attr_accessor :DaysOfWeek, :StartTime, :EndTime
|
|
835
|
+
|
|
836
|
+
def initialize(daysofweek=nil, starttime=nil, endtime=nil)
|
|
837
|
+
@DaysOfWeek = daysofweek
|
|
838
|
+
@StartTime = starttime
|
|
839
|
+
@EndTime = endtime
|
|
840
|
+
end
|
|
841
|
+
|
|
842
|
+
def deserialize(params)
|
|
843
|
+
@DaysOfWeek = params['DaysOfWeek']
|
|
844
|
+
@StartTime = params['StartTime']
|
|
845
|
+
@EndTime = params['EndTime']
|
|
846
|
+
end
|
|
847
|
+
end
|
|
848
|
+
|
|
771
849
|
# 告警接收组
|
|
772
850
|
class AlarmReceiverGroup < TencentCloud::Common::AbstractModel
|
|
773
851
|
# @param AlarmRecipientType: 告警接收人类型
|
|
@@ -1319,6 +1397,33 @@ module TencentCloud
|
|
|
1319
1397
|
end
|
|
1320
1398
|
end
|
|
1321
1399
|
|
|
1400
|
+
# 任务扩展信息
|
|
1401
|
+
class AttributeItemOpsDto < TencentCloud::Common::AbstractModel
|
|
1402
|
+
# @param Key: 属性键
|
|
1403
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1404
|
+
# @type Key: String
|
|
1405
|
+
# @param Value: 属性值
|
|
1406
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1407
|
+
# @type Value: String
|
|
1408
|
+
# @param Description: 属性描述
|
|
1409
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1410
|
+
# @type Description: String
|
|
1411
|
+
|
|
1412
|
+
attr_accessor :Key, :Value, :Description
|
|
1413
|
+
|
|
1414
|
+
def initialize(key=nil, value=nil, description=nil)
|
|
1415
|
+
@Key = key
|
|
1416
|
+
@Value = value
|
|
1417
|
+
@Description = description
|
|
1418
|
+
end
|
|
1419
|
+
|
|
1420
|
+
def deserialize(params)
|
|
1421
|
+
@Key = params['Key']
|
|
1422
|
+
@Value = params['Value']
|
|
1423
|
+
@Description = params['Description']
|
|
1424
|
+
end
|
|
1425
|
+
end
|
|
1426
|
+
|
|
1322
1427
|
# 集群基础信息
|
|
1323
1428
|
class BaseClusterInfo < TencentCloud::Common::AbstractModel
|
|
1324
1429
|
# @param ClusterId: 集群id
|
|
@@ -6963,10 +7068,13 @@ module TencentCloud
|
|
|
6963
7068
|
# @param SchemaName: 模式名称
|
|
6964
7069
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6965
7070
|
# @type SchemaName: String
|
|
7071
|
+
# @param ShowEnableCatalog: 是否展示目录
|
|
7072
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7073
|
+
# @type ShowEnableCatalog: Boolean
|
|
6966
7074
|
|
|
6967
|
-
attr_accessor :DatasourceName, :DatasourceId, :DatabaseName, :DatabaseId, :InstanceId, :DatasourceType, :OriginDatabaseName, :OriginSchemaName, :DsEnvType, :ClusterDeployType, :SchemaName
|
|
7075
|
+
attr_accessor :DatasourceName, :DatasourceId, :DatabaseName, :DatabaseId, :InstanceId, :DatasourceType, :OriginDatabaseName, :OriginSchemaName, :DsEnvType, :ClusterDeployType, :SchemaName, :ShowEnableCatalog
|
|
6968
7076
|
|
|
6969
|
-
def initialize(datasourcename=nil, datasourceid=nil, databasename=nil, databaseid=nil, instanceid=nil, datasourcetype=nil, origindatabasename=nil, originschemaname=nil, dsenvtype=nil, clusterdeploytype=nil, schemaname=nil)
|
|
7077
|
+
def initialize(datasourcename=nil, datasourceid=nil, databasename=nil, databaseid=nil, instanceid=nil, datasourcetype=nil, origindatabasename=nil, originschemaname=nil, dsenvtype=nil, clusterdeploytype=nil, schemaname=nil, showenablecatalog=nil)
|
|
6970
7078
|
@DatasourceName = datasourcename
|
|
6971
7079
|
@DatasourceId = datasourceid
|
|
6972
7080
|
@DatabaseName = databasename
|
|
@@ -6978,6 +7086,7 @@ module TencentCloud
|
|
|
6978
7086
|
@DsEnvType = dsenvtype
|
|
6979
7087
|
@ClusterDeployType = clusterdeploytype
|
|
6980
7088
|
@SchemaName = schemaname
|
|
7089
|
+
@ShowEnableCatalog = showenablecatalog
|
|
6981
7090
|
end
|
|
6982
7091
|
|
|
6983
7092
|
def deserialize(params)
|
|
@@ -6992,6 +7101,7 @@ module TencentCloud
|
|
|
6992
7101
|
@DsEnvType = params['DsEnvType']
|
|
6993
7102
|
@ClusterDeployType = params['ClusterDeployType']
|
|
6994
7103
|
@SchemaName = params['SchemaName']
|
|
7104
|
+
@ShowEnableCatalog = params['ShowEnableCatalog']
|
|
6995
7105
|
end
|
|
6996
7106
|
end
|
|
6997
7107
|
|
|
@@ -14606,17 +14716,39 @@ module TencentCloud
|
|
|
14606
14716
|
# @type RuleGroupExecId: Integer
|
|
14607
14717
|
# @param ProjectId: 项目Id
|
|
14608
14718
|
# @type ProjectId: String
|
|
14719
|
+
# @param Filters: 过滤条件
|
|
14720
|
+
# @type Filters: Array
|
|
14721
|
+
# @param OrderFields: 排序字段
|
|
14722
|
+
# @type OrderFields: Array
|
|
14609
14723
|
|
|
14610
|
-
attr_accessor :RuleGroupExecId, :ProjectId
|
|
14724
|
+
attr_accessor :RuleGroupExecId, :ProjectId, :Filters, :OrderFields
|
|
14611
14725
|
|
|
14612
|
-
def initialize(rulegroupexecid=nil, projectid=nil)
|
|
14726
|
+
def initialize(rulegroupexecid=nil, projectid=nil, filters=nil, orderfields=nil)
|
|
14613
14727
|
@RuleGroupExecId = rulegroupexecid
|
|
14614
14728
|
@ProjectId = projectid
|
|
14729
|
+
@Filters = filters
|
|
14730
|
+
@OrderFields = orderfields
|
|
14615
14731
|
end
|
|
14616
14732
|
|
|
14617
14733
|
def deserialize(params)
|
|
14618
14734
|
@RuleGroupExecId = params['RuleGroupExecId']
|
|
14619
14735
|
@ProjectId = params['ProjectId']
|
|
14736
|
+
unless params['Filters'].nil?
|
|
14737
|
+
@Filters = []
|
|
14738
|
+
params['Filters'].each do |i|
|
|
14739
|
+
filter_tmp = Filter.new
|
|
14740
|
+
filter_tmp.deserialize(i)
|
|
14741
|
+
@Filters << filter_tmp
|
|
14742
|
+
end
|
|
14743
|
+
end
|
|
14744
|
+
unless params['OrderFields'].nil?
|
|
14745
|
+
@OrderFields = []
|
|
14746
|
+
params['OrderFields'].each do |i|
|
|
14747
|
+
orderfield_tmp = OrderField.new
|
|
14748
|
+
orderfield_tmp.deserialize(i)
|
|
14749
|
+
@OrderFields << orderfield_tmp
|
|
14750
|
+
end
|
|
14751
|
+
end
|
|
14620
14752
|
end
|
|
14621
14753
|
end
|
|
14622
14754
|
|
|
@@ -23612,10 +23744,22 @@ module TencentCloud
|
|
|
23612
23744
|
# @type InstanceSchedulerDesc: String
|
|
23613
23745
|
# @param Privileges: 当前用户对该实例的权限列表
|
|
23614
23746
|
# @type Privileges: Array
|
|
23747
|
+
# @param TaskExecutionId: 任务执行id
|
|
23748
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
23749
|
+
# @type TaskExecutionId: String
|
|
23750
|
+
# @param DlcTaskId: dlc taskid
|
|
23751
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
23752
|
+
# @type DlcTaskId: String
|
|
23753
|
+
# @param DlcSparkJobId: dlc jobid
|
|
23754
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
23755
|
+
# @type DlcSparkJobId: String
|
|
23756
|
+
# @param Ext: 扩展属性
|
|
23757
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
23758
|
+
# @type Ext: :class:`Tencentcloud::Wedata.v20210820.models.StrToStrMap`
|
|
23615
23759
|
|
|
23616
|
-
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType, :AllowRedoType, :InstanceCycleType, :InstanceSchedulerDesc, :Privileges
|
|
23760
|
+
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType, :AllowRedoType, :InstanceCycleType, :InstanceSchedulerDesc, :Privileges, :TaskExecutionId, :DlcTaskId, :DlcSparkJobId, :Ext
|
|
23617
23761
|
|
|
23618
|
-
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil, allowredotype=nil, instancecycletype=nil, instanceschedulerdesc=nil, privileges=nil)
|
|
23762
|
+
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil, allowredotype=nil, instancecycletype=nil, instanceschedulerdesc=nil, privileges=nil, taskexecutionid=nil, dlctaskid=nil, dlcsparkjobid=nil, ext=nil)
|
|
23619
23763
|
@TaskId = taskid
|
|
23620
23764
|
@TaskName = taskname
|
|
23621
23765
|
@WorkflowId = workflowid
|
|
@@ -23684,6 +23828,10 @@ module TencentCloud
|
|
|
23684
23828
|
@InstanceCycleType = instancecycletype
|
|
23685
23829
|
@InstanceSchedulerDesc = instanceschedulerdesc
|
|
23686
23830
|
@Privileges = privileges
|
|
23831
|
+
@TaskExecutionId = taskexecutionid
|
|
23832
|
+
@DlcTaskId = dlctaskid
|
|
23833
|
+
@DlcSparkJobId = dlcsparkjobid
|
|
23834
|
+
@Ext = ext
|
|
23687
23835
|
end
|
|
23688
23836
|
|
|
23689
23837
|
def deserialize(params)
|
|
@@ -23775,6 +23923,13 @@ module TencentCloud
|
|
|
23775
23923
|
@InstanceCycleType = params['InstanceCycleType']
|
|
23776
23924
|
@InstanceSchedulerDesc = params['InstanceSchedulerDesc']
|
|
23777
23925
|
@Privileges = params['Privileges']
|
|
23926
|
+
@TaskExecutionId = params['TaskExecutionId']
|
|
23927
|
+
@DlcTaskId = params['DlcTaskId']
|
|
23928
|
+
@DlcSparkJobId = params['DlcSparkJobId']
|
|
23929
|
+
unless params['Ext'].nil?
|
|
23930
|
+
@Ext = StrToStrMap.new
|
|
23931
|
+
@Ext.deserialize(params['Ext'])
|
|
23932
|
+
end
|
|
23778
23933
|
end
|
|
23779
23934
|
end
|
|
23780
23935
|
|
|
@@ -25101,6 +25256,75 @@ module TencentCloud
|
|
|
25101
25256
|
end
|
|
25102
25257
|
end
|
|
25103
25258
|
|
|
25259
|
+
# 资产标签
|
|
25260
|
+
class LabelTag < TencentCloud::Common::AbstractModel
|
|
25261
|
+
# @param TagId: 标签id
|
|
25262
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25263
|
+
# @type TagId: Integer
|
|
25264
|
+
# @param TagName: 标签名
|
|
25265
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25266
|
+
# @type TagName: String
|
|
25267
|
+
# @param TagDesc: 标签描述
|
|
25268
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25269
|
+
# @type TagDesc: String
|
|
25270
|
+
# @param TagValueId: 标签值Id
|
|
25271
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25272
|
+
# @type TagValueId: Integer
|
|
25273
|
+
# @param TagValue: 标签值
|
|
25274
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25275
|
+
# @type TagValue: String
|
|
25276
|
+
# @param TagIsDeleted: 标签是否已删除
|
|
25277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25278
|
+
# @type TagIsDeleted: Boolean
|
|
25279
|
+
# @param TagValueIsDeleted: 标签值是否已删除
|
|
25280
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25281
|
+
# @type TagValueIsDeleted: Boolean
|
|
25282
|
+
|
|
25283
|
+
attr_accessor :TagId, :TagName, :TagDesc, :TagValueId, :TagValue, :TagIsDeleted, :TagValueIsDeleted
|
|
25284
|
+
|
|
25285
|
+
def initialize(tagid=nil, tagname=nil, tagdesc=nil, tagvalueid=nil, tagvalue=nil, tagisdeleted=nil, tagvalueisdeleted=nil)
|
|
25286
|
+
@TagId = tagid
|
|
25287
|
+
@TagName = tagname
|
|
25288
|
+
@TagDesc = tagdesc
|
|
25289
|
+
@TagValueId = tagvalueid
|
|
25290
|
+
@TagValue = tagvalue
|
|
25291
|
+
@TagIsDeleted = tagisdeleted
|
|
25292
|
+
@TagValueIsDeleted = tagvalueisdeleted
|
|
25293
|
+
end
|
|
25294
|
+
|
|
25295
|
+
def deserialize(params)
|
|
25296
|
+
@TagId = params['TagId']
|
|
25297
|
+
@TagName = params['TagName']
|
|
25298
|
+
@TagDesc = params['TagDesc']
|
|
25299
|
+
@TagValueId = params['TagValueId']
|
|
25300
|
+
@TagValue = params['TagValue']
|
|
25301
|
+
@TagIsDeleted = params['TagIsDeleted']
|
|
25302
|
+
@TagValueIsDeleted = params['TagValueIsDeleted']
|
|
25303
|
+
end
|
|
25304
|
+
end
|
|
25305
|
+
|
|
25306
|
+
# 标签值选择列表
|
|
25307
|
+
class LabelValueSelection < TencentCloud::Common::AbstractModel
|
|
25308
|
+
# @param LabelId: 标签ID
|
|
25309
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25310
|
+
# @type LabelId: Integer
|
|
25311
|
+
# @param LabelValue: 标签值ID
|
|
25312
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
25313
|
+
# @type LabelValue: String
|
|
25314
|
+
|
|
25315
|
+
attr_accessor :LabelId, :LabelValue
|
|
25316
|
+
|
|
25317
|
+
def initialize(labelid=nil, labelvalue=nil)
|
|
25318
|
+
@LabelId = labelid
|
|
25319
|
+
@LabelValue = labelvalue
|
|
25320
|
+
end
|
|
25321
|
+
|
|
25322
|
+
def deserialize(params)
|
|
25323
|
+
@LabelId = params['LabelId']
|
|
25324
|
+
@LabelValue = params['LabelValue']
|
|
25325
|
+
end
|
|
25326
|
+
end
|
|
25327
|
+
|
|
25104
25328
|
# 表生命周期相关信息
|
|
25105
25329
|
class LifecycleInfo < TencentCloud::Common::AbstractModel
|
|
25106
25330
|
# @param Lifecycle: 生命周期值
|
|
@@ -26019,6 +26243,48 @@ module TencentCloud
|
|
|
26019
26243
|
end
|
|
26020
26244
|
end
|
|
26021
26245
|
|
|
26246
|
+
# 补录计划告警规则
|
|
26247
|
+
class MakePlanAlarmRule < TencentCloud::Common::AbstractModel
|
|
26248
|
+
# @param AlarmLevel: 告警的级别
|
|
26249
|
+
# 1 -- 普通
|
|
26250
|
+
# 2 -- 重要
|
|
26251
|
+
# 3 -- 紧急
|
|
26252
|
+
# @type AlarmLevel: Integer
|
|
26253
|
+
# @param AlarmTypes: 告警的类型,补录计划支持:
|
|
26254
|
+
# start:启动告警
|
|
26255
|
+
# failure:失败告警
|
|
26256
|
+
# success:成功告警
|
|
26257
|
+
# overtime:超过配置时间告警
|
|
26258
|
+
# @type AlarmTypes: Array
|
|
26259
|
+
# @param ExtInfo: 告警超时时间
|
|
26260
|
+
# @type ExtInfo: String
|
|
26261
|
+
# @param AlarmGroup: 告警接受人 升级人配置信息
|
|
26262
|
+
# @type AlarmGroup: Array
|
|
26263
|
+
|
|
26264
|
+
attr_accessor :AlarmLevel, :AlarmTypes, :ExtInfo, :AlarmGroup
|
|
26265
|
+
|
|
26266
|
+
def initialize(alarmlevel=nil, alarmtypes=nil, extinfo=nil, alarmgroup=nil)
|
|
26267
|
+
@AlarmLevel = alarmlevel
|
|
26268
|
+
@AlarmTypes = alarmtypes
|
|
26269
|
+
@ExtInfo = extinfo
|
|
26270
|
+
@AlarmGroup = alarmgroup
|
|
26271
|
+
end
|
|
26272
|
+
|
|
26273
|
+
def deserialize(params)
|
|
26274
|
+
@AlarmLevel = params['AlarmLevel']
|
|
26275
|
+
@AlarmTypes = params['AlarmTypes']
|
|
26276
|
+
@ExtInfo = params['ExtInfo']
|
|
26277
|
+
unless params['AlarmGroup'].nil?
|
|
26278
|
+
@AlarmGroup = []
|
|
26279
|
+
params['AlarmGroup'].each do |i|
|
|
26280
|
+
alarmgroup_tmp = AlarmGroup.new
|
|
26281
|
+
alarmgroup_tmp.deserialize(i)
|
|
26282
|
+
@AlarmGroup << alarmgroup_tmp
|
|
26283
|
+
end
|
|
26284
|
+
end
|
|
26285
|
+
end
|
|
26286
|
+
end
|
|
26287
|
+
|
|
26022
26288
|
# 补录计划实例集合
|
|
26023
26289
|
class MakePlanInstanceOpsDtoCollection < TencentCloud::Common::AbstractModel
|
|
26024
26290
|
# @param TotalCount: 记录总数
|
|
@@ -26166,10 +26432,26 @@ module TencentCloud
|
|
|
26166
26432
|
# @param TimeType: 补录计划时间范围的类型:
|
|
26167
26433
|
# DATA_TIME:实例数据时间;SCHEDULE_TIME 计划调度时间
|
|
26168
26434
|
# @type TimeType: String
|
|
26435
|
+
# @param StartTime: 开始时间
|
|
26436
|
+
# @type StartTime: String
|
|
26437
|
+
# @param EndTime: 结束时间
|
|
26438
|
+
# @type EndTime: String
|
|
26439
|
+
# @param FailurePercent: 失败百分比
|
|
26440
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26441
|
+
# @type FailurePercent: Integer
|
|
26442
|
+
# @param AlarmRule: 补录计划的告警规则
|
|
26443
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26444
|
+
# @type AlarmRule: :class:`Tencentcloud::Wedata.v20210820.models.MakePlanAlarmRule`
|
|
26445
|
+
# @param RunType: 运行类型
|
|
26446
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26447
|
+
# @type RunType: Integer
|
|
26448
|
+
# @param RunDateTime: 定时运行时间
|
|
26449
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26450
|
+
# @type RunDateTime: String
|
|
26169
26451
|
|
|
26170
|
-
attr_accessor :PlanId, :MakeName, :ProjectId, :CheckParent, :SameSelfDependType, :ParallelNum, :SameCycle, :SourceTaskCycle, :TargetTaskCycle, :TargetTaskAction, :MapParamList, :CreatorId, :Creator, :CreateTime, :TaskIdList, :MakeDatetimeList, :Remark, :SchedulerResourceGroup, :SchedulerResourceGroupName, :IntegrationResourceGroup, :IntegrationResourceGroupName, :TaskCount, :CompletePercent, :SuccessPercent, :CheckParentType, :SameSelfWorkflowDependType, :SelfWorkflowDependency, :MakeDataTimeOrder, :ScheduleTimeZone, :AppParam, :TimeType
|
|
26452
|
+
attr_accessor :PlanId, :MakeName, :ProjectId, :CheckParent, :SameSelfDependType, :ParallelNum, :SameCycle, :SourceTaskCycle, :TargetTaskCycle, :TargetTaskAction, :MapParamList, :CreatorId, :Creator, :CreateTime, :TaskIdList, :MakeDatetimeList, :Remark, :SchedulerResourceGroup, :SchedulerResourceGroupName, :IntegrationResourceGroup, :IntegrationResourceGroupName, :TaskCount, :CompletePercent, :SuccessPercent, :CheckParentType, :SameSelfWorkflowDependType, :SelfWorkflowDependency, :MakeDataTimeOrder, :ScheduleTimeZone, :AppParam, :TimeType, :StartTime, :EndTime, :FailurePercent, :AlarmRule, :RunType, :RunDateTime
|
|
26171
26453
|
|
|
26172
|
-
def initialize(planid=nil, makename=nil, projectid=nil, checkparent=nil, sameselfdependtype=nil, parallelnum=nil, samecycle=nil, sourcetaskcycle=nil, targettaskcycle=nil, targettaskaction=nil, mapparamlist=nil, creatorid=nil, creator=nil, createtime=nil, taskidlist=nil, makedatetimelist=nil, remark=nil, schedulerresourcegroup=nil, schedulerresourcegroupname=nil, integrationresourcegroup=nil, integrationresourcegroupname=nil, taskcount=nil, completepercent=nil, successpercent=nil, checkparenttype=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil, makedatatimeorder=nil, scheduletimezone=nil, appparam=nil, timetype=nil)
|
|
26454
|
+
def initialize(planid=nil, makename=nil, projectid=nil, checkparent=nil, sameselfdependtype=nil, parallelnum=nil, samecycle=nil, sourcetaskcycle=nil, targettaskcycle=nil, targettaskaction=nil, mapparamlist=nil, creatorid=nil, creator=nil, createtime=nil, taskidlist=nil, makedatetimelist=nil, remark=nil, schedulerresourcegroup=nil, schedulerresourcegroupname=nil, integrationresourcegroup=nil, integrationresourcegroupname=nil, taskcount=nil, completepercent=nil, successpercent=nil, checkparenttype=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil, makedatatimeorder=nil, scheduletimezone=nil, appparam=nil, timetype=nil, starttime=nil, endtime=nil, failurepercent=nil, alarmrule=nil, runtype=nil, rundatetime=nil)
|
|
26173
26455
|
@PlanId = planid
|
|
26174
26456
|
@MakeName = makename
|
|
26175
26457
|
@ProjectId = projectid
|
|
@@ -26201,6 +26483,12 @@ module TencentCloud
|
|
|
26201
26483
|
@ScheduleTimeZone = scheduletimezone
|
|
26202
26484
|
@AppParam = appparam
|
|
26203
26485
|
@TimeType = timetype
|
|
26486
|
+
@StartTime = starttime
|
|
26487
|
+
@EndTime = endtime
|
|
26488
|
+
@FailurePercent = failurepercent
|
|
26489
|
+
@AlarmRule = alarmrule
|
|
26490
|
+
@RunType = runtype
|
|
26491
|
+
@RunDateTime = rundatetime
|
|
26204
26492
|
end
|
|
26205
26493
|
|
|
26206
26494
|
def deserialize(params)
|
|
@@ -26249,6 +26537,15 @@ module TencentCloud
|
|
|
26249
26537
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
|
26250
26538
|
@AppParam = params['AppParam']
|
|
26251
26539
|
@TimeType = params['TimeType']
|
|
26540
|
+
@StartTime = params['StartTime']
|
|
26541
|
+
@EndTime = params['EndTime']
|
|
26542
|
+
@FailurePercent = params['FailurePercent']
|
|
26543
|
+
unless params['AlarmRule'].nil?
|
|
26544
|
+
@AlarmRule = MakePlanAlarmRule.new
|
|
26545
|
+
@AlarmRule.deserialize(params['AlarmRule'])
|
|
26546
|
+
end
|
|
26547
|
+
@RunType = params['RunType']
|
|
26548
|
+
@RunDateTime = params['RunDateTime']
|
|
26252
26549
|
end
|
|
26253
26550
|
end
|
|
26254
26551
|
|
|
@@ -26315,18 +26612,22 @@ module TencentCloud
|
|
|
26315
26612
|
# @param SuccessPercent: 补录任务实例成功百分数
|
|
26316
26613
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26317
26614
|
# @type SuccessPercent: Integer
|
|
26318
|
-
# @param InstanceTotalCount: 预计生成的总实例个数,由于是异步生成,-1
|
|
26615
|
+
# @param InstanceTotalCount: 预计生成的总实例个数,由于是异步生成,-1代表实例还未完全生成
|
|
26319
26616
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26320
26617
|
# @type InstanceTotalCount: Integer
|
|
26618
|
+
# @param FailurePercent: 补录任务实例失败百分数
|
|
26619
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26620
|
+
# @type FailurePercent: Integer
|
|
26321
26621
|
|
|
26322
|
-
attr_accessor :TaskBaseInfo, :InstanceCount, :CompletePercent, :SuccessPercent, :InstanceTotalCount
|
|
26622
|
+
attr_accessor :TaskBaseInfo, :InstanceCount, :CompletePercent, :SuccessPercent, :InstanceTotalCount, :FailurePercent
|
|
26323
26623
|
|
|
26324
|
-
def initialize(taskbaseinfo=nil, instancecount=nil, completepercent=nil, successpercent=nil, instancetotalcount=nil)
|
|
26624
|
+
def initialize(taskbaseinfo=nil, instancecount=nil, completepercent=nil, successpercent=nil, instancetotalcount=nil, failurepercent=nil)
|
|
26325
26625
|
@TaskBaseInfo = taskbaseinfo
|
|
26326
26626
|
@InstanceCount = instancecount
|
|
26327
26627
|
@CompletePercent = completepercent
|
|
26328
26628
|
@SuccessPercent = successpercent
|
|
26329
26629
|
@InstanceTotalCount = instancetotalcount
|
|
26630
|
+
@FailurePercent = failurepercent
|
|
26330
26631
|
end
|
|
26331
26632
|
|
|
26332
26633
|
def deserialize(params)
|
|
@@ -26338,6 +26639,7 @@ module TencentCloud
|
|
|
26338
26639
|
@CompletePercent = params['CompletePercent']
|
|
26339
26640
|
@SuccessPercent = params['SuccessPercent']
|
|
26340
26641
|
@InstanceTotalCount = params['InstanceTotalCount']
|
|
26642
|
+
@FailurePercent = params['FailurePercent']
|
|
26341
26643
|
end
|
|
26342
26644
|
end
|
|
26343
26645
|
|
|
@@ -27277,10 +27579,14 @@ module TencentCloud
|
|
|
27277
27579
|
# @type TargetSchemaName: String
|
|
27278
27580
|
# @param TargetTableName: 目标表名
|
|
27279
27581
|
# @type TargetTableName: String
|
|
27582
|
+
# @param CatalogName: 目录
|
|
27583
|
+
# @type CatalogName: String
|
|
27584
|
+
# @param TargetCatalogName: 目标目录
|
|
27585
|
+
# @type TargetCatalogName: String
|
|
27280
27586
|
|
|
27281
|
-
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
|
|
27587
|
+
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, :CatalogName, :TargetCatalogName
|
|
27282
27588
|
|
|
27283
|
-
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)
|
|
27589
|
+
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, catalogname=nil, targetcatalogname=nil)
|
|
27284
27590
|
@ProjectId = projectid
|
|
27285
27591
|
@RuleId = ruleid
|
|
27286
27592
|
@RuleGroupId = rulegroupid
|
|
@@ -27307,6 +27613,8 @@ module TencentCloud
|
|
|
27307
27613
|
@TargetDatabaseName = targetdatabasename
|
|
27308
27614
|
@TargetSchemaName = targetschemaname
|
|
27309
27615
|
@TargetTableName = targettablename
|
|
27616
|
+
@CatalogName = catalogname
|
|
27617
|
+
@TargetCatalogName = targetcatalogname
|
|
27310
27618
|
end
|
|
27311
27619
|
|
|
27312
27620
|
def deserialize(params)
|
|
@@ -27342,6 +27650,8 @@ module TencentCloud
|
|
|
27342
27650
|
@TargetDatabaseName = params['TargetDatabaseName']
|
|
27343
27651
|
@TargetSchemaName = params['TargetSchemaName']
|
|
27344
27652
|
@TargetTableName = params['TargetTableName']
|
|
27653
|
+
@CatalogName = params['CatalogName']
|
|
27654
|
+
@TargetCatalogName = params['TargetCatalogName']
|
|
27345
27655
|
end
|
|
27346
27656
|
end
|
|
27347
27657
|
|
|
@@ -28364,6 +28674,40 @@ module TencentCloud
|
|
|
28364
28674
|
end
|
|
28365
28675
|
end
|
|
28366
28676
|
|
|
28677
|
+
# 任务告警通知疲劳度配置,包括通知次数、间隔、免打扰时间。
|
|
28678
|
+
class NotificationFatigue < TencentCloud::Common::AbstractModel
|
|
28679
|
+
# @param NotifyCount: 通知次数
|
|
28680
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
28681
|
+
# @type NotifyCount: Integer
|
|
28682
|
+
# @param NotifyInterval: 通知间隔,单位分钟。
|
|
28683
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
28684
|
+
# @type NotifyInterval: Integer
|
|
28685
|
+
# @param QuietIntervals: 免打扰时间,例如示例值每周一、周二的00:00到09:00免打扰
|
|
28686
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
28687
|
+
# @type QuietIntervals: Array
|
|
28688
|
+
|
|
28689
|
+
attr_accessor :NotifyCount, :NotifyInterval, :QuietIntervals
|
|
28690
|
+
|
|
28691
|
+
def initialize(notifycount=nil, notifyinterval=nil, quietintervals=nil)
|
|
28692
|
+
@NotifyCount = notifycount
|
|
28693
|
+
@NotifyInterval = notifyinterval
|
|
28694
|
+
@QuietIntervals = quietintervals
|
|
28695
|
+
end
|
|
28696
|
+
|
|
28697
|
+
def deserialize(params)
|
|
28698
|
+
@NotifyCount = params['NotifyCount']
|
|
28699
|
+
@NotifyInterval = params['NotifyInterval']
|
|
28700
|
+
unless params['QuietIntervals'].nil?
|
|
28701
|
+
@QuietIntervals = []
|
|
28702
|
+
params['QuietIntervals'].each do |i|
|
|
28703
|
+
alarmquietinterval_tmp = AlarmQuietInterval.new
|
|
28704
|
+
alarmquietinterval_tmp.deserialize(i)
|
|
28705
|
+
@QuietIntervals << alarmquietinterval_tmp
|
|
28706
|
+
end
|
|
28707
|
+
end
|
|
28708
|
+
end
|
|
28709
|
+
end
|
|
28710
|
+
|
|
28367
28711
|
# 离线实例
|
|
28368
28712
|
class OfflineInstance < TencentCloud::Common::AbstractModel
|
|
28369
28713
|
# @param CreateUin: 创建账号sub uin
|
|
@@ -31954,10 +32298,22 @@ module TencentCloud
|
|
|
31954
32298
|
# @param FailMsg: 失败原因
|
|
31955
32299
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
31956
32300
|
# @type FailMsg: String
|
|
32301
|
+
# @param GroupType: 任务类型
|
|
32302
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32303
|
+
# @type GroupType: String
|
|
32304
|
+
# @param AspectTaskId: 编排任务id
|
|
32305
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32306
|
+
# @type AspectTaskId: String
|
|
32307
|
+
# @param CatalogName: 目录
|
|
32308
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32309
|
+
# @type CatalogName: String
|
|
32310
|
+
# @param TargetCatalogName: 目标目录
|
|
32311
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32312
|
+
# @type TargetCatalogName: String
|
|
31957
32313
|
|
|
31958
|
-
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, :ProjectId, :ProjectName, :UpdateTime, :DatasourceName, :DatabaseName, :FailMsg
|
|
32314
|
+
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, :ProjectId, :ProjectName, :UpdateTime, :DatasourceName, :DatabaseName, :FailMsg, :GroupType, :AspectTaskId, :CatalogName, :TargetCatalogName
|
|
31959
32315
|
|
|
31960
|
-
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, projectid=nil, projectname=nil, updatetime=nil, datasourcename=nil, databasename=nil, failmsg=nil)
|
|
32316
|
+
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, projectid=nil, projectname=nil, updatetime=nil, datasourcename=nil, databasename=nil, failmsg=nil, grouptype=nil, aspecttaskid=nil, catalogname=nil, targetcatalogname=nil)
|
|
31961
32317
|
@RuleId = ruleid
|
|
31962
32318
|
@RuleGroupId = rulegroupid
|
|
31963
32319
|
@TableId = tableid
|
|
@@ -32012,6 +32368,10 @@ module TencentCloud
|
|
|
32012
32368
|
@DatasourceName = datasourcename
|
|
32013
32369
|
@DatabaseName = databasename
|
|
32014
32370
|
@FailMsg = failmsg
|
|
32371
|
+
@GroupType = grouptype
|
|
32372
|
+
@AspectTaskId = aspecttaskid
|
|
32373
|
+
@CatalogName = catalogname
|
|
32374
|
+
@TargetCatalogName = targetcatalogname
|
|
32015
32375
|
end
|
|
32016
32376
|
|
|
32017
32377
|
def deserialize(params)
|
|
@@ -32081,6 +32441,10 @@ module TencentCloud
|
|
|
32081
32441
|
@DatasourceName = params['DatasourceName']
|
|
32082
32442
|
@DatabaseName = params['DatabaseName']
|
|
32083
32443
|
@FailMsg = params['FailMsg']
|
|
32444
|
+
@GroupType = params['GroupType']
|
|
32445
|
+
@AspectTaskId = params['AspectTaskId']
|
|
32446
|
+
@CatalogName = params['CatalogName']
|
|
32447
|
+
@TargetCatalogName = params['TargetCatalogName']
|
|
32084
32448
|
end
|
|
32085
32449
|
end
|
|
32086
32450
|
|
|
@@ -32347,10 +32711,19 @@ module TencentCloud
|
|
|
32347
32711
|
# @param FinishTime: 执行结束时间
|
|
32348
32712
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32349
32713
|
# @type FinishTime: String
|
|
32714
|
+
# @param GroupType: 任务类型
|
|
32715
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32716
|
+
# @type GroupType: String
|
|
32717
|
+
# @param AspectTaskId: 编排任务id
|
|
32718
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32719
|
+
# @type AspectTaskId: String
|
|
32720
|
+
# @param CatalogName: 目录
|
|
32721
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32722
|
+
# @type CatalogName: String
|
|
32350
32723
|
|
|
32351
|
-
attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel, :TriggerCondition, :RuleGroupName, :DatasourceId, :DatasourceName, :DatabaseName, :SchemaName, :TableName, :RuleGroupExist, :DatasourceType, :RuleGroupTableId, :MonitorType, :FinishTime
|
|
32724
|
+
attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel, :TriggerCondition, :RuleGroupName, :DatasourceId, :DatasourceName, :DatabaseName, :SchemaName, :TableName, :RuleGroupExist, :DatasourceType, :RuleGroupTableId, :MonitorType, :FinishTime, :GroupType, :AspectTaskId, :CatalogName
|
|
32352
32725
|
|
|
32353
|
-
def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil, triggercondition=nil, rulegroupname=nil, datasourceid=nil, datasourcename=nil, databasename=nil, schemaname=nil, tablename=nil, rulegroupexist=nil, datasourcetype=nil, rulegrouptableid=nil, monitortype=nil, finishtime=nil)
|
|
32726
|
+
def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil, triggercondition=nil, rulegroupname=nil, datasourceid=nil, datasourcename=nil, databasename=nil, schemaname=nil, tablename=nil, rulegroupexist=nil, datasourcetype=nil, rulegrouptableid=nil, monitortype=nil, finishtime=nil, grouptype=nil, aspecttaskid=nil, catalogname=nil)
|
|
32354
32727
|
@RuleExecId = ruleexecid
|
|
32355
32728
|
@RuleGroupExecId = rulegroupexecid
|
|
32356
32729
|
@RuleGroupId = rulegroupid
|
|
@@ -32384,6 +32757,9 @@ module TencentCloud
|
|
|
32384
32757
|
@RuleGroupTableId = rulegrouptableid
|
|
32385
32758
|
@MonitorType = monitortype
|
|
32386
32759
|
@FinishTime = finishtime
|
|
32760
|
+
@GroupType = grouptype
|
|
32761
|
+
@AspectTaskId = aspecttaskid
|
|
32762
|
+
@CatalogName = catalogname
|
|
32387
32763
|
end
|
|
32388
32764
|
|
|
32389
32765
|
def deserialize(params)
|
|
@@ -32426,6 +32802,9 @@ module TencentCloud
|
|
|
32426
32802
|
@RuleGroupTableId = params['RuleGroupTableId']
|
|
32427
32803
|
@MonitorType = params['MonitorType']
|
|
32428
32804
|
@FinishTime = params['FinishTime']
|
|
32805
|
+
@GroupType = params['GroupType']
|
|
32806
|
+
@AspectTaskId = params['AspectTaskId']
|
|
32807
|
+
@CatalogName = params['CatalogName']
|
|
32429
32808
|
end
|
|
32430
32809
|
end
|
|
32431
32810
|
|
|
@@ -32739,10 +33118,19 @@ module TencentCloud
|
|
|
32739
33118
|
# @param CreateUserName: 监控创建人
|
|
32740
33119
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32741
33120
|
# @type CreateUserName: String
|
|
33121
|
+
# @param GroupType: 任务类型
|
|
33122
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33123
|
+
# @type GroupType: String
|
|
33124
|
+
# @param AspectTaskId: 任务id
|
|
33125
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33126
|
+
# @type AspectTaskId: String
|
|
33127
|
+
# @param CatalogName: catalog名称
|
|
33128
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33129
|
+
# @type CatalogName: String
|
|
32742
33130
|
|
|
32743
|
-
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, :Name, :ExecDetail, :PipelineTaskCount, :EnableRuleCount, :Description, :CreateUserName
|
|
33131
|
+
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, :Name, :ExecDetail, :PipelineTaskCount, :EnableRuleCount, :Description, :CreateUserName, :GroupType, :AspectTaskId, :CatalogName
|
|
32744
33132
|
|
|
32745
|
-
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, name=nil, execdetail=nil, pipelinetaskcount=nil, enablerulecount=nil, description=nil, createusername=nil)
|
|
33133
|
+
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, name=nil, execdetail=nil, pipelinetaskcount=nil, enablerulecount=nil, description=nil, createusername=nil, grouptype=nil, aspecttaskid=nil, catalogname=nil)
|
|
32746
33134
|
@RuleGroupId = rulegroupid
|
|
32747
33135
|
@DatasourceId = datasourceid
|
|
32748
33136
|
@DatasourceName = datasourcename
|
|
@@ -32773,6 +33161,9 @@ module TencentCloud
|
|
|
32773
33161
|
@EnableRuleCount = enablerulecount
|
|
32774
33162
|
@Description = description
|
|
32775
33163
|
@CreateUserName = createusername
|
|
33164
|
+
@GroupType = grouptype
|
|
33165
|
+
@AspectTaskId = aspecttaskid
|
|
33166
|
+
@CatalogName = catalogname
|
|
32776
33167
|
end
|
|
32777
33168
|
|
|
32778
33169
|
def deserialize(params)
|
|
@@ -32812,12 +33203,23 @@ module TencentCloud
|
|
|
32812
33203
|
@EnableRuleCount = params['EnableRuleCount']
|
|
32813
33204
|
@Description = params['Description']
|
|
32814
33205
|
@CreateUserName = params['CreateUserName']
|
|
33206
|
+
@GroupType = params['GroupType']
|
|
33207
|
+
@AspectTaskId = params['AspectTaskId']
|
|
33208
|
+
@CatalogName = params['CatalogName']
|
|
32815
33209
|
end
|
|
32816
33210
|
end
|
|
32817
33211
|
|
|
32818
33212
|
# 任务配置
|
|
32819
33213
|
class RuleGroupConfig < TencentCloud::Common::AbstractModel
|
|
32820
|
-
# @param
|
|
33214
|
+
# @param AnalysisType: 分析类型,可选值:
|
|
33215
|
+
# INFERENCE-推理表
|
|
33216
|
+
# TIME_SERIES-时序表
|
|
33217
|
+
# SNAPSHOT-快照表
|
|
33218
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33219
|
+
# @type AnalysisType: String
|
|
33220
|
+
# @param ModelMonitorType: 模型检测类型,分析类型为推理表(INFERENCE)时必填,可选值:
|
|
33221
|
+
# CLAASSIFICATION-分类
|
|
33222
|
+
# REGRESSION-回归
|
|
32821
33223
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32822
33224
|
# @type ModelMonitorType: String
|
|
32823
33225
|
# @param PredictColumn: 预测列
|
|
@@ -32868,13 +33270,20 @@ module TencentCloud
|
|
|
32868
33270
|
# @param PositiveValue: 正类值
|
|
32869
33271
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32870
33272
|
# @type PositiveValue: String
|
|
32871
|
-
# @param FeatureColumn:
|
|
33273
|
+
# @param FeatureColumn: 数值型特征列
|
|
32872
33274
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32873
33275
|
# @type FeatureColumn: String
|
|
33276
|
+
# @param CategoricalFeatureColumn: 分类型特征列
|
|
33277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33278
|
+
# @type CategoricalFeatureColumn: String
|
|
33279
|
+
# @param BaseCatalog: 目录
|
|
33280
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33281
|
+
# @type BaseCatalog: String
|
|
32874
33282
|
|
|
32875
|
-
attr_accessor :ModelMonitorType, :PredictColumn, :PredictColumnType, :LabelColumn, :LabelColumnType, :ModelIdColumn, :ModelIdColumnType, :TimestampColumn, :TimestampColumnType, :Granularity, :GranularityType, :BaseTable, :BaseDb, :ComparisonColumn, :ComparisonColumnType, :ProtectionValue, :PositiveValue, :FeatureColumn
|
|
33283
|
+
attr_accessor :AnalysisType, :ModelMonitorType, :PredictColumn, :PredictColumnType, :LabelColumn, :LabelColumnType, :ModelIdColumn, :ModelIdColumnType, :TimestampColumn, :TimestampColumnType, :Granularity, :GranularityType, :BaseTable, :BaseDb, :ComparisonColumn, :ComparisonColumnType, :ProtectionValue, :PositiveValue, :FeatureColumn, :CategoricalFeatureColumn, :BaseCatalog
|
|
32876
33284
|
|
|
32877
|
-
def initialize(modelmonitortype=nil, predictcolumn=nil, predictcolumntype=nil, labelcolumn=nil, labelcolumntype=nil, modelidcolumn=nil, modelidcolumntype=nil, timestampcolumn=nil, timestampcolumntype=nil, granularity=nil, granularitytype=nil, basetable=nil, basedb=nil, comparisoncolumn=nil, comparisoncolumntype=nil, protectionvalue=nil, positivevalue=nil, featurecolumn=nil)
|
|
33285
|
+
def initialize(analysistype=nil, modelmonitortype=nil, predictcolumn=nil, predictcolumntype=nil, labelcolumn=nil, labelcolumntype=nil, modelidcolumn=nil, modelidcolumntype=nil, timestampcolumn=nil, timestampcolumntype=nil, granularity=nil, granularitytype=nil, basetable=nil, basedb=nil, comparisoncolumn=nil, comparisoncolumntype=nil, protectionvalue=nil, positivevalue=nil, featurecolumn=nil, categoricalfeaturecolumn=nil, basecatalog=nil)
|
|
33286
|
+
@AnalysisType = analysistype
|
|
32878
33287
|
@ModelMonitorType = modelmonitortype
|
|
32879
33288
|
@PredictColumn = predictcolumn
|
|
32880
33289
|
@PredictColumnType = predictcolumntype
|
|
@@ -32893,9 +33302,12 @@ module TencentCloud
|
|
|
32893
33302
|
@ProtectionValue = protectionvalue
|
|
32894
33303
|
@PositiveValue = positivevalue
|
|
32895
33304
|
@FeatureColumn = featurecolumn
|
|
33305
|
+
@CategoricalFeatureColumn = categoricalfeaturecolumn
|
|
33306
|
+
@BaseCatalog = basecatalog
|
|
32896
33307
|
end
|
|
32897
33308
|
|
|
32898
33309
|
def deserialize(params)
|
|
33310
|
+
@AnalysisType = params['AnalysisType']
|
|
32899
33311
|
@ModelMonitorType = params['ModelMonitorType']
|
|
32900
33312
|
@PredictColumn = params['PredictColumn']
|
|
32901
33313
|
@PredictColumnType = params['PredictColumnType']
|
|
@@ -32914,6 +33326,8 @@ module TencentCloud
|
|
|
32914
33326
|
@ProtectionValue = params['ProtectionValue']
|
|
32915
33327
|
@PositiveValue = params['PositiveValue']
|
|
32916
33328
|
@FeatureColumn = params['FeatureColumn']
|
|
33329
|
+
@CategoricalFeatureColumn = params['CategoricalFeatureColumn']
|
|
33330
|
+
@BaseCatalog = params['BaseCatalog']
|
|
32917
33331
|
end
|
|
32918
33332
|
end
|
|
32919
33333
|
|
|
@@ -33188,10 +33602,13 @@ module TencentCloud
|
|
|
33188
33602
|
# @param EngineParam: 引擎参数
|
|
33189
33603
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33190
33604
|
# @type EngineParam: String
|
|
33605
|
+
# @param CatalogName: catalog名称
|
|
33606
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33607
|
+
# @type CatalogName: String
|
|
33191
33608
|
|
|
33192
|
-
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description, :ScheduleTimeZone, :GroupConfig, :EngineParam
|
|
33609
|
+
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description, :ScheduleTimeZone, :GroupConfig, :EngineParam, :CatalogName
|
|
33193
33610
|
|
|
33194
|
-
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil, scheduletimezone=nil, groupconfig=nil, engineparam=nil)
|
|
33611
|
+
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil, scheduletimezone=nil, groupconfig=nil, engineparam=nil, catalogname=nil)
|
|
33195
33612
|
@RuleGroupId = rulegroupid
|
|
33196
33613
|
@MonitorType = monitortype
|
|
33197
33614
|
@ExecQueue = execqueue
|
|
@@ -33219,6 +33636,7 @@ module TencentCloud
|
|
|
33219
33636
|
@ScheduleTimeZone = scheduletimezone
|
|
33220
33637
|
@GroupConfig = groupconfig
|
|
33221
33638
|
@EngineParam = engineparam
|
|
33639
|
+
@CatalogName = catalogname
|
|
33222
33640
|
end
|
|
33223
33641
|
|
|
33224
33642
|
def deserialize(params)
|
|
@@ -33259,6 +33677,7 @@ module TencentCloud
|
|
|
33259
33677
|
@GroupConfig.deserialize(params['GroupConfig'])
|
|
33260
33678
|
end
|
|
33261
33679
|
@EngineParam = params['EngineParam']
|
|
33680
|
+
@CatalogName = params['CatalogName']
|
|
33262
33681
|
end
|
|
33263
33682
|
end
|
|
33264
33683
|
|
|
@@ -36757,10 +37176,43 @@ module TencentCloud
|
|
|
36757
37176
|
# @param ColumnCount: 字段数量
|
|
36758
37177
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
36759
37178
|
# @type ColumnCount: Integer
|
|
37179
|
+
# @param TablePermissionFlag: 权限标记
|
|
37180
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37181
|
+
# @type TablePermissionFlag: Boolean
|
|
37182
|
+
# @param AssetStatus: 资产状态
|
|
37183
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37184
|
+
# @type AssetStatus: Integer
|
|
37185
|
+
# @param AssetLevel: 资产等级
|
|
37186
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37187
|
+
# @type AssetLevel: Integer
|
|
37188
|
+
# @param AssetCode: 资产code
|
|
37189
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37190
|
+
# @type AssetCode: String
|
|
37191
|
+
# @param AssetAuditStatus: 审批状态
|
|
37192
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37193
|
+
# @type AssetAuditStatus: String
|
|
37194
|
+
# @param PublishedTime: 发布时间
|
|
37195
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37196
|
+
# @type PublishedTime: String
|
|
37197
|
+
# @param TagInfoList: 标签列表
|
|
37198
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37199
|
+
# @type TagInfoList: Array
|
|
37200
|
+
# @param LabelValueSelections: 标签值选择列表
|
|
37201
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37202
|
+
# @type LabelValueSelections: Array
|
|
37203
|
+
# @param Namespace: 命名空间 - 对应TC-Catalog
|
|
37204
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37205
|
+
# @type Namespace: String
|
|
37206
|
+
# @param MetaFrom: Catalog来源
|
|
37207
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37208
|
+
# @type MetaFrom: String
|
|
37209
|
+
# @param EngineCreator: 引擎侧创建者
|
|
37210
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37211
|
+
# @type EngineCreator: String
|
|
36760
37212
|
|
|
36761
|
-
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, :CollectDatasourceList, :CollectJobId, :CollectJobName, :Urn, :HasBizPermission, :OwnerByEngine, :ErrorTips, :IfSupportCreateAndDDL, :DataFromType, :EngineOwner, :DataLayerUuid, :DataLayerName, :ColumnCount
|
|
37213
|
+
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, :CollectDatasourceList, :CollectJobId, :CollectJobName, :Urn, :HasBizPermission, :OwnerByEngine, :ErrorTips, :IfSupportCreateAndDDL, :DataFromType, :EngineOwner, :DataLayerUuid, :DataLayerName, :ColumnCount, :TablePermissionFlag, :AssetStatus, :AssetLevel, :AssetCode, :AssetAuditStatus, :PublishedTime, :TagInfoList, :LabelValueSelections, :Namespace, :MetaFrom, :EngineCreator
|
|
36762
37214
|
|
|
36763
|
-
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, collectdatasourcelist=nil, collectjobid=nil, collectjobname=nil, urn=nil, hasbizpermission=nil, ownerbyengine=nil, errortips=nil, ifsupportcreateandddl=nil, datafromtype=nil, engineowner=nil, datalayeruuid=nil, datalayername=nil, columncount=nil)
|
|
37215
|
+
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, collectdatasourcelist=nil, collectjobid=nil, collectjobname=nil, urn=nil, hasbizpermission=nil, ownerbyengine=nil, errortips=nil, ifsupportcreateandddl=nil, datafromtype=nil, engineowner=nil, datalayeruuid=nil, datalayername=nil, columncount=nil, tablepermissionflag=nil, assetstatus=nil, assetlevel=nil, assetcode=nil, assetauditstatus=nil, publishedtime=nil, taginfolist=nil, labelvalueselections=nil, namespace=nil, metafrom=nil, enginecreator=nil)
|
|
36764
37216
|
@TableId = tableid
|
|
36765
37217
|
@TableName = tablename
|
|
36766
37218
|
@TableOwnerName = tableownername
|
|
@@ -36830,6 +37282,17 @@ module TencentCloud
|
|
|
36830
37282
|
@DataLayerUuid = datalayeruuid
|
|
36831
37283
|
@DataLayerName = datalayername
|
|
36832
37284
|
@ColumnCount = columncount
|
|
37285
|
+
@TablePermissionFlag = tablepermissionflag
|
|
37286
|
+
@AssetStatus = assetstatus
|
|
37287
|
+
@AssetLevel = assetlevel
|
|
37288
|
+
@AssetCode = assetcode
|
|
37289
|
+
@AssetAuditStatus = assetauditstatus
|
|
37290
|
+
@PublishedTime = publishedtime
|
|
37291
|
+
@TagInfoList = taginfolist
|
|
37292
|
+
@LabelValueSelections = labelvalueselections
|
|
37293
|
+
@Namespace = namespace
|
|
37294
|
+
@MetaFrom = metafrom
|
|
37295
|
+
@EngineCreator = enginecreator
|
|
36833
37296
|
end
|
|
36834
37297
|
|
|
36835
37298
|
def deserialize(params)
|
|
@@ -36932,6 +37395,31 @@ module TencentCloud
|
|
|
36932
37395
|
@DataLayerUuid = params['DataLayerUuid']
|
|
36933
37396
|
@DataLayerName = params['DataLayerName']
|
|
36934
37397
|
@ColumnCount = params['ColumnCount']
|
|
37398
|
+
@TablePermissionFlag = params['TablePermissionFlag']
|
|
37399
|
+
@AssetStatus = params['AssetStatus']
|
|
37400
|
+
@AssetLevel = params['AssetLevel']
|
|
37401
|
+
@AssetCode = params['AssetCode']
|
|
37402
|
+
@AssetAuditStatus = params['AssetAuditStatus']
|
|
37403
|
+
@PublishedTime = params['PublishedTime']
|
|
37404
|
+
unless params['TagInfoList'].nil?
|
|
37405
|
+
@TagInfoList = []
|
|
37406
|
+
params['TagInfoList'].each do |i|
|
|
37407
|
+
labeltag_tmp = LabelTag.new
|
|
37408
|
+
labeltag_tmp.deserialize(i)
|
|
37409
|
+
@TagInfoList << labeltag_tmp
|
|
37410
|
+
end
|
|
37411
|
+
end
|
|
37412
|
+
unless params['LabelValueSelections'].nil?
|
|
37413
|
+
@LabelValueSelections = []
|
|
37414
|
+
params['LabelValueSelections'].each do |i|
|
|
37415
|
+
labelvalueselection_tmp = LabelValueSelection.new
|
|
37416
|
+
labelvalueselection_tmp.deserialize(i)
|
|
37417
|
+
@LabelValueSelections << labelvalueselection_tmp
|
|
37418
|
+
end
|
|
37419
|
+
end
|
|
37420
|
+
@Namespace = params['Namespace']
|
|
37421
|
+
@MetaFrom = params['MetaFrom']
|
|
37422
|
+
@EngineCreator = params['EngineCreator']
|
|
36935
37423
|
end
|
|
36936
37424
|
end
|
|
36937
37425
|
|
|
@@ -37117,10 +37605,13 @@ module TencentCloud
|
|
|
37117
37605
|
# @param RuleGroupTableId: 规则表
|
|
37118
37606
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37119
37607
|
# @type RuleGroupTableId: String
|
|
37608
|
+
# @param CatalogName: catalog名称
|
|
37609
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37610
|
+
# @type CatalogName: String
|
|
37120
37611
|
|
|
37121
|
-
attr_accessor :DatabaseId, :DatabaseName, :TableId, :TableName, :OwnerUserId, :OwnerUserName, :DatabaseScore, :TableScore, :LastPeriodRatio, :DsEnvType, :SchemaName, :RuleGroupTableId
|
|
37612
|
+
attr_accessor :DatabaseId, :DatabaseName, :TableId, :TableName, :OwnerUserId, :OwnerUserName, :DatabaseScore, :TableScore, :LastPeriodRatio, :DsEnvType, :SchemaName, :RuleGroupTableId, :CatalogName
|
|
37122
37613
|
|
|
37123
|
-
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)
|
|
37614
|
+
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, catalogname=nil)
|
|
37124
37615
|
@DatabaseId = databaseid
|
|
37125
37616
|
@DatabaseName = databasename
|
|
37126
37617
|
@TableId = tableid
|
|
@@ -37133,6 +37624,7 @@ module TencentCloud
|
|
|
37133
37624
|
@DsEnvType = dsenvtype
|
|
37134
37625
|
@SchemaName = schemaname
|
|
37135
37626
|
@RuleGroupTableId = rulegrouptableid
|
|
37627
|
+
@CatalogName = catalogname
|
|
37136
37628
|
end
|
|
37137
37629
|
|
|
37138
37630
|
def deserialize(params)
|
|
@@ -37148,6 +37640,7 @@ module TencentCloud
|
|
|
37148
37640
|
@DsEnvType = params['DsEnvType']
|
|
37149
37641
|
@SchemaName = params['SchemaName']
|
|
37150
37642
|
@RuleGroupTableId = params['RuleGroupTableId']
|
|
37643
|
+
@CatalogName = params['CatalogName']
|
|
37151
37644
|
end
|
|
37152
37645
|
end
|
|
37153
37646
|
|
|
@@ -38472,6 +38965,55 @@ module TencentCloud
|
|
|
38472
38965
|
end
|
|
38473
38966
|
end
|
|
38474
38967
|
|
|
38968
|
+
# 任务扩展信息
|
|
38969
|
+
class TaskExtOpsDto < TencentCloud::Common::AbstractModel
|
|
38970
|
+
# @param TaskId: 任务ID
|
|
38971
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
38972
|
+
# @type TaskId: String
|
|
38973
|
+
# @param Properties: 任务属性(key-value 形式)
|
|
38974
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
38975
|
+
# @type Properties: :class:`Tencentcloud::Wedata.v20210820.models.StrToStrMap`
|
|
38976
|
+
# @param DryRunExtAttributes: 任务试运行-扩展业务属性
|
|
38977
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
38978
|
+
# @type DryRunExtAttributes: Array
|
|
38979
|
+
# @param DryRunParameter: 任务试运行动态传参
|
|
38980
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
38981
|
+
# @type DryRunParameter: Array
|
|
38982
|
+
|
|
38983
|
+
attr_accessor :TaskId, :Properties, :DryRunExtAttributes, :DryRunParameter
|
|
38984
|
+
|
|
38985
|
+
def initialize(taskid=nil, properties=nil, dryrunextattributes=nil, dryrunparameter=nil)
|
|
38986
|
+
@TaskId = taskid
|
|
38987
|
+
@Properties = properties
|
|
38988
|
+
@DryRunExtAttributes = dryrunextattributes
|
|
38989
|
+
@DryRunParameter = dryrunparameter
|
|
38990
|
+
end
|
|
38991
|
+
|
|
38992
|
+
def deserialize(params)
|
|
38993
|
+
@TaskId = params['TaskId']
|
|
38994
|
+
unless params['Properties'].nil?
|
|
38995
|
+
@Properties = StrToStrMap.new
|
|
38996
|
+
@Properties.deserialize(params['Properties'])
|
|
38997
|
+
end
|
|
38998
|
+
unless params['DryRunExtAttributes'].nil?
|
|
38999
|
+
@DryRunExtAttributes = []
|
|
39000
|
+
params['DryRunExtAttributes'].each do |i|
|
|
39001
|
+
attributeitemopsdto_tmp = AttributeItemOpsDto.new
|
|
39002
|
+
attributeitemopsdto_tmp.deserialize(i)
|
|
39003
|
+
@DryRunExtAttributes << attributeitemopsdto_tmp
|
|
39004
|
+
end
|
|
39005
|
+
end
|
|
39006
|
+
unless params['DryRunParameter'].nil?
|
|
39007
|
+
@DryRunParameter = []
|
|
39008
|
+
params['DryRunParameter'].each do |i|
|
|
39009
|
+
attributeitemopsdto_tmp = AttributeItemOpsDto.new
|
|
39010
|
+
attributeitemopsdto_tmp.deserialize(i)
|
|
39011
|
+
@DryRunParameter << attributeitemopsdto_tmp
|
|
39012
|
+
end
|
|
39013
|
+
end
|
|
39014
|
+
end
|
|
39015
|
+
end
|
|
39016
|
+
|
|
38475
39017
|
# 任务参数
|
|
38476
39018
|
class TaskFormParams < TencentCloud::Common::AbstractModel
|
|
38477
39019
|
# @param TaskId: 任务ID
|
|
@@ -39364,10 +39906,16 @@ module TencentCloud
|
|
|
39364
39906
|
# @param BundleInfo: bundle客户端信息
|
|
39365
39907
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
39366
39908
|
# @type BundleInfo: String
|
|
39909
|
+
# @param WorkflowType: 工作流类型
|
|
39910
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
39911
|
+
# @type WorkflowType: String
|
|
39912
|
+
# @param TaskExtDTO: 任务扩展信息
|
|
39913
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
39914
|
+
# @type TaskExtDTO: :class:`Tencentcloud::Wedata.v20210820.models.TaskExtOpsDto`
|
|
39367
39915
|
|
|
39368
|
-
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag, :NewParentTaskInfos, :SelfWorkFlowDependType, :AllowRedoType, :OwnerId, :Privileges, :BundleId, :BundleInfo
|
|
39916
|
+
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag, :NewParentTaskInfos, :SelfWorkFlowDependType, :AllowRedoType, :OwnerId, :Privileges, :BundleId, :BundleInfo, :WorkflowType, :TaskExtDTO
|
|
39369
39917
|
|
|
39370
|
-
def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil, newparenttaskinfos=nil, selfworkflowdependtype=nil, allowredotype=nil, ownerid=nil, privileges=nil, bundleid=nil, bundleinfo=nil)
|
|
39918
|
+
def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil, newparenttaskinfos=nil, selfworkflowdependtype=nil, allowredotype=nil, ownerid=nil, privileges=nil, bundleid=nil, bundleinfo=nil, workflowtype=nil, taskextdto=nil)
|
|
39371
39919
|
@TaskId = taskid
|
|
39372
39920
|
@VirtualTaskId = virtualtaskid
|
|
39373
39921
|
@VirtualFlag = virtualflag
|
|
@@ -39463,6 +40011,8 @@ module TencentCloud
|
|
|
39463
40011
|
@Privileges = privileges
|
|
39464
40012
|
@BundleId = bundleid
|
|
39465
40013
|
@BundleInfo = bundleinfo
|
|
40014
|
+
@WorkflowType = workflowtype
|
|
40015
|
+
@TaskExtDTO = taskextdto
|
|
39466
40016
|
end
|
|
39467
40017
|
|
|
39468
40018
|
def deserialize(params)
|
|
@@ -39593,6 +40143,11 @@ module TencentCloud
|
|
|
39593
40143
|
@Privileges = params['Privileges']
|
|
39594
40144
|
@BundleId = params['BundleId']
|
|
39595
40145
|
@BundleInfo = params['BundleInfo']
|
|
40146
|
+
@WorkflowType = params['WorkflowType']
|
|
40147
|
+
unless params['TaskExtDTO'].nil?
|
|
40148
|
+
@TaskExtDTO = TaskExtOpsDto.new
|
|
40149
|
+
@TaskExtDTO.deserialize(params['TaskExtDTO'])
|
|
40150
|
+
end
|
|
39596
40151
|
end
|
|
39597
40152
|
end
|
|
39598
40153
|
|
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.
|
|
4
|
+
version: 3.0.1189
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|