tencentcloud-sdk-wedata 3.0.893 → 3.0.895
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 +144 -0
- data/lib/v20210820/models.rb +1008 -4
- metadata +2 -2
data/lib/v20210820/models.rb
CHANGED
@@ -119,6 +119,206 @@ module TencentCloud
|
|
119
119
|
end
|
120
120
|
end
|
121
121
|
|
122
|
+
# 监听事件
|
123
|
+
class AiOpsEventListenerDTO < TencentCloud::Common::AbstractModel
|
124
|
+
# @param EventName: 事件名
|
125
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
126
|
+
# @type EventName: String
|
127
|
+
# @param CreateTime: 创建时间
|
128
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
129
|
+
# @type CreateTime: String
|
130
|
+
# @param ProjectDisplayName: 项目展示名
|
131
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
132
|
+
# @type ProjectDisplayName: String
|
133
|
+
# @param EventSubType: 事件周期
|
134
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
135
|
+
# @type EventSubType: String
|
136
|
+
# @param ProjectId: 事件项目ID
|
137
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
138
|
+
# @type ProjectId: String
|
139
|
+
# @param PropertiesList: 扩展名
|
140
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
141
|
+
# @type PropertiesList: Array
|
142
|
+
# @param EventBroadcastType: 事件广播类型
|
143
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
144
|
+
# @type EventBroadcastType: String
|
145
|
+
|
146
|
+
attr_accessor :EventName, :CreateTime, :ProjectDisplayName, :EventSubType, :ProjectId, :PropertiesList, :EventBroadcastType
|
147
|
+
|
148
|
+
def initialize(eventname=nil, createtime=nil, projectdisplayname=nil, eventsubtype=nil, projectid=nil, propertieslist=nil, eventbroadcasttype=nil)
|
149
|
+
@EventName = eventname
|
150
|
+
@CreateTime = createtime
|
151
|
+
@ProjectDisplayName = projectdisplayname
|
152
|
+
@EventSubType = eventsubtype
|
153
|
+
@ProjectId = projectid
|
154
|
+
@PropertiesList = propertieslist
|
155
|
+
@EventBroadcastType = eventbroadcasttype
|
156
|
+
end
|
157
|
+
|
158
|
+
def deserialize(params)
|
159
|
+
@EventName = params['EventName']
|
160
|
+
@CreateTime = params['CreateTime']
|
161
|
+
@ProjectDisplayName = params['ProjectDisplayName']
|
162
|
+
@EventSubType = params['EventSubType']
|
163
|
+
@ProjectId = params['ProjectId']
|
164
|
+
unless params['PropertiesList'].nil?
|
165
|
+
@PropertiesList = []
|
166
|
+
params['PropertiesList'].each do |i|
|
167
|
+
paraminfods_tmp = ParamInfoDs.new
|
168
|
+
paraminfods_tmp.deserialize(i)
|
169
|
+
@PropertiesList << paraminfods_tmp
|
170
|
+
end
|
171
|
+
end
|
172
|
+
@EventBroadcastType = params['EventBroadcastType']
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
# DLC资源配置信息
|
177
|
+
class AiopsDLCResourceConfigDto < TencentCloud::Common::AbstractModel
|
178
|
+
# @param DriverSize: Driver资源
|
179
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
180
|
+
# @type DriverSize: String
|
181
|
+
# @param ExecutorSize: Executor资源
|
182
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
183
|
+
# @type ExecutorSize: String
|
184
|
+
# @param ExecutorNumbers: Executor数量
|
185
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
186
|
+
# @type ExecutorNumbers: String
|
187
|
+
# @param IsInherit: 资源配置方式
|
188
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
189
|
+
# @type IsInherit: String
|
190
|
+
|
191
|
+
attr_accessor :DriverSize, :ExecutorSize, :ExecutorNumbers, :IsInherit
|
192
|
+
|
193
|
+
def initialize(driversize=nil, executorsize=nil, executornumbers=nil, isinherit=nil)
|
194
|
+
@DriverSize = driversize
|
195
|
+
@ExecutorSize = executorsize
|
196
|
+
@ExecutorNumbers = executornumbers
|
197
|
+
@IsInherit = isinherit
|
198
|
+
end
|
199
|
+
|
200
|
+
def deserialize(params)
|
201
|
+
@DriverSize = params['DriverSize']
|
202
|
+
@ExecutorSize = params['ExecutorSize']
|
203
|
+
@ExecutorNumbers = params['ExecutorNumbers']
|
204
|
+
@IsInherit = params['IsInherit']
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
# 数据运维脚本信息
|
209
|
+
class AiopsScriptInfo < TencentCloud::Common::AbstractModel
|
210
|
+
# @param ScriptContent: 脚本内容
|
211
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
212
|
+
# @type ScriptContent: String
|
213
|
+
# @param CosPath: 脚本所在COS的路径
|
214
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
215
|
+
# @type CosPath: String
|
216
|
+
# @param CosRegion: 脚本所在COS的地域
|
217
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
218
|
+
# @type CosRegion: String
|
219
|
+
# @param CosBucketName: 脚本所在COS的桶名称
|
220
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
221
|
+
# @type CosBucketName: String
|
222
|
+
|
223
|
+
attr_accessor :ScriptContent, :CosPath, :CosRegion, :CosBucketName
|
224
|
+
|
225
|
+
def initialize(scriptcontent=nil, cospath=nil, cosregion=nil, cosbucketname=nil)
|
226
|
+
@ScriptContent = scriptcontent
|
227
|
+
@CosPath = cospath
|
228
|
+
@CosRegion = cosregion
|
229
|
+
@CosBucketName = cosbucketname
|
230
|
+
end
|
231
|
+
|
232
|
+
def deserialize(params)
|
233
|
+
@ScriptContent = params['ScriptContent']
|
234
|
+
@CosPath = params['CosPath']
|
235
|
+
@CosRegion = params['CosRegion']
|
236
|
+
@CosBucketName = params['CosBucketName']
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
# 父任务simple信息
|
241
|
+
class AiopsSimpleTaskDto < TencentCloud::Common::AbstractModel
|
242
|
+
# @param TaskId: 任务ID
|
243
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
244
|
+
# @type TaskId: String
|
245
|
+
# @param TaskName: 任务名
|
246
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
247
|
+
# @type TaskName: String
|
248
|
+
# @param Status: 任务状态
|
249
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
250
|
+
# @type Status: String
|
251
|
+
# @param CycleType: 周期类型
|
252
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
253
|
+
# @type CycleType: String
|
254
|
+
# @param Creator: 任务创建人
|
255
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
256
|
+
# @type Creator: String
|
257
|
+
# @param WorkflowId: 工作流id
|
258
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
259
|
+
# @type WorkflowId: String
|
260
|
+
# @param WorkflowName: 工作流名称
|
261
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
262
|
+
# @type WorkflowName: String
|
263
|
+
# @param ProjectId: 项目id
|
264
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
265
|
+
# @type ProjectId: String
|
266
|
+
# @param ProjectIdent: 项目标识
|
267
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
268
|
+
# @type ProjectIdent: String
|
269
|
+
# @param ProjectName: 项目名称
|
270
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
271
|
+
# @type ProjectName: String
|
272
|
+
# @param ConfigType: 配置策略
|
273
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
274
|
+
# @type ConfigType: String
|
275
|
+
# @param TimeDimension: 时间维度
|
276
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
277
|
+
# @type TimeDimension: String
|
278
|
+
# @param InstanceScope: 实例范围
|
279
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
280
|
+
# @type InstanceScope: String
|
281
|
+
# @param ExectuorPolicy: 执行策略
|
282
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
283
|
+
# @type ExectuorPolicy: String
|
284
|
+
|
285
|
+
attr_accessor :TaskId, :TaskName, :Status, :CycleType, :Creator, :WorkflowId, :WorkflowName, :ProjectId, :ProjectIdent, :ProjectName, :ConfigType, :TimeDimension, :InstanceScope, :ExectuorPolicy
|
286
|
+
|
287
|
+
def initialize(taskid=nil, taskname=nil, status=nil, cycletype=nil, creator=nil, workflowid=nil, workflowname=nil, projectid=nil, projectident=nil, projectname=nil, configtype=nil, timedimension=nil, instancescope=nil, exectuorpolicy=nil)
|
288
|
+
@TaskId = taskid
|
289
|
+
@TaskName = taskname
|
290
|
+
@Status = status
|
291
|
+
@CycleType = cycletype
|
292
|
+
@Creator = creator
|
293
|
+
@WorkflowId = workflowid
|
294
|
+
@WorkflowName = workflowname
|
295
|
+
@ProjectId = projectid
|
296
|
+
@ProjectIdent = projectident
|
297
|
+
@ProjectName = projectname
|
298
|
+
@ConfigType = configtype
|
299
|
+
@TimeDimension = timedimension
|
300
|
+
@InstanceScope = instancescope
|
301
|
+
@ExectuorPolicy = exectuorpolicy
|
302
|
+
end
|
303
|
+
|
304
|
+
def deserialize(params)
|
305
|
+
@TaskId = params['TaskId']
|
306
|
+
@TaskName = params['TaskName']
|
307
|
+
@Status = params['Status']
|
308
|
+
@CycleType = params['CycleType']
|
309
|
+
@Creator = params['Creator']
|
310
|
+
@WorkflowId = params['WorkflowId']
|
311
|
+
@WorkflowName = params['WorkflowName']
|
312
|
+
@ProjectId = params['ProjectId']
|
313
|
+
@ProjectIdent = params['ProjectIdent']
|
314
|
+
@ProjectName = params['ProjectName']
|
315
|
+
@ConfigType = params['ConfigType']
|
316
|
+
@TimeDimension = params['TimeDimension']
|
317
|
+
@InstanceScope = params['InstanceScope']
|
318
|
+
@ExectuorPolicy = params['ExectuorPolicy']
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
122
322
|
# 告警事件详情
|
123
323
|
class AlarmEventInfo < TencentCloud::Common::AbstractModel
|
124
324
|
# @param AlarmId: 告警ID
|
@@ -470,10 +670,13 @@ module TencentCloud
|
|
470
670
|
# @param ApproveProjectName: 审批所属项目
|
471
671
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
472
672
|
# @type ApproveProjectName: String
|
673
|
+
# @param ApplyId: 审批id
|
674
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
675
|
+
# @type ApplyId: String
|
473
676
|
|
474
|
-
attr_accessor :ApplicantId, :ApplicantName, :Remark, :ApproveClassification, :ApproveId, :ApproveType, :Reason, :CreateTime, :ApproveTime, :ApproveClassificationName, :Status, :ApproveTypeName, :ErrorMessage, :ApplyName, :ApproverId, :ApproverName, :ApproveProjectName
|
677
|
+
attr_accessor :ApplicantId, :ApplicantName, :Remark, :ApproveClassification, :ApproveId, :ApproveType, :Reason, :CreateTime, :ApproveTime, :ApproveClassificationName, :Status, :ApproveTypeName, :ErrorMessage, :ApplyName, :ApproverId, :ApproverName, :ApproveProjectName, :ApplyId
|
475
678
|
|
476
|
-
def initialize(applicantid=nil, applicantname=nil, remark=nil, approveclassification=nil, approveid=nil, approvetype=nil, reason=nil, createtime=nil, approvetime=nil, approveclassificationname=nil, status=nil, approvetypename=nil, errormessage=nil, applyname=nil, approverid=nil, approvername=nil, approveprojectname=nil)
|
679
|
+
def initialize(applicantid=nil, applicantname=nil, remark=nil, approveclassification=nil, approveid=nil, approvetype=nil, reason=nil, createtime=nil, approvetime=nil, approveclassificationname=nil, status=nil, approvetypename=nil, errormessage=nil, applyname=nil, approverid=nil, approvername=nil, approveprojectname=nil, applyid=nil)
|
477
680
|
@ApplicantId = applicantid
|
478
681
|
@ApplicantName = applicantname
|
479
682
|
@Remark = remark
|
@@ -491,6 +694,7 @@ module TencentCloud
|
|
491
694
|
@ApproverId = approverid
|
492
695
|
@ApproverName = approvername
|
493
696
|
@ApproveProjectName = approveprojectname
|
697
|
+
@ApplyId = applyid
|
494
698
|
end
|
495
699
|
|
496
700
|
def deserialize(params)
|
@@ -511,6 +715,7 @@ module TencentCloud
|
|
511
715
|
@ApproverId = params['ApproverId']
|
512
716
|
@ApproverName = params['ApproverName']
|
513
717
|
@ApproveProjectName = params['ApproveProjectName']
|
718
|
+
@ApplyId = params['ApplyId']
|
514
719
|
end
|
515
720
|
end
|
516
721
|
|
@@ -819,6 +1024,73 @@ module TencentCloud
|
|
819
1024
|
end
|
820
1025
|
end
|
821
1026
|
|
1027
|
+
# BatchCreateTaskVersionAsync请求参数结构体
|
1028
|
+
class BatchCreateTaskVersionAsyncRequest < TencentCloud::Common::AbstractModel
|
1029
|
+
# @param Tasks: 任务信息
|
1030
|
+
# @type Tasks: Array
|
1031
|
+
# @param ProjectId: 项目ID
|
1032
|
+
# @type ProjectId: String
|
1033
|
+
# @param AutoRun: 是否自动运行
|
1034
|
+
# @type AutoRun: Boolean
|
1035
|
+
# @param AlarmWays: 告警方式:email-邮件;sms-短信;wecom-企业微信
|
1036
|
+
# @type AlarmWays: String
|
1037
|
+
# @param AlarmRecipientTypes: 告警对象:1-项目管理员,2-任务责任人
|
1038
|
+
# @type AlarmRecipientTypes: String
|
1039
|
+
# @param NeedCheckParentSubmitted: 是否需要校验父任务已经提交到调度
|
1040
|
+
# @type NeedCheckParentSubmitted: Boolean
|
1041
|
+
|
1042
|
+
attr_accessor :Tasks, :ProjectId, :AutoRun, :AlarmWays, :AlarmRecipientTypes, :NeedCheckParentSubmitted
|
1043
|
+
|
1044
|
+
def initialize(tasks=nil, projectid=nil, autorun=nil, alarmways=nil, alarmrecipienttypes=nil, needcheckparentsubmitted=nil)
|
1045
|
+
@Tasks = tasks
|
1046
|
+
@ProjectId = projectid
|
1047
|
+
@AutoRun = autorun
|
1048
|
+
@AlarmWays = alarmways
|
1049
|
+
@AlarmRecipientTypes = alarmrecipienttypes
|
1050
|
+
@NeedCheckParentSubmitted = needcheckparentsubmitted
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
def deserialize(params)
|
1054
|
+
unless params['Tasks'].nil?
|
1055
|
+
@Tasks = []
|
1056
|
+
params['Tasks'].each do |i|
|
1057
|
+
batchcreatetaskversiondto_tmp = BatchCreateTaskVersionDTO.new
|
1058
|
+
batchcreatetaskversiondto_tmp.deserialize(i)
|
1059
|
+
@Tasks << batchcreatetaskversiondto_tmp
|
1060
|
+
end
|
1061
|
+
end
|
1062
|
+
@ProjectId = params['ProjectId']
|
1063
|
+
@AutoRun = params['AutoRun']
|
1064
|
+
@AlarmWays = params['AlarmWays']
|
1065
|
+
@AlarmRecipientTypes = params['AlarmRecipientTypes']
|
1066
|
+
@NeedCheckParentSubmitted = params['NeedCheckParentSubmitted']
|
1067
|
+
end
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
# BatchCreateTaskVersionAsync返回参数结构体
|
1071
|
+
class BatchCreateTaskVersionAsyncResponse < TencentCloud::Common::AbstractModel
|
1072
|
+
# @param Data: 批量操作返回
|
1073
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1074
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.BatchTaskOperateNew`
|
1075
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1076
|
+
# @type RequestId: String
|
1077
|
+
|
1078
|
+
attr_accessor :Data, :RequestId
|
1079
|
+
|
1080
|
+
def initialize(data=nil, requestid=nil)
|
1081
|
+
@Data = data
|
1082
|
+
@RequestId = requestid
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
def deserialize(params)
|
1086
|
+
unless params['Data'].nil?
|
1087
|
+
@Data = BatchTaskOperateNew.new
|
1088
|
+
@Data.deserialize(params['Data'])
|
1089
|
+
end
|
1090
|
+
@RequestId = params['RequestId']
|
1091
|
+
end
|
1092
|
+
end
|
1093
|
+
|
822
1094
|
# BatchCreateTaskVersion使用,描述任务信息
|
823
1095
|
class BatchCreateTaskVersionDTO < TencentCloud::Common::AbstractModel
|
824
1096
|
# @param TaskId: 任务ID
|
@@ -1393,6 +1665,33 @@ module TencentCloud
|
|
1393
1665
|
end
|
1394
1666
|
end
|
1395
1667
|
|
1668
|
+
# 批量执行结果
|
1669
|
+
class BatchResultDs < TencentCloud::Common::AbstractModel
|
1670
|
+
# @param Success: 成功数
|
1671
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1672
|
+
# @type Success: Integer
|
1673
|
+
# @param Failed: 失败数
|
1674
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1675
|
+
# @type Failed: Integer
|
1676
|
+
# @param Total: 总计
|
1677
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1678
|
+
# @type Total: Integer
|
1679
|
+
|
1680
|
+
attr_accessor :Success, :Failed, :Total
|
1681
|
+
|
1682
|
+
def initialize(success=nil, failed=nil, total=nil)
|
1683
|
+
@Success = success
|
1684
|
+
@Failed = failed
|
1685
|
+
@Total = total
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
def deserialize(params)
|
1689
|
+
@Success = params['Success']
|
1690
|
+
@Failed = params['Failed']
|
1691
|
+
@Total = params['Total']
|
1692
|
+
end
|
1693
|
+
end
|
1694
|
+
|
1396
1695
|
# BatchResumeIntegrationTasks请求参数结构体
|
1397
1696
|
class BatchResumeIntegrationTasksRequest < TencentCloud::Common::AbstractModel
|
1398
1697
|
# @param TaskIds: 任务id
|
@@ -1798,6 +2097,23 @@ module TencentCloud
|
|
1798
2097
|
end
|
1799
2098
|
end
|
1800
2099
|
|
2100
|
+
# 批量操作出参
|
2101
|
+
class BatchTaskOperateNew < TencentCloud::Common::AbstractModel
|
2102
|
+
# @param JobId: 操作Id
|
2103
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2104
|
+
# @type JobId: Integer
|
2105
|
+
|
2106
|
+
attr_accessor :JobId
|
2107
|
+
|
2108
|
+
def initialize(jobid=nil)
|
2109
|
+
@JobId = jobid
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
def deserialize(params)
|
2113
|
+
@JobId = params['JobId']
|
2114
|
+
end
|
2115
|
+
end
|
2116
|
+
|
1801
2117
|
# BatchUpdateIntegrationTasks请求参数结构体
|
1802
2118
|
class BatchUpdateIntegrationTasksRequest < TencentCloud::Common::AbstractModel
|
1803
2119
|
# @param TaskIds: 任务id
|
@@ -3064,6 +3380,68 @@ module TencentCloud
|
|
3064
3380
|
end
|
3065
3381
|
end
|
3066
3382
|
|
3383
|
+
# cos token信息
|
3384
|
+
class CosTokenResponse < TencentCloud::Common::AbstractModel
|
3385
|
+
# @param Id: token id
|
3386
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3387
|
+
# @type Id: String
|
3388
|
+
# @param Token: token内容
|
3389
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3390
|
+
# @type Token: String
|
3391
|
+
# @param SecretId: 密钥id
|
3392
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3393
|
+
# @type SecretId: String
|
3394
|
+
# @param SecretKey: 密钥内容
|
3395
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3396
|
+
# @type SecretKey: String
|
3397
|
+
# @param Response: 响应
|
3398
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3399
|
+
# @type Response: String
|
3400
|
+
# @param OwnerUin: 用户uin
|
3401
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3402
|
+
# @type OwnerUin: String
|
3403
|
+
# @param ExpiredTime: 过期时间
|
3404
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3405
|
+
# @type ExpiredTime: Integer
|
3406
|
+
# @param CreateTime: 创建时间
|
3407
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3408
|
+
# @type CreateTime: Integer
|
3409
|
+
# @param UpdateTime: 更新时间
|
3410
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3411
|
+
# @type UpdateTime: Integer
|
3412
|
+
# @param OperatorUin: 操作者uin
|
3413
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3414
|
+
# @type OperatorUin: String
|
3415
|
+
|
3416
|
+
attr_accessor :Id, :Token, :SecretId, :SecretKey, :Response, :OwnerUin, :ExpiredTime, :CreateTime, :UpdateTime, :OperatorUin
|
3417
|
+
|
3418
|
+
def initialize(id=nil, token=nil, secretid=nil, secretkey=nil, response=nil, owneruin=nil, expiredtime=nil, createtime=nil, updatetime=nil, operatoruin=nil)
|
3419
|
+
@Id = id
|
3420
|
+
@Token = token
|
3421
|
+
@SecretId = secretid
|
3422
|
+
@SecretKey = secretkey
|
3423
|
+
@Response = response
|
3424
|
+
@OwnerUin = owneruin
|
3425
|
+
@ExpiredTime = expiredtime
|
3426
|
+
@CreateTime = createtime
|
3427
|
+
@UpdateTime = updatetime
|
3428
|
+
@OperatorUin = operatoruin
|
3429
|
+
end
|
3430
|
+
|
3431
|
+
def deserialize(params)
|
3432
|
+
@Id = params['Id']
|
3433
|
+
@Token = params['Token']
|
3434
|
+
@SecretId = params['SecretId']
|
3435
|
+
@SecretKey = params['SecretKey']
|
3436
|
+
@Response = params['Response']
|
3437
|
+
@OwnerUin = params['OwnerUin']
|
3438
|
+
@ExpiredTime = params['ExpiredTime']
|
3439
|
+
@CreateTime = params['CreateTime']
|
3440
|
+
@UpdateTime = params['UpdateTime']
|
3441
|
+
@OperatorUin = params['OperatorUin']
|
3442
|
+
end
|
3443
|
+
end
|
3444
|
+
|
3067
3445
|
# CountOpsInstanceState请求参数结构体
|
3068
3446
|
class CountOpsInstanceStateRequest < TencentCloud::Common::AbstractModel
|
3069
3447
|
# @param TaskId: 任务id
|
@@ -9689,6 +10067,116 @@ module TencentCloud
|
|
9689
10067
|
end
|
9690
10068
|
end
|
9691
10069
|
|
10070
|
+
# 待提交任务信息
|
10071
|
+
class DescribePendingSubmitTaskInfo < TencentCloud::Common::AbstractModel
|
10072
|
+
# @param TaskId: 任务编号
|
10073
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10074
|
+
# @type TaskId: String
|
10075
|
+
# @param TaskName: 任务名称
|
10076
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10077
|
+
# @type TaskName: String
|
10078
|
+
# @param ModifyType: 修改类型
|
10079
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10080
|
+
# @type ModifyType: String
|
10081
|
+
# @param TaskStatus: 任务状态
|
10082
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10083
|
+
# @type TaskStatus: String
|
10084
|
+
# @param SubmitPreCheck: 提交预检查(Y/N)
|
10085
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10086
|
+
# @type SubmitPreCheck: String
|
10087
|
+
# @param SubmitPreCheckDetailList: 提交预检查提交可能会失败的原因
|
10088
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10089
|
+
# @type SubmitPreCheckDetailList: Array
|
10090
|
+
# @param ExecutorGroupId: 资源组编号
|
10091
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10092
|
+
# @type ExecutorGroupId: String
|
10093
|
+
# @param ExecutorGroupName: 资源组名称
|
10094
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10095
|
+
# @type ExecutorGroupName: String
|
10096
|
+
|
10097
|
+
attr_accessor :TaskId, :TaskName, :ModifyType, :TaskStatus, :SubmitPreCheck, :SubmitPreCheckDetailList, :ExecutorGroupId, :ExecutorGroupName
|
10098
|
+
|
10099
|
+
def initialize(taskid=nil, taskname=nil, modifytype=nil, taskstatus=nil, submitprecheck=nil, submitprecheckdetaillist=nil, executorgroupid=nil, executorgroupname=nil)
|
10100
|
+
@TaskId = taskid
|
10101
|
+
@TaskName = taskname
|
10102
|
+
@ModifyType = modifytype
|
10103
|
+
@TaskStatus = taskstatus
|
10104
|
+
@SubmitPreCheck = submitprecheck
|
10105
|
+
@SubmitPreCheckDetailList = submitprecheckdetaillist
|
10106
|
+
@ExecutorGroupId = executorgroupid
|
10107
|
+
@ExecutorGroupName = executorgroupname
|
10108
|
+
end
|
10109
|
+
|
10110
|
+
def deserialize(params)
|
10111
|
+
@TaskId = params['TaskId']
|
10112
|
+
@TaskName = params['TaskName']
|
10113
|
+
@ModifyType = params['ModifyType']
|
10114
|
+
@TaskStatus = params['TaskStatus']
|
10115
|
+
@SubmitPreCheck = params['SubmitPreCheck']
|
10116
|
+
unless params['SubmitPreCheckDetailList'].nil?
|
10117
|
+
@SubmitPreCheckDetailList = []
|
10118
|
+
params['SubmitPreCheckDetailList'].each do |i|
|
10119
|
+
tasksubmitprecheckdetailinfo_tmp = TaskSubmitPreCheckDetailInfo.new
|
10120
|
+
tasksubmitprecheckdetailinfo_tmp.deserialize(i)
|
10121
|
+
@SubmitPreCheckDetailList << tasksubmitprecheckdetailinfo_tmp
|
10122
|
+
end
|
10123
|
+
end
|
10124
|
+
@ExecutorGroupId = params['ExecutorGroupId']
|
10125
|
+
@ExecutorGroupName = params['ExecutorGroupName']
|
10126
|
+
end
|
10127
|
+
end
|
10128
|
+
|
10129
|
+
# DescribePendingSubmitTaskList请求参数结构体
|
10130
|
+
class DescribePendingSubmitTaskListRequest < TencentCloud::Common::AbstractModel
|
10131
|
+
# @param ProjectId: 项目编号
|
10132
|
+
# @type ProjectId: String
|
10133
|
+
# @param WorkflowId: 工作流编号
|
10134
|
+
# @type WorkflowId: String
|
10135
|
+
# @param TaskIdList: 任务编号列表
|
10136
|
+
# @type TaskIdList: Array
|
10137
|
+
|
10138
|
+
attr_accessor :ProjectId, :WorkflowId, :TaskIdList
|
10139
|
+
|
10140
|
+
def initialize(projectid=nil, workflowid=nil, taskidlist=nil)
|
10141
|
+
@ProjectId = projectid
|
10142
|
+
@WorkflowId = workflowid
|
10143
|
+
@TaskIdList = taskidlist
|
10144
|
+
end
|
10145
|
+
|
10146
|
+
def deserialize(params)
|
10147
|
+
@ProjectId = params['ProjectId']
|
10148
|
+
@WorkflowId = params['WorkflowId']
|
10149
|
+
@TaskIdList = params['TaskIdList']
|
10150
|
+
end
|
10151
|
+
end
|
10152
|
+
|
10153
|
+
# DescribePendingSubmitTaskList返回参数结构体
|
10154
|
+
class DescribePendingSubmitTaskListResponse < TencentCloud::Common::AbstractModel
|
10155
|
+
# @param Data: 待提交任务信息
|
10156
|
+
# @type Data: Array
|
10157
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10158
|
+
# @type RequestId: String
|
10159
|
+
|
10160
|
+
attr_accessor :Data, :RequestId
|
10161
|
+
|
10162
|
+
def initialize(data=nil, requestid=nil)
|
10163
|
+
@Data = data
|
10164
|
+
@RequestId = requestid
|
10165
|
+
end
|
10166
|
+
|
10167
|
+
def deserialize(params)
|
10168
|
+
unless params['Data'].nil?
|
10169
|
+
@Data = []
|
10170
|
+
params['Data'].each do |i|
|
10171
|
+
describependingsubmittaskinfo_tmp = DescribePendingSubmitTaskInfo.new
|
10172
|
+
describependingsubmittaskinfo_tmp.deserialize(i)
|
10173
|
+
@Data << describependingsubmittaskinfo_tmp
|
10174
|
+
end
|
10175
|
+
end
|
10176
|
+
@RequestId = params['RequestId']
|
10177
|
+
end
|
10178
|
+
end
|
10179
|
+
|
9692
10180
|
# DescribeProject请求参数结构体
|
9693
10181
|
class DescribeProjectRequest < TencentCloud::Common::AbstractModel
|
9694
10182
|
# @param ProjectId: 项目id。一般使用项目Id来查询,与projectName必须存在一个。
|
@@ -13092,6 +13580,50 @@ module TencentCloud
|
|
13092
13580
|
end
|
13093
13581
|
end
|
13094
13582
|
|
13583
|
+
# DescribeWorkflowSchedulerInfoDs请求参数结构体
|
13584
|
+
class DescribeWorkflowSchedulerInfoDsRequest < TencentCloud::Common::AbstractModel
|
13585
|
+
# @param ProjectId: 项目ID
|
13586
|
+
# @type ProjectId: String
|
13587
|
+
# @param WorkflowId: 工作流ID
|
13588
|
+
# @type WorkflowId: String
|
13589
|
+
|
13590
|
+
attr_accessor :ProjectId, :WorkflowId
|
13591
|
+
|
13592
|
+
def initialize(projectid=nil, workflowid=nil)
|
13593
|
+
@ProjectId = projectid
|
13594
|
+
@WorkflowId = workflowid
|
13595
|
+
end
|
13596
|
+
|
13597
|
+
def deserialize(params)
|
13598
|
+
@ProjectId = params['ProjectId']
|
13599
|
+
@WorkflowId = params['WorkflowId']
|
13600
|
+
end
|
13601
|
+
end
|
13602
|
+
|
13603
|
+
# DescribeWorkflowSchedulerInfoDs返回参数结构体
|
13604
|
+
class DescribeWorkflowSchedulerInfoDsResponse < TencentCloud::Common::AbstractModel
|
13605
|
+
# @param Data: 数据
|
13606
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
13607
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.WorkflowScheduleDtoDs`
|
13608
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13609
|
+
# @type RequestId: String
|
13610
|
+
|
13611
|
+
attr_accessor :Data, :RequestId
|
13612
|
+
|
13613
|
+
def initialize(data=nil, requestid=nil)
|
13614
|
+
@Data = data
|
13615
|
+
@RequestId = requestid
|
13616
|
+
end
|
13617
|
+
|
13618
|
+
def deserialize(params)
|
13619
|
+
unless params['Data'].nil?
|
13620
|
+
@Data = WorkflowScheduleDtoDs.new
|
13621
|
+
@Data.deserialize(params['Data'])
|
13622
|
+
end
|
13623
|
+
@RequestId = params['RequestId']
|
13624
|
+
end
|
13625
|
+
end
|
13626
|
+
|
13095
13627
|
# DescribeWorkflowTaskCount请求参数结构体
|
13096
13628
|
class DescribeWorkflowTaskCountRequest < TencentCloud::Common::AbstractModel
|
13097
13629
|
# @param WorkflowId: 工作流列表
|
@@ -14413,6 +14945,43 @@ module TencentCloud
|
|
14413
14945
|
end
|
14414
14946
|
end
|
14415
14947
|
|
14948
|
+
# 扩展信息参数
|
14949
|
+
class ExtResourceFlagDto < TencentCloud::Common::AbstractModel
|
14950
|
+
# @param ParentTask: 父任务信息获取标识
|
14951
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14952
|
+
# @type ParentTask: Boolean
|
14953
|
+
# @param EventListener: 生产事件获取标识
|
14954
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14955
|
+
# @type EventListener: String
|
14956
|
+
# @param DlcResourceConfig: Dlc相关配置获取标识
|
14957
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14958
|
+
# @type DlcResourceConfig: String
|
14959
|
+
# @param Script: 脚本信息获取标识
|
14960
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14961
|
+
# @type Script: String
|
14962
|
+
# @param OfflineSyncTask: 离线任务信息获取标识
|
14963
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14964
|
+
# @type OfflineSyncTask: String
|
14965
|
+
|
14966
|
+
attr_accessor :ParentTask, :EventListener, :DlcResourceConfig, :Script, :OfflineSyncTask
|
14967
|
+
|
14968
|
+
def initialize(parenttask=nil, eventlistener=nil, dlcresourceconfig=nil, script=nil, offlinesynctask=nil)
|
14969
|
+
@ParentTask = parenttask
|
14970
|
+
@EventListener = eventlistener
|
14971
|
+
@DlcResourceConfig = dlcresourceconfig
|
14972
|
+
@Script = script
|
14973
|
+
@OfflineSyncTask = offlinesynctask
|
14974
|
+
end
|
14975
|
+
|
14976
|
+
def deserialize(params)
|
14977
|
+
@ParentTask = params['ParentTask']
|
14978
|
+
@EventListener = params['EventListener']
|
14979
|
+
@DlcResourceConfig = params['DlcResourceConfig']
|
14980
|
+
@Script = params['Script']
|
14981
|
+
@OfflineSyncTask = params['OfflineSyncTask']
|
14982
|
+
end
|
14983
|
+
end
|
14984
|
+
|
14416
14985
|
# 错误处理结果信息
|
14417
14986
|
class FailMessage < TencentCloud::Common::AbstractModel
|
14418
14987
|
# @param Key: 数据唯一标识
|
@@ -15080,6 +15649,77 @@ module TencentCloud
|
|
15080
15649
|
end
|
15081
15650
|
end
|
15082
15651
|
|
15652
|
+
# GetCosToken请求参数结构体
|
15653
|
+
class GetCosTokenRequest < TencentCloud::Common::AbstractModel
|
15654
|
+
# @param ProjectId: 项目id
|
15655
|
+
# @type ProjectId: String
|
15656
|
+
# @param OriginDomain: 请求域名
|
15657
|
+
# @type OriginDomain: String
|
15658
|
+
# @param CrossFlag: 是否需要跨域
|
15659
|
+
# @type CrossFlag: Boolean
|
15660
|
+
# @param BucketName: 桶名
|
15661
|
+
# @type BucketName: String
|
15662
|
+
# @param RemotePath: 远程地址
|
15663
|
+
# @type RemotePath: String
|
15664
|
+
|
15665
|
+
attr_accessor :ProjectId, :OriginDomain, :CrossFlag, :BucketName, :RemotePath
|
15666
|
+
|
15667
|
+
def initialize(projectid=nil, origindomain=nil, crossflag=nil, bucketname=nil, remotepath=nil)
|
15668
|
+
@ProjectId = projectid
|
15669
|
+
@OriginDomain = origindomain
|
15670
|
+
@CrossFlag = crossflag
|
15671
|
+
@BucketName = bucketname
|
15672
|
+
@RemotePath = remotepath
|
15673
|
+
end
|
15674
|
+
|
15675
|
+
def deserialize(params)
|
15676
|
+
@ProjectId = params['ProjectId']
|
15677
|
+
@OriginDomain = params['OriginDomain']
|
15678
|
+
@CrossFlag = params['CrossFlag']
|
15679
|
+
@BucketName = params['BucketName']
|
15680
|
+
@RemotePath = params['RemotePath']
|
15681
|
+
end
|
15682
|
+
end
|
15683
|
+
|
15684
|
+
# GetCosToken返回参数结构体
|
15685
|
+
class GetCosTokenResponse < TencentCloud::Common::AbstractModel
|
15686
|
+
# @param Region: cos地域
|
15687
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15688
|
+
# @type Region: String
|
15689
|
+
# @param Token: Token信息
|
15690
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15691
|
+
# @type Token: :class:`Tencentcloud::Wedata.v20210820.models.CosTokenResponse`
|
15692
|
+
# @param Bucket: 桶名
|
15693
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15694
|
+
# @type Bucket: String
|
15695
|
+
# @param EndPoint: 终止点(针对私有云环境)
|
15696
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15697
|
+
# @type EndPoint: String
|
15698
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15699
|
+
# @type RequestId: String
|
15700
|
+
|
15701
|
+
attr_accessor :Region, :Token, :Bucket, :EndPoint, :RequestId
|
15702
|
+
|
15703
|
+
def initialize(region=nil, token=nil, bucket=nil, endpoint=nil, requestid=nil)
|
15704
|
+
@Region = region
|
15705
|
+
@Token = token
|
15706
|
+
@Bucket = bucket
|
15707
|
+
@EndPoint = endpoint
|
15708
|
+
@RequestId = requestid
|
15709
|
+
end
|
15710
|
+
|
15711
|
+
def deserialize(params)
|
15712
|
+
@Region = params['Region']
|
15713
|
+
unless params['Token'].nil?
|
15714
|
+
@Token = CosTokenResponse.new
|
15715
|
+
@Token.deserialize(params['Token'])
|
15716
|
+
end
|
15717
|
+
@Bucket = params['Bucket']
|
15718
|
+
@EndPoint = params['EndPoint']
|
15719
|
+
@RequestId = params['RequestId']
|
15720
|
+
end
|
15721
|
+
end
|
15722
|
+
|
15083
15723
|
# GetFileInfo请求参数结构体
|
15084
15724
|
class GetFileInfoRequest < TencentCloud::Common::AbstractModel
|
15085
15725
|
# @param ProjectId: 项目ID
|
@@ -17023,6 +17663,46 @@ module TencentCloud
|
|
17023
17663
|
end
|
17024
17664
|
end
|
17025
17665
|
|
17666
|
+
# JudgeResourceFile请求参数结构体
|
17667
|
+
class JudgeResourceFileRequest < TencentCloud::Common::AbstractModel
|
17668
|
+
# @param ProjectId: 项目id
|
17669
|
+
# @type ProjectId: String
|
17670
|
+
# @param FilePath: 资源路径
|
17671
|
+
# @type FilePath: String
|
17672
|
+
|
17673
|
+
attr_accessor :ProjectId, :FilePath
|
17674
|
+
|
17675
|
+
def initialize(projectid=nil, filepath=nil)
|
17676
|
+
@ProjectId = projectid
|
17677
|
+
@FilePath = filepath
|
17678
|
+
end
|
17679
|
+
|
17680
|
+
def deserialize(params)
|
17681
|
+
@ProjectId = params['ProjectId']
|
17682
|
+
@FilePath = params['FilePath']
|
17683
|
+
end
|
17684
|
+
end
|
17685
|
+
|
17686
|
+
# JudgeResourceFile返回参数结构体
|
17687
|
+
class JudgeResourceFileResponse < TencentCloud::Common::AbstractModel
|
17688
|
+
# @param Data: 资源文件完整路径
|
17689
|
+
# @type Data: String
|
17690
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17691
|
+
# @type RequestId: String
|
17692
|
+
|
17693
|
+
attr_accessor :Data, :RequestId
|
17694
|
+
|
17695
|
+
def initialize(data=nil, requestid=nil)
|
17696
|
+
@Data = data
|
17697
|
+
@RequestId = requestid
|
17698
|
+
end
|
17699
|
+
|
17700
|
+
def deserialize(params)
|
17701
|
+
@Data = params['Data']
|
17702
|
+
@RequestId = params['RequestId']
|
17703
|
+
end
|
17704
|
+
end
|
17705
|
+
|
17026
17706
|
# KillOpsMakePlanInstances请求参数结构体
|
17027
17707
|
class KillOpsMakePlanInstancesRequest < TencentCloud::Common::AbstractModel
|
17028
17708
|
# @param ProjectId: 项目ID
|
@@ -20013,6 +20693,26 @@ module TencentCloud
|
|
20013
20693
|
end
|
20014
20694
|
end
|
20015
20695
|
|
20696
|
+
# 参数参数
|
20697
|
+
class ParamInfoDs < TencentCloud::Common::AbstractModel
|
20698
|
+
# @param ParamKey: 参数名
|
20699
|
+
# @type ParamKey: String
|
20700
|
+
# @param ParamValue: 参数值
|
20701
|
+
# @type ParamValue: String
|
20702
|
+
|
20703
|
+
attr_accessor :ParamKey, :ParamValue
|
20704
|
+
|
20705
|
+
def initialize(paramkey=nil, paramvalue=nil)
|
20706
|
+
@ParamKey = paramkey
|
20707
|
+
@ParamValue = paramvalue
|
20708
|
+
end
|
20709
|
+
|
20710
|
+
def deserialize(params)
|
20711
|
+
@ParamKey = params['ParamKey']
|
20712
|
+
@ParamValue = params['ParamValue']
|
20713
|
+
end
|
20714
|
+
end
|
20715
|
+
|
20016
20716
|
# 分区参数
|
20017
20717
|
class Partition < TencentCloud::Common::AbstractModel
|
20018
20718
|
# @param Transform: 分区转换策略
|
@@ -20668,6 +21368,102 @@ module TencentCloud
|
|
20668
21368
|
end
|
20669
21369
|
end
|
20670
21370
|
|
21371
|
+
# RenewWorkflowSchedulerInfoDs请求参数结构体
|
21372
|
+
class RenewWorkflowSchedulerInfoDsRequest < TencentCloud::Common::AbstractModel
|
21373
|
+
# @param ProjectId: 项目ID
|
21374
|
+
# @type ProjectId: String
|
21375
|
+
# @param WorkflowId: 工作流ID
|
21376
|
+
# @type WorkflowId: String
|
21377
|
+
# @param DelayTime: 延迟时间
|
21378
|
+
# @type DelayTime: Integer
|
21379
|
+
# @param StartupTime: 启动时间
|
21380
|
+
# @type StartupTime: Integer
|
21381
|
+
# @param SelfDepend: 任务依赖
|
21382
|
+
# @type SelfDepend: String
|
21383
|
+
# @param StartTime: 开始时间
|
21384
|
+
# @type StartTime: String
|
21385
|
+
# @param EndTime: 结束时间
|
21386
|
+
# @type EndTime: String
|
21387
|
+
# @param TaskAction: 指定运行时间
|
21388
|
+
# @type TaskAction: String
|
21389
|
+
# @param CycleType: 调度周期时间单位
|
21390
|
+
# @type CycleType: String
|
21391
|
+
# @param CycleStep: 调度周期
|
21392
|
+
# @type CycleStep: Integer
|
21393
|
+
# @param ExecutionStartTime: 执行时间左闭区间
|
21394
|
+
# @type ExecutionStartTime: String
|
21395
|
+
# @param ExecutionEndTime: 执行时间右闭区间
|
21396
|
+
# @type ExecutionEndTime: String
|
21397
|
+
# @param InstanceInitStrategy: 任务初始化策略,T_PLUS_1、T_PLUS_0、T_MINUS_1
|
21398
|
+
# @type InstanceInitStrategy: String
|
21399
|
+
# @param DependencyWorkflow: 工作流依赖,yes or no
|
21400
|
+
# @type DependencyWorkflow: String
|
21401
|
+
# @param CrontabExpression: CrontabExpression
|
21402
|
+
# @type CrontabExpression: String
|
21403
|
+
|
21404
|
+
attr_accessor :ProjectId, :WorkflowId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :CrontabExpression
|
21405
|
+
|
21406
|
+
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)
|
21407
|
+
@ProjectId = projectid
|
21408
|
+
@WorkflowId = workflowid
|
21409
|
+
@DelayTime = delaytime
|
21410
|
+
@StartupTime = startuptime
|
21411
|
+
@SelfDepend = selfdepend
|
21412
|
+
@StartTime = starttime
|
21413
|
+
@EndTime = endtime
|
21414
|
+
@TaskAction = taskaction
|
21415
|
+
@CycleType = cycletype
|
21416
|
+
@CycleStep = cyclestep
|
21417
|
+
@ExecutionStartTime = executionstarttime
|
21418
|
+
@ExecutionEndTime = executionendtime
|
21419
|
+
@InstanceInitStrategy = instanceinitstrategy
|
21420
|
+
@DependencyWorkflow = dependencyworkflow
|
21421
|
+
@CrontabExpression = crontabexpression
|
21422
|
+
end
|
21423
|
+
|
21424
|
+
def deserialize(params)
|
21425
|
+
@ProjectId = params['ProjectId']
|
21426
|
+
@WorkflowId = params['WorkflowId']
|
21427
|
+
@DelayTime = params['DelayTime']
|
21428
|
+
@StartupTime = params['StartupTime']
|
21429
|
+
@SelfDepend = params['SelfDepend']
|
21430
|
+
@StartTime = params['StartTime']
|
21431
|
+
@EndTime = params['EndTime']
|
21432
|
+
@TaskAction = params['TaskAction']
|
21433
|
+
@CycleType = params['CycleType']
|
21434
|
+
@CycleStep = params['CycleStep']
|
21435
|
+
@ExecutionStartTime = params['ExecutionStartTime']
|
21436
|
+
@ExecutionEndTime = params['ExecutionEndTime']
|
21437
|
+
@InstanceInitStrategy = params['InstanceInitStrategy']
|
21438
|
+
@DependencyWorkflow = params['DependencyWorkflow']
|
21439
|
+
@CrontabExpression = params['CrontabExpression']
|
21440
|
+
end
|
21441
|
+
end
|
21442
|
+
|
21443
|
+
# RenewWorkflowSchedulerInfoDs返回参数结构体
|
21444
|
+
class RenewWorkflowSchedulerInfoDsResponse < TencentCloud::Common::AbstractModel
|
21445
|
+
# @param Data: 数据
|
21446
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21447
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.BatchResultDs`
|
21448
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21449
|
+
# @type RequestId: String
|
21450
|
+
|
21451
|
+
attr_accessor :Data, :RequestId
|
21452
|
+
|
21453
|
+
def initialize(data=nil, requestid=nil)
|
21454
|
+
@Data = data
|
21455
|
+
@RequestId = requestid
|
21456
|
+
end
|
21457
|
+
|
21458
|
+
def deserialize(params)
|
21459
|
+
unless params['Data'].nil?
|
21460
|
+
@Data = BatchResultDs.new
|
21461
|
+
@Data.deserialize(params['Data'])
|
21462
|
+
end
|
21463
|
+
@RequestId = params['RequestId']
|
21464
|
+
end
|
21465
|
+
end
|
21466
|
+
|
20671
21467
|
# 资源管理目录树节点
|
20672
21468
|
class ResourcePathTree < TencentCloud::Common::AbstractModel
|
20673
21469
|
# @param Name: 资源名字
|
@@ -26363,10 +27159,28 @@ module TencentCloud
|
|
26363
27159
|
# @param ExecutorGroupName: 资源组名称
|
26364
27160
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
26365
27161
|
# @type ExecutorGroupName: String
|
27162
|
+
# @param TaskExtInfo: 任务扩展信息(目前返沪离线同步的任务详情)
|
27163
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27164
|
+
# @type TaskExtInfo: String
|
27165
|
+
# @param EventListenerInfos: 任务绑定的事件信息
|
27166
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27167
|
+
# @type EventListenerInfos: Array
|
27168
|
+
# @param ScriptInfo: 脚本信息
|
27169
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27170
|
+
# @type ScriptInfo: :class:`Tencentcloud::Wedata.v20210820.models.AiopsScriptInfo`
|
27171
|
+
# @param DLCResourceConfig: DLC资源配置
|
27172
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27173
|
+
# @type DLCResourceConfig: :class:`Tencentcloud::Wedata.v20210820.models.AiopsDLCResourceConfigDto`
|
27174
|
+
# @param ParentTaskInfos: 父任务simple信息
|
27175
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27176
|
+
# @type ParentTaskInfos: :class:`Tencentcloud::Wedata.v20210820.models.AiopsSimpleTaskDto`
|
27177
|
+
# @param ExtResourceFlag: 资源获取标识
|
27178
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27179
|
+
# @type ExtResourceFlag: :class:`Tencentcloud::Wedata.v20210820.models.ExtResourceFlagDto`
|
26366
27180
|
|
26367
|
-
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName
|
27181
|
+
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag
|
26368
27182
|
|
26369
|
-
def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil)
|
27183
|
+
def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil)
|
26370
27184
|
@TaskId = taskid
|
26371
27185
|
@VirtualTaskId = virtualtaskid
|
26372
27186
|
@VirtualFlag = virtualflag
|
@@ -26449,6 +27263,12 @@ module TencentCloud
|
|
26449
27263
|
@Submit = submit
|
26450
27264
|
@ExecutorGroupId = executorgroupid
|
26451
27265
|
@ExecutorGroupName = executorgroupname
|
27266
|
+
@TaskExtInfo = taskextinfo
|
27267
|
+
@EventListenerInfos = eventlistenerinfos
|
27268
|
+
@ScriptInfo = scriptinfo
|
27269
|
+
@DLCResourceConfig = dlcresourceconfig
|
27270
|
+
@ParentTaskInfos = parenttaskinfos
|
27271
|
+
@ExtResourceFlag = extresourceflag
|
26452
27272
|
end
|
26453
27273
|
|
26454
27274
|
def deserialize(params)
|
@@ -26540,6 +27360,31 @@ module TencentCloud
|
|
26540
27360
|
@Submit = params['Submit']
|
26541
27361
|
@ExecutorGroupId = params['ExecutorGroupId']
|
26542
27362
|
@ExecutorGroupName = params['ExecutorGroupName']
|
27363
|
+
@TaskExtInfo = params['TaskExtInfo']
|
27364
|
+
unless params['EventListenerInfos'].nil?
|
27365
|
+
@EventListenerInfos = []
|
27366
|
+
params['EventListenerInfos'].each do |i|
|
27367
|
+
aiopseventlistenerdto_tmp = AiOpsEventListenerDTO.new
|
27368
|
+
aiopseventlistenerdto_tmp.deserialize(i)
|
27369
|
+
@EventListenerInfos << aiopseventlistenerdto_tmp
|
27370
|
+
end
|
27371
|
+
end
|
27372
|
+
unless params['ScriptInfo'].nil?
|
27373
|
+
@ScriptInfo = AiopsScriptInfo.new
|
27374
|
+
@ScriptInfo.deserialize(params['ScriptInfo'])
|
27375
|
+
end
|
27376
|
+
unless params['DLCResourceConfig'].nil?
|
27377
|
+
@DLCResourceConfig = AiopsDLCResourceConfigDto.new
|
27378
|
+
@DLCResourceConfig.deserialize(params['DLCResourceConfig'])
|
27379
|
+
end
|
27380
|
+
unless params['ParentTaskInfos'].nil?
|
27381
|
+
@ParentTaskInfos = AiopsSimpleTaskDto.new
|
27382
|
+
@ParentTaskInfos.deserialize(params['ParentTaskInfos'])
|
27383
|
+
end
|
27384
|
+
unless params['ExtResourceFlag'].nil?
|
27385
|
+
@ExtResourceFlag = ExtResourceFlagDto.new
|
27386
|
+
@ExtResourceFlag.deserialize(params['ExtResourceFlag'])
|
27387
|
+
end
|
26543
27388
|
end
|
26544
27389
|
end
|
26545
27390
|
|
@@ -26560,6 +27405,48 @@ module TencentCloud
|
|
26560
27405
|
end
|
26561
27406
|
end
|
26562
27407
|
|
27408
|
+
# 任务提交预校验详细信息
|
27409
|
+
class TaskSubmitPreCheckDetailInfo < TencentCloud::Common::AbstractModel
|
27410
|
+
# @param TaskId: 任务编号
|
27411
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27412
|
+
# @type TaskId: String
|
27413
|
+
# @param TaskName: 任务名称
|
27414
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27415
|
+
# @type TaskName: String
|
27416
|
+
# @param ProjectId: 项目编号
|
27417
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27418
|
+
# @type ProjectId: String
|
27419
|
+
# @param ProjectName: 项目名称
|
27420
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27421
|
+
# @type ProjectName: String
|
27422
|
+
# @param InChargeId: 责任人编号
|
27423
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27424
|
+
# @type InChargeId: String
|
27425
|
+
# @param InCharge: 责任人名称
|
27426
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27427
|
+
# @type InCharge: String
|
27428
|
+
|
27429
|
+
attr_accessor :TaskId, :TaskName, :ProjectId, :ProjectName, :InChargeId, :InCharge
|
27430
|
+
|
27431
|
+
def initialize(taskid=nil, taskname=nil, projectid=nil, projectname=nil, inchargeid=nil, incharge=nil)
|
27432
|
+
@TaskId = taskid
|
27433
|
+
@TaskName = taskname
|
27434
|
+
@ProjectId = projectid
|
27435
|
+
@ProjectName = projectname
|
27436
|
+
@InChargeId = inchargeid
|
27437
|
+
@InCharge = incharge
|
27438
|
+
end
|
27439
|
+
|
27440
|
+
def deserialize(params)
|
27441
|
+
@TaskId = params['TaskId']
|
27442
|
+
@TaskName = params['TaskName']
|
27443
|
+
@ProjectId = params['ProjectId']
|
27444
|
+
@ProjectName = params['ProjectName']
|
27445
|
+
@InChargeId = params['InChargeId']
|
27446
|
+
@InCharge = params['InCharge']
|
27447
|
+
end
|
27448
|
+
end
|
27449
|
+
|
26563
27450
|
# 任务标签,可用于检索任务的条件
|
26564
27451
|
class TaskTag < TencentCloud::Common::AbstractModel
|
26565
27452
|
# @param TagName: 标签名称
|
@@ -27748,6 +28635,123 @@ module TencentCloud
|
|
27748
28635
|
end
|
27749
28636
|
end
|
27750
28637
|
|
28638
|
+
# 工作流调度信息
|
28639
|
+
class WorkflowScheduleDtoDs < TencentCloud::Common::AbstractModel
|
28640
|
+
# @param ProjectId: 项目ID
|
28641
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28642
|
+
# @type ProjectId: String
|
28643
|
+
# @param WorkflowId: 工作流ID
|
28644
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28645
|
+
# @type WorkflowId: String
|
28646
|
+
# @param CreateTime: 创建时间
|
28647
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28648
|
+
# @type CreateTime: String
|
28649
|
+
# @param Creater: 创建人
|
28650
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28651
|
+
# @type Creater: String
|
28652
|
+
# @param ModifyTime: 修改时间
|
28653
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28654
|
+
# @type ModifyTime: String
|
28655
|
+
# @param DelayTime: 延迟时间
|
28656
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28657
|
+
# @type DelayTime: Integer
|
28658
|
+
# @param StartupTime: 启动时间
|
28659
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28660
|
+
# @type StartupTime: Integer
|
28661
|
+
# @param SelfDepend: 任务依赖
|
28662
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28663
|
+
# @type SelfDepend: String
|
28664
|
+
# @param StartTime: 开始时间
|
28665
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28666
|
+
# @type StartTime: String
|
28667
|
+
# @param EndTime: 结束时间
|
28668
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28669
|
+
# @type EndTime: String
|
28670
|
+
# @param TaskAction: 指定运行时间
|
28671
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28672
|
+
# @type TaskAction: String
|
28673
|
+
# @param CycleType: 调度周期时间单位
|
28674
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28675
|
+
# @type CycleType: String
|
28676
|
+
# @param CycleStep: 调度周期
|
28677
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28678
|
+
# @type CycleStep: Integer
|
28679
|
+
# @param CrontabExpression: Cron表达式
|
28680
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28681
|
+
# @type CrontabExpression: String
|
28682
|
+
# @param ExecutionStartTime: 执行时间左闭区间
|
28683
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28684
|
+
# @type ExecutionStartTime: String
|
28685
|
+
# @param ExecutionEndTime: 执行时间右闭区间
|
28686
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28687
|
+
# @type ExecutionEndTime: String
|
28688
|
+
# @param InstanceInitStrategy: 实例初始化策略
|
28689
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28690
|
+
# @type InstanceInitStrategy: String
|
28691
|
+
# @param DependencyWorkflow: 工作流依赖
|
28692
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28693
|
+
# @type DependencyWorkflow: String
|
28694
|
+
# @param SchedulerDesc: 调度计划
|
28695
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28696
|
+
# @type SchedulerDesc: String
|
28697
|
+
# @param FirstSubmitTime: 工作流首次提交时间
|
28698
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28699
|
+
# @type FirstSubmitTime: String
|
28700
|
+
# @param LatestSubmitTime: 工作流最近提交时间
|
28701
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28702
|
+
# @type LatestSubmitTime: String
|
28703
|
+
|
28704
|
+
attr_accessor :ProjectId, :WorkflowId, :CreateTime, :Creater, :ModifyTime, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :CrontabExpression, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :SchedulerDesc, :FirstSubmitTime, :LatestSubmitTime
|
28705
|
+
|
28706
|
+
def initialize(projectid=nil, workflowid=nil, createtime=nil, creater=nil, modifytime=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, executionstarttime=nil, executionendtime=nil, instanceinitstrategy=nil, dependencyworkflow=nil, schedulerdesc=nil, firstsubmittime=nil, latestsubmittime=nil)
|
28707
|
+
@ProjectId = projectid
|
28708
|
+
@WorkflowId = workflowid
|
28709
|
+
@CreateTime = createtime
|
28710
|
+
@Creater = creater
|
28711
|
+
@ModifyTime = modifytime
|
28712
|
+
@DelayTime = delaytime
|
28713
|
+
@StartupTime = startuptime
|
28714
|
+
@SelfDepend = selfdepend
|
28715
|
+
@StartTime = starttime
|
28716
|
+
@EndTime = endtime
|
28717
|
+
@TaskAction = taskaction
|
28718
|
+
@CycleType = cycletype
|
28719
|
+
@CycleStep = cyclestep
|
28720
|
+
@CrontabExpression = crontabexpression
|
28721
|
+
@ExecutionStartTime = executionstarttime
|
28722
|
+
@ExecutionEndTime = executionendtime
|
28723
|
+
@InstanceInitStrategy = instanceinitstrategy
|
28724
|
+
@DependencyWorkflow = dependencyworkflow
|
28725
|
+
@SchedulerDesc = schedulerdesc
|
28726
|
+
@FirstSubmitTime = firstsubmittime
|
28727
|
+
@LatestSubmitTime = latestsubmittime
|
28728
|
+
end
|
28729
|
+
|
28730
|
+
def deserialize(params)
|
28731
|
+
@ProjectId = params['ProjectId']
|
28732
|
+
@WorkflowId = params['WorkflowId']
|
28733
|
+
@CreateTime = params['CreateTime']
|
28734
|
+
@Creater = params['Creater']
|
28735
|
+
@ModifyTime = params['ModifyTime']
|
28736
|
+
@DelayTime = params['DelayTime']
|
28737
|
+
@StartupTime = params['StartupTime']
|
28738
|
+
@SelfDepend = params['SelfDepend']
|
28739
|
+
@StartTime = params['StartTime']
|
28740
|
+
@EndTime = params['EndTime']
|
28741
|
+
@TaskAction = params['TaskAction']
|
28742
|
+
@CycleType = params['CycleType']
|
28743
|
+
@CycleStep = params['CycleStep']
|
28744
|
+
@CrontabExpression = params['CrontabExpression']
|
28745
|
+
@ExecutionStartTime = params['ExecutionStartTime']
|
28746
|
+
@ExecutionEndTime = params['ExecutionEndTime']
|
28747
|
+
@InstanceInitStrategy = params['InstanceInitStrategy']
|
28748
|
+
@DependencyWorkflow = params['DependencyWorkflow']
|
28749
|
+
@SchedulerDesc = params['SchedulerDesc']
|
28750
|
+
@FirstSubmitTime = params['FirstSubmitTime']
|
28751
|
+
@LatestSubmitTime = params['LatestSubmitTime']
|
28752
|
+
end
|
28753
|
+
end
|
28754
|
+
|
27751
28755
|
# 工作流调度详情
|
27752
28756
|
class WorkflowSchedulerOpsDto < TencentCloud::Common::AbstractModel
|
27753
28757
|
# @param CreateTime: 创建时间
|