tencentcloud-sdk-wedata 3.0.1103 → 3.0.1110
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 +192 -0
- data/lib/v20210820/models.rb +589 -25
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99522e57e53e1d092053c2c31e7329bc32529564
|
4
|
+
data.tar.gz: 07bb6dd52c066d5285247ff2fce92395d8b701e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b16c06e34261445f2635ae006f67e27173e06ea6aecda600d80bc0c45d5174628f65b9ff589b0191bf8f0f536c0bf6288fb46df36a40d9c69cd36e02b86b9f62
|
7
|
+
data.tar.gz: ce8be3348362b4e03ab89dd306452038f599f24e263b7862a325fd123e2588dfed4acc3ae612aea5fef8786d2270be7cc38cde9d8fc2ff3193ae56861f57fcf3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1110
|
data/lib/v20210820/client.rb
CHANGED
@@ -4598,6 +4598,30 @@ module TencentCloud
|
|
4598
4598
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4599
4599
|
end
|
4600
4600
|
|
4601
|
+
# 查询任务引用参数
|
4602
|
+
|
4603
|
+
# @param request: Request instance for DescribeTaskParamDs.
|
4604
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskParamDsRequest`
|
4605
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskParamDsResponse`
|
4606
|
+
def DescribeTaskParamDs(request)
|
4607
|
+
body = send_request('DescribeTaskParamDs', request.serialize)
|
4608
|
+
response = JSON.parse(body)
|
4609
|
+
if response['Response'].key?('Error') == false
|
4610
|
+
model = DescribeTaskParamDsResponse.new
|
4611
|
+
model.deserialize(response['Response'])
|
4612
|
+
model
|
4613
|
+
else
|
4614
|
+
code = response['Response']['Error']['Code']
|
4615
|
+
message = response['Response']['Error']['Message']
|
4616
|
+
reqid = response['Response']['RequestId']
|
4617
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4618
|
+
end
|
4619
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4620
|
+
raise e
|
4621
|
+
rescue StandardError => e
|
4622
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4623
|
+
end
|
4624
|
+
|
4601
4625
|
# 分页查询任务运行历史
|
4602
4626
|
|
4603
4627
|
# @param request: Request instance for DescribeTaskRunHistory.
|
@@ -5342,6 +5366,30 @@ module TencentCloud
|
|
5342
5366
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5343
5367
|
end
|
5344
5368
|
|
5369
|
+
# 获取异步任务执行结果
|
5370
|
+
|
5371
|
+
# @param request: Request instance for GetJobStatus.
|
5372
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::GetJobStatusRequest`
|
5373
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::GetJobStatusResponse`
|
5374
|
+
def GetJobStatus(request)
|
5375
|
+
body = send_request('GetJobStatus', request.serialize)
|
5376
|
+
response = JSON.parse(body)
|
5377
|
+
if response['Response'].key?('Error') == false
|
5378
|
+
model = GetJobStatusResponse.new
|
5379
|
+
model.deserialize(response['Response'])
|
5380
|
+
model
|
5381
|
+
else
|
5382
|
+
code = response['Response']['Error']['Code']
|
5383
|
+
message = response['Response']['Error']['Message']
|
5384
|
+
reqid = response['Response']['RequestId']
|
5385
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5386
|
+
end
|
5387
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5388
|
+
raise e
|
5389
|
+
rescue StandardError => e
|
5390
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5391
|
+
end
|
5392
|
+
|
5345
5393
|
# 获取离线任务实例列表(新)
|
5346
5394
|
|
5347
5395
|
# @param request: Request instance for GetOfflineDIInstanceList.
|
@@ -6211,6 +6259,78 @@ module TencentCloud
|
|
6211
6259
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6212
6260
|
end
|
6213
6261
|
|
6262
|
+
# 移除database元数据
|
6263
|
+
|
6264
|
+
# @param request: Request instance for RemoveDatabase.
|
6265
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RemoveDatabaseRequest`
|
6266
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RemoveDatabaseResponse`
|
6267
|
+
def RemoveDatabase(request)
|
6268
|
+
body = send_request('RemoveDatabase', request.serialize)
|
6269
|
+
response = JSON.parse(body)
|
6270
|
+
if response['Response'].key?('Error') == false
|
6271
|
+
model = RemoveDatabaseResponse.new
|
6272
|
+
model.deserialize(response['Response'])
|
6273
|
+
model
|
6274
|
+
else
|
6275
|
+
code = response['Response']['Error']['Code']
|
6276
|
+
message = response['Response']['Error']['Message']
|
6277
|
+
reqid = response['Response']['RequestId']
|
6278
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6279
|
+
end
|
6280
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6281
|
+
raise e
|
6282
|
+
rescue StandardError => e
|
6283
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6284
|
+
end
|
6285
|
+
|
6286
|
+
# 移除schema元数据
|
6287
|
+
|
6288
|
+
# @param request: Request instance for RemoveSchema.
|
6289
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RemoveSchemaRequest`
|
6290
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RemoveSchemaResponse`
|
6291
|
+
def RemoveSchema(request)
|
6292
|
+
body = send_request('RemoveSchema', request.serialize)
|
6293
|
+
response = JSON.parse(body)
|
6294
|
+
if response['Response'].key?('Error') == false
|
6295
|
+
model = RemoveSchemaResponse.new
|
6296
|
+
model.deserialize(response['Response'])
|
6297
|
+
model
|
6298
|
+
else
|
6299
|
+
code = response['Response']['Error']['Code']
|
6300
|
+
message = response['Response']['Error']['Message']
|
6301
|
+
reqid = response['Response']['RequestId']
|
6302
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6303
|
+
end
|
6304
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6305
|
+
raise e
|
6306
|
+
rescue StandardError => e
|
6307
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6308
|
+
end
|
6309
|
+
|
6310
|
+
# 移除table元数据
|
6311
|
+
|
6312
|
+
# @param request: Request instance for RemoveTable.
|
6313
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RemoveTableRequest`
|
6314
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RemoveTableResponse`
|
6315
|
+
def RemoveTable(request)
|
6316
|
+
body = send_request('RemoveTable', request.serialize)
|
6317
|
+
response = JSON.parse(body)
|
6318
|
+
if response['Response'].key?('Error') == false
|
6319
|
+
model = RemoveTableResponse.new
|
6320
|
+
model.deserialize(response['Response'])
|
6321
|
+
model
|
6322
|
+
else
|
6323
|
+
code = response['Response']['Error']['Code']
|
6324
|
+
message = response['Response']['Error']['Message']
|
6325
|
+
reqid = response['Response']['RequestId']
|
6326
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6327
|
+
end
|
6328
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6329
|
+
raise e
|
6330
|
+
rescue StandardError => e
|
6331
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6332
|
+
end
|
6333
|
+
|
6214
6334
|
# 删除编排空间工作流
|
6215
6335
|
|
6216
6336
|
# @param request: Request instance for RemoveWorkflowDs.
|
@@ -6283,6 +6403,78 @@ module TencentCloud
|
|
6283
6403
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6284
6404
|
end
|
6285
6405
|
|
6406
|
+
# 上报database元数据
|
6407
|
+
|
6408
|
+
# @param request: Request instance for ReportDatabase.
|
6409
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ReportDatabaseRequest`
|
6410
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ReportDatabaseResponse`
|
6411
|
+
def ReportDatabase(request)
|
6412
|
+
body = send_request('ReportDatabase', request.serialize)
|
6413
|
+
response = JSON.parse(body)
|
6414
|
+
if response['Response'].key?('Error') == false
|
6415
|
+
model = ReportDatabaseResponse.new
|
6416
|
+
model.deserialize(response['Response'])
|
6417
|
+
model
|
6418
|
+
else
|
6419
|
+
code = response['Response']['Error']['Code']
|
6420
|
+
message = response['Response']['Error']['Message']
|
6421
|
+
reqid = response['Response']['RequestId']
|
6422
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6423
|
+
end
|
6424
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6425
|
+
raise e
|
6426
|
+
rescue StandardError => e
|
6427
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6428
|
+
end
|
6429
|
+
|
6430
|
+
# 上报schema元数据
|
6431
|
+
|
6432
|
+
# @param request: Request instance for ReportSchema.
|
6433
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ReportSchemaRequest`
|
6434
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ReportSchemaResponse`
|
6435
|
+
def ReportSchema(request)
|
6436
|
+
body = send_request('ReportSchema', request.serialize)
|
6437
|
+
response = JSON.parse(body)
|
6438
|
+
if response['Response'].key?('Error') == false
|
6439
|
+
model = ReportSchemaResponse.new
|
6440
|
+
model.deserialize(response['Response'])
|
6441
|
+
model
|
6442
|
+
else
|
6443
|
+
code = response['Response']['Error']['Code']
|
6444
|
+
message = response['Response']['Error']['Message']
|
6445
|
+
reqid = response['Response']['RequestId']
|
6446
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6447
|
+
end
|
6448
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6449
|
+
raise e
|
6450
|
+
rescue StandardError => e
|
6451
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6452
|
+
end
|
6453
|
+
|
6454
|
+
# 上报table元数据
|
6455
|
+
|
6456
|
+
# @param request: Request instance for ReportTable.
|
6457
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ReportTableRequest`
|
6458
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ReportTableResponse`
|
6459
|
+
def ReportTable(request)
|
6460
|
+
body = send_request('ReportTable', request.serialize)
|
6461
|
+
response = JSON.parse(body)
|
6462
|
+
if response['Response'].key?('Error') == false
|
6463
|
+
model = ReportTableResponse.new
|
6464
|
+
model.deserialize(response['Response'])
|
6465
|
+
model
|
6466
|
+
else
|
6467
|
+
code = response['Response']['Error']['Code']
|
6468
|
+
message = response['Response']['Error']['Message']
|
6469
|
+
reqid = response['Response']['RequestId']
|
6470
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6471
|
+
end
|
6472
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6473
|
+
raise e
|
6474
|
+
rescue StandardError => e
|
6475
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6476
|
+
end
|
6477
|
+
|
6286
6478
|
# 血缘上报接口
|
6287
6479
|
|
6288
6480
|
# @param request: Request instance for ReportTaskLineage.
|
data/lib/v20210820/models.rb
CHANGED
@@ -7918,18 +7918,31 @@ module TencentCloud
|
|
7918
7918
|
|
7919
7919
|
# 依赖配置策略
|
7920
7920
|
class DependencyStrategyDs < TencentCloud::Common::AbstractModel
|
7921
|
-
# @param PollingNullStrategy:
|
7921
|
+
# @param PollingNullStrategy: 等待上游任务实例策略:EXECUTING(执行);WAITING(等待)
|
7922
|
+
|
7922
7923
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7923
7924
|
# @type PollingNullStrategy: String
|
7925
|
+
# @param TaskDependencyExecutingStrategies: 仅当PollingNullStrategy为EXECUTING时才需要填本字段,List类型:NOT_EXIST(默认,在分钟依赖分钟/小时依赖小时的情况下,父实例不在下游实例调度时间范围内);PARENT_EXPIRED(父实例失败);PARENT_TIMEOUT(父实例超时)。以上场景满足任一条件即可通过该父任务实例依赖判断,除以上场景外均需等待父实例。
|
7926
|
+
|
7927
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7928
|
+
# @type TaskDependencyExecutingStrategies: Array
|
7929
|
+
# @param TaskDependencyExecutingTimeoutValue: 仅当TaskDependencyExecutingStrategies中包含PARENT_TIMEOUT时才需要填本字段,下游任务依赖父实例执行超时时间,单位:分钟。
|
7924
7930
|
|
7925
|
-
|
7931
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7932
|
+
# @type TaskDependencyExecutingTimeoutValue: Integer
|
7926
7933
|
|
7927
|
-
|
7934
|
+
attr_accessor :PollingNullStrategy, :TaskDependencyExecutingStrategies, :TaskDependencyExecutingTimeoutValue
|
7935
|
+
|
7936
|
+
def initialize(pollingnullstrategy=nil, taskdependencyexecutingstrategies=nil, taskdependencyexecutingtimeoutvalue=nil)
|
7928
7937
|
@PollingNullStrategy = pollingnullstrategy
|
7938
|
+
@TaskDependencyExecutingStrategies = taskdependencyexecutingstrategies
|
7939
|
+
@TaskDependencyExecutingTimeoutValue = taskdependencyexecutingtimeoutvalue
|
7929
7940
|
end
|
7930
7941
|
|
7931
7942
|
def deserialize(params)
|
7932
7943
|
@PollingNullStrategy = params['PollingNullStrategy']
|
7944
|
+
@TaskDependencyExecutingStrategies = params['TaskDependencyExecutingStrategies']
|
7945
|
+
@TaskDependencyExecutingTimeoutValue = params['TaskDependencyExecutingTimeoutValue']
|
7933
7946
|
end
|
7934
7947
|
end
|
7935
7948
|
|
@@ -12551,10 +12564,12 @@ module TencentCloud
|
|
12551
12564
|
# @type WorkflowTypeList: Array
|
12552
12565
|
# @param KeyWord: 工作流过滤keyword,支持工作流 id/name 模糊匹配, 多个用|分割
|
12553
12566
|
# @type KeyWord: String
|
12567
|
+
# @param ScheduleTimeZone: **时区** timeZone, 默认UTC+8
|
12568
|
+
# @type ScheduleTimeZone: String
|
12554
12569
|
|
12555
|
-
attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds, :WorkflowTypeList, :KeyWord
|
12570
|
+
attr_accessor :ProjectId, :ProductNameList, :FolderIdList, :WorkFlowIdList, :WorkFlowNameList, :TaskNameList, :TaskIdList, :StatusList, :InChargeList, :PageNumber, :PageSize, :SortItem, :SortType, :ProjectIds, :WorkflowTypeList, :KeyWord, :ScheduleTimeZone
|
12556
12571
|
|
12557
|
-
def initialize(projectid=nil, productnamelist=nil, folderidlist=nil, workflowidlist=nil, workflownamelist=nil, tasknamelist=nil, taskidlist=nil, statuslist=nil, inchargelist=nil, pagenumber=nil, pagesize=nil, sortitem=nil, sorttype=nil, projectids=nil, workflowtypelist=nil, keyword=nil)
|
12572
|
+
def initialize(projectid=nil, productnamelist=nil, folderidlist=nil, workflowidlist=nil, workflownamelist=nil, tasknamelist=nil, taskidlist=nil, statuslist=nil, inchargelist=nil, pagenumber=nil, pagesize=nil, sortitem=nil, sorttype=nil, projectids=nil, workflowtypelist=nil, keyword=nil, scheduletimezone=nil)
|
12558
12573
|
@ProjectId = projectid
|
12559
12574
|
@ProductNameList = productnamelist
|
12560
12575
|
@FolderIdList = folderidlist
|
@@ -12571,6 +12586,7 @@ module TencentCloud
|
|
12571
12586
|
@ProjectIds = projectids
|
12572
12587
|
@WorkflowTypeList = workflowtypelist
|
12573
12588
|
@KeyWord = keyword
|
12589
|
+
@ScheduleTimeZone = scheduletimezone
|
12574
12590
|
end
|
12575
12591
|
|
12576
12592
|
def deserialize(params)
|
@@ -12590,6 +12606,7 @@ module TencentCloud
|
|
12590
12606
|
@ProjectIds = params['ProjectIds']
|
12591
12607
|
@WorkflowTypeList = params['WorkflowTypeList']
|
12592
12608
|
@KeyWord = params['KeyWord']
|
12609
|
+
@ScheduleTimeZone = params['ScheduleTimeZone']
|
12593
12610
|
end
|
12594
12611
|
end
|
12595
12612
|
|
@@ -16591,6 +16608,53 @@ module TencentCloud
|
|
16591
16608
|
end
|
16592
16609
|
end
|
16593
16610
|
|
16611
|
+
# DescribeTaskParamDs请求参数结构体
|
16612
|
+
class DescribeTaskParamDsRequest < TencentCloud::Common::AbstractModel
|
16613
|
+
# @param ProjectId: 项目ID
|
16614
|
+
# @type ProjectId: String
|
16615
|
+
# @param TaskId: 任务id
|
16616
|
+
# @type TaskId: String
|
16617
|
+
|
16618
|
+
attr_accessor :ProjectId, :TaskId
|
16619
|
+
|
16620
|
+
def initialize(projectid=nil, taskid=nil)
|
16621
|
+
@ProjectId = projectid
|
16622
|
+
@TaskId = taskid
|
16623
|
+
end
|
16624
|
+
|
16625
|
+
def deserialize(params)
|
16626
|
+
@ProjectId = params['ProjectId']
|
16627
|
+
@TaskId = params['TaskId']
|
16628
|
+
end
|
16629
|
+
end
|
16630
|
+
|
16631
|
+
# DescribeTaskParamDs返回参数结构体
|
16632
|
+
class DescribeTaskParamDsResponse < TencentCloud::Common::AbstractModel
|
16633
|
+
# @param Data: 结果集
|
16634
|
+
# @type Data: Array
|
16635
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16636
|
+
# @type RequestId: String
|
16637
|
+
|
16638
|
+
attr_accessor :Data, :RequestId
|
16639
|
+
|
16640
|
+
def initialize(data=nil, requestid=nil)
|
16641
|
+
@Data = data
|
16642
|
+
@RequestId = requestid
|
16643
|
+
end
|
16644
|
+
|
16645
|
+
def deserialize(params)
|
16646
|
+
unless params['Data'].nil?
|
16647
|
+
@Data = []
|
16648
|
+
params['Data'].each do |i|
|
16649
|
+
parametertaskdsdto_tmp = ParameterTaskDsDto.new
|
16650
|
+
parametertaskdsdto_tmp.deserialize(i)
|
16651
|
+
@Data << parametertaskdsdto_tmp
|
16652
|
+
end
|
16653
|
+
end
|
16654
|
+
@RequestId = params['RequestId']
|
16655
|
+
end
|
16656
|
+
end
|
16657
|
+
|
16594
16658
|
# DescribeTaskRunHistory请求参数结构体
|
16595
16659
|
class DescribeTaskRunHistoryRequest < TencentCloud::Common::AbstractModel
|
16596
16660
|
# @param ProjectId: 项目id
|
@@ -20973,6 +21037,58 @@ module TencentCloud
|
|
20973
21037
|
end
|
20974
21038
|
end
|
20975
21039
|
|
21040
|
+
# GetJobStatus请求参数结构体
|
21041
|
+
class GetJobStatusRequest < TencentCloud::Common::AbstractModel
|
21042
|
+
# @param JobId: 异步任务id
|
21043
|
+
# @type JobId: String
|
21044
|
+
|
21045
|
+
attr_accessor :JobId
|
21046
|
+
|
21047
|
+
def initialize(jobid=nil)
|
21048
|
+
@JobId = jobid
|
21049
|
+
end
|
21050
|
+
|
21051
|
+
def deserialize(params)
|
21052
|
+
@JobId = params['JobId']
|
21053
|
+
end
|
21054
|
+
end
|
21055
|
+
|
21056
|
+
# GetJobStatus返回参数结构体
|
21057
|
+
class GetJobStatusResponse < TencentCloud::Common::AbstractModel
|
21058
|
+
# @param JobId: 异步任务id
|
21059
|
+
# @type JobId: String
|
21060
|
+
# @param Completed: 是否已完成
|
21061
|
+
# @type Completed: Boolean
|
21062
|
+
# @param Status: 任务状态,Success:成功,Fail:失败,Cancel:取消,Running:运行中
|
21063
|
+
# @type Status: String
|
21064
|
+
# @param CreateTime: 创建时间时间戳,单位毫秒
|
21065
|
+
# @type CreateTime: String
|
21066
|
+
# @param ErrorMessage: 错误信息
|
21067
|
+
# @type ErrorMessage: String
|
21068
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21069
|
+
# @type RequestId: String
|
21070
|
+
|
21071
|
+
attr_accessor :JobId, :Completed, :Status, :CreateTime, :ErrorMessage, :RequestId
|
21072
|
+
|
21073
|
+
def initialize(jobid=nil, completed=nil, status=nil, createtime=nil, errormessage=nil, requestid=nil)
|
21074
|
+
@JobId = jobid
|
21075
|
+
@Completed = completed
|
21076
|
+
@Status = status
|
21077
|
+
@CreateTime = createtime
|
21078
|
+
@ErrorMessage = errormessage
|
21079
|
+
@RequestId = requestid
|
21080
|
+
end
|
21081
|
+
|
21082
|
+
def deserialize(params)
|
21083
|
+
@JobId = params['JobId']
|
21084
|
+
@Completed = params['Completed']
|
21085
|
+
@Status = params['Status']
|
21086
|
+
@CreateTime = params['CreateTime']
|
21087
|
+
@ErrorMessage = params['ErrorMessage']
|
21088
|
+
@RequestId = params['RequestId']
|
21089
|
+
end
|
21090
|
+
end
|
21091
|
+
|
20976
21092
|
# GetOfflineDIInstanceList请求参数结构体
|
20977
21093
|
class GetOfflineDIInstanceListRequest < TencentCloud::Common::AbstractModel
|
20978
21094
|
# @param PageIndex: 第几页
|
@@ -21738,10 +21854,13 @@ module TencentCloud
|
|
21738
21854
|
# @param TaskType: 任务类型
|
21739
21855
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21740
21856
|
# @type TaskType: :class:`Tencentcloud::Wedata.v20210820.models.TaskTypeOpsDto`
|
21857
|
+
# @param ResourceGroup: 资源组id
|
21858
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21859
|
+
# @type ResourceGroup: String
|
21741
21860
|
|
21742
|
-
attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType
|
21861
|
+
attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType, :ResourceGroup
|
21743
21862
|
|
21744
|
-
def initialize(taskid=nil, taskname=nil, currundate=nil, liferound=nil, runtype=nil, tries=nil, instancelifedetaildtolist=nil, runnerstate=nil, errordesc=nil, errorcodelevel=nil, instanceloglistopsdto=nil, instancestate=nil, scheduleruntype=nil, executionjobid=nil, instanceruntype=nil, totalliferound=nil, tasktype=nil)
|
21863
|
+
def initialize(taskid=nil, taskname=nil, currundate=nil, liferound=nil, runtype=nil, tries=nil, instancelifedetaildtolist=nil, runnerstate=nil, errordesc=nil, errorcodelevel=nil, instanceloglistopsdto=nil, instancestate=nil, scheduleruntype=nil, executionjobid=nil, instanceruntype=nil, totalliferound=nil, tasktype=nil, resourcegroup=nil)
|
21745
21864
|
@TaskId = taskid
|
21746
21865
|
@TaskName = taskname
|
21747
21866
|
@CurRunDate = currundate
|
@@ -21759,6 +21878,7 @@ module TencentCloud
|
|
21759
21878
|
@InstanceRunType = instanceruntype
|
21760
21879
|
@TotalLifeRound = totalliferound
|
21761
21880
|
@TaskType = tasktype
|
21881
|
+
@ResourceGroup = resourcegroup
|
21762
21882
|
end
|
21763
21883
|
|
21764
21884
|
def deserialize(params)
|
@@ -21792,6 +21912,7 @@ module TencentCloud
|
|
21792
21912
|
@TaskType = TaskTypeOpsDto.new
|
21793
21913
|
@TaskType.deserialize(params['TaskType'])
|
21794
21914
|
end
|
21915
|
+
@ResourceGroup = params['ResourceGroup']
|
21795
21916
|
end
|
21796
21917
|
end
|
21797
21918
|
|
@@ -22656,10 +22777,12 @@ module TencentCloud
|
|
22656
22777
|
# @param ScheduleRunType: 调度运行方式, 0: 周期调度, 1: 空跑调度
|
22657
22778
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22658
22779
|
# @type ScheduleRunType: Integer
|
22780
|
+
# @param AllowRedoType: 允许重跑类型,ALL 表示无论实例运行成功还是失败都允许重跑,NONE表示无论成功或者失败都不允许重跑,FAILURE 表示只有运行失败才能重跑
|
22781
|
+
# @type AllowRedoType: String
|
22659
22782
|
|
22660
|
-
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType
|
22783
|
+
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType, :AllowRedoType
|
22661
22784
|
|
22662
|
-
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil)
|
22785
|
+
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil, allowredotype=nil)
|
22663
22786
|
@TaskId = taskid
|
22664
22787
|
@TaskName = taskname
|
22665
22788
|
@WorkflowId = workflowid
|
@@ -22724,6 +22847,7 @@ module TencentCloud
|
|
22724
22847
|
@CirculateInstanceList = circulateinstancelist
|
22725
22848
|
@ConcurrentStrategy = concurrentstrategy
|
22726
22849
|
@ScheduleRunType = scheduleruntype
|
22850
|
+
@AllowRedoType = allowredotype
|
22727
22851
|
end
|
22728
22852
|
|
22729
22853
|
def deserialize(params)
|
@@ -22811,6 +22935,7 @@ module TencentCloud
|
|
22811
22935
|
end
|
22812
22936
|
@ConcurrentStrategy = params['ConcurrentStrategy']
|
22813
22937
|
@ScheduleRunType = params['ScheduleRunType']
|
22938
|
+
@AllowRedoType = params['AllowRedoType']
|
22814
22939
|
end
|
22815
22940
|
end
|
22816
22941
|
|
@@ -23072,16 +23197,22 @@ module TencentCloud
|
|
23072
23197
|
# @param SchedulerTime: 计划调度时间
|
23073
23198
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23074
23199
|
# @type SchedulerTime: String
|
23200
|
+
# @param LastUpdateTime: 实例最近更新时间, 时间格式为 yyyy-MM-dd HH:mm:ss
|
23201
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23202
|
+
# @type LastUpdateTime: String
|
23075
23203
|
# @param ExecutorGroupId: 执行资源组ID
|
23076
23204
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23077
23205
|
# @type ExecutorGroupId: String
|
23078
23206
|
# @param ExecutorGroupName: 资源组名称
|
23079
23207
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23080
23208
|
# @type ExecutorGroupName: String
|
23209
|
+
# @param JobErrorMsg: 简要的任务失败信息
|
23210
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23211
|
+
# @type JobErrorMsg: String
|
23081
23212
|
|
23082
|
-
attr_accessor :InstanceKey, :ProjectId, :FolderId, :FolderName, :WorkflowId, :WorkflowName, :InChargeList, :TaskId, :TaskName, :TaskType, :TaskCycleType, :CurRunDate, :TryLimit, :Tries, :TotalRunNum, :InstanceType, :InstanceState, :StartTime, :EndTime, :CostTime, :SchedulerTime, :ExecutorGroupId, :ExecutorGroupName
|
23213
|
+
attr_accessor :InstanceKey, :ProjectId, :FolderId, :FolderName, :WorkflowId, :WorkflowName, :InChargeList, :TaskId, :TaskName, :TaskType, :TaskCycleType, :CurRunDate, :TryLimit, :Tries, :TotalRunNum, :InstanceType, :InstanceState, :StartTime, :EndTime, :CostTime, :SchedulerTime, :LastUpdateTime, :ExecutorGroupId, :ExecutorGroupName, :JobErrorMsg
|
23083
23214
|
|
23084
|
-
def initialize(instancekey=nil, projectid=nil, folderid=nil, foldername=nil, workflowid=nil, workflowname=nil, inchargelist=nil, taskid=nil, taskname=nil, tasktype=nil, taskcycletype=nil, currundate=nil, trylimit=nil, tries=nil, totalrunnum=nil, instancetype=nil, instancestate=nil, starttime=nil, endtime=nil, costtime=nil, schedulertime=nil, executorgroupid=nil, executorgroupname=nil)
|
23215
|
+
def initialize(instancekey=nil, projectid=nil, folderid=nil, foldername=nil, workflowid=nil, workflowname=nil, inchargelist=nil, taskid=nil, taskname=nil, tasktype=nil, taskcycletype=nil, currundate=nil, trylimit=nil, tries=nil, totalrunnum=nil, instancetype=nil, instancestate=nil, starttime=nil, endtime=nil, costtime=nil, schedulertime=nil, lastupdatetime=nil, executorgroupid=nil, executorgroupname=nil, joberrormsg=nil)
|
23085
23216
|
@InstanceKey = instancekey
|
23086
23217
|
@ProjectId = projectid
|
23087
23218
|
@FolderId = folderid
|
@@ -23103,8 +23234,10 @@ module TencentCloud
|
|
23103
23234
|
@EndTime = endtime
|
23104
23235
|
@CostTime = costtime
|
23105
23236
|
@SchedulerTime = schedulertime
|
23237
|
+
@LastUpdateTime = lastupdatetime
|
23106
23238
|
@ExecutorGroupId = executorgroupid
|
23107
23239
|
@ExecutorGroupName = executorgroupname
|
23240
|
+
@JobErrorMsg = joberrormsg
|
23108
23241
|
end
|
23109
23242
|
|
23110
23243
|
def deserialize(params)
|
@@ -23132,8 +23265,10 @@ module TencentCloud
|
|
23132
23265
|
@EndTime = params['EndTime']
|
23133
23266
|
@CostTime = params['CostTime']
|
23134
23267
|
@SchedulerTime = params['SchedulerTime']
|
23268
|
+
@LastUpdateTime = params['LastUpdateTime']
|
23135
23269
|
@ExecutorGroupId = params['ExecutorGroupId']
|
23136
23270
|
@ExecutorGroupName = params['ExecutorGroupName']
|
23271
|
+
@JobErrorMsg = params['JobErrorMsg']
|
23137
23272
|
end
|
23138
23273
|
end
|
23139
23274
|
|
@@ -23514,6 +23649,28 @@ module TencentCloud
|
|
23514
23649
|
end
|
23515
23650
|
end
|
23516
23651
|
|
23652
|
+
# 集成标签
|
23653
|
+
class IntegrationTag < TencentCloud::Common::AbstractModel
|
23654
|
+
# @param Key: key值
|
23655
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23656
|
+
# @type Key: String
|
23657
|
+
# @param Value: 标签值
|
23658
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23659
|
+
# @type Value: String
|
23660
|
+
|
23661
|
+
attr_accessor :Key, :Value
|
23662
|
+
|
23663
|
+
def initialize(key=nil, value=nil)
|
23664
|
+
@Key = key
|
23665
|
+
@Value = value
|
23666
|
+
end
|
23667
|
+
|
23668
|
+
def deserialize(params)
|
23669
|
+
@Key = params['Key']
|
23670
|
+
@Value = params['Value']
|
23671
|
+
end
|
23672
|
+
end
|
23673
|
+
|
23517
23674
|
# 集成任务
|
23518
23675
|
class IntegrationTaskInfo < TencentCloud::Common::AbstractModel
|
23519
23676
|
# @param TaskName: 任务名称
|
@@ -23669,10 +23826,16 @@ module TencentCloud
|
|
23669
23826
|
# @param CurrentSyncPosition: 当前同步位点
|
23670
23827
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23671
23828
|
# @type CurrentSyncPosition: Integer
|
23829
|
+
# @param TagList: 标签列表
|
23830
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23831
|
+
# @type TagList: Array
|
23832
|
+
# @param ErrorMessage: 错误信息
|
23833
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23834
|
+
# @type ErrorMessage: String
|
23672
23835
|
|
23673
|
-
attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList, :SwitchResource, :ReadPhase, :InstanceVersion, :ArrangeSpaceTaskId, :OfflineTaskStatus, :TaskImportInfo, :BusinessLatency, :CurrentSyncPosition
|
23836
|
+
attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList, :SwitchResource, :ReadPhase, :InstanceVersion, :ArrangeSpaceTaskId, :OfflineTaskStatus, :TaskImportInfo, :BusinessLatency, :CurrentSyncPosition, :TagList, :ErrorMessage
|
23674
23837
|
|
23675
|
-
def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil, switchresource=nil, readphase=nil, instanceversion=nil, arrangespacetaskid=nil, offlinetaskstatus=nil, taskimportinfo=nil, businesslatency=nil, currentsyncposition=nil)
|
23838
|
+
def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil, switchresource=nil, readphase=nil, instanceversion=nil, arrangespacetaskid=nil, offlinetaskstatus=nil, taskimportinfo=nil, businesslatency=nil, currentsyncposition=nil, taglist=nil, errormessage=nil)
|
23676
23839
|
@TaskName = taskname
|
23677
23840
|
@Description = description
|
23678
23841
|
@SyncType = synctype
|
@@ -23725,6 +23888,8 @@ module TencentCloud
|
|
23725
23888
|
@TaskImportInfo = taskimportinfo
|
23726
23889
|
@BusinessLatency = businesslatency
|
23727
23890
|
@CurrentSyncPosition = currentsyncposition
|
23891
|
+
@TagList = taglist
|
23892
|
+
@ErrorMessage = errormessage
|
23728
23893
|
end
|
23729
23894
|
|
23730
23895
|
def deserialize(params)
|
@@ -23821,6 +23986,15 @@ module TencentCloud
|
|
23821
23986
|
end
|
23822
23987
|
@BusinessLatency = params['BusinessLatency']
|
23823
23988
|
@CurrentSyncPosition = params['CurrentSyncPosition']
|
23989
|
+
unless params['TagList'].nil?
|
23990
|
+
@TagList = []
|
23991
|
+
params['TagList'].each do |i|
|
23992
|
+
integrationtag_tmp = IntegrationTag.new
|
23993
|
+
integrationtag_tmp.deserialize(i)
|
23994
|
+
@TagList << integrationtag_tmp
|
23995
|
+
end
|
23996
|
+
end
|
23997
|
+
@ErrorMessage = params['ErrorMessage']
|
23824
23998
|
end
|
23825
23999
|
end
|
23826
24000
|
|
@@ -24428,10 +24602,16 @@ module TencentCloud
|
|
24428
24602
|
# @param ScheduleTimeZone: **时区**
|
24429
24603
|
# timeZone, 默认UTC+8
|
24430
24604
|
# @type ScheduleTimeZone: String
|
24605
|
+
# @param LastUpdateTimeFrom: **实例最近更新时间过滤条件**
|
24606
|
+
# 过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
24607
|
+
# @type LastUpdateTimeFrom: String
|
24608
|
+
# @param LastUpdateTimeTo: **实例最近更新时间过滤条件**
|
24609
|
+
# 过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
24610
|
+
# @type LastUpdateTimeTo: String
|
24431
24611
|
|
24432
|
-
attr_accessor :ProjectId, :ScheduleTimeFrom, :ScheduleTimeTo, :PageNumber, :PageSize, :SortColumn, :SortType, :InstanceType, :InstanceStateList, :TaskTypeIdList, :TaskCycleList, :Keyword, :InChargeList, :TaskFolderIdList, :WorkflowIdList, :ExecutorGroupIdList, :StartTimeFrom, :StartTimeTo, :ScheduleTimeZone
|
24612
|
+
attr_accessor :ProjectId, :ScheduleTimeFrom, :ScheduleTimeTo, :PageNumber, :PageSize, :SortColumn, :SortType, :InstanceType, :InstanceStateList, :TaskTypeIdList, :TaskCycleList, :Keyword, :InChargeList, :TaskFolderIdList, :WorkflowIdList, :ExecutorGroupIdList, :StartTimeFrom, :StartTimeTo, :ScheduleTimeZone, :LastUpdateTimeFrom, :LastUpdateTimeTo
|
24433
24613
|
|
24434
|
-
def initialize(projectid=nil, scheduletimefrom=nil, scheduletimeto=nil, pagenumber=nil, pagesize=nil, sortcolumn=nil, sorttype=nil, instancetype=nil, instancestatelist=nil, tasktypeidlist=nil, taskcyclelist=nil, keyword=nil, inchargelist=nil, taskfolderidlist=nil, workflowidlist=nil, executorgroupidlist=nil, starttimefrom=nil, starttimeto=nil, scheduletimezone=nil)
|
24614
|
+
def initialize(projectid=nil, scheduletimefrom=nil, scheduletimeto=nil, pagenumber=nil, pagesize=nil, sortcolumn=nil, sorttype=nil, instancetype=nil, instancestatelist=nil, tasktypeidlist=nil, taskcyclelist=nil, keyword=nil, inchargelist=nil, taskfolderidlist=nil, workflowidlist=nil, executorgroupidlist=nil, starttimefrom=nil, starttimeto=nil, scheduletimezone=nil, lastupdatetimefrom=nil, lastupdatetimeto=nil)
|
24435
24615
|
@ProjectId = projectid
|
24436
24616
|
@ScheduleTimeFrom = scheduletimefrom
|
24437
24617
|
@ScheduleTimeTo = scheduletimeto
|
@@ -24451,6 +24631,8 @@ module TencentCloud
|
|
24451
24631
|
@StartTimeFrom = starttimefrom
|
24452
24632
|
@StartTimeTo = starttimeto
|
24453
24633
|
@ScheduleTimeZone = scheduletimezone
|
24634
|
+
@LastUpdateTimeFrom = lastupdatetimefrom
|
24635
|
+
@LastUpdateTimeTo = lastupdatetimeto
|
24454
24636
|
end
|
24455
24637
|
|
24456
24638
|
def deserialize(params)
|
@@ -24473,6 +24655,8 @@ module TencentCloud
|
|
24473
24655
|
@StartTimeFrom = params['StartTimeFrom']
|
24474
24656
|
@StartTimeTo = params['StartTimeTo']
|
24475
24657
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
24658
|
+
@LastUpdateTimeFrom = params['LastUpdateTimeFrom']
|
24659
|
+
@LastUpdateTimeTo = params['LastUpdateTimeTo']
|
24476
24660
|
end
|
24477
24661
|
end
|
24478
24662
|
|
@@ -29250,6 +29434,138 @@ module TencentCloud
|
|
29250
29434
|
end
|
29251
29435
|
end
|
29252
29436
|
|
29437
|
+
# RemoveDatabase请求参数结构体
|
29438
|
+
class RemoveDatabaseRequest < TencentCloud::Common::AbstractModel
|
29439
|
+
# @param DatasourceId: 数据源id
|
29440
|
+
# @type DatasourceId: Integer
|
29441
|
+
# @param DatabaseName: database名称
|
29442
|
+
# @type DatabaseName: String
|
29443
|
+
|
29444
|
+
attr_accessor :DatasourceId, :DatabaseName
|
29445
|
+
|
29446
|
+
def initialize(datasourceid=nil, databasename=nil)
|
29447
|
+
@DatasourceId = datasourceid
|
29448
|
+
@DatabaseName = databasename
|
29449
|
+
end
|
29450
|
+
|
29451
|
+
def deserialize(params)
|
29452
|
+
@DatasourceId = params['DatasourceId']
|
29453
|
+
@DatabaseName = params['DatabaseName']
|
29454
|
+
end
|
29455
|
+
end
|
29456
|
+
|
29457
|
+
# RemoveDatabase返回参数结构体
|
29458
|
+
class RemoveDatabaseResponse < TencentCloud::Common::AbstractModel
|
29459
|
+
# @param JobId: 异步删除的任务id,用于查询执行状态
|
29460
|
+
# @type JobId: String
|
29461
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29462
|
+
# @type RequestId: String
|
29463
|
+
|
29464
|
+
attr_accessor :JobId, :RequestId
|
29465
|
+
|
29466
|
+
def initialize(jobid=nil, requestid=nil)
|
29467
|
+
@JobId = jobid
|
29468
|
+
@RequestId = requestid
|
29469
|
+
end
|
29470
|
+
|
29471
|
+
def deserialize(params)
|
29472
|
+
@JobId = params['JobId']
|
29473
|
+
@RequestId = params['RequestId']
|
29474
|
+
end
|
29475
|
+
end
|
29476
|
+
|
29477
|
+
# RemoveSchema请求参数结构体
|
29478
|
+
class RemoveSchemaRequest < TencentCloud::Common::AbstractModel
|
29479
|
+
# @param DatasourceId: 数据源id
|
29480
|
+
# @type DatasourceId: Integer
|
29481
|
+
# @param DatabaseName: database名称
|
29482
|
+
# @type DatabaseName: String
|
29483
|
+
# @param SchemaName: schema名称
|
29484
|
+
# @type SchemaName: String
|
29485
|
+
|
29486
|
+
attr_accessor :DatasourceId, :DatabaseName, :SchemaName
|
29487
|
+
|
29488
|
+
def initialize(datasourceid=nil, databasename=nil, schemaname=nil)
|
29489
|
+
@DatasourceId = datasourceid
|
29490
|
+
@DatabaseName = databasename
|
29491
|
+
@SchemaName = schemaname
|
29492
|
+
end
|
29493
|
+
|
29494
|
+
def deserialize(params)
|
29495
|
+
@DatasourceId = params['DatasourceId']
|
29496
|
+
@DatabaseName = params['DatabaseName']
|
29497
|
+
@SchemaName = params['SchemaName']
|
29498
|
+
end
|
29499
|
+
end
|
29500
|
+
|
29501
|
+
# RemoveSchema返回参数结构体
|
29502
|
+
class RemoveSchemaResponse < TencentCloud::Common::AbstractModel
|
29503
|
+
# @param JobId: 异步删除的任务id,用于查询执行状态
|
29504
|
+
# @type JobId: String
|
29505
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29506
|
+
# @type RequestId: String
|
29507
|
+
|
29508
|
+
attr_accessor :JobId, :RequestId
|
29509
|
+
|
29510
|
+
def initialize(jobid=nil, requestid=nil)
|
29511
|
+
@JobId = jobid
|
29512
|
+
@RequestId = requestid
|
29513
|
+
end
|
29514
|
+
|
29515
|
+
def deserialize(params)
|
29516
|
+
@JobId = params['JobId']
|
29517
|
+
@RequestId = params['RequestId']
|
29518
|
+
end
|
29519
|
+
end
|
29520
|
+
|
29521
|
+
# RemoveTable请求参数结构体
|
29522
|
+
class RemoveTableRequest < TencentCloud::Common::AbstractModel
|
29523
|
+
# @param DatasourceId: 数据源id
|
29524
|
+
# @type DatasourceId: Integer
|
29525
|
+
# @param DatabaseName: database名称
|
29526
|
+
# @type DatabaseName: String
|
29527
|
+
# @param SchemaName: schema名称
|
29528
|
+
# @type SchemaName: String
|
29529
|
+
# @param TableName: 表名称
|
29530
|
+
# @type TableName: String
|
29531
|
+
|
29532
|
+
attr_accessor :DatasourceId, :DatabaseName, :SchemaName, :TableName
|
29533
|
+
|
29534
|
+
def initialize(datasourceid=nil, databasename=nil, schemaname=nil, tablename=nil)
|
29535
|
+
@DatasourceId = datasourceid
|
29536
|
+
@DatabaseName = databasename
|
29537
|
+
@SchemaName = schemaname
|
29538
|
+
@TableName = tablename
|
29539
|
+
end
|
29540
|
+
|
29541
|
+
def deserialize(params)
|
29542
|
+
@DatasourceId = params['DatasourceId']
|
29543
|
+
@DatabaseName = params['DatabaseName']
|
29544
|
+
@SchemaName = params['SchemaName']
|
29545
|
+
@TableName = params['TableName']
|
29546
|
+
end
|
29547
|
+
end
|
29548
|
+
|
29549
|
+
# RemoveTable返回参数结构体
|
29550
|
+
class RemoveTableResponse < TencentCloud::Common::AbstractModel
|
29551
|
+
# @param Result: 结果
|
29552
|
+
# @type Result: Boolean
|
29553
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29554
|
+
# @type RequestId: String
|
29555
|
+
|
29556
|
+
attr_accessor :Result, :RequestId
|
29557
|
+
|
29558
|
+
def initialize(result=nil, requestid=nil)
|
29559
|
+
@Result = result
|
29560
|
+
@RequestId = requestid
|
29561
|
+
end
|
29562
|
+
|
29563
|
+
def deserialize(params)
|
29564
|
+
@Result = params['Result']
|
29565
|
+
@RequestId = params['RequestId']
|
29566
|
+
end
|
29567
|
+
end
|
29568
|
+
|
29253
29569
|
# RemoveWorkflowDs请求参数结构体
|
29254
29570
|
class RemoveWorkflowDsRequest < TencentCloud::Common::AbstractModel
|
29255
29571
|
# @param ProjectId: 项目ID
|
@@ -29474,6 +29790,225 @@ module TencentCloud
|
|
29474
29790
|
end
|
29475
29791
|
end
|
29476
29792
|
|
29793
|
+
# 上报表元数据的字段结构
|
29794
|
+
class ReportColumnInfo < TencentCloud::Common::AbstractModel
|
29795
|
+
# @param Name: 字段名称,字符长度128内
|
29796
|
+
# @type Name: String
|
29797
|
+
# @param Type: 字段类型,字符长度128内
|
29798
|
+
# @type Type: String
|
29799
|
+
# @param Position: 字段位置,1开始
|
29800
|
+
# @type Position: Integer
|
29801
|
+
# @param Description: 字段描述,字符长度256内
|
29802
|
+
# @type Description: String
|
29803
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29804
|
+
# @type CreateTime: String
|
29805
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29806
|
+
# @type ModifiedTime: String
|
29807
|
+
|
29808
|
+
attr_accessor :Name, :Type, :Position, :Description, :CreateTime, :ModifiedTime
|
29809
|
+
|
29810
|
+
def initialize(name=nil, type=nil, position=nil, description=nil, createtime=nil, modifiedtime=nil)
|
29811
|
+
@Name = name
|
29812
|
+
@Type = type
|
29813
|
+
@Position = position
|
29814
|
+
@Description = description
|
29815
|
+
@CreateTime = createtime
|
29816
|
+
@ModifiedTime = modifiedtime
|
29817
|
+
end
|
29818
|
+
|
29819
|
+
def deserialize(params)
|
29820
|
+
@Name = params['Name']
|
29821
|
+
@Type = params['Type']
|
29822
|
+
@Position = params['Position']
|
29823
|
+
@Description = params['Description']
|
29824
|
+
@CreateTime = params['CreateTime']
|
29825
|
+
@ModifiedTime = params['ModifiedTime']
|
29826
|
+
end
|
29827
|
+
end
|
29828
|
+
|
29829
|
+
# ReportDatabase请求参数结构体
|
29830
|
+
class ReportDatabaseRequest < TencentCloud::Common::AbstractModel
|
29831
|
+
# @param DatasourceId: 数据源id
|
29832
|
+
# @type DatasourceId: Integer
|
29833
|
+
# @param DatabaseName: database名称,字符长度128内
|
29834
|
+
# @type DatabaseName: String
|
29835
|
+
# @param Description: 描述,字符长度3000内
|
29836
|
+
# @type Description: String
|
29837
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29838
|
+
# @type CreateTime: Integer
|
29839
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29840
|
+
# @type ModifiedTime: Integer
|
29841
|
+
|
29842
|
+
attr_accessor :DatasourceId, :DatabaseName, :Description, :CreateTime, :ModifiedTime
|
29843
|
+
|
29844
|
+
def initialize(datasourceid=nil, databasename=nil, description=nil, createtime=nil, modifiedtime=nil)
|
29845
|
+
@DatasourceId = datasourceid
|
29846
|
+
@DatabaseName = databasename
|
29847
|
+
@Description = description
|
29848
|
+
@CreateTime = createtime
|
29849
|
+
@ModifiedTime = modifiedtime
|
29850
|
+
end
|
29851
|
+
|
29852
|
+
def deserialize(params)
|
29853
|
+
@DatasourceId = params['DatasourceId']
|
29854
|
+
@DatabaseName = params['DatabaseName']
|
29855
|
+
@Description = params['Description']
|
29856
|
+
@CreateTime = params['CreateTime']
|
29857
|
+
@ModifiedTime = params['ModifiedTime']
|
29858
|
+
end
|
29859
|
+
end
|
29860
|
+
|
29861
|
+
# ReportDatabase返回参数结构体
|
29862
|
+
class ReportDatabaseResponse < TencentCloud::Common::AbstractModel
|
29863
|
+
# @param Guid: 元数据唯一id
|
29864
|
+
# @type Guid: String
|
29865
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29866
|
+
# @type RequestId: String
|
29867
|
+
|
29868
|
+
attr_accessor :Guid, :RequestId
|
29869
|
+
|
29870
|
+
def initialize(guid=nil, requestid=nil)
|
29871
|
+
@Guid = guid
|
29872
|
+
@RequestId = requestid
|
29873
|
+
end
|
29874
|
+
|
29875
|
+
def deserialize(params)
|
29876
|
+
@Guid = params['Guid']
|
29877
|
+
@RequestId = params['RequestId']
|
29878
|
+
end
|
29879
|
+
end
|
29880
|
+
|
29881
|
+
# ReportSchema请求参数结构体
|
29882
|
+
class ReportSchemaRequest < TencentCloud::Common::AbstractModel
|
29883
|
+
# @param DatasourceId: 数据源id
|
29884
|
+
# @type DatasourceId: Integer
|
29885
|
+
# @param DatabaseName: database名称,字符长度128内
|
29886
|
+
# @type DatabaseName: String
|
29887
|
+
# @param SchemaName: schema名称,字符长度128内
|
29888
|
+
# @type SchemaName: String
|
29889
|
+
# @param Description: 描述,字符长度3000内
|
29890
|
+
# @type Description: String
|
29891
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29892
|
+
# @type CreateTime: Integer
|
29893
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29894
|
+
# @type ModifiedTime: Integer
|
29895
|
+
|
29896
|
+
attr_accessor :DatasourceId, :DatabaseName, :SchemaName, :Description, :CreateTime, :ModifiedTime
|
29897
|
+
|
29898
|
+
def initialize(datasourceid=nil, databasename=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil)
|
29899
|
+
@DatasourceId = datasourceid
|
29900
|
+
@DatabaseName = databasename
|
29901
|
+
@SchemaName = schemaname
|
29902
|
+
@Description = description
|
29903
|
+
@CreateTime = createtime
|
29904
|
+
@ModifiedTime = modifiedtime
|
29905
|
+
end
|
29906
|
+
|
29907
|
+
def deserialize(params)
|
29908
|
+
@DatasourceId = params['DatasourceId']
|
29909
|
+
@DatabaseName = params['DatabaseName']
|
29910
|
+
@SchemaName = params['SchemaName']
|
29911
|
+
@Description = params['Description']
|
29912
|
+
@CreateTime = params['CreateTime']
|
29913
|
+
@ModifiedTime = params['ModifiedTime']
|
29914
|
+
end
|
29915
|
+
end
|
29916
|
+
|
29917
|
+
# ReportSchema返回参数结构体
|
29918
|
+
class ReportSchemaResponse < TencentCloud::Common::AbstractModel
|
29919
|
+
# @param Guid: 元数据唯一id
|
29920
|
+
# @type Guid: String
|
29921
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29922
|
+
# @type RequestId: String
|
29923
|
+
|
29924
|
+
attr_accessor :Guid, :RequestId
|
29925
|
+
|
29926
|
+
def initialize(guid=nil, requestid=nil)
|
29927
|
+
@Guid = guid
|
29928
|
+
@RequestId = requestid
|
29929
|
+
end
|
29930
|
+
|
29931
|
+
def deserialize(params)
|
29932
|
+
@Guid = params['Guid']
|
29933
|
+
@RequestId = params['RequestId']
|
29934
|
+
end
|
29935
|
+
end
|
29936
|
+
|
29937
|
+
# ReportTable请求参数结构体
|
29938
|
+
class ReportTableRequest < TencentCloud::Common::AbstractModel
|
29939
|
+
# @param DatasourceId: 数据源id
|
29940
|
+
# @type DatasourceId: Integer
|
29941
|
+
# @param DatabaseName: database名称,字符长度128内
|
29942
|
+
# @type DatabaseName: String
|
29943
|
+
# @param TableName: table名称,字符长度128内
|
29944
|
+
# @type TableName: String
|
29945
|
+
# @param Type: 表类型,VIEW/TABLE
|
29946
|
+
# @type Type: String
|
29947
|
+
# @param SchemaName: schema名称,字符长度128内
|
29948
|
+
# @type SchemaName: String
|
29949
|
+
# @param Description: 描述,字符长度1000内
|
29950
|
+
# @type Description: String
|
29951
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29952
|
+
# @type CreateTime: Integer
|
29953
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29954
|
+
# @type ModifiedTime: Integer
|
29955
|
+
# @param Columns: 字段信息
|
29956
|
+
# @type Columns: Array
|
29957
|
+
|
29958
|
+
attr_accessor :DatasourceId, :DatabaseName, :TableName, :Type, :SchemaName, :Description, :CreateTime, :ModifiedTime, :Columns
|
29959
|
+
|
29960
|
+
def initialize(datasourceid=nil, databasename=nil, tablename=nil, type=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil, columns=nil)
|
29961
|
+
@DatasourceId = datasourceid
|
29962
|
+
@DatabaseName = databasename
|
29963
|
+
@TableName = tablename
|
29964
|
+
@Type = type
|
29965
|
+
@SchemaName = schemaname
|
29966
|
+
@Description = description
|
29967
|
+
@CreateTime = createtime
|
29968
|
+
@ModifiedTime = modifiedtime
|
29969
|
+
@Columns = columns
|
29970
|
+
end
|
29971
|
+
|
29972
|
+
def deserialize(params)
|
29973
|
+
@DatasourceId = params['DatasourceId']
|
29974
|
+
@DatabaseName = params['DatabaseName']
|
29975
|
+
@TableName = params['TableName']
|
29976
|
+
@Type = params['Type']
|
29977
|
+
@SchemaName = params['SchemaName']
|
29978
|
+
@Description = params['Description']
|
29979
|
+
@CreateTime = params['CreateTime']
|
29980
|
+
@ModifiedTime = params['ModifiedTime']
|
29981
|
+
unless params['Columns'].nil?
|
29982
|
+
@Columns = []
|
29983
|
+
params['Columns'].each do |i|
|
29984
|
+
reportcolumninfo_tmp = ReportColumnInfo.new
|
29985
|
+
reportcolumninfo_tmp.deserialize(i)
|
29986
|
+
@Columns << reportcolumninfo_tmp
|
29987
|
+
end
|
29988
|
+
end
|
29989
|
+
end
|
29990
|
+
end
|
29991
|
+
|
29992
|
+
# ReportTable返回参数结构体
|
29993
|
+
class ReportTableResponse < TencentCloud::Common::AbstractModel
|
29994
|
+
# @param Guid: 元数据唯一id
|
29995
|
+
# @type Guid: String
|
29996
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29997
|
+
# @type RequestId: String
|
29998
|
+
|
29999
|
+
attr_accessor :Guid, :RequestId
|
30000
|
+
|
30001
|
+
def initialize(guid=nil, requestid=nil)
|
30002
|
+
@Guid = guid
|
30003
|
+
@RequestId = requestid
|
30004
|
+
end
|
30005
|
+
|
30006
|
+
def deserialize(params)
|
30007
|
+
@Guid = params['Guid']
|
30008
|
+
@RequestId = params['RequestId']
|
30009
|
+
end
|
30010
|
+
end
|
30011
|
+
|
29477
30012
|
# 上报任务详情
|
29478
30013
|
class ReportTaskDetail < TencentCloud::Common::AbstractModel
|
29479
30014
|
# @param EngineTaskId: 引擎任务id
|
@@ -31144,10 +31679,13 @@ module TencentCloud
|
|
31144
31679
|
# @type DatasourceId: String
|
31145
31680
|
# @param Description: 任务描述
|
31146
31681
|
# @type Description: String
|
31682
|
+
# @param ScheduleTimeZone: 时区
|
31683
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31684
|
+
# @type ScheduleTimeZone: String
|
31147
31685
|
|
31148
|
-
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description
|
31686
|
+
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description, :ScheduleTimeZone
|
31149
31687
|
|
31150
|
-
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil)
|
31688
|
+
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil, scheduletimezone=nil)
|
31151
31689
|
@RuleGroupId = rulegroupid
|
31152
31690
|
@MonitorType = monitortype
|
31153
31691
|
@ExecQueue = execqueue
|
@@ -31172,6 +31710,7 @@ module TencentCloud
|
|
31172
31710
|
@TableName = tablename
|
31173
31711
|
@DatasourceId = datasourceid
|
31174
31712
|
@Description = description
|
31713
|
+
@ScheduleTimeZone = scheduletimezone
|
31175
31714
|
end
|
31176
31715
|
|
31177
31716
|
def deserialize(params)
|
@@ -31206,6 +31745,7 @@ module TencentCloud
|
|
31206
31745
|
@TableName = params['TableName']
|
31207
31746
|
@DatasourceId = params['DatasourceId']
|
31208
31747
|
@Description = params['Description']
|
31748
|
+
@ScheduleTimeZone = params['ScheduleTimeZone']
|
31209
31749
|
end
|
31210
31750
|
end
|
31211
31751
|
|
@@ -35895,10 +36435,13 @@ module TencentCloud
|
|
35895
36435
|
# @param TemplateId: 引用的代码模版id
|
35896
36436
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
35897
36437
|
# @type TemplateId: String
|
36438
|
+
# @param AllowRedoType: 允许重跑类 ALL 无论实例成功或者失败,都允许重跑 FAILURE 只有失败的实例允许重跑,成功的实例不允许重跑 NONE 无论成功或者失败,都不允许重跑
|
36439
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
36440
|
+
# @type AllowRedoType: String
|
35898
36441
|
|
35899
|
-
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
|
36442
|
+
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
|
35900
36443
|
|
35901
|
-
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)
|
36444
|
+
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)
|
35902
36445
|
@TaskId = taskid
|
35903
36446
|
@VirtualTaskId = virtualtaskid
|
35904
36447
|
@VirtualFlag = virtualflag
|
@@ -35999,6 +36542,7 @@ module TencentCloud
|
|
35999
36542
|
@ConcurrentStrategy = concurrentstrategy
|
36000
36543
|
@ScheduleTimeZone = scheduletimezone
|
36001
36544
|
@TemplateId = templateid
|
36545
|
+
@AllowRedoType = allowredotype
|
36002
36546
|
end
|
36003
36547
|
|
36004
36548
|
def deserialize(params)
|
@@ -36171,6 +36715,7 @@ module TencentCloud
|
|
36171
36715
|
@ConcurrentStrategy = params['ConcurrentStrategy']
|
36172
36716
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
36173
36717
|
@TemplateId = params['TemplateId']
|
36718
|
+
@AllowRedoType = params['AllowRedoType']
|
36174
36719
|
end
|
36175
36720
|
end
|
36176
36721
|
|
@@ -37119,10 +37664,12 @@ module TencentCloud
|
|
37119
37664
|
# no:任务无需满足自依赖
|
37120
37665
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
37121
37666
|
# @type SelfWorkFlowDependType: String
|
37667
|
+
# @param AllowRedoType: 允许重跑类型,ALL 表示无论实例运行成功还是失败都允许重跑,NONE表示无论成功或者失败都不允许重跑,FAILURE 表示只有运行失败才能重跑
|
37668
|
+
# @type AllowRedoType: String
|
37122
37669
|
|
37123
|
-
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag, :NewParentTaskInfos, :SelfWorkFlowDependType
|
37670
|
+
attr_accessor :TaskId, :VirtualTaskId, :VirtualFlag, :TaskName, :WorkflowId, :RealWorkflowId, :WorkflowName, :FolderId, :FolderName, :CreateTime, :LastUpdate, :Status, :InCharge, :InChargeId, :StartTime, :EndTime, :ExecutionStartTime, :ExecutionEndTime, :CycleType, :CycleStep, :CrontabExpression, :DelayTime, :StartupTime, :RetryWait, :RetryAble, :TaskAction, :TryLimit, :RunPriority, :TaskType, :BrokerIp, :ClusterId, :MinDateTime, :MaxDateTime, :ExecutionTTL, :SelfDepend, :LeftCoordinate, :TopCoordinate, :Notes, :InstanceInitStrategy, :YarnQueue, :LastSchedulerCommitTime, :NormalizedJobStartTime, :SchedulerDesc, :ResourceGroup, :Creator, :DependencyRel, :DependencyWorkflow, :EventListenerConfig, :EventPublisherConfig, :VirtualTaskStatus, :TaskLinkInfo, :ProductName, :ProjectId, :ProjectIdent, :ProjectName, :OwnId, :UserId, :TenantId, :UpdateUser, :UpdateTime, :UpdateUserId, :TaskTypeId, :TaskTypeDesc, :ShowWorkflow, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :CycleNum, :Crontab, :StartDate, :EndDate, :CycleUnit, :InitStrategy, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :TasksStr, :Submit, :ExecutorGroupId, :ExecutorGroupName, :TaskExtInfo, :EventListenerInfos, :ScriptInfo, :DLCResourceConfig, :ParentTaskInfos, :ExtResourceFlag, :NewParentTaskInfos, :SelfWorkFlowDependType, :AllowRedoType
|
37124
37671
|
|
37125
|
-
def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil, newparenttaskinfos=nil, selfworkflowdependtype=nil)
|
37672
|
+
def initialize(taskid=nil, virtualtaskid=nil, virtualflag=nil, taskname=nil, workflowid=nil, realworkflowid=nil, workflowname=nil, folderid=nil, foldername=nil, createtime=nil, lastupdate=nil, status=nil, incharge=nil, inchargeid=nil, starttime=nil, endtime=nil, executionstarttime=nil, executionendtime=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, delaytime=nil, startuptime=nil, retrywait=nil, retryable=nil, taskaction=nil, trylimit=nil, runpriority=nil, tasktype=nil, brokerip=nil, clusterid=nil, mindatetime=nil, maxdatetime=nil, executionttl=nil, selfdepend=nil, leftcoordinate=nil, topcoordinate=nil, notes=nil, instanceinitstrategy=nil, yarnqueue=nil, lastschedulercommittime=nil, normalizedjobstarttime=nil, schedulerdesc=nil, resourcegroup=nil, creator=nil, dependencyrel=nil, dependencyworkflow=nil, eventlistenerconfig=nil, eventpublisherconfig=nil, virtualtaskstatus=nil, tasklinkinfo=nil, productname=nil, projectid=nil, projectident=nil, projectname=nil, ownid=nil, userid=nil, tenantid=nil, updateuser=nil, updatetime=nil, updateuserid=nil, tasktypeid=nil, tasktypedesc=nil, showworkflow=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, cyclenum=nil, crontab=nil, startdate=nil, enddate=nil, cycleunit=nil, initstrategy=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, tasksstr=nil, submit=nil, executorgroupid=nil, executorgroupname=nil, taskextinfo=nil, eventlistenerinfos=nil, scriptinfo=nil, dlcresourceconfig=nil, parenttaskinfos=nil, extresourceflag=nil, newparenttaskinfos=nil, selfworkflowdependtype=nil, allowredotype=nil)
|
37126
37673
|
@TaskId = taskid
|
37127
37674
|
@VirtualTaskId = virtualtaskid
|
37128
37675
|
@VirtualFlag = virtualflag
|
@@ -37213,6 +37760,7 @@ module TencentCloud
|
|
37213
37760
|
@ExtResourceFlag = extresourceflag
|
37214
37761
|
@NewParentTaskInfos = newparenttaskinfos
|
37215
37762
|
@SelfWorkFlowDependType = selfworkflowdependtype
|
37763
|
+
@AllowRedoType = allowredotype
|
37216
37764
|
end
|
37217
37765
|
|
37218
37766
|
def deserialize(params)
|
@@ -37338,6 +37886,7 @@ module TencentCloud
|
|
37338
37886
|
end
|
37339
37887
|
end
|
37340
37888
|
@SelfWorkFlowDependType = params['SelfWorkFlowDependType']
|
37889
|
+
@AllowRedoType = params['AllowRedoType']
|
37341
37890
|
end
|
37342
37891
|
end
|
37343
37892
|
|
@@ -39655,10 +40204,16 @@ module TencentCloud
|
|
39655
40204
|
# - manual 手动工作流
|
39656
40205
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
39657
40206
|
# @type WorkflowType: String
|
40207
|
+
# @param UpdateUser: 最近更新人名称
|
40208
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
40209
|
+
# @type UpdateUser: String
|
40210
|
+
# @param UpdateUserId: 最近更新人id
|
40211
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
40212
|
+
# @type UpdateUserId: String
|
39658
40213
|
|
39659
|
-
attr_accessor :WorkflowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkflowDesc, :WorkflowName, :FolderId, :SparkParams, :Tasks, :Links, :Params, :WorkflowType
|
40214
|
+
attr_accessor :WorkflowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkflowDesc, :WorkflowName, :FolderId, :SparkParams, :Tasks, :Links, :Params, :WorkflowType, :UpdateUser, :UpdateUserId
|
39660
40215
|
|
39661
|
-
def initialize(workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, sparkparams=nil, tasks=nil, links=nil, params=nil, workflowtype=nil)
|
40216
|
+
def initialize(workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, sparkparams=nil, tasks=nil, links=nil, params=nil, workflowtype=nil, updateuser=nil, updateuserid=nil)
|
39662
40217
|
@WorkflowId = workflowid
|
39663
40218
|
@Owner = owner
|
39664
40219
|
@OwnerId = ownerid
|
@@ -39673,6 +40228,8 @@ module TencentCloud
|
|
39673
40228
|
@Links = links
|
39674
40229
|
@Params = params
|
39675
40230
|
@WorkflowType = workflowtype
|
40231
|
+
@UpdateUser = updateuser
|
40232
|
+
@UpdateUserId = updateuserid
|
39676
40233
|
end
|
39677
40234
|
|
39678
40235
|
def deserialize(params)
|
@@ -39711,6 +40268,8 @@ module TencentCloud
|
|
39711
40268
|
end
|
39712
40269
|
end
|
39713
40270
|
@WorkflowType = params['WorkflowType']
|
40271
|
+
@UpdateUser = params['UpdateUser']
|
40272
|
+
@UpdateUserId = params['UpdateUserId']
|
39714
40273
|
end
|
39715
40274
|
end
|
39716
40275
|
|
@@ -39758,13 +40317,16 @@ module TencentCloud
|
|
39758
40317
|
# @param ModifyTime: 最近更新时间
|
39759
40318
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
39760
40319
|
# @type ModifyTime: String
|
40320
|
+
# @param ModifyUser: 最近更新人
|
40321
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
40322
|
+
# @type ModifyUser: String
|
39761
40323
|
# @param WorkflowType: 工作流类型,周期cycle,手动manual
|
39762
40324
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
39763
40325
|
# @type WorkflowType: String
|
39764
40326
|
|
39765
|
-
attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :WorkflowType
|
40327
|
+
attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :ModifyUser, :WorkflowType
|
39766
40328
|
|
39767
|
-
def initialize(taskcount=nil, foldername=nil, workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, status=nil, createtime=nil, modifytime=nil, workflowtype=nil)
|
40329
|
+
def initialize(taskcount=nil, foldername=nil, workflowid=nil, owner=nil, ownerid=nil, projectid=nil, projectident=nil, projectname=nil, workflowdesc=nil, workflowname=nil, folderid=nil, status=nil, createtime=nil, modifytime=nil, modifyuser=nil, workflowtype=nil)
|
39768
40330
|
@TaskCount = taskcount
|
39769
40331
|
@FolderName = foldername
|
39770
40332
|
@WorkFlowId = workflowid
|
@@ -39779,6 +40341,7 @@ module TencentCloud
|
|
39779
40341
|
@Status = status
|
39780
40342
|
@CreateTime = createtime
|
39781
40343
|
@ModifyTime = modifytime
|
40344
|
+
@ModifyUser = modifyuser
|
39782
40345
|
@WorkflowType = workflowtype
|
39783
40346
|
end
|
39784
40347
|
|
@@ -39797,6 +40360,7 @@ module TencentCloud
|
|
39797
40360
|
@Status = params['Status']
|
39798
40361
|
@CreateTime = params['CreateTime']
|
39799
40362
|
@ModifyTime = params['ModifyTime']
|
40363
|
+
@ModifyUser = params['ModifyUser']
|
39800
40364
|
@WorkflowType = params['WorkflowType']
|
39801
40365
|
end
|
39802
40366
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-wedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1110
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|