tencentcloud-sdk-wedata 3.0.1123 → 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 +559 -303
- 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: 详情内容
|
@@ -6396,10 +6470,13 @@ module TencentCloud
|
|
6396
6470
|
# @type DataSourceEnvInfos: Array
|
6397
6471
|
# @param ForbidProbe: 禁止数据探查
|
6398
6472
|
# @type ForbidProbe: Boolean
|
6473
|
+
# @param DatasourceType: 数据源类型
|
6474
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6475
|
+
# @type DatasourceType: String
|
6399
6476
|
|
6400
|
-
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
|
6401
6478
|
|
6402
|
-
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)
|
6403
6480
|
@DatabaseName = databasename
|
6404
6481
|
@Description = description
|
6405
6482
|
@ID = id
|
@@ -6441,6 +6518,7 @@ module TencentCloud
|
|
6441
6518
|
@Model = model
|
6442
6519
|
@DataSourceEnvInfos = datasourceenvinfos
|
6443
6520
|
@ForbidProbe = forbidprobe
|
6521
|
+
@DatasourceType = datasourcetype
|
6444
6522
|
end
|
6445
6523
|
|
6446
6524
|
def deserialize(params)
|
@@ -6495,6 +6573,7 @@ module TencentCloud
|
|
6495
6573
|
end
|
6496
6574
|
end
|
6497
6575
|
@ForbidProbe = params['ForbidProbe']
|
6576
|
+
@DatasourceType = params['DatasourceType']
|
6498
6577
|
end
|
6499
6578
|
end
|
6500
6579
|
|
@@ -9797,94 +9876,6 @@ module TencentCloud
|
|
9797
9876
|
end
|
9798
9877
|
end
|
9799
9878
|
|
9800
|
-
# DescribeDrInstancePage请求参数结构体
|
9801
|
-
class DescribeDrInstancePageRequest < TencentCloud::Common::AbstractModel
|
9802
|
-
# @param ProjectId: 项目id
|
9803
|
-
# @type ProjectId: String
|
9804
|
-
# @param TaskSource: 任务来源 ADHOC || WORKFLOW
|
9805
|
-
# @type TaskSource: String
|
9806
|
-
# @param PageIndex: 索引页码
|
9807
|
-
# @type PageIndex: Integer
|
9808
|
-
# @param PageSize: 页面大小
|
9809
|
-
# @type PageSize: Integer
|
9810
|
-
# @param TaskName: 任务名称
|
9811
|
-
# @type TaskName: String
|
9812
|
-
# @param StartTime: 提交开始时间 yyyy-MM-dd HH:mm:ss
|
9813
|
-
# @type StartTime: String
|
9814
|
-
# @param EndTime: 提交结束时间 yyyy-MM-dd HH:mm:ss
|
9815
|
-
# @type EndTime: String
|
9816
|
-
# @param FolderIds: 文件夹id
|
9817
|
-
# @type FolderIds: Array
|
9818
|
-
# @param WorkflowIds: 工作流id
|
9819
|
-
# @type WorkflowIds: Array
|
9820
|
-
# @param JustMe: 只看我的
|
9821
|
-
# @type JustMe: Boolean
|
9822
|
-
# @param TaskTypes: 任务类型
|
9823
|
-
# @type TaskTypes: Array
|
9824
|
-
# @param SubmitUsers: 试运行提交人userId列表
|
9825
|
-
# @type SubmitUsers: Array
|
9826
|
-
# @param StatusList: 试运行状态
|
9827
|
-
# @type StatusList: Array
|
9828
|
-
|
9829
|
-
attr_accessor :ProjectId, :TaskSource, :PageIndex, :PageSize, :TaskName, :StartTime, :EndTime, :FolderIds, :WorkflowIds, :JustMe, :TaskTypes, :SubmitUsers, :StatusList
|
9830
|
-
|
9831
|
-
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)
|
9832
|
-
@ProjectId = projectid
|
9833
|
-
@TaskSource = tasksource
|
9834
|
-
@PageIndex = pageindex
|
9835
|
-
@PageSize = pagesize
|
9836
|
-
@TaskName = taskname
|
9837
|
-
@StartTime = starttime
|
9838
|
-
@EndTime = endtime
|
9839
|
-
@FolderIds = folderids
|
9840
|
-
@WorkflowIds = workflowids
|
9841
|
-
@JustMe = justme
|
9842
|
-
@TaskTypes = tasktypes
|
9843
|
-
@SubmitUsers = submitusers
|
9844
|
-
@StatusList = statuslist
|
9845
|
-
end
|
9846
|
-
|
9847
|
-
def deserialize(params)
|
9848
|
-
@ProjectId = params['ProjectId']
|
9849
|
-
@TaskSource = params['TaskSource']
|
9850
|
-
@PageIndex = params['PageIndex']
|
9851
|
-
@PageSize = params['PageSize']
|
9852
|
-
@TaskName = params['TaskName']
|
9853
|
-
@StartTime = params['StartTime']
|
9854
|
-
@EndTime = params['EndTime']
|
9855
|
-
@FolderIds = params['FolderIds']
|
9856
|
-
@WorkflowIds = params['WorkflowIds']
|
9857
|
-
@JustMe = params['JustMe']
|
9858
|
-
@TaskTypes = params['TaskTypes']
|
9859
|
-
@SubmitUsers = params['SubmitUsers']
|
9860
|
-
@StatusList = params['StatusList']
|
9861
|
-
end
|
9862
|
-
end
|
9863
|
-
|
9864
|
-
# DescribeDrInstancePage返回参数结构体
|
9865
|
-
class DescribeDrInstancePageResponse < TencentCloud::Common::AbstractModel
|
9866
|
-
# @param Data: 结果集
|
9867
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
9868
|
-
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.DrInstanceOpsDtoPage`
|
9869
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9870
|
-
# @type RequestId: String
|
9871
|
-
|
9872
|
-
attr_accessor :Data, :RequestId
|
9873
|
-
|
9874
|
-
def initialize(data=nil, requestid=nil)
|
9875
|
-
@Data = data
|
9876
|
-
@RequestId = requestid
|
9877
|
-
end
|
9878
|
-
|
9879
|
-
def deserialize(params)
|
9880
|
-
unless params['Data'].nil?
|
9881
|
-
@Data = DrInstanceOpsDtoPage.new
|
9882
|
-
@Data.deserialize(params['Data'])
|
9883
|
-
end
|
9884
|
-
@RequestId = params['RequestId']
|
9885
|
-
end
|
9886
|
-
end
|
9887
|
-
|
9888
9879
|
# DescribeDsFolderTree请求参数结构体
|
9889
9880
|
class DescribeDsFolderTreeRequest < TencentCloud::Common::AbstractModel
|
9890
9881
|
# @param ProjectId: 项目id
|
@@ -10128,19 +10119,23 @@ module TencentCloud
|
|
10128
10119
|
# @type ProjectId: String
|
10129
10120
|
# @param IsOnlyCurrentEditingVersion: 是否仅返回当前编辑版本
|
10130
10121
|
# @type IsOnlyCurrentEditingVersion: Boolean
|
10122
|
+
# @param IsOnlyProductVersion: 是否仅只返回生产使用版本
|
10123
|
+
# @type IsOnlyProductVersion: Boolean
|
10131
10124
|
|
10132
|
-
attr_accessor :TaskId, :ProjectId, :IsOnlyCurrentEditingVersion
|
10125
|
+
attr_accessor :TaskId, :ProjectId, :IsOnlyCurrentEditingVersion, :IsOnlyProductVersion
|
10133
10126
|
|
10134
|
-
def initialize(taskid=nil, projectid=nil, isonlycurrenteditingversion=nil)
|
10127
|
+
def initialize(taskid=nil, projectid=nil, isonlycurrenteditingversion=nil, isonlyproductversion=nil)
|
10135
10128
|
@TaskId = taskid
|
10136
10129
|
@ProjectId = projectid
|
10137
10130
|
@IsOnlyCurrentEditingVersion = isonlycurrenteditingversion
|
10131
|
+
@IsOnlyProductVersion = isonlyproductversion
|
10138
10132
|
end
|
10139
10133
|
|
10140
10134
|
def deserialize(params)
|
10141
10135
|
@TaskId = params['TaskId']
|
10142
10136
|
@ProjectId = params['ProjectId']
|
10143
10137
|
@IsOnlyCurrentEditingVersion = params['IsOnlyCurrentEditingVersion']
|
10138
|
+
@IsOnlyProductVersion = params['IsOnlyProductVersion']
|
10144
10139
|
end
|
10145
10140
|
end
|
10146
10141
|
|
@@ -11870,14 +11865,17 @@ module TencentCloud
|
|
11870
11865
|
# @type TaskType: Integer
|
11871
11866
|
# @param InstanceVersion: 提交版本号
|
11872
11867
|
# @type InstanceVersion: Integer
|
11868
|
+
# @param ExtConfig: 额外参数
|
11869
|
+
# @type ExtConfig: Array
|
11873
11870
|
|
11874
|
-
attr_accessor :TaskId, :ProjectId, :TaskType, :InstanceVersion
|
11871
|
+
attr_accessor :TaskId, :ProjectId, :TaskType, :InstanceVersion, :ExtConfig
|
11875
11872
|
|
11876
|
-
def initialize(taskid=nil, projectid=nil, tasktype=nil, instanceversion=nil)
|
11873
|
+
def initialize(taskid=nil, projectid=nil, tasktype=nil, instanceversion=nil, extconfig=nil)
|
11877
11874
|
@TaskId = taskid
|
11878
11875
|
@ProjectId = projectid
|
11879
11876
|
@TaskType = tasktype
|
11880
11877
|
@InstanceVersion = instanceversion
|
11878
|
+
@ExtConfig = extconfig
|
11881
11879
|
end
|
11882
11880
|
|
11883
11881
|
def deserialize(params)
|
@@ -11885,6 +11883,14 @@ module TencentCloud
|
|
11885
11883
|
@ProjectId = params['ProjectId']
|
11886
11884
|
@TaskType = params['TaskType']
|
11887
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
|
11888
11894
|
end
|
11889
11895
|
end
|
11890
11896
|
|
@@ -12871,10 +12877,41 @@ module TencentCloud
|
|
12871
12877
|
# @param ExecutorGroupName: 资源组名称
|
12872
12878
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12873
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
|
12874
12911
|
|
12875
|
-
attr_accessor :TaskId, :TaskName, :ModifyType, :TaskStatus, :SubmitPreCheck, :SubmitPreCheckDetailList, :ExecutorGroupId, :ExecutorGroupName
|
12912
|
+
attr_accessor :TaskId, :TaskName, :ModifyType, :TaskStatus, :SubmitPreCheck, :SubmitPreCheckDetailList, :ExecutorGroupId, :ExecutorGroupName, :TaskTypeId
|
12876
12913
|
|
12877
|
-
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)
|
12878
12915
|
@TaskId = taskid
|
12879
12916
|
@TaskName = taskname
|
12880
12917
|
@ModifyType = modifytype
|
@@ -12883,6 +12920,7 @@ module TencentCloud
|
|
12883
12920
|
@SubmitPreCheckDetailList = submitprecheckdetaillist
|
12884
12921
|
@ExecutorGroupId = executorgroupid
|
12885
12922
|
@ExecutorGroupName = executorgroupname
|
12923
|
+
@TaskTypeId = tasktypeid
|
12886
12924
|
end
|
12887
12925
|
|
12888
12926
|
def deserialize(params)
|
@@ -12901,6 +12939,7 @@ module TencentCloud
|
|
12901
12939
|
end
|
12902
12940
|
@ExecutorGroupId = params['ExecutorGroupId']
|
12903
12941
|
@ExecutorGroupName = params['ExecutorGroupName']
|
12942
|
+
@TaskTypeId = params['TaskTypeId']
|
12904
12943
|
end
|
12905
12944
|
end
|
12906
12945
|
|
@@ -16375,62 +16414,6 @@ module TencentCloud
|
|
16375
16414
|
end
|
16376
16415
|
end
|
16377
16416
|
|
16378
|
-
# DescribeTaskByCycleReport请求参数结构体
|
16379
|
-
class DescribeTaskByCycleReportRequest < TencentCloud::Common::AbstractModel
|
16380
|
-
# @param ProjectId: 项目id
|
16381
|
-
# @type ProjectId: String
|
16382
|
-
# @param Type: 任务周期类型
|
16383
|
-
# @type Type: String
|
16384
|
-
# @param StartTime: 开始时间
|
16385
|
-
# @type StartTime: String
|
16386
|
-
# @param EndTime: 结束时间
|
16387
|
-
# @type EndTime: String
|
16388
|
-
|
16389
|
-
attr_accessor :ProjectId, :Type, :StartTime, :EndTime
|
16390
|
-
|
16391
|
-
def initialize(projectid=nil, type=nil, starttime=nil, endtime=nil)
|
16392
|
-
@ProjectId = projectid
|
16393
|
-
@Type = type
|
16394
|
-
@StartTime = starttime
|
16395
|
-
@EndTime = endtime
|
16396
|
-
end
|
16397
|
-
|
16398
|
-
def deserialize(params)
|
16399
|
-
@ProjectId = params['ProjectId']
|
16400
|
-
@Type = params['Type']
|
16401
|
-
@StartTime = params['StartTime']
|
16402
|
-
@EndTime = params['EndTime']
|
16403
|
-
end
|
16404
|
-
end
|
16405
|
-
|
16406
|
-
# DescribeTaskByCycleReport返回参数结构体
|
16407
|
-
class DescribeTaskByCycleReportResponse < TencentCloud::Common::AbstractModel
|
16408
|
-
# @param Data: 任务周期增长趋势统计
|
16409
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
16410
|
-
# @type Data: Array
|
16411
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16412
|
-
# @type RequestId: String
|
16413
|
-
|
16414
|
-
attr_accessor :Data, :RequestId
|
16415
|
-
|
16416
|
-
def initialize(data=nil, requestid=nil)
|
16417
|
-
@Data = data
|
16418
|
-
@RequestId = requestid
|
16419
|
-
end
|
16420
|
-
|
16421
|
-
def deserialize(params)
|
16422
|
-
unless params['Data'].nil?
|
16423
|
-
@Data = []
|
16424
|
-
params['Data'].each do |i|
|
16425
|
-
taskbystatus_tmp = TaskByStatus.new
|
16426
|
-
taskbystatus_tmp.deserialize(i)
|
16427
|
-
@Data << taskbystatus_tmp
|
16428
|
-
end
|
16429
|
-
end
|
16430
|
-
@RequestId = params['RequestId']
|
16431
|
-
end
|
16432
|
-
end
|
16433
|
-
|
16434
16417
|
# DescribeTaskByCycle请求参数结构体
|
16435
16418
|
class DescribeTaskByCycleRequest < TencentCloud::Common::AbstractModel
|
16436
16419
|
# @param ProjectId: 项目ID
|
@@ -17286,6 +17269,74 @@ module TencentCloud
|
|
17286
17269
|
end
|
17287
17270
|
end
|
17288
17271
|
|
17272
|
+
# DescribeTestRunningRecord请求参数结构体
|
17273
|
+
class DescribeTestRunningRecordRequest < TencentCloud::Common::AbstractModel
|
17274
|
+
# @param ProjectId: 项目ID
|
17275
|
+
# @type ProjectId: String
|
17276
|
+
# @param TaskId: 任务id
|
17277
|
+
# @type TaskId: String
|
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
|
17288
|
+
|
17289
|
+
attr_accessor :ProjectId, :TaskId, :SearchWord, :SearchUserUin, :CreateTime, :EndTime, :RecordIdList
|
17290
|
+
|
17291
|
+
def initialize(projectid=nil, taskid=nil, searchword=nil, searchuseruin=nil, createtime=nil, endtime=nil, recordidlist=nil)
|
17292
|
+
@ProjectId = projectid
|
17293
|
+
@TaskId = taskid
|
17294
|
+
@SearchWord = searchword
|
17295
|
+
@SearchUserUin = searchuseruin
|
17296
|
+
@CreateTime = createtime
|
17297
|
+
@EndTime = endtime
|
17298
|
+
@RecordIdList = recordidlist
|
17299
|
+
end
|
17300
|
+
|
17301
|
+
def deserialize(params)
|
17302
|
+
@ProjectId = params['ProjectId']
|
17303
|
+
@TaskId = params['TaskId']
|
17304
|
+
@SearchWord = params['SearchWord']
|
17305
|
+
@SearchUserUin = params['SearchUserUin']
|
17306
|
+
@CreateTime = params['CreateTime']
|
17307
|
+
@EndTime = params['EndTime']
|
17308
|
+
@RecordIdList = params['RecordIdList']
|
17309
|
+
end
|
17310
|
+
end
|
17311
|
+
|
17312
|
+
# DescribeTestRunningRecord返回参数结构体
|
17313
|
+
class DescribeTestRunningRecordResponse < TencentCloud::Common::AbstractModel
|
17314
|
+
# @param Data: 编排空间试运行任务
|
17315
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17316
|
+
# @type Data: Array
|
17317
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17318
|
+
# @type RequestId: String
|
17319
|
+
|
17320
|
+
attr_accessor :Data, :RequestId
|
17321
|
+
|
17322
|
+
def initialize(data=nil, requestid=nil)
|
17323
|
+
@Data = data
|
17324
|
+
@RequestId = requestid
|
17325
|
+
end
|
17326
|
+
|
17327
|
+
def deserialize(params)
|
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
|
17336
|
+
@RequestId = params['RequestId']
|
17337
|
+
end
|
17338
|
+
end
|
17339
|
+
|
17289
17340
|
# DescribeThirdTaskRunLog请求参数结构体
|
17290
17341
|
class DescribeThirdTaskRunLogRequest < TencentCloud::Common::AbstractModel
|
17291
17342
|
# @param TaskId: 任务ID
|
@@ -18331,132 +18382,6 @@ module TencentCloud
|
|
18331
18382
|
end
|
18332
18383
|
end
|
18333
18384
|
|
18334
|
-
# 试运行记录
|
18335
|
-
class DrInstanceOpsDto < TencentCloud::Common::AbstractModel
|
18336
|
-
# @param TaskSource: 任务来源
|
18337
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18338
|
-
# @type TaskSource: String
|
18339
|
-
# @param JobId: 编排空间jobId
|
18340
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18341
|
-
# @type JobId: String
|
18342
|
-
# @param RecordId: 任务提交记录Id
|
18343
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18344
|
-
# @type RecordId: Integer
|
18345
|
-
# @param SonRecordId: 子任务记录id
|
18346
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18347
|
-
# @type SonRecordId: Integer
|
18348
|
-
# @param InstanceId: 任务实例Id
|
18349
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18350
|
-
# @type InstanceId: String
|
18351
|
-
# @param TaskId: 编排空间为任务id, 开发空间为脚本id
|
18352
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18353
|
-
# @type TaskId: String
|
18354
|
-
# @param RemotePath: 脚本cos地址
|
18355
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18356
|
-
# @type RemotePath: String
|
18357
|
-
# @param ScriptContent: 试运行内容
|
18358
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18359
|
-
# @type ScriptContent: String
|
18360
|
-
# @param CreateTime: 任务提交时间
|
18361
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18362
|
-
# @type CreateTime: String
|
18363
|
-
# @param StartTime: 任务启动时间
|
18364
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18365
|
-
# @type StartTime: String
|
18366
|
-
# @param Duration: 运行时长(秒)
|
18367
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18368
|
-
# @type Duration: String
|
18369
|
-
# @param Status: 试运行状态
|
18370
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18371
|
-
# @type Status: String
|
18372
|
-
# @param TaskName: 编排空间为任务名称,开发空间为脚本名称
|
18373
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18374
|
-
# @type TaskName: String
|
18375
|
-
# @param SubmitUserName: 试运行提交人
|
18376
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18377
|
-
# @type SubmitUserName: String
|
18378
|
-
# @param SubmitUserId: 试运行提交人userId
|
18379
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18380
|
-
# @type SubmitUserId: String
|
18381
|
-
# @param TaskType: 任务类型
|
18382
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18383
|
-
# @type TaskType: String
|
18384
|
-
# @param HasResultSet: 是否含有结果集
|
18385
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18386
|
-
# @type HasResultSet: Boolean
|
18387
|
-
|
18388
|
-
attr_accessor :TaskSource, :JobId, :RecordId, :SonRecordId, :InstanceId, :TaskId, :RemotePath, :ScriptContent, :CreateTime, :StartTime, :Duration, :Status, :TaskName, :SubmitUserName, :SubmitUserId, :TaskType, :HasResultSet
|
18389
|
-
|
18390
|
-
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)
|
18391
|
-
@TaskSource = tasksource
|
18392
|
-
@JobId = jobid
|
18393
|
-
@RecordId = recordid
|
18394
|
-
@SonRecordId = sonrecordid
|
18395
|
-
@InstanceId = instanceid
|
18396
|
-
@TaskId = taskid
|
18397
|
-
@RemotePath = remotepath
|
18398
|
-
@ScriptContent = scriptcontent
|
18399
|
-
@CreateTime = createtime
|
18400
|
-
@StartTime = starttime
|
18401
|
-
@Duration = duration
|
18402
|
-
@Status = status
|
18403
|
-
@TaskName = taskname
|
18404
|
-
@SubmitUserName = submitusername
|
18405
|
-
@SubmitUserId = submituserid
|
18406
|
-
@TaskType = tasktype
|
18407
|
-
@HasResultSet = hasresultset
|
18408
|
-
end
|
18409
|
-
|
18410
|
-
def deserialize(params)
|
18411
|
-
@TaskSource = params['TaskSource']
|
18412
|
-
@JobId = params['JobId']
|
18413
|
-
@RecordId = params['RecordId']
|
18414
|
-
@SonRecordId = params['SonRecordId']
|
18415
|
-
@InstanceId = params['InstanceId']
|
18416
|
-
@TaskId = params['TaskId']
|
18417
|
-
@RemotePath = params['RemotePath']
|
18418
|
-
@ScriptContent = params['ScriptContent']
|
18419
|
-
@CreateTime = params['CreateTime']
|
18420
|
-
@StartTime = params['StartTime']
|
18421
|
-
@Duration = params['Duration']
|
18422
|
-
@Status = params['Status']
|
18423
|
-
@TaskName = params['TaskName']
|
18424
|
-
@SubmitUserName = params['SubmitUserName']
|
18425
|
-
@SubmitUserId = params['SubmitUserId']
|
18426
|
-
@TaskType = params['TaskType']
|
18427
|
-
@HasResultSet = params['HasResultSet']
|
18428
|
-
end
|
18429
|
-
end
|
18430
|
-
|
18431
|
-
# 试运行记录
|
18432
|
-
class DrInstanceOpsDtoPage < TencentCloud::Common::AbstractModel
|
18433
|
-
# @param TotalCount: 记录总数
|
18434
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18435
|
-
# @type TotalCount: Integer
|
18436
|
-
# @param Items: 记录列表
|
18437
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
18438
|
-
# @type Items: Array
|
18439
|
-
|
18440
|
-
attr_accessor :TotalCount, :Items
|
18441
|
-
|
18442
|
-
def initialize(totalcount=nil, items=nil)
|
18443
|
-
@TotalCount = totalcount
|
18444
|
-
@Items = items
|
18445
|
-
end
|
18446
|
-
|
18447
|
-
def deserialize(params)
|
18448
|
-
@TotalCount = params['TotalCount']
|
18449
|
-
unless params['Items'].nil?
|
18450
|
-
@Items = []
|
18451
|
-
params['Items'].each do |i|
|
18452
|
-
drinstanceopsdto_tmp = DrInstanceOpsDto.new
|
18453
|
-
drinstanceopsdto_tmp.deserialize(i)
|
18454
|
-
@Items << drinstanceopsdto_tmp
|
18455
|
-
end
|
18456
|
-
end
|
18457
|
-
end
|
18458
|
-
end
|
18459
|
-
|
18460
18385
|
# DryRunDIOfflineTask请求参数结构体
|
18461
18386
|
class DryRunDIOfflineTaskRequest < TencentCloud::Common::AbstractModel
|
18462
18387
|
# @param TaskId: 任务Id
|
@@ -18801,10 +18726,25 @@ module TencentCloud
|
|
18801
18726
|
# @param CmdArgs: 入参
|
18802
18727
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
18803
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
|
18804
18744
|
|
18805
|
-
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
|
18806
18746
|
|
18807
|
-
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)
|
18808
18748
|
@EngineSubmitTime = enginesubmittime
|
18809
18749
|
@EngineExeTime = engineexetime
|
18810
18750
|
@EngineExeTimes = engineexetimes
|
@@ -18825,6 +18765,11 @@ module TencentCloud
|
|
18825
18765
|
@WaitTime = waittime
|
18826
18766
|
@QueryResultTime = queryresulttime
|
18827
18767
|
@CmdArgs = cmdargs
|
18768
|
+
@VCoreSeconds = vcoreseconds
|
18769
|
+
@MemorySeconds = memoryseconds
|
18770
|
+
@EmrUserName = emrusername
|
18771
|
+
@QueryId = queryid
|
18772
|
+
@ApplicationId = applicationid
|
18828
18773
|
end
|
18829
18774
|
|
18830
18775
|
def deserialize(params)
|
@@ -18848,6 +18793,11 @@ module TencentCloud
|
|
18848
18793
|
@WaitTime = params['WaitTime']
|
18849
18794
|
@QueryResultTime = params['QueryResultTime']
|
18850
18795
|
@CmdArgs = params['CmdArgs']
|
18796
|
+
@VCoreSeconds = params['VCoreSeconds']
|
18797
|
+
@MemorySeconds = params['MemorySeconds']
|
18798
|
+
@EmrUserName = params['EmrUserName']
|
18799
|
+
@QueryId = params['QueryId']
|
18800
|
+
@ApplicationId = params['ApplicationId']
|
18851
18801
|
end
|
18852
18802
|
end
|
18853
18803
|
|
@@ -28683,10 +28633,13 @@ module TencentCloud
|
|
28683
28633
|
# @param Owner: 项目负责人
|
28684
28634
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
28685
28635
|
# @type Owner: :class:`Tencentcloud::Wedata.v20210820.models.BaseUser`
|
28636
|
+
# @param WorkspaceExt: 项目扩展信息
|
28637
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28638
|
+
# @type WorkspaceExt: Array
|
28686
28639
|
|
28687
|
-
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
|
28688
28641
|
|
28689
|
-
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)
|
28690
28643
|
@TenantId = tenantid
|
28691
28644
|
@ProjectId = projectid
|
28692
28645
|
@ProjectName = projectname
|
@@ -28703,6 +28656,7 @@ module TencentCloud
|
|
28703
28656
|
@Model = model
|
28704
28657
|
@SecondModuleList = secondmodulelist
|
28705
28658
|
@Owner = owner
|
28659
|
+
@WorkspaceExt = workspaceext
|
28706
28660
|
end
|
28707
28661
|
|
28708
28662
|
def deserialize(params)
|
@@ -28745,6 +28699,14 @@ module TencentCloud
|
|
28745
28699
|
@Owner = BaseUser.new
|
28746
28700
|
@Owner.deserialize(params['Owner'])
|
28747
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
|
28748
28710
|
end
|
28749
28711
|
end
|
28750
28712
|
|
@@ -29847,10 +29809,14 @@ module TencentCloud
|
|
29847
29809
|
# @type ScheduleTimeZone: String
|
29848
29810
|
# @param ClearLink: 是否自动清理不支持的任务链接
|
29849
29811
|
# @type ClearLink: Boolean
|
29812
|
+
# @param MainCyclicConfig: ModifyCycleValue为1的时候生效,表示默认修改的上游依赖-时间维度
|
29813
|
+
# @type MainCyclicConfig: String
|
29814
|
+
# @param SubordinateCyclicConfig: ModifyCycleValue为1的时候生效,表示默认修改的上游依赖-实例范围
|
29815
|
+
# @type SubordinateCyclicConfig: String
|
29850
29816
|
|
29851
|
-
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
|
29852
29818
|
|
29853
|
-
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)
|
29854
29820
|
@ProjectId = projectid
|
29855
29821
|
@WorkflowId = workflowid
|
29856
29822
|
@DelayTime = delaytime
|
@@ -29872,6 +29838,8 @@ module TencentCloud
|
|
29872
29838
|
@CalendarId = calendarid
|
29873
29839
|
@ScheduleTimeZone = scheduletimezone
|
29874
29840
|
@ClearLink = clearlink
|
29841
|
+
@MainCyclicConfig = maincyclicconfig
|
29842
|
+
@SubordinateCyclicConfig = subordinatecyclicconfig
|
29875
29843
|
end
|
29876
29844
|
|
29877
29845
|
def deserialize(params)
|
@@ -29896,6 +29864,8 @@ module TencentCloud
|
|
29896
29864
|
@CalendarId = params['CalendarId']
|
29897
29865
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
29898
29866
|
@ClearLink = params['ClearLink']
|
29867
|
+
@MainCyclicConfig = params['MainCyclicConfig']
|
29868
|
+
@SubordinateCyclicConfig = params['SubordinateCyclicConfig']
|
29899
29869
|
end
|
29900
29870
|
end
|
29901
29871
|
|
@@ -32496,15 +32466,15 @@ module TencentCloud
|
|
32496
32466
|
|
32497
32467
|
# RunRerunScheduleInstances请求参数结构体
|
32498
32468
|
class RunRerunScheduleInstancesRequest < TencentCloud::Common::AbstractModel
|
32499
|
-
# @param Instances:
|
32469
|
+
# @param Instances: 必填,实例列表,每项必填TaskId ,CurRunDate
|
32500
32470
|
# @type Instances: Array
|
32501
|
-
# @param CheckFather:
|
32471
|
+
# @param CheckFather: 必填,检查父任务类型, true: 检查父任务; false: 不检查父任务
|
32502
32472
|
# @type CheckFather: Boolean
|
32503
|
-
# @param RerunType:
|
32473
|
+
# @param RerunType: 必填,重跑类型, 1: 自身; 3: 孩子; 2: 自身以及孩子
|
32504
32474
|
# @type RerunType: String
|
32505
32475
|
# @param DependentWay: 实例依赖方式, 1: 自依赖; 2: 任务依赖; 3: 自依赖及父子依赖
|
32506
32476
|
# @type DependentWay: String
|
32507
|
-
# @param SkipEventListening:
|
32477
|
+
# @param SkipEventListening: 必填,重跑忽略事件监听与否
|
32508
32478
|
# @type SkipEventListening: Boolean
|
32509
32479
|
# @param SonInstanceType: 下游实例范围 1: 所在工作流 2: 所在项目 3: 所有跨工作流依赖的项目
|
32510
32480
|
# @type SonInstanceType: String
|
@@ -32516,7 +32486,7 @@ module TencentCloud
|
|
32516
32486
|
# @type OperatorName: String
|
32517
32487
|
# @param OperatorId: 操作者id
|
32518
32488
|
# @type OperatorId: String
|
32519
|
-
# @param ProjectId:
|
32489
|
+
# @param ProjectId: 必填,项目id
|
32520
32490
|
# @type ProjectId: String
|
32521
32491
|
# @param ProjectIdent: 项目标志
|
32522
32492
|
# @type ProjectIdent: String
|
@@ -32532,7 +32502,7 @@ module TencentCloud
|
|
32532
32502
|
# @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
|
32533
32503
|
# @param IsCount: 是否计算总数
|
32534
32504
|
# @type IsCount: Boolean
|
32535
|
-
# @param AsyncMode:
|
32505
|
+
# @param AsyncMode: 必填,是否异步模式
|
32536
32506
|
# @type AsyncMode: Boolean
|
32537
32507
|
# @param CheckParentType: 是否检查上游任务: ALL(全部)、 MAKE_SCOPE(选中)、NONE (全部不检查)
|
32538
32508
|
# @type CheckParentType: String
|
@@ -32548,10 +32518,14 @@ module TencentCloud
|
|
32548
32518
|
# @type DataTimeOrder: Integer
|
32549
32519
|
# @param ReDoParams: 重跑参数
|
32550
32520
|
# @type ReDoParams: String
|
32521
|
+
# @param MapParamList: 重跑实例自定义参数
|
32522
|
+
# @type MapParamList: Array
|
32523
|
+
# @param AppParam: 引擎应用执行参数
|
32524
|
+
# @type AppParam: String
|
32551
32525
|
|
32552
|
-
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
|
32553
32527
|
|
32554
|
-
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)
|
32555
32529
|
@Instances = instances
|
32556
32530
|
@CheckFather = checkfather
|
32557
32531
|
@RerunType = reruntype
|
@@ -32578,6 +32552,8 @@ module TencentCloud
|
|
32578
32552
|
@SelfWorkflowDependency = selfworkflowdependency
|
32579
32553
|
@DataTimeOrder = datatimeorder
|
32580
32554
|
@ReDoParams = redoparams
|
32555
|
+
@MapParamList = mapparamlist
|
32556
|
+
@AppParam = appparam
|
32581
32557
|
end
|
32582
32558
|
|
32583
32559
|
def deserialize(params)
|
@@ -32620,6 +32596,15 @@ module TencentCloud
|
|
32620
32596
|
@SelfWorkflowDependency = params['SelfWorkflowDependency']
|
32621
32597
|
@DataTimeOrder = params['DataTimeOrder']
|
32622
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']
|
32623
32608
|
end
|
32624
32609
|
end
|
32625
32610
|
|
@@ -35981,10 +35966,16 @@ module TencentCloud
|
|
35981
35966
|
# @param ReportTarget: 0- wedata, 1-inlong
|
35982
35967
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
35983
35968
|
# @type ReportTarget: Integer
|
35969
|
+
# @param AlarmReceiverGroups: 告警接收组
|
35970
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
35971
|
+
# @type AlarmReceiverGroups: Array
|
35972
|
+
# @param AlarmReceiverGroupFlag: 告警接收组标记,0代表历史版本,1代表新版本
|
35973
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
35974
|
+
# @type AlarmReceiverGroupFlag: Integer
|
35984
35975
|
|
35985
|
-
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
|
35986
35977
|
|
35987
|
-
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)
|
35988
35979
|
@TaskId = taskid
|
35989
35980
|
@RegularName = regularname
|
35990
35981
|
@RegularStatus = regularstatus
|
@@ -36021,6 +36012,8 @@ module TencentCloud
|
|
36021
36012
|
@BusinessType = businesstype
|
36022
36013
|
@AlarmMessageRule = alarmmessagerule
|
36023
36014
|
@ReportTarget = reporttarget
|
36015
|
+
@AlarmReceiverGroups = alarmreceivergroups
|
36016
|
+
@AlarmReceiverGroupFlag = alarmreceivergroupflag
|
36024
36017
|
end
|
36025
36018
|
|
36026
36019
|
def deserialize(params)
|
@@ -36074,6 +36067,15 @@ module TencentCloud
|
|
36074
36067
|
@BusinessType = params['BusinessType']
|
36075
36068
|
@AlarmMessageRule = params['AlarmMessageRule']
|
36076
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']
|
36077
36079
|
end
|
36078
36080
|
end
|
36079
36081
|
|
@@ -36419,7 +36421,15 @@ module TencentCloud
|
|
36419
36421
|
# @param LastUpdate: 更新时间
|
36420
36422
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36421
36423
|
# @type LastUpdate: String
|
36422
|
-
# @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>
|
36423
36433
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36424
36434
|
# @type Status: String
|
36425
36435
|
# @param InCharge: 责任人
|
@@ -36572,7 +36582,15 @@ module TencentCloud
|
|
36572
36582
|
# @param DependencyConfigList: 依赖配置
|
36573
36583
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36574
36584
|
# @type DependencyConfigList: Array
|
36575
|
-
# @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>
|
36576
36594
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36577
36595
|
# @type VirtualTaskStatus: String
|
36578
36596
|
# @param RecycleTips: 回收站还原提示语
|
@@ -36693,10 +36711,17 @@ module TencentCloud
|
|
36693
36711
|
# @param AllowRedoType: 允许重跑类 ALL 无论实例成功或者失败,都允许重跑 FAILURE 只有失败的实例允许重跑,成功的实例不允许重跑 NONE 无论成功或者失败,都不允许重跑
|
36694
36712
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
36695
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
|
36696
36721
|
|
36697
|
-
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
|
36698
36723
|
|
36699
|
-
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)
|
36700
36725
|
@TaskId = taskid
|
36701
36726
|
@VirtualTaskId = virtualtaskid
|
36702
36727
|
@VirtualFlag = virtualflag
|
@@ -36798,6 +36823,8 @@ module TencentCloud
|
|
36798
36823
|
@ScheduleTimeZone = scheduletimezone
|
36799
36824
|
@TemplateId = templateid
|
36800
36825
|
@AllowRedoType = allowredotype
|
36826
|
+
@BundleId = bundleid
|
36827
|
+
@BundleName = bundlename
|
36801
36828
|
end
|
36802
36829
|
|
36803
36830
|
def deserialize(params)
|
@@ -36971,6 +36998,8 @@ module TencentCloud
|
|
36971
36998
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
36972
36999
|
@TemplateId = params['TemplateId']
|
36973
37000
|
@AllowRedoType = params['AllowRedoType']
|
37001
|
+
@BundleId = params['BundleId']
|
37002
|
+
@BundleName = params['BundleName']
|
36974
37003
|
end
|
36975
37004
|
end
|
36976
37005
|
|
@@ -39007,6 +39036,202 @@ module TencentCloud
|
|
39007
39036
|
end
|
39008
39037
|
end
|
39009
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
|
+
|
39010
39235
|
# 数据质量阈值
|
39011
39236
|
class ThresholdValue < TencentCloud::Common::AbstractModel
|
39012
39237
|
# @param ValueType: 阈值类型 1.低阈值 2.高阈值 3.普通阈值 4.枚举值
|
@@ -39827,7 +40052,7 @@ module TencentCloud
|
|
39827
40052
|
end
|
39828
40053
|
end
|
39829
40054
|
|
39830
|
-
#
|
40055
|
+
# 资源管理-上传资源请求
|
39831
40056
|
class UploadResourceRequestInfo < TencentCloud::Common::AbstractModel
|
39832
40057
|
# @param ProjectId: 项目id
|
39833
40058
|
# @type ProjectId: String
|
@@ -39845,10 +40070,12 @@ module TencentCloud
|
|
39845
40070
|
# @type FileSizeList: Array
|
39846
40071
|
# @param FileMd5: File Md5(适配私有化,公有云可以不传)
|
39847
40072
|
# @type FileMd5: String
|
40073
|
+
# @param RemotePath: 资源在对象存储上的实际路径
|
40074
|
+
# @type RemotePath: String
|
39848
40075
|
|
39849
|
-
attr_accessor :ProjectId, :FilePath, :BucketName, :Region, :NewFile, :FileList, :FileSizeList, :FileMd5
|
40076
|
+
attr_accessor :ProjectId, :FilePath, :BucketName, :Region, :NewFile, :FileList, :FileSizeList, :FileMd5, :RemotePath
|
39850
40077
|
|
39851
|
-
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)
|
39852
40079
|
@ProjectId = projectid
|
39853
40080
|
@FilePath = filepath
|
39854
40081
|
@BucketName = bucketname
|
@@ -39857,6 +40084,7 @@ module TencentCloud
|
|
39857
40084
|
@FileList = filelist
|
39858
40085
|
@FileSizeList = filesizelist
|
39859
40086
|
@FileMd5 = filemd5
|
40087
|
+
@RemotePath = remotepath
|
39860
40088
|
end
|
39861
40089
|
|
39862
40090
|
def deserialize(params)
|
@@ -39868,6 +40096,7 @@ module TencentCloud
|
|
39868
40096
|
@FileList = params['FileList']
|
39869
40097
|
@FileSizeList = params['FileSizeList']
|
39870
40098
|
@FileMd5 = params['FileMd5']
|
40099
|
+
@RemotePath = params['RemotePath']
|
39871
40100
|
end
|
39872
40101
|
end
|
39873
40102
|
|
@@ -40939,6 +41168,33 @@ module TencentCloud
|
|
40939
41168
|
end
|
40940
41169
|
end
|
40941
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
|
+
|
40942
41198
|
end
|
40943
41199
|
end
|
40944
41200
|
end
|