tencentcloud-sdk-wedata 3.0.1118 → 3.0.1129
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/client.rb +24 -54
- data/lib/v20210820/models.rb +663 -347
- metadata +2 -2
data/lib/v20210820/models.rb
CHANGED
@@ -768,6 +768,55 @@ module TencentCloud
|
|
768
768
|
end
|
769
769
|
end
|
770
770
|
|
771
|
+
# 告警接收组
|
772
|
+
class AlarmReceiverGroup < TencentCloud::Common::AbstractModel
|
773
|
+
# @param AlarmRecipientType: 告警接收人类型
|
774
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
775
|
+
# @type AlarmRecipientType: Integer
|
776
|
+
# @param AlarmRecipientId: 告警接收人ID,多个用逗号隔开
|
777
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
778
|
+
# @type AlarmRecipientId: String
|
779
|
+
# @param AlarmRecipientName: 告警接收人名称,多个用逗号隔开
|
780
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
781
|
+
# @type AlarmRecipientName: String
|
782
|
+
# @param AlarmWay: 告警方式,多个用逗号隔开
|
783
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
784
|
+
# @type AlarmWay: String
|
785
|
+
# @param QuietPeriods: 免打扰时间段
|
786
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
787
|
+
# @type QuietPeriods: Array
|
788
|
+
# @param AlarmMessageRule: 告警渠道规则
|
789
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
790
|
+
# @type AlarmMessageRule: String
|
791
|
+
|
792
|
+
attr_accessor :AlarmRecipientType, :AlarmRecipientId, :AlarmRecipientName, :AlarmWay, :QuietPeriods, :AlarmMessageRule
|
793
|
+
|
794
|
+
def initialize(alarmrecipienttype=nil, alarmrecipientid=nil, alarmrecipientname=nil, alarmway=nil, quietperiods=nil, alarmmessagerule=nil)
|
795
|
+
@AlarmRecipientType = alarmrecipienttype
|
796
|
+
@AlarmRecipientId = alarmrecipientid
|
797
|
+
@AlarmRecipientName = alarmrecipientname
|
798
|
+
@AlarmWay = alarmway
|
799
|
+
@QuietPeriods = quietperiods
|
800
|
+
@AlarmMessageRule = alarmmessagerule
|
801
|
+
end
|
802
|
+
|
803
|
+
def deserialize(params)
|
804
|
+
@AlarmRecipientType = params['AlarmRecipientType']
|
805
|
+
@AlarmRecipientId = params['AlarmRecipientId']
|
806
|
+
@AlarmRecipientName = params['AlarmRecipientName']
|
807
|
+
@AlarmWay = params['AlarmWay']
|
808
|
+
unless params['QuietPeriods'].nil?
|
809
|
+
@QuietPeriods = []
|
810
|
+
params['QuietPeriods'].each do |i|
|
811
|
+
quietperiod_tmp = QuietPeriod.new
|
812
|
+
quietperiod_tmp.deserialize(i)
|
813
|
+
@QuietPeriods << quietperiod_tmp
|
814
|
+
end
|
815
|
+
end
|
816
|
+
@AlarmMessageRule = params['AlarmMessageRule']
|
817
|
+
end
|
818
|
+
end
|
819
|
+
|
771
820
|
# 告警接收人详情
|
772
821
|
class AlarmReceiverInfo < TencentCloud::Common::AbstractModel
|
773
822
|
# @param AlarmId: 告警ID
|
@@ -3789,18 +3838,26 @@ module TencentCloud
|
|
3789
3838
|
class CommitIntegrationTaskResponse < TencentCloud::Common::AbstractModel
|
3790
3839
|
# @param Data: 操作成功与否标识
|
3791
3840
|
# @type Data: Boolean
|
3841
|
+
# @param DataDto: 数据结构
|
3842
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3843
|
+
# @type DataDto: :class:`Tencentcloud::Wedata.v20210820.models.CommitTaskDataDto`
|
3792
3844
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3793
3845
|
# @type RequestId: String
|
3794
3846
|
|
3795
|
-
attr_accessor :Data, :RequestId
|
3847
|
+
attr_accessor :Data, :DataDto, :RequestId
|
3796
3848
|
|
3797
|
-
def initialize(data=nil, requestid=nil)
|
3849
|
+
def initialize(data=nil, datadto=nil, requestid=nil)
|
3798
3850
|
@Data = data
|
3851
|
+
@DataDto = datadto
|
3799
3852
|
@RequestId = requestid
|
3800
3853
|
end
|
3801
3854
|
|
3802
3855
|
def deserialize(params)
|
3803
3856
|
@Data = params['Data']
|
3857
|
+
unless params['DataDto'].nil?
|
3858
|
+
@DataDto = CommitTaskDataDto.new
|
3859
|
+
@DataDto.deserialize(params['DataDto'])
|
3860
|
+
end
|
3804
3861
|
@RequestId = params['RequestId']
|
3805
3862
|
end
|
3806
3863
|
end
|
@@ -3875,6 +3932,23 @@ module TencentCloud
|
|
3875
3932
|
end
|
3876
3933
|
end
|
3877
3934
|
|
3935
|
+
# 提交任务数据结构
|
3936
|
+
class CommitTaskDataDto < TencentCloud::Common::AbstractModel
|
3937
|
+
# @param TaskApproveId: 任务审批ID
|
3938
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3939
|
+
# @type TaskApproveId: String
|
3940
|
+
|
3941
|
+
attr_accessor :TaskApproveId
|
3942
|
+
|
3943
|
+
def initialize(taskapproveid=nil)
|
3944
|
+
@TaskApproveId = taskapproveid
|
3945
|
+
end
|
3946
|
+
|
3947
|
+
def deserialize(params)
|
3948
|
+
@TaskApproveId = params['TaskApproveId']
|
3949
|
+
end
|
3950
|
+
end
|
3951
|
+
|
3878
3952
|
# 内容详情
|
3879
3953
|
class CommonContent < TencentCloud::Common::AbstractModel
|
3880
3954
|
# @param Content: 详情内容
|
@@ -3940,14 +4014,18 @@ module TencentCloud
|
|
3940
4014
|
# @param TriggerRows: 检测不通过行数
|
3941
4015
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3942
4016
|
# @type TriggerRows: Integer
|
4017
|
+
# @param ComputeExpression: 比较关系
|
4018
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4019
|
+
# @type ComputeExpression: String
|
3943
4020
|
|
3944
|
-
attr_accessor :Items, :TotalRows, :PassRows, :TriggerRows
|
4021
|
+
attr_accessor :Items, :TotalRows, :PassRows, :TriggerRows, :ComputeExpression
|
3945
4022
|
|
3946
|
-
def initialize(items=nil, totalrows=nil, passrows=nil, triggerrows=nil)
|
4023
|
+
def initialize(items=nil, totalrows=nil, passrows=nil, triggerrows=nil, computeexpression=nil)
|
3947
4024
|
@Items = items
|
3948
4025
|
@TotalRows = totalrows
|
3949
4026
|
@PassRows = passrows
|
3950
4027
|
@TriggerRows = triggerrows
|
4028
|
+
@ComputeExpression = computeexpression
|
3951
4029
|
end
|
3952
4030
|
|
3953
4031
|
def deserialize(params)
|
@@ -3962,6 +4040,7 @@ module TencentCloud
|
|
3962
4040
|
@TotalRows = params['TotalRows']
|
3963
4041
|
@PassRows = params['PassRows']
|
3964
4042
|
@TriggerRows = params['TriggerRows']
|
4043
|
+
@ComputeExpression = params['ComputeExpression']
|
3965
4044
|
end
|
3966
4045
|
end
|
3967
4046
|
|
@@ -6391,10 +6470,13 @@ module TencentCloud
|
|
6391
6470
|
# @type DataSourceEnvInfos: Array
|
6392
6471
|
# @param ForbidProbe: 禁止数据探查
|
6393
6472
|
# @type ForbidProbe: Boolean
|
6473
|
+
# @param DatasourceType: 数据源类型
|
6474
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6475
|
+
# @type DatasourceType: String
|
6394
6476
|
|
6395
|
-
attr_accessor :DatabaseName, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :AppId, :BizParams, :Category, :Display, :OwnerAccount, :Params, :Status, :OwnerAccountName, :ClusterName, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :AuthorityProjectName, :AuthorityUserName, :Edit, :Author, :Deliver, :DataSourceStatus, :CreateTime, :ParamsString, :BizParamsString, :ModifiedTime, :ShowType, :ProductId, :DevelopmentId, :DevelopmentParams, :ConnectStatus, :DisplayType, :Env, :DatasourceUrn, :Model, :DataSourceEnvInfos, :ForbidProbe
|
6477
|
+
attr_accessor :DatabaseName, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :AppId, :BizParams, :Category, :Display, :OwnerAccount, :Params, :Status, :OwnerAccountName, :ClusterName, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :AuthorityProjectName, :AuthorityUserName, :Edit, :Author, :Deliver, :DataSourceStatus, :CreateTime, :ParamsString, :BizParamsString, :ModifiedTime, :ShowType, :ProductId, :DevelopmentId, :DevelopmentParams, :ConnectStatus, :DisplayType, :Env, :DatasourceUrn, :Model, :DataSourceEnvInfos, :ForbidProbe, :DatasourceType
|
6396
6478
|
|
6397
|
-
def initialize(databasename=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, appid=nil, bizparams=nil, category=nil, display=nil, owneraccount=nil, params=nil, status=nil, owneraccountname=nil, clustername=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, authorityprojectname=nil, authorityusername=nil, edit=nil, author=nil, deliver=nil, datasourcestatus=nil, createtime=nil, paramsstring=nil, bizparamsstring=nil, modifiedtime=nil, showtype=nil, productid=nil, developmentid=nil, developmentparams=nil, connectstatus=nil, displaytype=nil, env=nil, datasourceurn=nil, model=nil, datasourceenvinfos=nil, forbidprobe=nil)
|
6479
|
+
def initialize(databasename=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, appid=nil, bizparams=nil, category=nil, display=nil, owneraccount=nil, params=nil, status=nil, owneraccountname=nil, clustername=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, authorityprojectname=nil, authorityusername=nil, edit=nil, author=nil, deliver=nil, datasourcestatus=nil, createtime=nil, paramsstring=nil, bizparamsstring=nil, modifiedtime=nil, showtype=nil, productid=nil, developmentid=nil, developmentparams=nil, connectstatus=nil, displaytype=nil, env=nil, datasourceurn=nil, model=nil, datasourceenvinfos=nil, forbidprobe=nil, datasourcetype=nil)
|
6398
6480
|
@DatabaseName = databasename
|
6399
6481
|
@Description = description
|
6400
6482
|
@ID = id
|
@@ -6436,6 +6518,7 @@ module TencentCloud
|
|
6436
6518
|
@Model = model
|
6437
6519
|
@DataSourceEnvInfos = datasourceenvinfos
|
6438
6520
|
@ForbidProbe = forbidprobe
|
6521
|
+
@DatasourceType = datasourcetype
|
6439
6522
|
end
|
6440
6523
|
|
6441
6524
|
def deserialize(params)
|
@@ -6490,6 +6573,7 @@ module TencentCloud
|
|
6490
6573
|
end
|
6491
6574
|
end
|
6492
6575
|
@ForbidProbe = params['ForbidProbe']
|
6576
|
+
@DatasourceType = params['DatasourceType']
|
6493
6577
|
end
|
6494
6578
|
end
|
6495
6579
|
|
@@ -9792,94 +9876,6 @@ module TencentCloud
|
|
9792
9876
|
end
|
9793
9877
|
end
|
9794
9878
|
|
9795
|
-
# DescribeDrInstancePage请求参数结构体
|
9796
|
-
class DescribeDrInstancePageRequest < TencentCloud::Common::AbstractModel
|
9797
|
-
# @param ProjectId: 项目id
|
9798
|
-
# @type ProjectId: String
|
9799
|
-
# @param TaskSource: 任务来源 ADHOC || WORKFLOW
|
9800
|
-
# @type TaskSource: String
|
9801
|
-
# @param PageIndex: 索引页码
|
9802
|
-
# @type PageIndex: Integer
|
9803
|
-
# @param PageSize: 页面大小
|
9804
|
-
# @type PageSize: Integer
|
9805
|
-
# @param TaskName: 任务名称
|
9806
|
-
# @type TaskName: String
|
9807
|
-
# @param StartTime: 提交开始时间 yyyy-MM-dd HH:mm:ss
|
9808
|
-
# @type StartTime: String
|
9809
|
-
# @param EndTime: 提交结束时间 yyyy-MM-dd HH:mm:ss
|
9810
|
-
# @type EndTime: String
|
9811
|
-
# @param FolderIds: 文件夹id
|
9812
|
-
# @type FolderIds: Array
|
9813
|
-
# @param WorkflowIds: 工作流id
|
9814
|
-
# @type WorkflowIds: Array
|
9815
|
-
# @param JustMe: 只看我的
|
9816
|
-
# @type JustMe: Boolean
|
9817
|
-
# @param TaskTypes: 任务类型
|
9818
|
-
# @type TaskTypes: Array
|
9819
|
-
# @param SubmitUsers: 试运行提交人userId列表
|
9820
|
-
# @type SubmitUsers: Array
|
9821
|
-
# @param StatusList: 试运行状态
|
9822
|
-
# @type StatusList: Array
|
9823
|
-
|
9824
|
-
attr_accessor :ProjectId, :TaskSource, :PageIndex, :PageSize, :TaskName, :StartTime, :EndTime, :FolderIds, :WorkflowIds, :JustMe, :TaskTypes, :SubmitUsers, :StatusList
|
9825
|
-
|
9826
|
-
def initialize(projectid=nil, tasksource=nil, pageindex=nil, pagesize=nil, taskname=nil, starttime=nil, endtime=nil, folderids=nil, workflowids=nil, justme=nil, tasktypes=nil, submitusers=nil, statuslist=nil)
|
9827
|
-
@ProjectId = projectid
|
9828
|
-
@TaskSource = tasksource
|
9829
|
-
@PageIndex = pageindex
|
9830
|
-
@PageSize = pagesize
|
9831
|
-
@TaskName = taskname
|
9832
|
-
@StartTime = starttime
|
9833
|
-
@EndTime = endtime
|
9834
|
-
@FolderIds = folderids
|
9835
|
-
@WorkflowIds = workflowids
|
9836
|
-
@JustMe = justme
|
9837
|
-
@TaskTypes = tasktypes
|
9838
|
-
@SubmitUsers = submitusers
|
9839
|
-
@StatusList = statuslist
|
9840
|
-
end
|
9841
|
-
|
9842
|
-
def deserialize(params)
|
9843
|
-
@ProjectId = params['ProjectId']
|
9844
|
-
@TaskSource = params['TaskSource']
|
9845
|
-
@PageIndex = params['PageIndex']
|
9846
|
-
@PageSize = params['PageSize']
|
9847
|
-
@TaskName = params['TaskName']
|
9848
|
-
@StartTime = params['StartTime']
|
9849
|
-
@EndTime = params['EndTime']
|
9850
|
-
@FolderIds = params['FolderIds']
|
9851
|
-
@WorkflowIds = params['WorkflowIds']
|
9852
|
-
@JustMe = params['JustMe']
|
9853
|
-
@TaskTypes = params['TaskTypes']
|
9854
|
-
@SubmitUsers = params['SubmitUsers']
|
9855
|
-
@StatusList = params['StatusList']
|
9856
|
-
end
|
9857
|
-
end
|
9858
|
-
|
9859
|
-
# DescribeDrInstancePage返回参数结构体
|
9860
|
-
class DescribeDrInstancePageResponse < TencentCloud::Common::AbstractModel
|
9861
|
-
# @param Data: 结果集
|
9862
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9863
|
-
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.DrInstanceOpsDtoPage`
|
9864
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9865
|
-
# @type RequestId: String
|
9866
|
-
|
9867
|
-
attr_accessor :Data, :RequestId
|
9868
|
-
|
9869
|
-
def initialize(data=nil, requestid=nil)
|
9870
|
-
@Data = data
|
9871
|
-
@RequestId = requestid
|
9872
|
-
end
|
9873
|
-
|
9874
|
-
def deserialize(params)
|
9875
|
-
unless params['Data'].nil?
|
9876
|
-
@Data = DrInstanceOpsDtoPage.new
|
9877
|
-
@Data.deserialize(params['Data'])
|
9878
|
-
end
|
9879
|
-
@RequestId = params['RequestId']
|
9880
|
-
end
|
9881
|
-
end
|
9882
|
-
|
9883
9879
|
# DescribeDsFolderTree请求参数结构体
|
9884
9880
|
class DescribeDsFolderTreeRequest < TencentCloud::Common::AbstractModel
|
9885
9881
|
# @param ProjectId: 项目id
|
@@ -10123,19 +10119,23 @@ module TencentCloud
|
|
10123
10119
|
# @type ProjectId: String
|
10124
10120
|
# @param IsOnlyCurrentEditingVersion: 是否仅返回当前编辑版本
|
10125
10121
|
# @type IsOnlyCurrentEditingVersion: Boolean
|
10122
|
+
# @param IsOnlyProductVersion: 是否仅只返回生产使用版本
|
10123
|
+
# @type IsOnlyProductVersion: Boolean
|
10126
10124
|
|
10127
|
-
attr_accessor :TaskId, :ProjectId, :IsOnlyCurrentEditingVersion
|
10125
|
+
attr_accessor :TaskId, :ProjectId, :IsOnlyCurrentEditingVersion, :IsOnlyProductVersion
|
10128
10126
|
|
10129
|
-
def initialize(taskid=nil, projectid=nil, isonlycurrenteditingversion=nil)
|
10127
|
+
def initialize(taskid=nil, projectid=nil, isonlycurrenteditingversion=nil, isonlyproductversion=nil)
|
10130
10128
|
@TaskId = taskid
|
10131
10129
|
@ProjectId = projectid
|
10132
10130
|
@IsOnlyCurrentEditingVersion = isonlycurrenteditingversion
|
10131
|
+
@IsOnlyProductVersion = isonlyproductversion
|
10133
10132
|
end
|
10134
10133
|
|
10135
10134
|
def deserialize(params)
|
10136
10135
|
@TaskId = params['TaskId']
|
10137
10136
|
@ProjectId = params['ProjectId']
|
10138
10137
|
@IsOnlyCurrentEditingVersion = params['IsOnlyCurrentEditingVersion']
|
10138
|
+
@IsOnlyProductVersion = params['IsOnlyProductVersion']
|
10139
10139
|
end
|
10140
10140
|
end
|
10141
10141
|
|
@@ -11865,14 +11865,17 @@ module TencentCloud
|
|
11865
11865
|
# @type TaskType: Integer
|
11866
11866
|
# @param InstanceVersion: 提交版本号
|
11867
11867
|
# @type InstanceVersion: Integer
|
11868
|
+
# @param ExtConfig: 额外参数
|
11869
|
+
# @type ExtConfig: Array
|
11868
11870
|
|
11869
|
-
attr_accessor :TaskId, :ProjectId, :TaskType, :InstanceVersion
|
11871
|
+
attr_accessor :TaskId, :ProjectId, :TaskType, :InstanceVersion, :ExtConfig
|
11870
11872
|
|
11871
|
-
def initialize(taskid=nil, projectid=nil, tasktype=nil, instanceversion=nil)
|
11873
|
+
def initialize(taskid=nil, projectid=nil, tasktype=nil, instanceversion=nil, extconfig=nil)
|
11872
11874
|
@TaskId = taskid
|
11873
11875
|
@ProjectId = projectid
|
11874
11876
|
@TaskType = tasktype
|
11875
11877
|
@InstanceVersion = instanceversion
|
11878
|
+
@ExtConfig = extconfig
|
11876
11879
|
end
|
11877
11880
|
|
11878
11881
|
def deserialize(params)
|
@@ -11880,6 +11883,14 @@ module TencentCloud
|
|
11880
11883
|
@ProjectId = params['ProjectId']
|
11881
11884
|
@TaskType = params['TaskType']
|
11882
11885
|
@InstanceVersion = params['InstanceVersion']
|
11886
|
+
unless params['ExtConfig'].nil?
|
11887
|
+
@ExtConfig = []
|
11888
|
+
params['ExtConfig'].each do |i|
|
11889
|
+
recordfield_tmp = RecordField.new
|
11890
|
+
recordfield_tmp.deserialize(i)
|
11891
|
+
@ExtConfig << recordfield_tmp
|
11892
|
+
end
|
11893
|
+
end
|
11883
11894
|
end
|
11884
11895
|
end
|
11885
11896
|
|
@@ -12866,10 +12877,41 @@ module TencentCloud
|
|
12866
12877
|
# @param ExecutorGroupName: 资源组名称
|
12867
12878
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12868
12879
|
# @type ExecutorGroupName: String
|
12880
|
+
# @param TaskTypeId: <p>任务类型id,取值范围:</p>
|
12881
|
+
# <ul>
|
12882
|
+
# <li>26 离线集成任务</li>
|
12883
|
+
# <li>30 Python任务</li>
|
12884
|
+
# <li>31 PySpark任务</li>
|
12885
|
+
# <li>34 HiveSQL任务</li>
|
12886
|
+
# <li>35 Shell任务</li>
|
12887
|
+
# <li>36 SparkSQL任务</li>
|
12888
|
+
# <li>21 JdbcSQL任务</li>
|
12889
|
+
# <li>23 TDSQL-PostgreSQL任务</li>
|
12890
|
+
# <li>32 DLCSQL任务</li>
|
12891
|
+
# <li>33 Impala任务</li>
|
12892
|
+
# <li>41 Kettle任务</li>
|
12893
|
+
# <li>42 Tchouse-X任务</li>
|
12894
|
+
# <li>43 TCHouse-X SQL任务</li>
|
12895
|
+
# <li>46 DLCSpark任务</li>
|
12896
|
+
# <li>50 DLC-PySpark任务</li>
|
12897
|
+
# <li>47 TiOne任务</li>
|
12898
|
+
# <li>48 Trino任务</li>
|
12899
|
+
# <li>39 Spark任务</li>
|
12900
|
+
# <li>92 MapReduce任务</li>
|
12901
|
+
# <li>38 Shell表单模式任务</li>
|
12902
|
+
# <li>130 BranchNode任务</li>
|
12903
|
+
# <li>131 MergeNode任务</li>
|
12904
|
+
# <li>132 Notebook任务</li>
|
12905
|
+
# <li>133 SSH任务</li>
|
12906
|
+
# <li>134 StarRocks任务</li>
|
12907
|
+
# <li>137 For-each任务</li>
|
12908
|
+
# </ul>
|
12909
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12910
|
+
# @type TaskTypeId: Integer
|
12869
12911
|
|
12870
|
-
attr_accessor :TaskId, :TaskName, :ModifyType, :TaskStatus, :SubmitPreCheck, :SubmitPreCheckDetailList, :ExecutorGroupId, :ExecutorGroupName
|
12912
|
+
attr_accessor :TaskId, :TaskName, :ModifyType, :TaskStatus, :SubmitPreCheck, :SubmitPreCheckDetailList, :ExecutorGroupId, :ExecutorGroupName, :TaskTypeId
|
12871
12913
|
|
12872
|
-
def initialize(taskid=nil, taskname=nil, modifytype=nil, taskstatus=nil, submitprecheck=nil, submitprecheckdetaillist=nil, executorgroupid=nil, executorgroupname=nil)
|
12914
|
+
def initialize(taskid=nil, taskname=nil, modifytype=nil, taskstatus=nil, submitprecheck=nil, submitprecheckdetaillist=nil, executorgroupid=nil, executorgroupname=nil, tasktypeid=nil)
|
12873
12915
|
@TaskId = taskid
|
12874
12916
|
@TaskName = taskname
|
12875
12917
|
@ModifyType = modifytype
|
@@ -12878,6 +12920,7 @@ module TencentCloud
|
|
12878
12920
|
@SubmitPreCheckDetailList = submitprecheckdetaillist
|
12879
12921
|
@ExecutorGroupId = executorgroupid
|
12880
12922
|
@ExecutorGroupName = executorgroupname
|
12923
|
+
@TaskTypeId = tasktypeid
|
12881
12924
|
end
|
12882
12925
|
|
12883
12926
|
def deserialize(params)
|
@@ -12896,6 +12939,7 @@ module TencentCloud
|
|
12896
12939
|
end
|
12897
12940
|
@ExecutorGroupId = params['ExecutorGroupId']
|
12898
12941
|
@ExecutorGroupName = params['ExecutorGroupName']
|
12942
|
+
@TaskTypeId = params['TaskTypeId']
|
12899
12943
|
end
|
12900
12944
|
end
|
12901
12945
|
|
@@ -16370,62 +16414,6 @@ module TencentCloud
|
|
16370
16414
|
end
|
16371
16415
|
end
|
16372
16416
|
|
16373
|
-
# DescribeTaskByCycleReport请求参数结构体
|
16374
|
-
class DescribeTaskByCycleReportRequest < TencentCloud::Common::AbstractModel
|
16375
|
-
# @param ProjectId: 项目id
|
16376
|
-
# @type ProjectId: String
|
16377
|
-
# @param Type: 任务周期类型
|
16378
|
-
# @type Type: String
|
16379
|
-
# @param StartTime: 开始时间
|
16380
|
-
# @type StartTime: String
|
16381
|
-
# @param EndTime: 结束时间
|
16382
|
-
# @type EndTime: String
|
16383
|
-
|
16384
|
-
attr_accessor :ProjectId, :Type, :StartTime, :EndTime
|
16385
|
-
|
16386
|
-
def initialize(projectid=nil, type=nil, starttime=nil, endtime=nil)
|
16387
|
-
@ProjectId = projectid
|
16388
|
-
@Type = type
|
16389
|
-
@StartTime = starttime
|
16390
|
-
@EndTime = endtime
|
16391
|
-
end
|
16392
|
-
|
16393
|
-
def deserialize(params)
|
16394
|
-
@ProjectId = params['ProjectId']
|
16395
|
-
@Type = params['Type']
|
16396
|
-
@StartTime = params['StartTime']
|
16397
|
-
@EndTime = params['EndTime']
|
16398
|
-
end
|
16399
|
-
end
|
16400
|
-
|
16401
|
-
# DescribeTaskByCycleReport返回参数结构体
|
16402
|
-
class DescribeTaskByCycleReportResponse < TencentCloud::Common::AbstractModel
|
16403
|
-
# @param Data: 任务周期增长趋势统计
|
16404
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
16405
|
-
# @type Data: Array
|
16406
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16407
|
-
# @type RequestId: String
|
16408
|
-
|
16409
|
-
attr_accessor :Data, :RequestId
|
16410
|
-
|
16411
|
-
def initialize(data=nil, requestid=nil)
|
16412
|
-
@Data = data
|
16413
|
-
@RequestId = requestid
|
16414
|
-
end
|
16415
|
-
|
16416
|
-
def deserialize(params)
|
16417
|
-
unless params['Data'].nil?
|
16418
|
-
@Data = []
|
16419
|
-
params['Data'].each do |i|
|
16420
|
-
taskbystatus_tmp = TaskByStatus.new
|
16421
|
-
taskbystatus_tmp.deserialize(i)
|
16422
|
-
@Data << taskbystatus_tmp
|
16423
|
-
end
|
16424
|
-
end
|
16425
|
-
@RequestId = params['RequestId']
|
16426
|
-
end
|
16427
|
-
end
|
16428
|
-
|
16429
16417
|
# DescribeTaskByCycle请求参数结构体
|
16430
16418
|
class DescribeTaskByCycleRequest < TencentCloud::Common::AbstractModel
|
16431
16419
|
# @param ProjectId: 项目ID
|
@@ -17281,31 +17269,51 @@ module TencentCloud
|
|
17281
17269
|
end
|
17282
17270
|
end
|
17283
17271
|
|
17284
|
-
#
|
17285
|
-
class
|
17286
|
-
# @param
|
17272
|
+
# DescribeTestRunningRecord请求参数结构体
|
17273
|
+
class DescribeTestRunningRecordRequest < TencentCloud::Common::AbstractModel
|
17274
|
+
# @param ProjectId: 项目ID
|
17275
|
+
# @type ProjectId: String
|
17276
|
+
# @param TaskId: 任务id
|
17287
17277
|
# @type TaskId: String
|
17288
|
-
# @param
|
17289
|
-
# @type
|
17278
|
+
# @param SearchWord: 搜索关键词
|
17279
|
+
# @type SearchWord: String
|
17280
|
+
# @param SearchUserUin: 搜索用户UIN
|
17281
|
+
# @type SearchUserUin: String
|
17282
|
+
# @param CreateTime: 试运行记录创建时间
|
17283
|
+
# @type CreateTime: String
|
17284
|
+
# @param EndTime: 试运行记录最大创建结束时间
|
17285
|
+
# @type EndTime: String
|
17286
|
+
# @param RecordIdList: 试运行记录id
|
17287
|
+
# @type RecordIdList: Array
|
17290
17288
|
|
17291
|
-
attr_accessor :TaskId, :
|
17289
|
+
attr_accessor :ProjectId, :TaskId, :SearchWord, :SearchUserUin, :CreateTime, :EndTime, :RecordIdList
|
17292
17290
|
|
17293
|
-
def initialize(taskid=nil,
|
17291
|
+
def initialize(projectid=nil, taskid=nil, searchword=nil, searchuseruin=nil, createtime=nil, endtime=nil, recordidlist=nil)
|
17292
|
+
@ProjectId = projectid
|
17294
17293
|
@TaskId = taskid
|
17295
|
-
@
|
17294
|
+
@SearchWord = searchword
|
17295
|
+
@SearchUserUin = searchuseruin
|
17296
|
+
@CreateTime = createtime
|
17297
|
+
@EndTime = endtime
|
17298
|
+
@RecordIdList = recordidlist
|
17296
17299
|
end
|
17297
17300
|
|
17298
17301
|
def deserialize(params)
|
17302
|
+
@ProjectId = params['ProjectId']
|
17299
17303
|
@TaskId = params['TaskId']
|
17300
|
-
@
|
17304
|
+
@SearchWord = params['SearchWord']
|
17305
|
+
@SearchUserUin = params['SearchUserUin']
|
17306
|
+
@CreateTime = params['CreateTime']
|
17307
|
+
@EndTime = params['EndTime']
|
17308
|
+
@RecordIdList = params['RecordIdList']
|
17301
17309
|
end
|
17302
17310
|
end
|
17303
17311
|
|
17304
|
-
#
|
17305
|
-
class
|
17306
|
-
# @param Data:
|
17312
|
+
# DescribeTestRunningRecord返回参数结构体
|
17313
|
+
class DescribeTestRunningRecordResponse < TencentCloud::Common::AbstractModel
|
17314
|
+
# @param Data: 编排空间试运行任务
|
17307
17315
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17308
|
-
# @type Data:
|
17316
|
+
# @type Data: Array
|
17309
17317
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17310
17318
|
# @type RequestId: String
|
17311
17319
|
|
@@ -17317,39 +17325,43 @@ module TencentCloud
|
|
17317
17325
|
end
|
17318
17326
|
|
17319
17327
|
def deserialize(params)
|
17320
|
-
|
17328
|
+
unless params['Data'].nil?
|
17329
|
+
@Data = []
|
17330
|
+
params['Data'].each do |i|
|
17331
|
+
testrunningrecord_tmp = TestRunningRecord.new
|
17332
|
+
testrunningrecord_tmp.deserialize(i)
|
17333
|
+
@Data << testrunningrecord_tmp
|
17334
|
+
end
|
17335
|
+
end
|
17321
17336
|
@RequestId = params['RequestId']
|
17322
17337
|
end
|
17323
17338
|
end
|
17324
17339
|
|
17325
|
-
#
|
17326
|
-
class
|
17327
|
-
# @param
|
17328
|
-
# @type
|
17329
|
-
# @param
|
17330
|
-
# @type
|
17331
|
-
# @param EndDate: 结束时间,时间戳到秒
|
17332
|
-
# @type EndDate: String
|
17340
|
+
# DescribeThirdTaskRunLog请求参数结构体
|
17341
|
+
class DescribeThirdTaskRunLogRequest < TencentCloud::Common::AbstractModel
|
17342
|
+
# @param TaskId: 任务ID
|
17343
|
+
# @type TaskId: String
|
17344
|
+
# @param CurRunDate: 实例数据时间
|
17345
|
+
# @type CurRunDate: String
|
17333
17346
|
|
17334
|
-
attr_accessor :
|
17347
|
+
attr_accessor :TaskId, :CurRunDate
|
17335
17348
|
|
17336
|
-
def initialize(
|
17337
|
-
@
|
17338
|
-
@
|
17339
|
-
@EndDate = enddate
|
17349
|
+
def initialize(taskid=nil, currundate=nil)
|
17350
|
+
@TaskId = taskid
|
17351
|
+
@CurRunDate = currundate
|
17340
17352
|
end
|
17341
17353
|
|
17342
17354
|
def deserialize(params)
|
17343
|
-
@
|
17344
|
-
@
|
17345
|
-
@EndDate = params['EndDate']
|
17355
|
+
@TaskId = params['TaskId']
|
17356
|
+
@CurRunDate = params['CurRunDate']
|
17346
17357
|
end
|
17347
17358
|
end
|
17348
17359
|
|
17349
|
-
#
|
17350
|
-
class
|
17351
|
-
# @param Data:
|
17352
|
-
#
|
17360
|
+
# DescribeThirdTaskRunLog返回参数结构体
|
17361
|
+
class DescribeThirdTaskRunLogResponse < TencentCloud::Common::AbstractModel
|
17362
|
+
# @param Data: 获取第三方运行日志
|
17363
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17364
|
+
# @type Data: String
|
17353
17365
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17354
17366
|
# @type RequestId: String
|
17355
17367
|
|
@@ -17361,16 +17373,60 @@ module TencentCloud
|
|
17361
17373
|
end
|
17362
17374
|
|
17363
17375
|
def deserialize(params)
|
17364
|
-
|
17365
|
-
@Data = TopTableStat.new
|
17366
|
-
@Data.deserialize(params['Data'])
|
17367
|
-
end
|
17376
|
+
@Data = params['Data']
|
17368
17377
|
@RequestId = params['RequestId']
|
17369
17378
|
end
|
17370
17379
|
end
|
17371
17380
|
|
17372
|
-
#
|
17373
|
-
class
|
17381
|
+
# DescribeTopTableStat请求参数结构体
|
17382
|
+
class DescribeTopTableStatRequest < TencentCloud::Common::AbstractModel
|
17383
|
+
# @param ProjectId: 项目id
|
17384
|
+
# @type ProjectId: String
|
17385
|
+
# @param BeginDate: 开始时间,时间戳到秒
|
17386
|
+
# @type BeginDate: String
|
17387
|
+
# @param EndDate: 结束时间,时间戳到秒
|
17388
|
+
# @type EndDate: String
|
17389
|
+
|
17390
|
+
attr_accessor :ProjectId, :BeginDate, :EndDate
|
17391
|
+
|
17392
|
+
def initialize(projectid=nil, begindate=nil, enddate=nil)
|
17393
|
+
@ProjectId = projectid
|
17394
|
+
@BeginDate = begindate
|
17395
|
+
@EndDate = enddate
|
17396
|
+
end
|
17397
|
+
|
17398
|
+
def deserialize(params)
|
17399
|
+
@ProjectId = params['ProjectId']
|
17400
|
+
@BeginDate = params['BeginDate']
|
17401
|
+
@EndDate = params['EndDate']
|
17402
|
+
end
|
17403
|
+
end
|
17404
|
+
|
17405
|
+
# DescribeTopTableStat返回参数结构体
|
17406
|
+
class DescribeTopTableStatResponse < TencentCloud::Common::AbstractModel
|
17407
|
+
# @param Data: 结果
|
17408
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.TopTableStat`
|
17409
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17410
|
+
# @type RequestId: String
|
17411
|
+
|
17412
|
+
attr_accessor :Data, :RequestId
|
17413
|
+
|
17414
|
+
def initialize(data=nil, requestid=nil)
|
17415
|
+
@Data = data
|
17416
|
+
@RequestId = requestid
|
17417
|
+
end
|
17418
|
+
|
17419
|
+
def deserialize(params)
|
17420
|
+
unless params['Data'].nil?
|
17421
|
+
@Data = TopTableStat.new
|
17422
|
+
@Data.deserialize(params['Data'])
|
17423
|
+
end
|
17424
|
+
@RequestId = params['RequestId']
|
17425
|
+
end
|
17426
|
+
end
|
17427
|
+
|
17428
|
+
# DescribeTrendStat请求参数结构体
|
17429
|
+
class DescribeTrendStatRequest < TencentCloud::Common::AbstractModel
|
17374
17430
|
# @param ProjectId: 项目id
|
17375
17431
|
# @type ProjectId: String
|
17376
17432
|
# @param BeginDate: 开始时间,时间戳到秒
|
@@ -18326,132 +18382,6 @@ module TencentCloud
|
|
18326
18382
|
end
|
18327
18383
|
end
|
18328
18384
|
|
18329
|
-
# 试运行记录
|
18330
|
-
class DrInstanceOpsDto < TencentCloud::Common::AbstractModel
|
18331
|
-
# @param TaskSource: 任务来源
|
18332
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18333
|
-
# @type TaskSource: String
|
18334
|
-
# @param JobId: 编排空间jobId
|
18335
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18336
|
-
# @type JobId: String
|
18337
|
-
# @param RecordId: 任务提交记录Id
|
18338
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18339
|
-
# @type RecordId: Integer
|
18340
|
-
# @param SonRecordId: 子任务记录id
|
18341
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18342
|
-
# @type SonRecordId: Integer
|
18343
|
-
# @param InstanceId: 任务实例Id
|
18344
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18345
|
-
# @type InstanceId: String
|
18346
|
-
# @param TaskId: 编排空间为任务id, 开发空间为脚本id
|
18347
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18348
|
-
# @type TaskId: String
|
18349
|
-
# @param RemotePath: 脚本cos地址
|
18350
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18351
|
-
# @type RemotePath: String
|
18352
|
-
# @param ScriptContent: 试运行内容
|
18353
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18354
|
-
# @type ScriptContent: String
|
18355
|
-
# @param CreateTime: 任务提交时间
|
18356
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18357
|
-
# @type CreateTime: String
|
18358
|
-
# @param StartTime: 任务启动时间
|
18359
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18360
|
-
# @type StartTime: String
|
18361
|
-
# @param Duration: 运行时长(秒)
|
18362
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18363
|
-
# @type Duration: String
|
18364
|
-
# @param Status: 试运行状态
|
18365
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18366
|
-
# @type Status: String
|
18367
|
-
# @param TaskName: 编排空间为任务名称,开发空间为脚本名称
|
18368
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18369
|
-
# @type TaskName: String
|
18370
|
-
# @param SubmitUserName: 试运行提交人
|
18371
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18372
|
-
# @type SubmitUserName: String
|
18373
|
-
# @param SubmitUserId: 试运行提交人userId
|
18374
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18375
|
-
# @type SubmitUserId: String
|
18376
|
-
# @param TaskType: 任务类型
|
18377
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18378
|
-
# @type TaskType: String
|
18379
|
-
# @param HasResultSet: 是否含有结果集
|
18380
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18381
|
-
# @type HasResultSet: Boolean
|
18382
|
-
|
18383
|
-
attr_accessor :TaskSource, :JobId, :RecordId, :SonRecordId, :InstanceId, :TaskId, :RemotePath, :ScriptContent, :CreateTime, :StartTime, :Duration, :Status, :TaskName, :SubmitUserName, :SubmitUserId, :TaskType, :HasResultSet
|
18384
|
-
|
18385
|
-
def initialize(tasksource=nil, jobid=nil, recordid=nil, sonrecordid=nil, instanceid=nil, taskid=nil, remotepath=nil, scriptcontent=nil, createtime=nil, starttime=nil, duration=nil, status=nil, taskname=nil, submitusername=nil, submituserid=nil, tasktype=nil, hasresultset=nil)
|
18386
|
-
@TaskSource = tasksource
|
18387
|
-
@JobId = jobid
|
18388
|
-
@RecordId = recordid
|
18389
|
-
@SonRecordId = sonrecordid
|
18390
|
-
@InstanceId = instanceid
|
18391
|
-
@TaskId = taskid
|
18392
|
-
@RemotePath = remotepath
|
18393
|
-
@ScriptContent = scriptcontent
|
18394
|
-
@CreateTime = createtime
|
18395
|
-
@StartTime = starttime
|
18396
|
-
@Duration = duration
|
18397
|
-
@Status = status
|
18398
|
-
@TaskName = taskname
|
18399
|
-
@SubmitUserName = submitusername
|
18400
|
-
@SubmitUserId = submituserid
|
18401
|
-
@TaskType = tasktype
|
18402
|
-
@HasResultSet = hasresultset
|
18403
|
-
end
|
18404
|
-
|
18405
|
-
def deserialize(params)
|
18406
|
-
@TaskSource = params['TaskSource']
|
18407
|
-
@JobId = params['JobId']
|
18408
|
-
@RecordId = params['RecordId']
|
18409
|
-
@SonRecordId = params['SonRecordId']
|
18410
|
-
@InstanceId = params['InstanceId']
|
18411
|
-
@TaskId = params['TaskId']
|
18412
|
-
@RemotePath = params['RemotePath']
|
18413
|
-
@ScriptContent = params['ScriptContent']
|
18414
|
-
@CreateTime = params['CreateTime']
|
18415
|
-
@StartTime = params['StartTime']
|
18416
|
-
@Duration = params['Duration']
|
18417
|
-
@Status = params['Status']
|
18418
|
-
@TaskName = params['TaskName']
|
18419
|
-
@SubmitUserName = params['SubmitUserName']
|
18420
|
-
@SubmitUserId = params['SubmitUserId']
|
18421
|
-
@TaskType = params['TaskType']
|
18422
|
-
@HasResultSet = params['HasResultSet']
|
18423
|
-
end
|
18424
|
-
end
|
18425
|
-
|
18426
|
-
# 试运行记录
|
18427
|
-
class DrInstanceOpsDtoPage < TencentCloud::Common::AbstractModel
|
18428
|
-
# @param TotalCount: 记录总数
|
18429
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18430
|
-
# @type TotalCount: Integer
|
18431
|
-
# @param Items: 记录列表
|
18432
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18433
|
-
# @type Items: Array
|
18434
|
-
|
18435
|
-
attr_accessor :TotalCount, :Items
|
18436
|
-
|
18437
|
-
def initialize(totalcount=nil, items=nil)
|
18438
|
-
@TotalCount = totalcount
|
18439
|
-
@Items = items
|
18440
|
-
end
|
18441
|
-
|
18442
|
-
def deserialize(params)
|
18443
|
-
@TotalCount = params['TotalCount']
|
18444
|
-
unless params['Items'].nil?
|
18445
|
-
@Items = []
|
18446
|
-
params['Items'].each do |i|
|
18447
|
-
drinstanceopsdto_tmp = DrInstanceOpsDto.new
|
18448
|
-
drinstanceopsdto_tmp.deserialize(i)
|
18449
|
-
@Items << drinstanceopsdto_tmp
|
18450
|
-
end
|
18451
|
-
end
|
18452
|
-
end
|
18453
|
-
end
|
18454
|
-
|
18455
18385
|
# DryRunDIOfflineTask请求参数结构体
|
18456
18386
|
class DryRunDIOfflineTaskRequest < TencentCloud::Common::AbstractModel
|
18457
18387
|
# @param TaskId: 任务Id
|
@@ -18796,10 +18726,25 @@ module TencentCloud
|
|
18796
18726
|
# @param CmdArgs: 入参
|
18797
18727
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
18798
18728
|
# @type CmdArgs: String
|
18729
|
+
# @param VCoreSeconds: 使用虚拟核心秒数
|
18730
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
18731
|
+
# @type VCoreSeconds: Integer
|
18732
|
+
# @param MemorySeconds: 使用的内存秒数
|
18733
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
18734
|
+
# @type MemorySeconds: Integer
|
18735
|
+
# @param EmrUserName: EMR用户名
|
18736
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
18737
|
+
# @type EmrUserName: String
|
18738
|
+
# @param QueryId: 任务的查询ID
|
18739
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
18740
|
+
# @type QueryId: String
|
18741
|
+
# @param ApplicationId: 应用程序ID
|
18742
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
18743
|
+
# @type ApplicationId: String
|
18799
18744
|
|
18800
|
-
attr_accessor :EngineSubmitTime, :EngineExeTime, :EngineExeTimes, :CuConsume, :ResourceUsage, :EngineName, :EngineExeStatus, :TaskKind, :TaskType, :TaskContent, :InputBytesSum, :ShuffleReadBytesSum, :ShuffleReadRecordsSum, :OutputRecordsSum, :OutputBytesSum, :OutputFilesNum, :OutputSmallFilesNum, :WaitTime, :QueryResultTime, :CmdArgs
|
18745
|
+
attr_accessor :EngineSubmitTime, :EngineExeTime, :EngineExeTimes, :CuConsume, :ResourceUsage, :EngineName, :EngineExeStatus, :TaskKind, :TaskType, :TaskContent, :InputBytesSum, :ShuffleReadBytesSum, :ShuffleReadRecordsSum, :OutputRecordsSum, :OutputBytesSum, :OutputFilesNum, :OutputSmallFilesNum, :WaitTime, :QueryResultTime, :CmdArgs, :VCoreSeconds, :MemorySeconds, :EmrUserName, :QueryId, :ApplicationId
|
18801
18746
|
|
18802
|
-
def initialize(enginesubmittime=nil, engineexetime=nil, engineexetimes=nil, cuconsume=nil, resourceusage=nil, enginename=nil, engineexestatus=nil, taskkind=nil, tasktype=nil, taskcontent=nil, inputbytessum=nil, shufflereadbytessum=nil, shufflereadrecordssum=nil, outputrecordssum=nil, outputbytessum=nil, outputfilesnum=nil, outputsmallfilesnum=nil, waittime=nil, queryresulttime=nil, cmdargs=nil)
|
18747
|
+
def initialize(enginesubmittime=nil, engineexetime=nil, engineexetimes=nil, cuconsume=nil, resourceusage=nil, enginename=nil, engineexestatus=nil, taskkind=nil, tasktype=nil, taskcontent=nil, inputbytessum=nil, shufflereadbytessum=nil, shufflereadrecordssum=nil, outputrecordssum=nil, outputbytessum=nil, outputfilesnum=nil, outputsmallfilesnum=nil, waittime=nil, queryresulttime=nil, cmdargs=nil, vcoreseconds=nil, memoryseconds=nil, emrusername=nil, queryid=nil, applicationid=nil)
|
18803
18748
|
@EngineSubmitTime = enginesubmittime
|
18804
18749
|
@EngineExeTime = engineexetime
|
18805
18750
|
@EngineExeTimes = engineexetimes
|
@@ -18820,6 +18765,11 @@ module TencentCloud
|
|
18820
18765
|
@WaitTime = waittime
|
18821
18766
|
@QueryResultTime = queryresulttime
|
18822
18767
|
@CmdArgs = cmdargs
|
18768
|
+
@VCoreSeconds = vcoreseconds
|
18769
|
+
@MemorySeconds = memoryseconds
|
18770
|
+
@EmrUserName = emrusername
|
18771
|
+
@QueryId = queryid
|
18772
|
+
@ApplicationId = applicationid
|
18823
18773
|
end
|
18824
18774
|
|
18825
18775
|
def deserialize(params)
|
@@ -18843,6 +18793,11 @@ module TencentCloud
|
|
18843
18793
|
@WaitTime = params['WaitTime']
|
18844
18794
|
@QueryResultTime = params['QueryResultTime']
|
18845
18795
|
@CmdArgs = params['CmdArgs']
|
18796
|
+
@VCoreSeconds = params['VCoreSeconds']
|
18797
|
+
@MemorySeconds = params['MemorySeconds']
|
18798
|
+
@EmrUserName = params['EmrUserName']
|
18799
|
+
@QueryId = params['QueryId']
|
18800
|
+
@ApplicationId = params['ApplicationId']
|
18846
18801
|
end
|
18847
18802
|
end
|
18848
18803
|
|
@@ -28678,10 +28633,13 @@ module TencentCloud
|
|
28678
28633
|
# @param Owner: 项目负责人
|
28679
28634
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
28680
28635
|
# @type Owner: :class:`Tencentcloud::Wedata.v20210820.models.BaseUser`
|
28636
|
+
# @param WorkspaceExt: 项目扩展信息
|
28637
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28638
|
+
# @type WorkspaceExt: Array
|
28681
28639
|
|
28682
|
-
attr_accessor :TenantId, :ProjectId, :ProjectName, :DisplayName, :Region, :Description, :CreateTime, :Creator, :Tenant, :AdminUsers, :Clusters, :Params, :Status, :Model, :SecondModuleList, :Owner
|
28640
|
+
attr_accessor :TenantId, :ProjectId, :ProjectName, :DisplayName, :Region, :Description, :CreateTime, :Creator, :Tenant, :AdminUsers, :Clusters, :Params, :Status, :Model, :SecondModuleList, :Owner, :WorkspaceExt
|
28683
28641
|
|
28684
|
-
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)
|
28642
|
+
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)
|
28685
28643
|
@TenantId = tenantid
|
28686
28644
|
@ProjectId = projectid
|
28687
28645
|
@ProjectName = projectname
|
@@ -28698,6 +28656,7 @@ module TencentCloud
|
|
28698
28656
|
@Model = model
|
28699
28657
|
@SecondModuleList = secondmodulelist
|
28700
28658
|
@Owner = owner
|
28659
|
+
@WorkspaceExt = workspaceext
|
28701
28660
|
end
|
28702
28661
|
|
28703
28662
|
def deserialize(params)
|
@@ -28740,6 +28699,14 @@ module TencentCloud
|
|
28740
28699
|
@Owner = BaseUser.new
|
28741
28700
|
@Owner.deserialize(params['Owner'])
|
28742
28701
|
end
|
28702
|
+
unless params['WorkspaceExt'].nil?
|
28703
|
+
@WorkspaceExt = []
|
28704
|
+
params['WorkspaceExt'].each do |i|
|
28705
|
+
workspaceext_tmp = WorkspaceExt.new
|
28706
|
+
workspaceext_tmp.deserialize(i)
|
28707
|
+
@WorkspaceExt << workspaceext_tmp
|
28708
|
+
end
|
28709
|
+
end
|
28743
28710
|
end
|
28744
28711
|
end
|
28745
28712
|
|
@@ -29842,10 +29809,14 @@ module TencentCloud
|
|
29842
29809
|
# @type ScheduleTimeZone: String
|
29843
29810
|
# @param ClearLink: 是否自动清理不支持的任务链接
|
29844
29811
|
# @type ClearLink: Boolean
|
29812
|
+
# @param MainCyclicConfig: ModifyCycleValue为1的时候生效,表示默认修改的上游依赖-时间维度
|
29813
|
+
# @type MainCyclicConfig: String
|
29814
|
+
# @param SubordinateCyclicConfig: ModifyCycleValue为1的时候生效,表示默认修改的上游依赖-实例范围
|
29815
|
+
# @type SubordinateCyclicConfig: String
|
29845
29816
|
|
29846
|
-
attr_accessor :ProjectId, :WorkflowId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :CrontabExpression, :ModifyCycleValue, :CalendarOpen, :CalendarName, :CalendarId, :ScheduleTimeZone, :ClearLink
|
29817
|
+
attr_accessor :ProjectId, :WorkflowId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :CrontabExpression, :ModifyCycleValue, :CalendarOpen, :CalendarName, :CalendarId, :ScheduleTimeZone, :ClearLink, :MainCyclicConfig, :SubordinateCyclicConfig
|
29847
29818
|
|
29848
|
-
def initialize(projectid=nil, workflowid=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, executionstarttime=nil, executionendtime=nil, instanceinitstrategy=nil, dependencyworkflow=nil, crontabexpression=nil, modifycyclevalue=nil, calendaropen=nil, calendarname=nil, calendarid=nil, scheduletimezone=nil, clearlink=nil)
|
29819
|
+
def initialize(projectid=nil, workflowid=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, executionstarttime=nil, executionendtime=nil, instanceinitstrategy=nil, dependencyworkflow=nil, crontabexpression=nil, modifycyclevalue=nil, calendaropen=nil, calendarname=nil, calendarid=nil, scheduletimezone=nil, clearlink=nil, maincyclicconfig=nil, subordinatecyclicconfig=nil)
|
29849
29820
|
@ProjectId = projectid
|
29850
29821
|
@WorkflowId = workflowid
|
29851
29822
|
@DelayTime = delaytime
|
@@ -29867,6 +29838,8 @@ module TencentCloud
|
|
29867
29838
|
@CalendarId = calendarid
|
29868
29839
|
@ScheduleTimeZone = scheduletimezone
|
29869
29840
|
@ClearLink = clearlink
|
29841
|
+
@MainCyclicConfig = maincyclicconfig
|
29842
|
+
@SubordinateCyclicConfig = subordinatecyclicconfig
|
29870
29843
|
end
|
29871
29844
|
|
29872
29845
|
def deserialize(params)
|
@@ -29891,6 +29864,8 @@ module TencentCloud
|
|
29891
29864
|
@CalendarId = params['CalendarId']
|
29892
29865
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
29893
29866
|
@ClearLink = params['ClearLink']
|
29867
|
+
@MainCyclicConfig = params['MainCyclicConfig']
|
29868
|
+
@SubordinateCyclicConfig = params['SubordinateCyclicConfig']
|
29894
29869
|
end
|
29895
29870
|
end
|
29896
29871
|
|
@@ -31106,10 +31081,43 @@ module TencentCloud
|
|
31106
31081
|
# @param TriggerCondition: 触发条件
|
31107
31082
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
31108
31083
|
# @type TriggerCondition: String
|
31084
|
+
# @param RuleGroupName: 任务名称
|
31085
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31086
|
+
# @type RuleGroupName: String
|
31087
|
+
# @param DatasourceId: 数据源ID
|
31088
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31089
|
+
# @type DatasourceId: String
|
31090
|
+
# @param DatasourceName: 数据源名称
|
31091
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31092
|
+
# @type DatasourceName: String
|
31093
|
+
# @param DatabaseName: 数据库名称
|
31094
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31095
|
+
# @type DatabaseName: String
|
31096
|
+
# @param SchemaName: 模式名称
|
31097
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31098
|
+
# @type SchemaName: String
|
31099
|
+
# @param TableName: 表名称
|
31100
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31101
|
+
# @type TableName: String
|
31102
|
+
# @param RuleGroupExist: 判断是否屏蔽监控 0.屏蔽 1.不屏蔽
|
31103
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31104
|
+
# @type RuleGroupExist: Integer
|
31105
|
+
# @param DatasourceType: 数据源类型
|
31106
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31107
|
+
# @type DatasourceType: Integer
|
31108
|
+
# @param RuleGroupTableId: 数据表id
|
31109
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31110
|
+
# @type RuleGroupTableId: Integer
|
31111
|
+
# @param MonitorType: 监控方式 1.未配置, 2.关联生产调度, 3.离线周期检测
|
31112
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31113
|
+
# @type MonitorType: Integer
|
31114
|
+
# @param FinishTime: 执行结束时间
|
31115
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31116
|
+
# @type FinishTime: String
|
31109
31117
|
|
31110
|
-
attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel, :TriggerCondition
|
31118
|
+
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
|
31111
31119
|
|
31112
|
-
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)
|
31120
|
+
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)
|
31113
31121
|
@RuleExecId = ruleexecid
|
31114
31122
|
@RuleGroupExecId = rulegroupexecid
|
31115
31123
|
@RuleGroupId = rulegroupid
|
@@ -31132,6 +31140,17 @@ module TencentCloud
|
|
31132
31140
|
@StartTime = starttime
|
31133
31141
|
@AlarmLevel = alarmlevel
|
31134
31142
|
@TriggerCondition = triggercondition
|
31143
|
+
@RuleGroupName = rulegroupname
|
31144
|
+
@DatasourceId = datasourceid
|
31145
|
+
@DatasourceName = datasourcename
|
31146
|
+
@DatabaseName = databasename
|
31147
|
+
@SchemaName = schemaname
|
31148
|
+
@TableName = tablename
|
31149
|
+
@RuleGroupExist = rulegroupexist
|
31150
|
+
@DatasourceType = datasourcetype
|
31151
|
+
@RuleGroupTableId = rulegrouptableid
|
31152
|
+
@MonitorType = monitortype
|
31153
|
+
@FinishTime = finishtime
|
31135
31154
|
end
|
31136
31155
|
|
31137
31156
|
def deserialize(params)
|
@@ -31163,6 +31182,17 @@ module TencentCloud
|
|
31163
31182
|
@StartTime = params['StartTime']
|
31164
31183
|
@AlarmLevel = params['AlarmLevel']
|
31165
31184
|
@TriggerCondition = params['TriggerCondition']
|
31185
|
+
@RuleGroupName = params['RuleGroupName']
|
31186
|
+
@DatasourceId = params['DatasourceId']
|
31187
|
+
@DatasourceName = params['DatasourceName']
|
31188
|
+
@DatabaseName = params['DatabaseName']
|
31189
|
+
@SchemaName = params['SchemaName']
|
31190
|
+
@TableName = params['TableName']
|
31191
|
+
@RuleGroupExist = params['RuleGroupExist']
|
31192
|
+
@DatasourceType = params['DatasourceType']
|
31193
|
+
@RuleGroupTableId = params['RuleGroupTableId']
|
31194
|
+
@MonitorType = params['MonitorType']
|
31195
|
+
@FinishTime = params['FinishTime']
|
31166
31196
|
end
|
31167
31197
|
end
|
31168
31198
|
|
@@ -32436,15 +32466,15 @@ module TencentCloud
|
|
32436
32466
|
|
32437
32467
|
# RunRerunScheduleInstances请求参数结构体
|
32438
32468
|
class RunRerunScheduleInstancesRequest < TencentCloud::Common::AbstractModel
|
32439
|
-
# @param Instances:
|
32469
|
+
# @param Instances: 必填,实例列表,每项必填TaskId ,CurRunDate
|
32440
32470
|
# @type Instances: Array
|
32441
|
-
# @param CheckFather:
|
32471
|
+
# @param CheckFather: 必填,检查父任务类型, true: 检查父任务; false: 不检查父任务
|
32442
32472
|
# @type CheckFather: Boolean
|
32443
|
-
# @param RerunType:
|
32473
|
+
# @param RerunType: 必填,重跑类型, 1: 自身; 3: 孩子; 2: 自身以及孩子
|
32444
32474
|
# @type RerunType: String
|
32445
32475
|
# @param DependentWay: 实例依赖方式, 1: 自依赖; 2: 任务依赖; 3: 自依赖及父子依赖
|
32446
32476
|
# @type DependentWay: String
|
32447
|
-
# @param SkipEventListening:
|
32477
|
+
# @param SkipEventListening: 必填,重跑忽略事件监听与否
|
32448
32478
|
# @type SkipEventListening: Boolean
|
32449
32479
|
# @param SonInstanceType: 下游实例范围 1: 所在工作流 2: 所在项目 3: 所有跨工作流依赖的项目
|
32450
32480
|
# @type SonInstanceType: String
|
@@ -32456,7 +32486,7 @@ module TencentCloud
|
|
32456
32486
|
# @type OperatorName: String
|
32457
32487
|
# @param OperatorId: 操作者id
|
32458
32488
|
# @type OperatorId: String
|
32459
|
-
# @param ProjectId:
|
32489
|
+
# @param ProjectId: 必填,项目id
|
32460
32490
|
# @type ProjectId: String
|
32461
32491
|
# @param ProjectIdent: 项目标志
|
32462
32492
|
# @type ProjectIdent: String
|
@@ -32472,7 +32502,7 @@ module TencentCloud
|
|
32472
32502
|
# @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
|
32473
32503
|
# @param IsCount: 是否计算总数
|
32474
32504
|
# @type IsCount: Boolean
|
32475
|
-
# @param AsyncMode:
|
32505
|
+
# @param AsyncMode: 必填,是否异步模式
|
32476
32506
|
# @type AsyncMode: Boolean
|
32477
32507
|
# @param CheckParentType: 是否检查上游任务: ALL(全部)、 MAKE_SCOPE(选中)、NONE (全部不检查)
|
32478
32508
|
# @type CheckParentType: String
|
@@ -32488,10 +32518,14 @@ module TencentCloud
|
|
32488
32518
|
# @type DataTimeOrder: Integer
|
32489
32519
|
# @param ReDoParams: 重跑参数
|
32490
32520
|
# @type ReDoParams: String
|
32521
|
+
# @param MapParamList: 重跑实例自定义参数
|
32522
|
+
# @type MapParamList: Array
|
32523
|
+
# @param AppParam: 引擎应用执行参数
|
32524
|
+
# @type AppParam: String
|
32491
32525
|
|
32492
|
-
attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode, :CheckParentType, :SameSelfDependType, :ParallelNum, :SameSelfWorkflowDependType, :SelfWorkflowDependency, :DataTimeOrder, :ReDoParams
|
32526
|
+
attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :AsyncMode, :CheckParentType, :SameSelfDependType, :ParallelNum, :SameSelfWorkflowDependType, :SelfWorkflowDependency, :DataTimeOrder, :ReDoParams, :MapParamList, :AppParam
|
32493
32527
|
|
32494
|
-
def initialize(instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil, searchcondition=nil, opttype=nil, operatorname=nil, operatorid=nil, projectid=nil, projectident=nil, projectname=nil, pageindex=nil, pagesize=nil, count=nil, requestbaseinfo=nil, iscount=nil, asyncmode=nil, checkparenttype=nil, sameselfdependtype=nil, parallelnum=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil, datatimeorder=nil, redoparams=nil)
|
32528
|
+
def initialize(instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil, searchcondition=nil, opttype=nil, operatorname=nil, operatorid=nil, projectid=nil, projectident=nil, projectname=nil, pageindex=nil, pagesize=nil, count=nil, requestbaseinfo=nil, iscount=nil, asyncmode=nil, checkparenttype=nil, sameselfdependtype=nil, parallelnum=nil, sameselfworkflowdependtype=nil, selfworkflowdependency=nil, datatimeorder=nil, redoparams=nil, mapparamlist=nil, appparam=nil)
|
32495
32529
|
@Instances = instances
|
32496
32530
|
@CheckFather = checkfather
|
32497
32531
|
@RerunType = reruntype
|
@@ -32518,6 +32552,8 @@ module TencentCloud
|
|
32518
32552
|
@SelfWorkflowDependency = selfworkflowdependency
|
32519
32553
|
@DataTimeOrder = datatimeorder
|
32520
32554
|
@ReDoParams = redoparams
|
32555
|
+
@MapParamList = mapparamlist
|
32556
|
+
@AppParam = appparam
|
32521
32557
|
end
|
32522
32558
|
|
32523
32559
|
def deserialize(params)
|
@@ -32560,6 +32596,15 @@ module TencentCloud
|
|
32560
32596
|
@SelfWorkflowDependency = params['SelfWorkflowDependency']
|
32561
32597
|
@DataTimeOrder = params['DataTimeOrder']
|
32562
32598
|
@ReDoParams = params['ReDoParams']
|
32599
|
+
unless params['MapParamList'].nil?
|
32600
|
+
@MapParamList = []
|
32601
|
+
params['MapParamList'].each do |i|
|
32602
|
+
strtostrmap_tmp = StrToStrMap.new
|
32603
|
+
strtostrmap_tmp.deserialize(i)
|
32604
|
+
@MapParamList << strtostrmap_tmp
|
32605
|
+
end
|
32606
|
+
end
|
32607
|
+
@AppParam = params['AppParam']
|
32563
32608
|
end
|
32564
32609
|
end
|
32565
32610
|
|
@@ -35921,10 +35966,16 @@ module TencentCloud
|
|
35921
35966
|
# @param ReportTarget: 0- wedata, 1-inlong
|
35922
35967
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
35923
35968
|
# @type ReportTarget: Integer
|
35969
|
+
# @param AlarmReceiverGroups: 告警接收组
|
35970
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
35971
|
+
# @type AlarmReceiverGroups: Array
|
35972
|
+
# @param AlarmReceiverGroupFlag: 告警接收组标记,0代表历史版本,1代表新版本
|
35973
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
35974
|
+
# @type AlarmReceiverGroupFlag: Integer
|
35924
35975
|
|
35925
|
-
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :QuietPeriods, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description, :LarkWebHooks, :DingDingWebHooks, :BusinessType, :AlarmMessageRule, :ReportTarget
|
35976
|
+
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :QuietPeriods, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description, :LarkWebHooks, :DingDingWebHooks, :BusinessType, :AlarmMessageRule, :ReportTarget, :AlarmReceiverGroups, :AlarmReceiverGroupFlag
|
35926
35977
|
|
35927
|
-
def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, quietperiods=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil, larkwebhooks=nil, dingdingwebhooks=nil, businesstype=nil, alarmmessagerule=nil, reporttarget=nil)
|
35978
|
+
def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, quietperiods=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil, larkwebhooks=nil, dingdingwebhooks=nil, businesstype=nil, alarmmessagerule=nil, reporttarget=nil, alarmreceivergroups=nil, alarmreceivergroupflag=nil)
|
35928
35979
|
@TaskId = taskid
|
35929
35980
|
@RegularName = regularname
|
35930
35981
|
@RegularStatus = regularstatus
|
@@ -35961,6 +36012,8 @@ module TencentCloud
|
|
35961
36012
|
@BusinessType = businesstype
|
35962
36013
|
@AlarmMessageRule = alarmmessagerule
|
35963
36014
|
@ReportTarget = reporttarget
|
36015
|
+
@AlarmReceiverGroups = alarmreceivergroups
|
36016
|
+
@AlarmReceiverGroupFlag = alarmreceivergroupflag
|
35964
36017
|
end
|
35965
36018
|
|
35966
36019
|
def deserialize(params)
|
@@ -36014,6 +36067,15 @@ module TencentCloud
|
|
36014
36067
|
@BusinessType = params['BusinessType']
|
36015
36068
|
@AlarmMessageRule = params['AlarmMessageRule']
|
36016
36069
|
@ReportTarget = params['ReportTarget']
|
36070
|
+
unless params['AlarmReceiverGroups'].nil?
|
36071
|
+
@AlarmReceiverGroups = []
|
36072
|
+
params['AlarmReceiverGroups'].each do |i|
|
36073
|
+
alarmreceivergroup_tmp = AlarmReceiverGroup.new
|
36074
|
+
alarmreceivergroup_tmp.deserialize(i)
|
36075
|
+
@AlarmReceiverGroups << alarmreceivergroup_tmp
|
36076
|
+
end
|
36077
|
+
end
|
36078
|
+
@AlarmReceiverGroupFlag = params['AlarmReceiverGroupFlag']
|
36017
36079
|
end
|
36018
36080
|
end
|
36019
36081
|
|
@@ -36359,7 +36421,15 @@ module TencentCloud
|
|
36359
36421
|
# @param LastUpdate: 更新时间
|
36360
36422
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36361
36423
|
# @type LastUpdate: String
|
36362
|
-
# @param Status:
|
36424
|
+
# @param Status: <p>任务状态,取值范围:</p>
|
36425
|
+
# <ul>
|
36426
|
+
# <li>N 新建</li>
|
36427
|
+
# <li>Y 运行</li>
|
36428
|
+
# <li>F 停止</li>
|
36429
|
+
# <li>O 冻结</li>
|
36430
|
+
# <li>T 停止中</li>
|
36431
|
+
# <li>INVALID 已失效</li>
|
36432
|
+
# </ul>
|
36363
36433
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36364
36434
|
# @type Status: String
|
36365
36435
|
# @param InCharge: 责任人
|
@@ -36512,7 +36582,15 @@ module TencentCloud
|
|
36512
36582
|
# @param DependencyConfigList: 依赖配置
|
36513
36583
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36514
36584
|
# @type DependencyConfigList: Array
|
36515
|
-
# @param VirtualTaskStatus:
|
36585
|
+
# @param VirtualTaskStatus: <p>任务状态,取值范围:</p>
|
36586
|
+
# <ul>
|
36587
|
+
# <li>N 新建</li>
|
36588
|
+
# <li>Y 运行</li>
|
36589
|
+
# <li>F 停止</li>
|
36590
|
+
# <li>O 冻结</li>
|
36591
|
+
# <li>T 停止中</li>
|
36592
|
+
# <li>INVALID 已失效</li>
|
36593
|
+
# </ul>
|
36516
36594
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36517
36595
|
# @type VirtualTaskStatus: String
|
36518
36596
|
# @param RecycleTips: 回收站还原提示语
|
@@ -36633,10 +36711,17 @@ module TencentCloud
|
|
36633
36711
|
# @param AllowRedoType: 允许重跑类 ALL 无论实例成功或者失败,都允许重跑 FAILURE 只有失败的实例允许重跑,成功的实例不允许重跑 NONE 无论成功或者失败,都不允许重跑
|
36634
36712
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36635
36713
|
# @type AllowRedoType: String
|
36714
|
+
# @param BundleId: BundleId
|
36715
|
+
# CI/CD工程生成的bundle唯一标识
|
36716
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
36717
|
+
# @type BundleId: String
|
36718
|
+
# @param BundleName: Bundle名称
|
36719
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
36720
|
+
# @type BundleName: String
|
36636
36721
|
|
36637
|
-
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :ProjectId, :ProjectIdent, :ProjectName, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :Retriable, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :TaskExt, :Properties, :Notes, :InstanceInitStrategy, :YarnQueue, :Alarms, :Alarm, :ScriptChange, :Submit, :LastSchedulerCommitTime, :NormalizedJobStartTime, :RecoverFreezeStartTime, :SourceServer, :TargetServer, :Tasks, :Creater, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :DependencyConfigList, :VirtualTaskStatus, :RecycleTips, :RecycleUser, :NewOrUpdate, :Params, :TaskLinkInfo, :ImportResult, :ImportErrMsg, :ContentType, :TaskAutoSubmit, :ProductName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :SchedulerDesc, :ResourceGroup, :VersionDesc, :LinkId, :UserFileId, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :ParamInList, :ParamOutList, :TaskFolderId, :MaxRetryAttempts, :ResourceGroupName, :SourceServiceName, :TaskRegisterOutputTable, :CycleDependencyConfigList, :Warning, :ScheduleRunType, :ConcurrentStrategy, :ScheduleTimeZone, :TemplateId, :AllowRedoType
|
36722
|
+
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :ProjectId, :ProjectIdent, :ProjectName, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :Retriable, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :TaskExt, :Properties, :Notes, :InstanceInitStrategy, :YarnQueue, :Alarms, :Alarm, :ScriptChange, :Submit, :LastSchedulerCommitTime, :NormalizedJobStartTime, :RecoverFreezeStartTime, :SourceServer, :TargetServer, :Tasks, :Creater, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :DependencyConfigList, :VirtualTaskStatus, :RecycleTips, :RecycleUser, :NewOrUpdate, :Params, :TaskLinkInfo, :ImportResult, :ImportErrMsg, :ContentType, :TaskAutoSubmit, :ProductName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :SchedulerDesc, :ResourceGroup, :VersionDesc, :LinkId, :UserFileId, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :ParamInList, :ParamOutList, :TaskFolderId, :MaxRetryAttempts, :ResourceGroupName, :SourceServiceName, :TaskRegisterOutputTable, :CycleDependencyConfigList, :Warning, :ScheduleRunType, :ConcurrentStrategy, :ScheduleTimeZone, :TemplateId, :AllowRedoType, :BundleId, :BundleName
|
36638
36723
|
|
36639
|
-
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, projectid=nil, projectident=nil, projectname=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retriable=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, taskext=nil, properties=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, alarms=nil, alarm=nil, scriptchange=nil, submit=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, recoverfreezestarttime=nil, sourceserver=nil, targetserver=nil, tasks=nil, creater=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, dependencyconfiglist=nil, virtualtaskstatus=nil, recycletips=nil, recycleuser=nil, neworupdate=nil, params=nil, tasklinkinfo=nil, importresult=nil, importerrmsg=nil, contenttype=nil, taskautosubmit=nil, productname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, schedulerdesc=nil, resourcegroup=nil, versiondesc=nil, linkid=nil, userfileid=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, paraminlist=nil, paramoutlist=nil, taskfolderid=nil, maxretryattempts=nil, resourcegroupname=nil, sourceservicename=nil, taskregisteroutputtable=nil, cycledependencyconfiglist=nil, warning=nil, scheduleruntype=nil, concurrentstrategy=nil, scheduletimezone=nil, templateid=nil, allowredotype=nil)
|
36724
|
+
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, projectid=nil, projectident=nil, projectname=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retriable=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, taskext=nil, properties=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, alarms=nil, alarm=nil, scriptchange=nil, submit=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, recoverfreezestarttime=nil, sourceserver=nil, targetserver=nil, tasks=nil, creater=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, dependencyconfiglist=nil, virtualtaskstatus=nil, recycletips=nil, recycleuser=nil, neworupdate=nil, params=nil, tasklinkinfo=nil, importresult=nil, importerrmsg=nil, contenttype=nil, taskautosubmit=nil, productname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, schedulerdesc=nil, resourcegroup=nil, versiondesc=nil, linkid=nil, userfileid=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, paraminlist=nil, paramoutlist=nil, taskfolderid=nil, maxretryattempts=nil, resourcegroupname=nil, sourceservicename=nil, taskregisteroutputtable=nil, cycledependencyconfiglist=nil, warning=nil, scheduleruntype=nil, concurrentstrategy=nil, scheduletimezone=nil, templateid=nil, allowredotype=nil, bundleid=nil, bundlename=nil)
|
36640
36725
|
@TaskId = taskid
|
36641
36726
|
@VirtualTaskId = virtualtaskid
|
36642
36727
|
@VirtualFlag = virtualflag
|
@@ -36738,6 +36823,8 @@ module TencentCloud
|
|
36738
36823
|
@ScheduleTimeZone = scheduletimezone
|
36739
36824
|
@TemplateId = templateid
|
36740
36825
|
@AllowRedoType = allowredotype
|
36826
|
+
@BundleId = bundleid
|
36827
|
+
@BundleName = bundlename
|
36741
36828
|
end
|
36742
36829
|
|
36743
36830
|
def deserialize(params)
|
@@ -36911,6 +36998,8 @@ module TencentCloud
|
|
36911
36998
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
36912
36999
|
@TemplateId = params['TemplateId']
|
36913
37000
|
@AllowRedoType = params['AllowRedoType']
|
37001
|
+
@BundleId = params['BundleId']
|
37002
|
+
@BundleName = params['BundleName']
|
36914
37003
|
end
|
36915
37004
|
end
|
36916
37005
|
|
@@ -38947,6 +39036,202 @@ module TencentCloud
|
|
38947
39036
|
end
|
38948
39037
|
end
|
38949
39038
|
|
39039
|
+
# 编排空间试运行记录
|
39040
|
+
class TestRunningRecord < TencentCloud::Common::AbstractModel
|
39041
|
+
# @param StartTime: 开始时间
|
39042
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39043
|
+
# @type StartTime: String
|
39044
|
+
# @param EndTime: 结束时间
|
39045
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39046
|
+
# @type EndTime: String
|
39047
|
+
# @param UpdateTime: 更新时间
|
39048
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39049
|
+
# @type UpdateTime: String
|
39050
|
+
# @param RecordId: 试运行记录id
|
39051
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39052
|
+
# @type RecordId: Integer
|
39053
|
+
# @param JobId: 开发侧提交的jobid
|
39054
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39055
|
+
# @type JobId: Integer
|
39056
|
+
# @param ExecutionJobId: 执行平台jobid
|
39057
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39058
|
+
# @type ExecutionJobId: String
|
39059
|
+
# @param RecordName: 试运行记录名称
|
39060
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39061
|
+
# @type RecordName: String
|
39062
|
+
# @param ScriptContent: 脚本内容
|
39063
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39064
|
+
# @type ScriptContent: String
|
39065
|
+
# @param Status: 状态
|
39066
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39067
|
+
# @type Status: String
|
39068
|
+
# @param TimeCost: 耗时
|
39069
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39070
|
+
# @type TimeCost: Integer
|
39071
|
+
# @param UserUin: 用户uin
|
39072
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39073
|
+
# @type UserUin: String
|
39074
|
+
# @param OwnerUin: 主账户uin
|
39075
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39076
|
+
# @type OwnerUin: String
|
39077
|
+
# @param SubRecordList: 子记录信息
|
39078
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39079
|
+
# @type SubRecordList: Array
|
39080
|
+
# @param Region: 结果或日志地域
|
39081
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39082
|
+
# @type Region: String
|
39083
|
+
# @param BucketName: 结果或日志桶名
|
39084
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39085
|
+
# @type BucketName: String
|
39086
|
+
|
39087
|
+
attr_accessor :StartTime, :EndTime, :UpdateTime, :RecordId, :JobId, :ExecutionJobId, :RecordName, :ScriptContent, :Status, :TimeCost, :UserUin, :OwnerUin, :SubRecordList, :Region, :BucketName
|
39088
|
+
|
39089
|
+
def initialize(starttime=nil, endtime=nil, updatetime=nil, recordid=nil, jobid=nil, executionjobid=nil, recordname=nil, scriptcontent=nil, status=nil, timecost=nil, useruin=nil, owneruin=nil, subrecordlist=nil, region=nil, bucketname=nil)
|
39090
|
+
@StartTime = starttime
|
39091
|
+
@EndTime = endtime
|
39092
|
+
@UpdateTime = updatetime
|
39093
|
+
@RecordId = recordid
|
39094
|
+
@JobId = jobid
|
39095
|
+
@ExecutionJobId = executionjobid
|
39096
|
+
@RecordName = recordname
|
39097
|
+
@ScriptContent = scriptcontent
|
39098
|
+
@Status = status
|
39099
|
+
@TimeCost = timecost
|
39100
|
+
@UserUin = useruin
|
39101
|
+
@OwnerUin = owneruin
|
39102
|
+
@SubRecordList = subrecordlist
|
39103
|
+
@Region = region
|
39104
|
+
@BucketName = bucketname
|
39105
|
+
end
|
39106
|
+
|
39107
|
+
def deserialize(params)
|
39108
|
+
@StartTime = params['StartTime']
|
39109
|
+
@EndTime = params['EndTime']
|
39110
|
+
@UpdateTime = params['UpdateTime']
|
39111
|
+
@RecordId = params['RecordId']
|
39112
|
+
@JobId = params['JobId']
|
39113
|
+
@ExecutionJobId = params['ExecutionJobId']
|
39114
|
+
@RecordName = params['RecordName']
|
39115
|
+
@ScriptContent = params['ScriptContent']
|
39116
|
+
@Status = params['Status']
|
39117
|
+
@TimeCost = params['TimeCost']
|
39118
|
+
@UserUin = params['UserUin']
|
39119
|
+
@OwnerUin = params['OwnerUin']
|
39120
|
+
unless params['SubRecordList'].nil?
|
39121
|
+
@SubRecordList = []
|
39122
|
+
params['SubRecordList'].each do |i|
|
39123
|
+
testrunningsubrecord_tmp = TestRunningSubRecord.new
|
39124
|
+
testrunningsubrecord_tmp.deserialize(i)
|
39125
|
+
@SubRecordList << testrunningsubrecord_tmp
|
39126
|
+
end
|
39127
|
+
end
|
39128
|
+
@Region = params['Region']
|
39129
|
+
@BucketName = params['BucketName']
|
39130
|
+
end
|
39131
|
+
end
|
39132
|
+
|
39133
|
+
# 试运行子记录
|
39134
|
+
class TestRunningSubRecord < TencentCloud::Common::AbstractModel
|
39135
|
+
# @param StartTime: 开发时间
|
39136
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39137
|
+
# @type StartTime: String
|
39138
|
+
# @param EndTime: 结束时间
|
39139
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39140
|
+
# @type EndTime: String
|
39141
|
+
# @param ExecutionJobId: 执行平台执行id
|
39142
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39143
|
+
# @type ExecutionJobId: String
|
39144
|
+
# @param ExecutionSubJobId: 执行平台子执行jobid
|
39145
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39146
|
+
# @type ExecutionSubJobId: String
|
39147
|
+
# @param JobId: 开发侧提交的jobid
|
39148
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39149
|
+
# @type JobId: String
|
39150
|
+
# @param DetailId: 子记录id
|
39151
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39152
|
+
# @type DetailId: Integer
|
39153
|
+
# @param RecordId: 试运行记录id
|
39154
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39155
|
+
# @type RecordId: Integer
|
39156
|
+
# @param ScriptContent: 脚本内容
|
39157
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39158
|
+
# @type ScriptContent: String
|
39159
|
+
# @param Status: 状态
|
39160
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39161
|
+
# @type Status: String
|
39162
|
+
# @param TimeCost: 耗时
|
39163
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39164
|
+
# @type TimeCost: Integer
|
39165
|
+
# @param ResultTotalCount: 结果总行数
|
39166
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39167
|
+
# @type ResultTotalCount: Integer
|
39168
|
+
# @param ResultPreviewCount: 预览结果行数
|
39169
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39170
|
+
# @type ResultPreviewCount: Integer
|
39171
|
+
# @param ResultFilePath: 结果文件路径
|
39172
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39173
|
+
# @type ResultFilePath: String
|
39174
|
+
# @param ResultPreviewFilePath: 预览结果文件路径
|
39175
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39176
|
+
# @type ResultPreviewFilePath: String
|
39177
|
+
# @param UpdateTime: 更新时间
|
39178
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39179
|
+
# @type UpdateTime: String
|
39180
|
+
# @param Sequence: 序号
|
39181
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39182
|
+
# @type Sequence: String
|
39183
|
+
# @param LogFilePath: 日志路径
|
39184
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39185
|
+
# @type LogFilePath: String
|
39186
|
+
# @param HasSubResultSet: 是否包含子结果
|
39187
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39188
|
+
# @type HasSubResultSet: Boolean
|
39189
|
+
|
39190
|
+
attr_accessor :StartTime, :EndTime, :ExecutionJobId, :ExecutionSubJobId, :JobId, :DetailId, :RecordId, :ScriptContent, :Status, :TimeCost, :ResultTotalCount, :ResultPreviewCount, :ResultFilePath, :ResultPreviewFilePath, :UpdateTime, :Sequence, :LogFilePath, :HasSubResultSet
|
39191
|
+
|
39192
|
+
def initialize(starttime=nil, endtime=nil, executionjobid=nil, executionsubjobid=nil, jobid=nil, detailid=nil, recordid=nil, scriptcontent=nil, status=nil, timecost=nil, resulttotalcount=nil, resultpreviewcount=nil, resultfilepath=nil, resultpreviewfilepath=nil, updatetime=nil, sequence=nil, logfilepath=nil, hassubresultset=nil)
|
39193
|
+
@StartTime = starttime
|
39194
|
+
@EndTime = endtime
|
39195
|
+
@ExecutionJobId = executionjobid
|
39196
|
+
@ExecutionSubJobId = executionsubjobid
|
39197
|
+
@JobId = jobid
|
39198
|
+
@DetailId = detailid
|
39199
|
+
@RecordId = recordid
|
39200
|
+
@ScriptContent = scriptcontent
|
39201
|
+
@Status = status
|
39202
|
+
@TimeCost = timecost
|
39203
|
+
@ResultTotalCount = resulttotalcount
|
39204
|
+
@ResultPreviewCount = resultpreviewcount
|
39205
|
+
@ResultFilePath = resultfilepath
|
39206
|
+
@ResultPreviewFilePath = resultpreviewfilepath
|
39207
|
+
@UpdateTime = updatetime
|
39208
|
+
@Sequence = sequence
|
39209
|
+
@LogFilePath = logfilepath
|
39210
|
+
@HasSubResultSet = hassubresultset
|
39211
|
+
end
|
39212
|
+
|
39213
|
+
def deserialize(params)
|
39214
|
+
@StartTime = params['StartTime']
|
39215
|
+
@EndTime = params['EndTime']
|
39216
|
+
@ExecutionJobId = params['ExecutionJobId']
|
39217
|
+
@ExecutionSubJobId = params['ExecutionSubJobId']
|
39218
|
+
@JobId = params['JobId']
|
39219
|
+
@DetailId = params['DetailId']
|
39220
|
+
@RecordId = params['RecordId']
|
39221
|
+
@ScriptContent = params['ScriptContent']
|
39222
|
+
@Status = params['Status']
|
39223
|
+
@TimeCost = params['TimeCost']
|
39224
|
+
@ResultTotalCount = params['ResultTotalCount']
|
39225
|
+
@ResultPreviewCount = params['ResultPreviewCount']
|
39226
|
+
@ResultFilePath = params['ResultFilePath']
|
39227
|
+
@ResultPreviewFilePath = params['ResultPreviewFilePath']
|
39228
|
+
@UpdateTime = params['UpdateTime']
|
39229
|
+
@Sequence = params['Sequence']
|
39230
|
+
@LogFilePath = params['LogFilePath']
|
39231
|
+
@HasSubResultSet = params['HasSubResultSet']
|
39232
|
+
end
|
39233
|
+
end
|
39234
|
+
|
38950
39235
|
# 数据质量阈值
|
38951
39236
|
class ThresholdValue < TencentCloud::Common::AbstractModel
|
38952
39237
|
# @param ValueType: 阈值类型 1.低阈值 2.高阈值 3.普通阈值 4.枚举值
|
@@ -39767,7 +40052,7 @@ module TencentCloud
|
|
39767
40052
|
end
|
39768
40053
|
end
|
39769
40054
|
|
39770
|
-
#
|
40055
|
+
# 资源管理-上传资源请求
|
39771
40056
|
class UploadResourceRequestInfo < TencentCloud::Common::AbstractModel
|
39772
40057
|
# @param ProjectId: 项目id
|
39773
40058
|
# @type ProjectId: String
|
@@ -39785,10 +40070,12 @@ module TencentCloud
|
|
39785
40070
|
# @type FileSizeList: Array
|
39786
40071
|
# @param FileMd5: File Md5(适配私有化,公有云可以不传)
|
39787
40072
|
# @type FileMd5: String
|
40073
|
+
# @param RemotePath: 资源在对象存储上的实际路径
|
40074
|
+
# @type RemotePath: String
|
39788
40075
|
|
39789
|
-
attr_accessor :ProjectId, :FilePath, :BucketName, :Region, :NewFile, :FileList, :FileSizeList, :FileMd5
|
40076
|
+
attr_accessor :ProjectId, :FilePath, :BucketName, :Region, :NewFile, :FileList, :FileSizeList, :FileMd5, :RemotePath
|
39790
40077
|
|
39791
|
-
def initialize(projectid=nil, filepath=nil, bucketname=nil, region=nil, newfile=nil, filelist=nil, filesizelist=nil, filemd5=nil)
|
40078
|
+
def initialize(projectid=nil, filepath=nil, bucketname=nil, region=nil, newfile=nil, filelist=nil, filesizelist=nil, filemd5=nil, remotepath=nil)
|
39792
40079
|
@ProjectId = projectid
|
39793
40080
|
@FilePath = filepath
|
39794
40081
|
@BucketName = bucketname
|
@@ -39797,6 +40084,7 @@ module TencentCloud
|
|
39797
40084
|
@FileList = filelist
|
39798
40085
|
@FileSizeList = filesizelist
|
39799
40086
|
@FileMd5 = filemd5
|
40087
|
+
@RemotePath = remotepath
|
39800
40088
|
end
|
39801
40089
|
|
39802
40090
|
def deserialize(params)
|
@@ -39808,6 +40096,7 @@ module TencentCloud
|
|
39808
40096
|
@FileList = params['FileList']
|
39809
40097
|
@FileSizeList = params['FileSizeList']
|
39810
40098
|
@FileMd5 = params['FileMd5']
|
40099
|
+
@RemotePath = params['RemotePath']
|
39811
40100
|
end
|
39812
40101
|
end
|
39813
40102
|
|
@@ -40879,6 +41168,33 @@ module TencentCloud
|
|
40879
41168
|
end
|
40880
41169
|
end
|
40881
41170
|
|
41171
|
+
# 项目扩展信息
|
41172
|
+
class WorkspaceExt < TencentCloud::Common::AbstractModel
|
41173
|
+
# @param ProjectId: 2670965482618679296
|
41174
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
41175
|
+
# @type ProjectId: String
|
41176
|
+
# @param Key: metrics
|
41177
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
41178
|
+
# @type Key: String
|
41179
|
+
# @param Value: json
|
41180
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
41181
|
+
# @type Value: String
|
41182
|
+
|
41183
|
+
attr_accessor :ProjectId, :Key, :Value
|
41184
|
+
|
41185
|
+
def initialize(projectid=nil, key=nil, value=nil)
|
41186
|
+
@ProjectId = projectid
|
41187
|
+
@Key = key
|
41188
|
+
@Value = value
|
41189
|
+
end
|
41190
|
+
|
41191
|
+
def deserialize(params)
|
41192
|
+
@ProjectId = params['ProjectId']
|
41193
|
+
@Key = params['Key']
|
41194
|
+
@Value = params['Value']
|
41195
|
+
end
|
41196
|
+
end
|
41197
|
+
|
40882
41198
|
end
|
40883
41199
|
end
|
40884
41200
|
end
|