tencentcloud-sdk-wedata 3.0.1185 → 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 +688 -45
- data/lib/v20250806/models.rb +185 -77
- metadata +2 -2
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: 告警接收人类型
|
|
@@ -923,11 +1001,18 @@ module TencentCloud
|
|
|
923
1001
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
924
1002
|
# @type ApplyId: String
|
|
925
1003
|
# @param Metadata: 扩展字段
|
|
1004
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
926
1005
|
# @type Metadata: String
|
|
1006
|
+
# @param CreateTimestamp: 创建时间
|
|
1007
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1008
|
+
# @type CreateTimestamp: Integer
|
|
1009
|
+
# @param ApproveTimestamp: 审批时间
|
|
1010
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1011
|
+
# @type ApproveTimestamp: Integer
|
|
927
1012
|
|
|
928
|
-
attr_accessor :ApplicantId, :ApplicantName, :Remark, :ApproveClassification, :ApproveId, :ApproveType, :Reason, :CreateTime, :ApproveTime, :ApproveClassificationName, :Status, :ApproveTypeName, :ErrorMessage, :ApplyName, :ApproverId, :ApproverName, :ApproveProjectName, :ApplyId, :Metadata
|
|
1013
|
+
attr_accessor :ApplicantId, :ApplicantName, :Remark, :ApproveClassification, :ApproveId, :ApproveType, :Reason, :CreateTime, :ApproveTime, :ApproveClassificationName, :Status, :ApproveTypeName, :ErrorMessage, :ApplyName, :ApproverId, :ApproverName, :ApproveProjectName, :ApplyId, :Metadata, :CreateTimestamp, :ApproveTimestamp
|
|
929
1014
|
|
|
930
|
-
def initialize(applicantid=nil, applicantname=nil, remark=nil, approveclassification=nil, approveid=nil, approvetype=nil, reason=nil, createtime=nil, approvetime=nil, approveclassificationname=nil, status=nil, approvetypename=nil, errormessage=nil, applyname=nil, approverid=nil, approvername=nil, approveprojectname=nil, applyid=nil, metadata=nil)
|
|
1015
|
+
def initialize(applicantid=nil, applicantname=nil, remark=nil, approveclassification=nil, approveid=nil, approvetype=nil, reason=nil, createtime=nil, approvetime=nil, approveclassificationname=nil, status=nil, approvetypename=nil, errormessage=nil, applyname=nil, approverid=nil, approvername=nil, approveprojectname=nil, applyid=nil, metadata=nil, createtimestamp=nil, approvetimestamp=nil)
|
|
931
1016
|
@ApplicantId = applicantid
|
|
932
1017
|
@ApplicantName = applicantname
|
|
933
1018
|
@Remark = remark
|
|
@@ -947,6 +1032,8 @@ module TencentCloud
|
|
|
947
1032
|
@ApproveProjectName = approveprojectname
|
|
948
1033
|
@ApplyId = applyid
|
|
949
1034
|
@Metadata = metadata
|
|
1035
|
+
@CreateTimestamp = createtimestamp
|
|
1036
|
+
@ApproveTimestamp = approvetimestamp
|
|
950
1037
|
end
|
|
951
1038
|
|
|
952
1039
|
def deserialize(params)
|
|
@@ -969,6 +1056,8 @@ module TencentCloud
|
|
|
969
1056
|
@ApproveProjectName = params['ApproveProjectName']
|
|
970
1057
|
@ApplyId = params['ApplyId']
|
|
971
1058
|
@Metadata = params['Metadata']
|
|
1059
|
+
@CreateTimestamp = params['CreateTimestamp']
|
|
1060
|
+
@ApproveTimestamp = params['ApproveTimestamp']
|
|
972
1061
|
end
|
|
973
1062
|
end
|
|
974
1063
|
|
|
@@ -1308,6 +1397,33 @@ module TencentCloud
|
|
|
1308
1397
|
end
|
|
1309
1398
|
end
|
|
1310
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
|
+
|
|
1311
1427
|
# 集群基础信息
|
|
1312
1428
|
class BaseClusterInfo < TencentCloud::Common::AbstractModel
|
|
1313
1429
|
# @param ClusterId: 集群id
|
|
@@ -1361,10 +1477,16 @@ module TencentCloud
|
|
|
1361
1477
|
# @param CdwUserName: cdw账号(用于展示)
|
|
1362
1478
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1363
1479
|
# @type CdwUserName: String
|
|
1480
|
+
# @param CreateTimestamp: 创建时间
|
|
1481
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1482
|
+
# @type CreateTimestamp: Integer
|
|
1483
|
+
# @param UpdateTimestamp: 修改时间
|
|
1484
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1485
|
+
# @type UpdateTimestamp: Integer
|
|
1364
1486
|
|
|
1365
|
-
attr_accessor :ClusterId, :ClusterType, :ClusterName, :RegionCn, :RegionEn, :RegionArea, :Used, :Status, :StatusInfo, :StorageType, :ComputeType, :ClusterResource, :ChargeType, :CreateTime, :ExtraConf, :RangerUserName, :CdwUserName
|
|
1487
|
+
attr_accessor :ClusterId, :ClusterType, :ClusterName, :RegionCn, :RegionEn, :RegionArea, :Used, :Status, :StatusInfo, :StorageType, :ComputeType, :ClusterResource, :ChargeType, :CreateTime, :ExtraConf, :RangerUserName, :CdwUserName, :CreateTimestamp, :UpdateTimestamp
|
|
1366
1488
|
|
|
1367
|
-
def initialize(clusterid=nil, clustertype=nil, clustername=nil, regioncn=nil, regionen=nil, regionarea=nil, used=nil, status=nil, statusinfo=nil, storagetype=nil, computetype=nil, clusterresource=nil, chargetype=nil, createtime=nil, extraconf=nil, rangerusername=nil, cdwusername=nil)
|
|
1489
|
+
def initialize(clusterid=nil, clustertype=nil, clustername=nil, regioncn=nil, regionen=nil, regionarea=nil, used=nil, status=nil, statusinfo=nil, storagetype=nil, computetype=nil, clusterresource=nil, chargetype=nil, createtime=nil, extraconf=nil, rangerusername=nil, cdwusername=nil, createtimestamp=nil, updatetimestamp=nil)
|
|
1368
1490
|
@ClusterId = clusterid
|
|
1369
1491
|
@ClusterType = clustertype
|
|
1370
1492
|
@ClusterName = clustername
|
|
@@ -1382,6 +1504,8 @@ module TencentCloud
|
|
|
1382
1504
|
@ExtraConf = extraconf
|
|
1383
1505
|
@RangerUserName = rangerusername
|
|
1384
1506
|
@CdwUserName = cdwusername
|
|
1507
|
+
@CreateTimestamp = createtimestamp
|
|
1508
|
+
@UpdateTimestamp = updatetimestamp
|
|
1385
1509
|
end
|
|
1386
1510
|
|
|
1387
1511
|
def deserialize(params)
|
|
@@ -1402,6 +1526,8 @@ module TencentCloud
|
|
|
1402
1526
|
@ExtraConf = params['ExtraConf']
|
|
1403
1527
|
@RangerUserName = params['RangerUserName']
|
|
1404
1528
|
@CdwUserName = params['CdwUserName']
|
|
1529
|
+
@CreateTimestamp = params['CreateTimestamp']
|
|
1530
|
+
@UpdateTimestamp = params['UpdateTimestamp']
|
|
1405
1531
|
end
|
|
1406
1532
|
end
|
|
1407
1533
|
|
|
@@ -1434,10 +1560,12 @@ module TencentCloud
|
|
|
1434
1560
|
# @param Model: 项目类型,SIMPLE:简单模式 STANDARD:标准模式
|
|
1435
1561
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1436
1562
|
# @type Model: String
|
|
1563
|
+
# @param ScheduleMode: 项目调度模式,task:任务模式 workflow:工作流模式
|
|
1564
|
+
# @type ScheduleMode: String
|
|
1437
1565
|
|
|
1438
|
-
attr_accessor :ProjectName, :DisplayName, :Region, :TenantId, :ProjectId, :Description, :CreateTime, :Status, :Model
|
|
1566
|
+
attr_accessor :ProjectName, :DisplayName, :Region, :TenantId, :ProjectId, :Description, :CreateTime, :Status, :Model, :ScheduleMode
|
|
1439
1567
|
|
|
1440
|
-
def initialize(projectname=nil, displayname=nil, region=nil, tenantid=nil, projectid=nil, description=nil, createtime=nil, status=nil, model=nil)
|
|
1568
|
+
def initialize(projectname=nil, displayname=nil, region=nil, tenantid=nil, projectid=nil, description=nil, createtime=nil, status=nil, model=nil, schedulemode=nil)
|
|
1441
1569
|
@ProjectName = projectname
|
|
1442
1570
|
@DisplayName = displayname
|
|
1443
1571
|
@Region = region
|
|
@@ -1447,6 +1575,7 @@ module TencentCloud
|
|
|
1447
1575
|
@CreateTime = createtime
|
|
1448
1576
|
@Status = status
|
|
1449
1577
|
@Model = model
|
|
1578
|
+
@ScheduleMode = schedulemode
|
|
1450
1579
|
end
|
|
1451
1580
|
|
|
1452
1581
|
def deserialize(params)
|
|
@@ -1459,6 +1588,7 @@ module TencentCloud
|
|
|
1459
1588
|
@CreateTime = params['CreateTime']
|
|
1460
1589
|
@Status = params['Status']
|
|
1461
1590
|
@Model = params['Model']
|
|
1591
|
+
@ScheduleMode = params['ScheduleMode']
|
|
1462
1592
|
end
|
|
1463
1593
|
end
|
|
1464
1594
|
|
|
@@ -6938,10 +7068,13 @@ module TencentCloud
|
|
|
6938
7068
|
# @param SchemaName: 模式名称
|
|
6939
7069
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6940
7070
|
# @type SchemaName: String
|
|
7071
|
+
# @param ShowEnableCatalog: 是否展示目录
|
|
7072
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7073
|
+
# @type ShowEnableCatalog: Boolean
|
|
6941
7074
|
|
|
6942
|
-
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
|
|
6943
7076
|
|
|
6944
|
-
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)
|
|
6945
7078
|
@DatasourceName = datasourcename
|
|
6946
7079
|
@DatasourceId = datasourceid
|
|
6947
7080
|
@DatabaseName = databasename
|
|
@@ -6953,6 +7086,7 @@ module TencentCloud
|
|
|
6953
7086
|
@DsEnvType = dsenvtype
|
|
6954
7087
|
@ClusterDeployType = clusterdeploytype
|
|
6955
7088
|
@SchemaName = schemaname
|
|
7089
|
+
@ShowEnableCatalog = showenablecatalog
|
|
6956
7090
|
end
|
|
6957
7091
|
|
|
6958
7092
|
def deserialize(params)
|
|
@@ -6967,6 +7101,7 @@ module TencentCloud
|
|
|
6967
7101
|
@DsEnvType = params['DsEnvType']
|
|
6968
7102
|
@ClusterDeployType = params['ClusterDeployType']
|
|
6969
7103
|
@SchemaName = params['SchemaName']
|
|
7104
|
+
@ShowEnableCatalog = params['ShowEnableCatalog']
|
|
6970
7105
|
end
|
|
6971
7106
|
end
|
|
6972
7107
|
|
|
@@ -8369,6 +8504,38 @@ module TencentCloud
|
|
|
8369
8504
|
end
|
|
8370
8505
|
end
|
|
8371
8506
|
|
|
8507
|
+
# 超时弱依赖配置
|
|
8508
|
+
class DependencyConfigTimeoutDTO < TencentCloud::Common::AbstractModel
|
|
8509
|
+
# @param TimeoutType: 超时类型
|
|
8510
|
+
# WAIT_TOTAL_TIMEOUT 等待总时长
|
|
8511
|
+
|
|
8512
|
+
# RUNNING_TIMEOUT 运行时长
|
|
8513
|
+
|
|
8514
|
+
# WAIT_TIME_POINT_TIMEOUT 等待超过配置时间
|
|
8515
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8516
|
+
# @type TimeoutType: String
|
|
8517
|
+
# @param TimeoutValue: 超时时间
|
|
8518
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8519
|
+
# @type TimeoutValue: Integer
|
|
8520
|
+
# @param TimeoutPoint: 固定时间点
|
|
8521
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8522
|
+
# @type TimeoutPoint: String
|
|
8523
|
+
|
|
8524
|
+
attr_accessor :TimeoutType, :TimeoutValue, :TimeoutPoint
|
|
8525
|
+
|
|
8526
|
+
def initialize(timeouttype=nil, timeoutvalue=nil, timeoutpoint=nil)
|
|
8527
|
+
@TimeoutType = timeouttype
|
|
8528
|
+
@TimeoutValue = timeoutvalue
|
|
8529
|
+
@TimeoutPoint = timeoutpoint
|
|
8530
|
+
end
|
|
8531
|
+
|
|
8532
|
+
def deserialize(params)
|
|
8533
|
+
@TimeoutType = params['TimeoutType']
|
|
8534
|
+
@TimeoutValue = params['TimeoutValue']
|
|
8535
|
+
@TimeoutPoint = params['TimeoutPoint']
|
|
8536
|
+
end
|
|
8537
|
+
end
|
|
8538
|
+
|
|
8372
8539
|
# 依赖配置策略
|
|
8373
8540
|
class DependencyStrategyDs < TencentCloud::Common::AbstractModel
|
|
8374
8541
|
# @param PollingNullStrategy: 等待上游任务实例策略:EXECUTING(执行);WAITING(等待)
|
|
@@ -8383,19 +8550,31 @@ module TencentCloud
|
|
|
8383
8550
|
|
|
8384
8551
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8385
8552
|
# @type TaskDependencyExecutingTimeoutValue: Integer
|
|
8553
|
+
# @param DependencyConfigTimeoutTypeList: 超时依赖策略
|
|
8554
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8555
|
+
# @type DependencyConfigTimeoutTypeList: Array
|
|
8386
8556
|
|
|
8387
|
-
attr_accessor :PollingNullStrategy, :TaskDependencyExecutingStrategies, :TaskDependencyExecutingTimeoutValue
|
|
8557
|
+
attr_accessor :PollingNullStrategy, :TaskDependencyExecutingStrategies, :TaskDependencyExecutingTimeoutValue, :DependencyConfigTimeoutTypeList
|
|
8388
8558
|
|
|
8389
|
-
def initialize(pollingnullstrategy=nil, taskdependencyexecutingstrategies=nil, taskdependencyexecutingtimeoutvalue=nil)
|
|
8559
|
+
def initialize(pollingnullstrategy=nil, taskdependencyexecutingstrategies=nil, taskdependencyexecutingtimeoutvalue=nil, dependencyconfigtimeouttypelist=nil)
|
|
8390
8560
|
@PollingNullStrategy = pollingnullstrategy
|
|
8391
8561
|
@TaskDependencyExecutingStrategies = taskdependencyexecutingstrategies
|
|
8392
8562
|
@TaskDependencyExecutingTimeoutValue = taskdependencyexecutingtimeoutvalue
|
|
8563
|
+
@DependencyConfigTimeoutTypeList = dependencyconfigtimeouttypelist
|
|
8393
8564
|
end
|
|
8394
8565
|
|
|
8395
8566
|
def deserialize(params)
|
|
8396
8567
|
@PollingNullStrategy = params['PollingNullStrategy']
|
|
8397
8568
|
@TaskDependencyExecutingStrategies = params['TaskDependencyExecutingStrategies']
|
|
8398
8569
|
@TaskDependencyExecutingTimeoutValue = params['TaskDependencyExecutingTimeoutValue']
|
|
8570
|
+
unless params['DependencyConfigTimeoutTypeList'].nil?
|
|
8571
|
+
@DependencyConfigTimeoutTypeList = []
|
|
8572
|
+
params['DependencyConfigTimeoutTypeList'].each do |i|
|
|
8573
|
+
dependencyconfigtimeoutdto_tmp = DependencyConfigTimeoutDTO.new
|
|
8574
|
+
dependencyconfigtimeoutdto_tmp.deserialize(i)
|
|
8575
|
+
@DependencyConfigTimeoutTypeList << dependencyconfigtimeoutdto_tmp
|
|
8576
|
+
end
|
|
8577
|
+
end
|
|
8399
8578
|
end
|
|
8400
8579
|
end
|
|
8401
8580
|
|
|
@@ -11123,15 +11302,18 @@ module TencentCloud
|
|
|
11123
11302
|
# @type Page: Integer
|
|
11124
11303
|
# @param Size: 页号
|
|
11125
11304
|
# @type Size: Integer
|
|
11305
|
+
# @param Source: 来源 studio(Studio脚本)/codeTemplate(代码模版)
|
|
11306
|
+
# @type Source: String
|
|
11126
11307
|
|
|
11127
|
-
attr_accessor :ProjectId, :CodeTemplateId, :OriginalParams, :Page, :Size
|
|
11308
|
+
attr_accessor :ProjectId, :CodeTemplateId, :OriginalParams, :Page, :Size, :Source
|
|
11128
11309
|
|
|
11129
|
-
def initialize(projectid=nil, codetemplateid=nil, originalparams=nil, page=nil, size=nil)
|
|
11310
|
+
def initialize(projectid=nil, codetemplateid=nil, originalparams=nil, page=nil, size=nil, source=nil)
|
|
11130
11311
|
@ProjectId = projectid
|
|
11131
11312
|
@CodeTemplateId = codetemplateid
|
|
11132
11313
|
@OriginalParams = originalparams
|
|
11133
11314
|
@Page = page
|
|
11134
11315
|
@Size = size
|
|
11316
|
+
@Source = source
|
|
11135
11317
|
end
|
|
11136
11318
|
|
|
11137
11319
|
def deserialize(params)
|
|
@@ -11140,6 +11322,7 @@ module TencentCloud
|
|
|
11140
11322
|
@OriginalParams = params['OriginalParams']
|
|
11141
11323
|
@Page = params['Page']
|
|
11142
11324
|
@Size = params['Size']
|
|
11325
|
+
@Source = params['Source']
|
|
11143
11326
|
end
|
|
11144
11327
|
end
|
|
11145
11328
|
|
|
@@ -14533,17 +14716,39 @@ module TencentCloud
|
|
|
14533
14716
|
# @type RuleGroupExecId: Integer
|
|
14534
14717
|
# @param ProjectId: 项目Id
|
|
14535
14718
|
# @type ProjectId: String
|
|
14719
|
+
# @param Filters: 过滤条件
|
|
14720
|
+
# @type Filters: Array
|
|
14721
|
+
# @param OrderFields: 排序字段
|
|
14722
|
+
# @type OrderFields: Array
|
|
14536
14723
|
|
|
14537
|
-
attr_accessor :RuleGroupExecId, :ProjectId
|
|
14724
|
+
attr_accessor :RuleGroupExecId, :ProjectId, :Filters, :OrderFields
|
|
14538
14725
|
|
|
14539
|
-
def initialize(rulegroupexecid=nil, projectid=nil)
|
|
14726
|
+
def initialize(rulegroupexecid=nil, projectid=nil, filters=nil, orderfields=nil)
|
|
14540
14727
|
@RuleGroupExecId = rulegroupexecid
|
|
14541
14728
|
@ProjectId = projectid
|
|
14729
|
+
@Filters = filters
|
|
14730
|
+
@OrderFields = orderfields
|
|
14542
14731
|
end
|
|
14543
14732
|
|
|
14544
14733
|
def deserialize(params)
|
|
14545
14734
|
@RuleGroupExecId = params['RuleGroupExecId']
|
|
14546
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
|
|
14547
14752
|
end
|
|
14548
14753
|
end
|
|
14549
14754
|
|
|
@@ -23539,10 +23744,22 @@ module TencentCloud
|
|
|
23539
23744
|
# @type InstanceSchedulerDesc: String
|
|
23540
23745
|
# @param Privileges: 当前用户对该实例的权限列表
|
|
23541
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`
|
|
23542
23759
|
|
|
23543
|
-
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
|
|
23544
23761
|
|
|
23545
|
-
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)
|
|
23546
23763
|
@TaskId = taskid
|
|
23547
23764
|
@TaskName = taskname
|
|
23548
23765
|
@WorkflowId = workflowid
|
|
@@ -23611,6 +23828,10 @@ module TencentCloud
|
|
|
23611
23828
|
@InstanceCycleType = instancecycletype
|
|
23612
23829
|
@InstanceSchedulerDesc = instanceschedulerdesc
|
|
23613
23830
|
@Privileges = privileges
|
|
23831
|
+
@TaskExecutionId = taskexecutionid
|
|
23832
|
+
@DlcTaskId = dlctaskid
|
|
23833
|
+
@DlcSparkJobId = dlcsparkjobid
|
|
23834
|
+
@Ext = ext
|
|
23614
23835
|
end
|
|
23615
23836
|
|
|
23616
23837
|
def deserialize(params)
|
|
@@ -23702,6 +23923,13 @@ module TencentCloud
|
|
|
23702
23923
|
@InstanceCycleType = params['InstanceCycleType']
|
|
23703
23924
|
@InstanceSchedulerDesc = params['InstanceSchedulerDesc']
|
|
23704
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
|
|
23705
23933
|
end
|
|
23706
23934
|
end
|
|
23707
23935
|
|
|
@@ -25028,6 +25256,75 @@ module TencentCloud
|
|
|
25028
25256
|
end
|
|
25029
25257
|
end
|
|
25030
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
|
+
|
|
25031
25328
|
# 表生命周期相关信息
|
|
25032
25329
|
class LifecycleInfo < TencentCloud::Common::AbstractModel
|
|
25033
25330
|
# @param Lifecycle: 生命周期值
|
|
@@ -25946,6 +26243,48 @@ module TencentCloud
|
|
|
25946
26243
|
end
|
|
25947
26244
|
end
|
|
25948
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
|
+
|
|
25949
26288
|
# 补录计划实例集合
|
|
25950
26289
|
class MakePlanInstanceOpsDtoCollection < TencentCloud::Common::AbstractModel
|
|
25951
26290
|
# @param TotalCount: 记录总数
|
|
@@ -26093,10 +26432,26 @@ module TencentCloud
|
|
|
26093
26432
|
# @param TimeType: 补录计划时间范围的类型:
|
|
26094
26433
|
# DATA_TIME:实例数据时间;SCHEDULE_TIME 计划调度时间
|
|
26095
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
|
|
26096
26451
|
|
|
26097
|
-
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
|
|
26098
26453
|
|
|
26099
|
-
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)
|
|
26100
26455
|
@PlanId = planid
|
|
26101
26456
|
@MakeName = makename
|
|
26102
26457
|
@ProjectId = projectid
|
|
@@ -26128,6 +26483,12 @@ module TencentCloud
|
|
|
26128
26483
|
@ScheduleTimeZone = scheduletimezone
|
|
26129
26484
|
@AppParam = appparam
|
|
26130
26485
|
@TimeType = timetype
|
|
26486
|
+
@StartTime = starttime
|
|
26487
|
+
@EndTime = endtime
|
|
26488
|
+
@FailurePercent = failurepercent
|
|
26489
|
+
@AlarmRule = alarmrule
|
|
26490
|
+
@RunType = runtype
|
|
26491
|
+
@RunDateTime = rundatetime
|
|
26131
26492
|
end
|
|
26132
26493
|
|
|
26133
26494
|
def deserialize(params)
|
|
@@ -26176,6 +26537,15 @@ module TencentCloud
|
|
|
26176
26537
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
|
26177
26538
|
@AppParam = params['AppParam']
|
|
26178
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']
|
|
26179
26549
|
end
|
|
26180
26550
|
end
|
|
26181
26551
|
|
|
@@ -26242,18 +26612,22 @@ module TencentCloud
|
|
|
26242
26612
|
# @param SuccessPercent: 补录任务实例成功百分数
|
|
26243
26613
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26244
26614
|
# @type SuccessPercent: Integer
|
|
26245
|
-
# @param InstanceTotalCount: 预计生成的总实例个数,由于是异步生成,-1
|
|
26615
|
+
# @param InstanceTotalCount: 预计生成的总实例个数,由于是异步生成,-1代表实例还未完全生成
|
|
26246
26616
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26247
26617
|
# @type InstanceTotalCount: Integer
|
|
26618
|
+
# @param FailurePercent: 补录任务实例失败百分数
|
|
26619
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
26620
|
+
# @type FailurePercent: Integer
|
|
26248
26621
|
|
|
26249
|
-
attr_accessor :TaskBaseInfo, :InstanceCount, :CompletePercent, :SuccessPercent, :InstanceTotalCount
|
|
26622
|
+
attr_accessor :TaskBaseInfo, :InstanceCount, :CompletePercent, :SuccessPercent, :InstanceTotalCount, :FailurePercent
|
|
26250
26623
|
|
|
26251
|
-
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)
|
|
26252
26625
|
@TaskBaseInfo = taskbaseinfo
|
|
26253
26626
|
@InstanceCount = instancecount
|
|
26254
26627
|
@CompletePercent = completepercent
|
|
26255
26628
|
@SuccessPercent = successpercent
|
|
26256
26629
|
@InstanceTotalCount = instancetotalcount
|
|
26630
|
+
@FailurePercent = failurepercent
|
|
26257
26631
|
end
|
|
26258
26632
|
|
|
26259
26633
|
def deserialize(params)
|
|
@@ -26265,6 +26639,7 @@ module TencentCloud
|
|
|
26265
26639
|
@CompletePercent = params['CompletePercent']
|
|
26266
26640
|
@SuccessPercent = params['SuccessPercent']
|
|
26267
26641
|
@InstanceTotalCount = params['InstanceTotalCount']
|
|
26642
|
+
@FailurePercent = params['FailurePercent']
|
|
26268
26643
|
end
|
|
26269
26644
|
end
|
|
26270
26645
|
|
|
@@ -27204,10 +27579,14 @@ module TencentCloud
|
|
|
27204
27579
|
# @type TargetSchemaName: String
|
|
27205
27580
|
# @param TargetTableName: 目标表名
|
|
27206
27581
|
# @type TargetTableName: String
|
|
27582
|
+
# @param CatalogName: 目录
|
|
27583
|
+
# @type CatalogName: String
|
|
27584
|
+
# @param TargetCatalogName: 目标目录
|
|
27585
|
+
# @type TargetCatalogName: String
|
|
27207
27586
|
|
|
27208
|
-
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
|
|
27209
27588
|
|
|
27210
|
-
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)
|
|
27211
27590
|
@ProjectId = projectid
|
|
27212
27591
|
@RuleId = ruleid
|
|
27213
27592
|
@RuleGroupId = rulegroupid
|
|
@@ -27234,6 +27613,8 @@ module TencentCloud
|
|
|
27234
27613
|
@TargetDatabaseName = targetdatabasename
|
|
27235
27614
|
@TargetSchemaName = targetschemaname
|
|
27236
27615
|
@TargetTableName = targettablename
|
|
27616
|
+
@CatalogName = catalogname
|
|
27617
|
+
@TargetCatalogName = targetcatalogname
|
|
27237
27618
|
end
|
|
27238
27619
|
|
|
27239
27620
|
def deserialize(params)
|
|
@@ -27269,6 +27650,8 @@ module TencentCloud
|
|
|
27269
27650
|
@TargetDatabaseName = params['TargetDatabaseName']
|
|
27270
27651
|
@TargetSchemaName = params['TargetSchemaName']
|
|
27271
27652
|
@TargetTableName = params['TargetTableName']
|
|
27653
|
+
@CatalogName = params['CatalogName']
|
|
27654
|
+
@TargetCatalogName = params['TargetCatalogName']
|
|
27272
27655
|
end
|
|
27273
27656
|
end
|
|
27274
27657
|
|
|
@@ -28291,6 +28674,40 @@ module TencentCloud
|
|
|
28291
28674
|
end
|
|
28292
28675
|
end
|
|
28293
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
|
+
|
|
28294
28711
|
# 离线实例
|
|
28295
28712
|
class OfflineInstance < TencentCloud::Common::AbstractModel
|
|
28296
28713
|
# @param CreateUin: 创建账号sub uin
|
|
@@ -29735,10 +30152,13 @@ module TencentCloud
|
|
|
29735
30152
|
# @param WorkspaceExt: 项目扩展信息
|
|
29736
30153
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
29737
30154
|
# @type WorkspaceExt: Array
|
|
30155
|
+
# @param CreateTimestamp: 创建时间时间戳
|
|
30156
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
30157
|
+
# @type CreateTimestamp: Integer
|
|
29738
30158
|
|
|
29739
|
-
attr_accessor :TenantId, :ProjectId, :ProjectName, :DisplayName, :Region, :Description, :CreateTime, :Creator, :Tenant, :AdminUsers, :Clusters, :Params, :Status, :Model, :SecondModuleList, :Owner, :WorkspaceExt
|
|
30159
|
+
attr_accessor :TenantId, :ProjectId, :ProjectName, :DisplayName, :Region, :Description, :CreateTime, :Creator, :Tenant, :AdminUsers, :Clusters, :Params, :Status, :Model, :SecondModuleList, :Owner, :WorkspaceExt, :CreateTimestamp
|
|
29740
30160
|
|
|
29741
|
-
def initialize(tenantid=nil, projectid=nil, projectname=nil, displayname=nil, region=nil, description=nil, createtime=nil, creator=nil, tenant=nil, adminusers=nil, clusters=nil, params=nil, status=nil, model=nil, secondmodulelist=nil, owner=nil, workspaceext=nil)
|
|
30161
|
+
def initialize(tenantid=nil, projectid=nil, projectname=nil, displayname=nil, region=nil, description=nil, createtime=nil, creator=nil, tenant=nil, adminusers=nil, clusters=nil, params=nil, status=nil, model=nil, secondmodulelist=nil, owner=nil, workspaceext=nil, createtimestamp=nil)
|
|
29742
30162
|
@TenantId = tenantid
|
|
29743
30163
|
@ProjectId = projectid
|
|
29744
30164
|
@ProjectName = projectname
|
|
@@ -29756,6 +30176,7 @@ module TencentCloud
|
|
|
29756
30176
|
@SecondModuleList = secondmodulelist
|
|
29757
30177
|
@Owner = owner
|
|
29758
30178
|
@WorkspaceExt = workspaceext
|
|
30179
|
+
@CreateTimestamp = createtimestamp
|
|
29759
30180
|
end
|
|
29760
30181
|
|
|
29761
30182
|
def deserialize(params)
|
|
@@ -29806,6 +30227,7 @@ module TencentCloud
|
|
|
29806
30227
|
@WorkspaceExt << workspaceext_tmp
|
|
29807
30228
|
end
|
|
29808
30229
|
end
|
|
30230
|
+
@CreateTimestamp = params['CreateTimestamp']
|
|
29809
30231
|
end
|
|
29810
30232
|
end
|
|
29811
30233
|
|
|
@@ -29919,10 +30341,16 @@ module TencentCloud
|
|
|
29919
30341
|
# @param IsProjectOwner: 是否项目负责人
|
|
29920
30342
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
29921
30343
|
# @type IsProjectOwner: Boolean
|
|
30344
|
+
# @param CreateTimestamp: 创建时间
|
|
30345
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
30346
|
+
# @type CreateTimestamp: Integer
|
|
30347
|
+
# @param Status: 用户状态 0:历史 1:正常 2:已删除
|
|
30348
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
30349
|
+
# @type Status: Integer
|
|
29922
30350
|
|
|
29923
|
-
attr_accessor :Roles, :UserName, :UserId, :CreateTime, :Creator, :DisplayName, :IsProjectAdmin, :PhoneNum, :Email, :OwnerUin, :AppId, :IsProjectOwner
|
|
30351
|
+
attr_accessor :Roles, :UserName, :UserId, :CreateTime, :Creator, :DisplayName, :IsProjectAdmin, :PhoneNum, :Email, :OwnerUin, :AppId, :IsProjectOwner, :CreateTimestamp, :Status
|
|
29924
30352
|
|
|
29925
|
-
def initialize(roles=nil, username=nil, userid=nil, createtime=nil, creator=nil, displayname=nil, isprojectadmin=nil, phonenum=nil, email=nil, owneruin=nil, appid=nil, isprojectowner=nil)
|
|
30353
|
+
def initialize(roles=nil, username=nil, userid=nil, createtime=nil, creator=nil, displayname=nil, isprojectadmin=nil, phonenum=nil, email=nil, owneruin=nil, appid=nil, isprojectowner=nil, createtimestamp=nil, status=nil)
|
|
29926
30354
|
@Roles = roles
|
|
29927
30355
|
@UserName = username
|
|
29928
30356
|
@UserId = userid
|
|
@@ -29935,6 +30363,8 @@ module TencentCloud
|
|
|
29935
30363
|
@OwnerUin = owneruin
|
|
29936
30364
|
@AppId = appid
|
|
29937
30365
|
@IsProjectOwner = isprojectowner
|
|
30366
|
+
@CreateTimestamp = createtimestamp
|
|
30367
|
+
@Status = status
|
|
29938
30368
|
end
|
|
29939
30369
|
|
|
29940
30370
|
def deserialize(params)
|
|
@@ -29957,6 +30387,8 @@ module TencentCloud
|
|
|
29957
30387
|
@OwnerUin = params['OwnerUin']
|
|
29958
30388
|
@AppId = params['AppId']
|
|
29959
30389
|
@IsProjectOwner = params['IsProjectOwner']
|
|
30390
|
+
@CreateTimestamp = params['CreateTimestamp']
|
|
30391
|
+
@Status = params['Status']
|
|
29960
30392
|
end
|
|
29961
30393
|
end
|
|
29962
30394
|
|
|
@@ -31866,10 +32298,22 @@ module TencentCloud
|
|
|
31866
32298
|
# @param FailMsg: 失败原因
|
|
31867
32299
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
31868
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
|
|
31869
32313
|
|
|
31870
|
-
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
|
|
31871
32315
|
|
|
31872
|
-
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)
|
|
31873
32317
|
@RuleId = ruleid
|
|
31874
32318
|
@RuleGroupId = rulegroupid
|
|
31875
32319
|
@TableId = tableid
|
|
@@ -31924,6 +32368,10 @@ module TencentCloud
|
|
|
31924
32368
|
@DatasourceName = datasourcename
|
|
31925
32369
|
@DatabaseName = databasename
|
|
31926
32370
|
@FailMsg = failmsg
|
|
32371
|
+
@GroupType = grouptype
|
|
32372
|
+
@AspectTaskId = aspecttaskid
|
|
32373
|
+
@CatalogName = catalogname
|
|
32374
|
+
@TargetCatalogName = targetcatalogname
|
|
31927
32375
|
end
|
|
31928
32376
|
|
|
31929
32377
|
def deserialize(params)
|
|
@@ -31993,6 +32441,10 @@ module TencentCloud
|
|
|
31993
32441
|
@DatasourceName = params['DatasourceName']
|
|
31994
32442
|
@DatabaseName = params['DatabaseName']
|
|
31995
32443
|
@FailMsg = params['FailMsg']
|
|
32444
|
+
@GroupType = params['GroupType']
|
|
32445
|
+
@AspectTaskId = params['AspectTaskId']
|
|
32446
|
+
@CatalogName = params['CatalogName']
|
|
32447
|
+
@TargetCatalogName = params['TargetCatalogName']
|
|
31996
32448
|
end
|
|
31997
32449
|
end
|
|
31998
32450
|
|
|
@@ -32259,10 +32711,19 @@ module TencentCloud
|
|
|
32259
32711
|
# @param FinishTime: 执行结束时间
|
|
32260
32712
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32261
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
|
|
32262
32723
|
|
|
32263
|
-
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
|
|
32264
32725
|
|
|
32265
|
-
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)
|
|
32266
32727
|
@RuleExecId = ruleexecid
|
|
32267
32728
|
@RuleGroupExecId = rulegroupexecid
|
|
32268
32729
|
@RuleGroupId = rulegroupid
|
|
@@ -32296,6 +32757,9 @@ module TencentCloud
|
|
|
32296
32757
|
@RuleGroupTableId = rulegrouptableid
|
|
32297
32758
|
@MonitorType = monitortype
|
|
32298
32759
|
@FinishTime = finishtime
|
|
32760
|
+
@GroupType = grouptype
|
|
32761
|
+
@AspectTaskId = aspecttaskid
|
|
32762
|
+
@CatalogName = catalogname
|
|
32299
32763
|
end
|
|
32300
32764
|
|
|
32301
32765
|
def deserialize(params)
|
|
@@ -32338,6 +32802,9 @@ module TencentCloud
|
|
|
32338
32802
|
@RuleGroupTableId = params['RuleGroupTableId']
|
|
32339
32803
|
@MonitorType = params['MonitorType']
|
|
32340
32804
|
@FinishTime = params['FinishTime']
|
|
32805
|
+
@GroupType = params['GroupType']
|
|
32806
|
+
@AspectTaskId = params['AspectTaskId']
|
|
32807
|
+
@CatalogName = params['CatalogName']
|
|
32341
32808
|
end
|
|
32342
32809
|
end
|
|
32343
32810
|
|
|
@@ -32651,10 +33118,19 @@ module TencentCloud
|
|
|
32651
33118
|
# @param CreateUserName: 监控创建人
|
|
32652
33119
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32653
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
|
|
32654
33130
|
|
|
32655
|
-
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
|
|
32656
33132
|
|
|
32657
|
-
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)
|
|
32658
33134
|
@RuleGroupId = rulegroupid
|
|
32659
33135
|
@DatasourceId = datasourceid
|
|
32660
33136
|
@DatasourceName = datasourcename
|
|
@@ -32685,6 +33161,9 @@ module TencentCloud
|
|
|
32685
33161
|
@EnableRuleCount = enablerulecount
|
|
32686
33162
|
@Description = description
|
|
32687
33163
|
@CreateUserName = createusername
|
|
33164
|
+
@GroupType = grouptype
|
|
33165
|
+
@AspectTaskId = aspecttaskid
|
|
33166
|
+
@CatalogName = catalogname
|
|
32688
33167
|
end
|
|
32689
33168
|
|
|
32690
33169
|
def deserialize(params)
|
|
@@ -32724,12 +33203,23 @@ module TencentCloud
|
|
|
32724
33203
|
@EnableRuleCount = params['EnableRuleCount']
|
|
32725
33204
|
@Description = params['Description']
|
|
32726
33205
|
@CreateUserName = params['CreateUserName']
|
|
33206
|
+
@GroupType = params['GroupType']
|
|
33207
|
+
@AspectTaskId = params['AspectTaskId']
|
|
33208
|
+
@CatalogName = params['CatalogName']
|
|
32727
33209
|
end
|
|
32728
33210
|
end
|
|
32729
33211
|
|
|
32730
33212
|
# 任务配置
|
|
32731
33213
|
class RuleGroupConfig < TencentCloud::Common::AbstractModel
|
|
32732
|
-
# @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-回归
|
|
32733
33223
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32734
33224
|
# @type ModelMonitorType: String
|
|
32735
33225
|
# @param PredictColumn: 预测列
|
|
@@ -32780,13 +33270,20 @@ module TencentCloud
|
|
|
32780
33270
|
# @param PositiveValue: 正类值
|
|
32781
33271
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32782
33272
|
# @type PositiveValue: String
|
|
32783
|
-
# @param FeatureColumn:
|
|
33273
|
+
# @param FeatureColumn: 数值型特征列
|
|
32784
33274
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
32785
33275
|
# @type FeatureColumn: String
|
|
33276
|
+
# @param CategoricalFeatureColumn: 分类型特征列
|
|
33277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33278
|
+
# @type CategoricalFeatureColumn: String
|
|
33279
|
+
# @param BaseCatalog: 目录
|
|
33280
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33281
|
+
# @type BaseCatalog: String
|
|
32786
33282
|
|
|
32787
|
-
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
|
|
32788
33284
|
|
|
32789
|
-
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
|
|
32790
33287
|
@ModelMonitorType = modelmonitortype
|
|
32791
33288
|
@PredictColumn = predictcolumn
|
|
32792
33289
|
@PredictColumnType = predictcolumntype
|
|
@@ -32805,9 +33302,12 @@ module TencentCloud
|
|
|
32805
33302
|
@ProtectionValue = protectionvalue
|
|
32806
33303
|
@PositiveValue = positivevalue
|
|
32807
33304
|
@FeatureColumn = featurecolumn
|
|
33305
|
+
@CategoricalFeatureColumn = categoricalfeaturecolumn
|
|
33306
|
+
@BaseCatalog = basecatalog
|
|
32808
33307
|
end
|
|
32809
33308
|
|
|
32810
33309
|
def deserialize(params)
|
|
33310
|
+
@AnalysisType = params['AnalysisType']
|
|
32811
33311
|
@ModelMonitorType = params['ModelMonitorType']
|
|
32812
33312
|
@PredictColumn = params['PredictColumn']
|
|
32813
33313
|
@PredictColumnType = params['PredictColumnType']
|
|
@@ -32826,6 +33326,8 @@ module TencentCloud
|
|
|
32826
33326
|
@ProtectionValue = params['ProtectionValue']
|
|
32827
33327
|
@PositiveValue = params['PositiveValue']
|
|
32828
33328
|
@FeatureColumn = params['FeatureColumn']
|
|
33329
|
+
@CategoricalFeatureColumn = params['CategoricalFeatureColumn']
|
|
33330
|
+
@BaseCatalog = params['BaseCatalog']
|
|
32829
33331
|
end
|
|
32830
33332
|
end
|
|
32831
33333
|
|
|
@@ -33100,10 +33602,13 @@ module TencentCloud
|
|
|
33100
33602
|
# @param EngineParam: 引擎参数
|
|
33101
33603
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33102
33604
|
# @type EngineParam: String
|
|
33605
|
+
# @param CatalogName: catalog名称
|
|
33606
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
33607
|
+
# @type CatalogName: String
|
|
33103
33608
|
|
|
33104
|
-
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
|
|
33105
33610
|
|
|
33106
|
-
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)
|
|
33107
33612
|
@RuleGroupId = rulegroupid
|
|
33108
33613
|
@MonitorType = monitortype
|
|
33109
33614
|
@ExecQueue = execqueue
|
|
@@ -33131,6 +33636,7 @@ module TencentCloud
|
|
|
33131
33636
|
@ScheduleTimeZone = scheduletimezone
|
|
33132
33637
|
@GroupConfig = groupconfig
|
|
33133
33638
|
@EngineParam = engineparam
|
|
33639
|
+
@CatalogName = catalogname
|
|
33134
33640
|
end
|
|
33135
33641
|
|
|
33136
33642
|
def deserialize(params)
|
|
@@ -33171,6 +33677,7 @@ module TencentCloud
|
|
|
33171
33677
|
@GroupConfig.deserialize(params['GroupConfig'])
|
|
33172
33678
|
end
|
|
33173
33679
|
@EngineParam = params['EngineParam']
|
|
33680
|
+
@CatalogName = params['CatalogName']
|
|
33174
33681
|
end
|
|
33175
33682
|
end
|
|
33176
33683
|
|
|
@@ -36669,10 +37176,43 @@ module TencentCloud
|
|
|
36669
37176
|
# @param ColumnCount: 字段数量
|
|
36670
37177
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
36671
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
|
|
36672
37212
|
|
|
36673
|
-
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
|
|
36674
37214
|
|
|
36675
|
-
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)
|
|
36676
37216
|
@TableId = tableid
|
|
36677
37217
|
@TableName = tablename
|
|
36678
37218
|
@TableOwnerName = tableownername
|
|
@@ -36742,6 +37282,17 @@ module TencentCloud
|
|
|
36742
37282
|
@DataLayerUuid = datalayeruuid
|
|
36743
37283
|
@DataLayerName = datalayername
|
|
36744
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
|
|
36745
37296
|
end
|
|
36746
37297
|
|
|
36747
37298
|
def deserialize(params)
|
|
@@ -36844,6 +37395,31 @@ module TencentCloud
|
|
|
36844
37395
|
@DataLayerUuid = params['DataLayerUuid']
|
|
36845
37396
|
@DataLayerName = params['DataLayerName']
|
|
36846
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']
|
|
36847
37423
|
end
|
|
36848
37424
|
end
|
|
36849
37425
|
|
|
@@ -37029,10 +37605,13 @@ module TencentCloud
|
|
|
37029
37605
|
# @param RuleGroupTableId: 规则表
|
|
37030
37606
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37031
37607
|
# @type RuleGroupTableId: String
|
|
37608
|
+
# @param CatalogName: catalog名称
|
|
37609
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
37610
|
+
# @type CatalogName: String
|
|
37032
37611
|
|
|
37033
|
-
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
|
|
37034
37613
|
|
|
37035
|
-
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)
|
|
37036
37615
|
@DatabaseId = databaseid
|
|
37037
37616
|
@DatabaseName = databasename
|
|
37038
37617
|
@TableId = tableid
|
|
@@ -37045,6 +37624,7 @@ module TencentCloud
|
|
|
37045
37624
|
@DsEnvType = dsenvtype
|
|
37046
37625
|
@SchemaName = schemaname
|
|
37047
37626
|
@RuleGroupTableId = rulegrouptableid
|
|
37627
|
+
@CatalogName = catalogname
|
|
37048
37628
|
end
|
|
37049
37629
|
|
|
37050
37630
|
def deserialize(params)
|
|
@@ -37060,6 +37640,7 @@ module TencentCloud
|
|
|
37060
37640
|
@DsEnvType = params['DsEnvType']
|
|
37061
37641
|
@SchemaName = params['SchemaName']
|
|
37062
37642
|
@RuleGroupTableId = params['RuleGroupTableId']
|
|
37643
|
+
@CatalogName = params['CatalogName']
|
|
37063
37644
|
end
|
|
37064
37645
|
end
|
|
37065
37646
|
|
|
@@ -38384,6 +38965,55 @@ module TencentCloud
|
|
|
38384
38965
|
end
|
|
38385
38966
|
end
|
|
38386
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
|
+
|
|
38387
39017
|
# 任务参数
|
|
38388
39018
|
class TaskFormParams < TencentCloud::Common::AbstractModel
|
|
38389
39019
|
# @param TaskId: 任务ID
|
|
@@ -39276,10 +39906,16 @@ module TencentCloud
|
|
|
39276
39906
|
# @param BundleInfo: bundle客户端信息
|
|
39277
39907
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
39278
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`
|
|
39279
39915
|
|
|
39280
|
-
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
|
|
39281
39917
|
|
|
39282
|
-
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)
|
|
39283
39919
|
@TaskId = taskid
|
|
39284
39920
|
@VirtualTaskId = virtualtaskid
|
|
39285
39921
|
@VirtualFlag = virtualflag
|
|
@@ -39375,6 +40011,8 @@ module TencentCloud
|
|
|
39375
40011
|
@Privileges = privileges
|
|
39376
40012
|
@BundleId = bundleid
|
|
39377
40013
|
@BundleInfo = bundleinfo
|
|
40014
|
+
@WorkflowType = workflowtype
|
|
40015
|
+
@TaskExtDTO = taskextdto
|
|
39378
40016
|
end
|
|
39379
40017
|
|
|
39380
40018
|
def deserialize(params)
|
|
@@ -39505,6 +40143,11 @@ module TencentCloud
|
|
|
39505
40143
|
@Privileges = params['Privileges']
|
|
39506
40144
|
@BundleId = params['BundleId']
|
|
39507
40145
|
@BundleInfo = params['BundleInfo']
|
|
40146
|
+
@WorkflowType = params['WorkflowType']
|
|
40147
|
+
unless params['TaskExtDTO'].nil?
|
|
40148
|
+
@TaskExtDTO = TaskExtOpsDto.new
|
|
40149
|
+
@TaskExtDTO.deserialize(params['TaskExtDTO'])
|
|
40150
|
+
end
|
|
39508
40151
|
end
|
|
39509
40152
|
end
|
|
39510
40153
|
|