tencentcloud-sdk-wedata 3.0.1103 → 3.0.1113
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 +595 -27
- 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: 40e3616295e54ffeef0a4a54ea02dc378f8f87d6
|
4
|
+
data.tar.gz: 32586d468312cda8d6aa068df77476c20a511664
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89f4481af9b583d3250a71d07e78db0b3dba705d4a9b30ac0fa173406f06c509b8588e79b6c463473dcf936218ca90432e88ab0d57693de26dbdedb73c68af03
|
7
|
+
data.tar.gz: 1f7510f70b3201cf510e07fc96d3eeed7d732d22850767c1d4c9eff5f2f424ce3a1f937493d480c9faa8a5e31bbf17c23fd5a394a9bb64c1b527100f9a950191
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1113
|
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
|
|
@@ -12929,6 +12946,8 @@ module TencentCloud
|
|
12929
12946
|
|
12930
12947
|
# DescribeProjectUsers请求参数结构体
|
12931
12948
|
class DescribeProjectUsersRequest < TencentCloud::Common::AbstractModel
|
12949
|
+
# @param ProjectId: 项目id
|
12950
|
+
# @type ProjectId: String
|
12932
12951
|
# @param PageNumber: 分页号
|
12933
12952
|
# @type PageNumber: Integer
|
12934
12953
|
# @param PageSize: 分页大小
|
@@ -12940,9 +12959,10 @@ module TencentCloud
|
|
12940
12959
|
# @param IsProjectAdmin: 是否项目管理员
|
12941
12960
|
# @type IsProjectAdmin: Boolean
|
12942
12961
|
|
12943
|
-
attr_accessor :PageNumber, :PageSize, :Filters, :OrderFields, :IsProjectAdmin
|
12962
|
+
attr_accessor :ProjectId, :PageNumber, :PageSize, :Filters, :OrderFields, :IsProjectAdmin
|
12944
12963
|
|
12945
|
-
def initialize(pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, isprojectadmin=nil)
|
12964
|
+
def initialize(projectid=nil, pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, isprojectadmin=nil)
|
12965
|
+
@ProjectId = projectid
|
12946
12966
|
@PageNumber = pagenumber
|
12947
12967
|
@PageSize = pagesize
|
12948
12968
|
@Filters = filters
|
@@ -12951,6 +12971,7 @@ module TencentCloud
|
|
12951
12971
|
end
|
12952
12972
|
|
12953
12973
|
def deserialize(params)
|
12974
|
+
@ProjectId = params['ProjectId']
|
12954
12975
|
@PageNumber = params['PageNumber']
|
12955
12976
|
@PageSize = params['PageSize']
|
12956
12977
|
unless params['Filters'].nil?
|
@@ -16591,6 +16612,53 @@ module TencentCloud
|
|
16591
16612
|
end
|
16592
16613
|
end
|
16593
16614
|
|
16615
|
+
# DescribeTaskParamDs请求参数结构体
|
16616
|
+
class DescribeTaskParamDsRequest < TencentCloud::Common::AbstractModel
|
16617
|
+
# @param ProjectId: 项目ID
|
16618
|
+
# @type ProjectId: String
|
16619
|
+
# @param TaskId: 任务id
|
16620
|
+
# @type TaskId: String
|
16621
|
+
|
16622
|
+
attr_accessor :ProjectId, :TaskId
|
16623
|
+
|
16624
|
+
def initialize(projectid=nil, taskid=nil)
|
16625
|
+
@ProjectId = projectid
|
16626
|
+
@TaskId = taskid
|
16627
|
+
end
|
16628
|
+
|
16629
|
+
def deserialize(params)
|
16630
|
+
@ProjectId = params['ProjectId']
|
16631
|
+
@TaskId = params['TaskId']
|
16632
|
+
end
|
16633
|
+
end
|
16634
|
+
|
16635
|
+
# DescribeTaskParamDs返回参数结构体
|
16636
|
+
class DescribeTaskParamDsResponse < TencentCloud::Common::AbstractModel
|
16637
|
+
# @param Data: 结果集
|
16638
|
+
# @type Data: Array
|
16639
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16640
|
+
# @type RequestId: String
|
16641
|
+
|
16642
|
+
attr_accessor :Data, :RequestId
|
16643
|
+
|
16644
|
+
def initialize(data=nil, requestid=nil)
|
16645
|
+
@Data = data
|
16646
|
+
@RequestId = requestid
|
16647
|
+
end
|
16648
|
+
|
16649
|
+
def deserialize(params)
|
16650
|
+
unless params['Data'].nil?
|
16651
|
+
@Data = []
|
16652
|
+
params['Data'].each do |i|
|
16653
|
+
parametertaskdsdto_tmp = ParameterTaskDsDto.new
|
16654
|
+
parametertaskdsdto_tmp.deserialize(i)
|
16655
|
+
@Data << parametertaskdsdto_tmp
|
16656
|
+
end
|
16657
|
+
end
|
16658
|
+
@RequestId = params['RequestId']
|
16659
|
+
end
|
16660
|
+
end
|
16661
|
+
|
16594
16662
|
# DescribeTaskRunHistory请求参数结构体
|
16595
16663
|
class DescribeTaskRunHistoryRequest < TencentCloud::Common::AbstractModel
|
16596
16664
|
# @param ProjectId: 项目id
|
@@ -20973,6 +21041,58 @@ module TencentCloud
|
|
20973
21041
|
end
|
20974
21042
|
end
|
20975
21043
|
|
21044
|
+
# GetJobStatus请求参数结构体
|
21045
|
+
class GetJobStatusRequest < TencentCloud::Common::AbstractModel
|
21046
|
+
# @param JobId: 异步任务id
|
21047
|
+
# @type JobId: String
|
21048
|
+
|
21049
|
+
attr_accessor :JobId
|
21050
|
+
|
21051
|
+
def initialize(jobid=nil)
|
21052
|
+
@JobId = jobid
|
21053
|
+
end
|
21054
|
+
|
21055
|
+
def deserialize(params)
|
21056
|
+
@JobId = params['JobId']
|
21057
|
+
end
|
21058
|
+
end
|
21059
|
+
|
21060
|
+
# GetJobStatus返回参数结构体
|
21061
|
+
class GetJobStatusResponse < TencentCloud::Common::AbstractModel
|
21062
|
+
# @param JobId: 异步任务id
|
21063
|
+
# @type JobId: String
|
21064
|
+
# @param Completed: 是否已完成
|
21065
|
+
# @type Completed: Boolean
|
21066
|
+
# @param Status: 任务状态,Success:成功,Fail:失败,Cancel:取消,Running:运行中
|
21067
|
+
# @type Status: String
|
21068
|
+
# @param CreateTime: 创建时间时间戳,单位毫秒
|
21069
|
+
# @type CreateTime: String
|
21070
|
+
# @param ErrorMessage: 错误信息
|
21071
|
+
# @type ErrorMessage: String
|
21072
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21073
|
+
# @type RequestId: String
|
21074
|
+
|
21075
|
+
attr_accessor :JobId, :Completed, :Status, :CreateTime, :ErrorMessage, :RequestId
|
21076
|
+
|
21077
|
+
def initialize(jobid=nil, completed=nil, status=nil, createtime=nil, errormessage=nil, requestid=nil)
|
21078
|
+
@JobId = jobid
|
21079
|
+
@Completed = completed
|
21080
|
+
@Status = status
|
21081
|
+
@CreateTime = createtime
|
21082
|
+
@ErrorMessage = errormessage
|
21083
|
+
@RequestId = requestid
|
21084
|
+
end
|
21085
|
+
|
21086
|
+
def deserialize(params)
|
21087
|
+
@JobId = params['JobId']
|
21088
|
+
@Completed = params['Completed']
|
21089
|
+
@Status = params['Status']
|
21090
|
+
@CreateTime = params['CreateTime']
|
21091
|
+
@ErrorMessage = params['ErrorMessage']
|
21092
|
+
@RequestId = params['RequestId']
|
21093
|
+
end
|
21094
|
+
end
|
21095
|
+
|
20976
21096
|
# GetOfflineDIInstanceList请求参数结构体
|
20977
21097
|
class GetOfflineDIInstanceListRequest < TencentCloud::Common::AbstractModel
|
20978
21098
|
# @param PageIndex: 第几页
|
@@ -21738,10 +21858,13 @@ module TencentCloud
|
|
21738
21858
|
# @param TaskType: 任务类型
|
21739
21859
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21740
21860
|
# @type TaskType: :class:`Tencentcloud::Wedata.v20210820.models.TaskTypeOpsDto`
|
21861
|
+
# @param ResourceGroup: 资源组id
|
21862
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21863
|
+
# @type ResourceGroup: String
|
21741
21864
|
|
21742
|
-
attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType
|
21865
|
+
attr_accessor :TaskId, :TaskName, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType, :TotalLifeRound, :TaskType, :ResourceGroup
|
21743
21866
|
|
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)
|
21867
|
+
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
21868
|
@TaskId = taskid
|
21746
21869
|
@TaskName = taskname
|
21747
21870
|
@CurRunDate = currundate
|
@@ -21759,6 +21882,7 @@ module TencentCloud
|
|
21759
21882
|
@InstanceRunType = instanceruntype
|
21760
21883
|
@TotalLifeRound = totalliferound
|
21761
21884
|
@TaskType = tasktype
|
21885
|
+
@ResourceGroup = resourcegroup
|
21762
21886
|
end
|
21763
21887
|
|
21764
21888
|
def deserialize(params)
|
@@ -21792,6 +21916,7 @@ module TencentCloud
|
|
21792
21916
|
@TaskType = TaskTypeOpsDto.new
|
21793
21917
|
@TaskType.deserialize(params['TaskType'])
|
21794
21918
|
end
|
21919
|
+
@ResourceGroup = params['ResourceGroup']
|
21795
21920
|
end
|
21796
21921
|
end
|
21797
21922
|
|
@@ -22656,10 +22781,12 @@ module TencentCloud
|
|
22656
22781
|
# @param ScheduleRunType: 调度运行方式, 0: 周期调度, 1: 空跑调度
|
22657
22782
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22658
22783
|
# @type ScheduleRunType: Integer
|
22784
|
+
# @param AllowRedoType: 允许重跑类型,ALL 表示无论实例运行成功还是失败都允许重跑,NONE表示无论成功或者失败都不允许重跑,FAILURE 表示只有运行失败才能重跑
|
22785
|
+
# @type AllowRedoType: String
|
22659
22786
|
|
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
|
22787
|
+
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
22788
|
|
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)
|
22789
|
+
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
22790
|
@TaskId = taskid
|
22664
22791
|
@TaskName = taskname
|
22665
22792
|
@WorkflowId = workflowid
|
@@ -22724,6 +22851,7 @@ module TencentCloud
|
|
22724
22851
|
@CirculateInstanceList = circulateinstancelist
|
22725
22852
|
@ConcurrentStrategy = concurrentstrategy
|
22726
22853
|
@ScheduleRunType = scheduleruntype
|
22854
|
+
@AllowRedoType = allowredotype
|
22727
22855
|
end
|
22728
22856
|
|
22729
22857
|
def deserialize(params)
|
@@ -22811,6 +22939,7 @@ module TencentCloud
|
|
22811
22939
|
end
|
22812
22940
|
@ConcurrentStrategy = params['ConcurrentStrategy']
|
22813
22941
|
@ScheduleRunType = params['ScheduleRunType']
|
22942
|
+
@AllowRedoType = params['AllowRedoType']
|
22814
22943
|
end
|
22815
22944
|
end
|
22816
22945
|
|
@@ -23072,16 +23201,22 @@ module TencentCloud
|
|
23072
23201
|
# @param SchedulerTime: 计划调度时间
|
23073
23202
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23074
23203
|
# @type SchedulerTime: String
|
23204
|
+
# @param LastUpdateTime: 实例最近更新时间, 时间格式为 yyyy-MM-dd HH:mm:ss
|
23205
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23206
|
+
# @type LastUpdateTime: String
|
23075
23207
|
# @param ExecutorGroupId: 执行资源组ID
|
23076
23208
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23077
23209
|
# @type ExecutorGroupId: String
|
23078
23210
|
# @param ExecutorGroupName: 资源组名称
|
23079
23211
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23080
23212
|
# @type ExecutorGroupName: String
|
23213
|
+
# @param JobErrorMsg: 简要的任务失败信息
|
23214
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23215
|
+
# @type JobErrorMsg: String
|
23081
23216
|
|
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
|
23217
|
+
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
23218
|
|
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)
|
23219
|
+
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
23220
|
@InstanceKey = instancekey
|
23086
23221
|
@ProjectId = projectid
|
23087
23222
|
@FolderId = folderid
|
@@ -23103,8 +23238,10 @@ module TencentCloud
|
|
23103
23238
|
@EndTime = endtime
|
23104
23239
|
@CostTime = costtime
|
23105
23240
|
@SchedulerTime = schedulertime
|
23241
|
+
@LastUpdateTime = lastupdatetime
|
23106
23242
|
@ExecutorGroupId = executorgroupid
|
23107
23243
|
@ExecutorGroupName = executorgroupname
|
23244
|
+
@JobErrorMsg = joberrormsg
|
23108
23245
|
end
|
23109
23246
|
|
23110
23247
|
def deserialize(params)
|
@@ -23132,8 +23269,10 @@ module TencentCloud
|
|
23132
23269
|
@EndTime = params['EndTime']
|
23133
23270
|
@CostTime = params['CostTime']
|
23134
23271
|
@SchedulerTime = params['SchedulerTime']
|
23272
|
+
@LastUpdateTime = params['LastUpdateTime']
|
23135
23273
|
@ExecutorGroupId = params['ExecutorGroupId']
|
23136
23274
|
@ExecutorGroupName = params['ExecutorGroupName']
|
23275
|
+
@JobErrorMsg = params['JobErrorMsg']
|
23137
23276
|
end
|
23138
23277
|
end
|
23139
23278
|
|
@@ -23514,6 +23653,28 @@ module TencentCloud
|
|
23514
23653
|
end
|
23515
23654
|
end
|
23516
23655
|
|
23656
|
+
# 集成标签
|
23657
|
+
class IntegrationTag < TencentCloud::Common::AbstractModel
|
23658
|
+
# @param Key: key值
|
23659
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23660
|
+
# @type Key: String
|
23661
|
+
# @param Value: 标签值
|
23662
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23663
|
+
# @type Value: String
|
23664
|
+
|
23665
|
+
attr_accessor :Key, :Value
|
23666
|
+
|
23667
|
+
def initialize(key=nil, value=nil)
|
23668
|
+
@Key = key
|
23669
|
+
@Value = value
|
23670
|
+
end
|
23671
|
+
|
23672
|
+
def deserialize(params)
|
23673
|
+
@Key = params['Key']
|
23674
|
+
@Value = params['Value']
|
23675
|
+
end
|
23676
|
+
end
|
23677
|
+
|
23517
23678
|
# 集成任务
|
23518
23679
|
class IntegrationTaskInfo < TencentCloud::Common::AbstractModel
|
23519
23680
|
# @param TaskName: 任务名称
|
@@ -23669,10 +23830,16 @@ module TencentCloud
|
|
23669
23830
|
# @param CurrentSyncPosition: 当前同步位点
|
23670
23831
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23671
23832
|
# @type CurrentSyncPosition: Integer
|
23833
|
+
# @param TagList: 标签列表
|
23834
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23835
|
+
# @type TagList: Array
|
23836
|
+
# @param ErrorMessage: 错误信息
|
23837
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23838
|
+
# @type ErrorMessage: String
|
23672
23839
|
|
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
|
23840
|
+
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
23841
|
|
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)
|
23842
|
+
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
23843
|
@TaskName = taskname
|
23677
23844
|
@Description = description
|
23678
23845
|
@SyncType = synctype
|
@@ -23725,6 +23892,8 @@ module TencentCloud
|
|
23725
23892
|
@TaskImportInfo = taskimportinfo
|
23726
23893
|
@BusinessLatency = businesslatency
|
23727
23894
|
@CurrentSyncPosition = currentsyncposition
|
23895
|
+
@TagList = taglist
|
23896
|
+
@ErrorMessage = errormessage
|
23728
23897
|
end
|
23729
23898
|
|
23730
23899
|
def deserialize(params)
|
@@ -23821,6 +23990,15 @@ module TencentCloud
|
|
23821
23990
|
end
|
23822
23991
|
@BusinessLatency = params['BusinessLatency']
|
23823
23992
|
@CurrentSyncPosition = params['CurrentSyncPosition']
|
23993
|
+
unless params['TagList'].nil?
|
23994
|
+
@TagList = []
|
23995
|
+
params['TagList'].each do |i|
|
23996
|
+
integrationtag_tmp = IntegrationTag.new
|
23997
|
+
integrationtag_tmp.deserialize(i)
|
23998
|
+
@TagList << integrationtag_tmp
|
23999
|
+
end
|
24000
|
+
end
|
24001
|
+
@ErrorMessage = params['ErrorMessage']
|
23824
24002
|
end
|
23825
24003
|
end
|
23826
24004
|
|
@@ -24428,10 +24606,16 @@ module TencentCloud
|
|
24428
24606
|
# @param ScheduleTimeZone: **时区**
|
24429
24607
|
# timeZone, 默认UTC+8
|
24430
24608
|
# @type ScheduleTimeZone: String
|
24609
|
+
# @param LastUpdateTimeFrom: **实例最近更新时间过滤条件**
|
24610
|
+
# 过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
24611
|
+
# @type LastUpdateTimeFrom: String
|
24612
|
+
# @param LastUpdateTimeTo: **实例最近更新时间过滤条件**
|
24613
|
+
# 过滤截止时间,时间格式为 yyyy-MM-dd HH:mm:ss
|
24614
|
+
# @type LastUpdateTimeTo: String
|
24431
24615
|
|
24432
|
-
attr_accessor :ProjectId, :ScheduleTimeFrom, :ScheduleTimeTo, :PageNumber, :PageSize, :SortColumn, :SortType, :InstanceType, :InstanceStateList, :TaskTypeIdList, :TaskCycleList, :Keyword, :InChargeList, :TaskFolderIdList, :WorkflowIdList, :ExecutorGroupIdList, :StartTimeFrom, :StartTimeTo, :ScheduleTimeZone
|
24616
|
+
attr_accessor :ProjectId, :ScheduleTimeFrom, :ScheduleTimeTo, :PageNumber, :PageSize, :SortColumn, :SortType, :InstanceType, :InstanceStateList, :TaskTypeIdList, :TaskCycleList, :Keyword, :InChargeList, :TaskFolderIdList, :WorkflowIdList, :ExecutorGroupIdList, :StartTimeFrom, :StartTimeTo, :ScheduleTimeZone, :LastUpdateTimeFrom, :LastUpdateTimeTo
|
24433
24617
|
|
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)
|
24618
|
+
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
24619
|
@ProjectId = projectid
|
24436
24620
|
@ScheduleTimeFrom = scheduletimefrom
|
24437
24621
|
@ScheduleTimeTo = scheduletimeto
|
@@ -24451,6 +24635,8 @@ module TencentCloud
|
|
24451
24635
|
@StartTimeFrom = starttimefrom
|
24452
24636
|
@StartTimeTo = starttimeto
|
24453
24637
|
@ScheduleTimeZone = scheduletimezone
|
24638
|
+
@LastUpdateTimeFrom = lastupdatetimefrom
|
24639
|
+
@LastUpdateTimeTo = lastupdatetimeto
|
24454
24640
|
end
|
24455
24641
|
|
24456
24642
|
def deserialize(params)
|
@@ -24473,6 +24659,8 @@ module TencentCloud
|
|
24473
24659
|
@StartTimeFrom = params['StartTimeFrom']
|
24474
24660
|
@StartTimeTo = params['StartTimeTo']
|
24475
24661
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
24662
|
+
@LastUpdateTimeFrom = params['LastUpdateTimeFrom']
|
24663
|
+
@LastUpdateTimeTo = params['LastUpdateTimeTo']
|
24476
24664
|
end
|
24477
24665
|
end
|
24478
24666
|
|
@@ -29250,6 +29438,138 @@ module TencentCloud
|
|
29250
29438
|
end
|
29251
29439
|
end
|
29252
29440
|
|
29441
|
+
# RemoveDatabase请求参数结构体
|
29442
|
+
class RemoveDatabaseRequest < TencentCloud::Common::AbstractModel
|
29443
|
+
# @param DatasourceId: 数据源id
|
29444
|
+
# @type DatasourceId: Integer
|
29445
|
+
# @param DatabaseName: database名称
|
29446
|
+
# @type DatabaseName: String
|
29447
|
+
|
29448
|
+
attr_accessor :DatasourceId, :DatabaseName
|
29449
|
+
|
29450
|
+
def initialize(datasourceid=nil, databasename=nil)
|
29451
|
+
@DatasourceId = datasourceid
|
29452
|
+
@DatabaseName = databasename
|
29453
|
+
end
|
29454
|
+
|
29455
|
+
def deserialize(params)
|
29456
|
+
@DatasourceId = params['DatasourceId']
|
29457
|
+
@DatabaseName = params['DatabaseName']
|
29458
|
+
end
|
29459
|
+
end
|
29460
|
+
|
29461
|
+
# RemoveDatabase返回参数结构体
|
29462
|
+
class RemoveDatabaseResponse < TencentCloud::Common::AbstractModel
|
29463
|
+
# @param JobId: 异步删除的任务id,用于查询执行状态
|
29464
|
+
# @type JobId: String
|
29465
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29466
|
+
# @type RequestId: String
|
29467
|
+
|
29468
|
+
attr_accessor :JobId, :RequestId
|
29469
|
+
|
29470
|
+
def initialize(jobid=nil, requestid=nil)
|
29471
|
+
@JobId = jobid
|
29472
|
+
@RequestId = requestid
|
29473
|
+
end
|
29474
|
+
|
29475
|
+
def deserialize(params)
|
29476
|
+
@JobId = params['JobId']
|
29477
|
+
@RequestId = params['RequestId']
|
29478
|
+
end
|
29479
|
+
end
|
29480
|
+
|
29481
|
+
# RemoveSchema请求参数结构体
|
29482
|
+
class RemoveSchemaRequest < TencentCloud::Common::AbstractModel
|
29483
|
+
# @param DatasourceId: 数据源id
|
29484
|
+
# @type DatasourceId: Integer
|
29485
|
+
# @param DatabaseName: database名称
|
29486
|
+
# @type DatabaseName: String
|
29487
|
+
# @param SchemaName: schema名称
|
29488
|
+
# @type SchemaName: String
|
29489
|
+
|
29490
|
+
attr_accessor :DatasourceId, :DatabaseName, :SchemaName
|
29491
|
+
|
29492
|
+
def initialize(datasourceid=nil, databasename=nil, schemaname=nil)
|
29493
|
+
@DatasourceId = datasourceid
|
29494
|
+
@DatabaseName = databasename
|
29495
|
+
@SchemaName = schemaname
|
29496
|
+
end
|
29497
|
+
|
29498
|
+
def deserialize(params)
|
29499
|
+
@DatasourceId = params['DatasourceId']
|
29500
|
+
@DatabaseName = params['DatabaseName']
|
29501
|
+
@SchemaName = params['SchemaName']
|
29502
|
+
end
|
29503
|
+
end
|
29504
|
+
|
29505
|
+
# RemoveSchema返回参数结构体
|
29506
|
+
class RemoveSchemaResponse < TencentCloud::Common::AbstractModel
|
29507
|
+
# @param JobId: 异步删除的任务id,用于查询执行状态
|
29508
|
+
# @type JobId: String
|
29509
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29510
|
+
# @type RequestId: String
|
29511
|
+
|
29512
|
+
attr_accessor :JobId, :RequestId
|
29513
|
+
|
29514
|
+
def initialize(jobid=nil, requestid=nil)
|
29515
|
+
@JobId = jobid
|
29516
|
+
@RequestId = requestid
|
29517
|
+
end
|
29518
|
+
|
29519
|
+
def deserialize(params)
|
29520
|
+
@JobId = params['JobId']
|
29521
|
+
@RequestId = params['RequestId']
|
29522
|
+
end
|
29523
|
+
end
|
29524
|
+
|
29525
|
+
# RemoveTable请求参数结构体
|
29526
|
+
class RemoveTableRequest < TencentCloud::Common::AbstractModel
|
29527
|
+
# @param DatasourceId: 数据源id
|
29528
|
+
# @type DatasourceId: Integer
|
29529
|
+
# @param DatabaseName: database名称
|
29530
|
+
# @type DatabaseName: String
|
29531
|
+
# @param SchemaName: schema名称
|
29532
|
+
# @type SchemaName: String
|
29533
|
+
# @param TableName: 表名称
|
29534
|
+
# @type TableName: String
|
29535
|
+
|
29536
|
+
attr_accessor :DatasourceId, :DatabaseName, :SchemaName, :TableName
|
29537
|
+
|
29538
|
+
def initialize(datasourceid=nil, databasename=nil, schemaname=nil, tablename=nil)
|
29539
|
+
@DatasourceId = datasourceid
|
29540
|
+
@DatabaseName = databasename
|
29541
|
+
@SchemaName = schemaname
|
29542
|
+
@TableName = tablename
|
29543
|
+
end
|
29544
|
+
|
29545
|
+
def deserialize(params)
|
29546
|
+
@DatasourceId = params['DatasourceId']
|
29547
|
+
@DatabaseName = params['DatabaseName']
|
29548
|
+
@SchemaName = params['SchemaName']
|
29549
|
+
@TableName = params['TableName']
|
29550
|
+
end
|
29551
|
+
end
|
29552
|
+
|
29553
|
+
# RemoveTable返回参数结构体
|
29554
|
+
class RemoveTableResponse < TencentCloud::Common::AbstractModel
|
29555
|
+
# @param Result: 结果
|
29556
|
+
# @type Result: Boolean
|
29557
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29558
|
+
# @type RequestId: String
|
29559
|
+
|
29560
|
+
attr_accessor :Result, :RequestId
|
29561
|
+
|
29562
|
+
def initialize(result=nil, requestid=nil)
|
29563
|
+
@Result = result
|
29564
|
+
@RequestId = requestid
|
29565
|
+
end
|
29566
|
+
|
29567
|
+
def deserialize(params)
|
29568
|
+
@Result = params['Result']
|
29569
|
+
@RequestId = params['RequestId']
|
29570
|
+
end
|
29571
|
+
end
|
29572
|
+
|
29253
29573
|
# RemoveWorkflowDs请求参数结构体
|
29254
29574
|
class RemoveWorkflowDsRequest < TencentCloud::Common::AbstractModel
|
29255
29575
|
# @param ProjectId: 项目ID
|
@@ -29474,6 +29794,225 @@ module TencentCloud
|
|
29474
29794
|
end
|
29475
29795
|
end
|
29476
29796
|
|
29797
|
+
# 上报表元数据的字段结构
|
29798
|
+
class ReportColumnInfo < TencentCloud::Common::AbstractModel
|
29799
|
+
# @param Name: 字段名称,字符长度128内
|
29800
|
+
# @type Name: String
|
29801
|
+
# @param Type: 字段类型,字符长度128内
|
29802
|
+
# @type Type: String
|
29803
|
+
# @param Position: 字段位置,1开始
|
29804
|
+
# @type Position: Integer
|
29805
|
+
# @param Description: 字段描述,字符长度256内
|
29806
|
+
# @type Description: String
|
29807
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29808
|
+
# @type CreateTime: String
|
29809
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29810
|
+
# @type ModifiedTime: String
|
29811
|
+
|
29812
|
+
attr_accessor :Name, :Type, :Position, :Description, :CreateTime, :ModifiedTime
|
29813
|
+
|
29814
|
+
def initialize(name=nil, type=nil, position=nil, description=nil, createtime=nil, modifiedtime=nil)
|
29815
|
+
@Name = name
|
29816
|
+
@Type = type
|
29817
|
+
@Position = position
|
29818
|
+
@Description = description
|
29819
|
+
@CreateTime = createtime
|
29820
|
+
@ModifiedTime = modifiedtime
|
29821
|
+
end
|
29822
|
+
|
29823
|
+
def deserialize(params)
|
29824
|
+
@Name = params['Name']
|
29825
|
+
@Type = params['Type']
|
29826
|
+
@Position = params['Position']
|
29827
|
+
@Description = params['Description']
|
29828
|
+
@CreateTime = params['CreateTime']
|
29829
|
+
@ModifiedTime = params['ModifiedTime']
|
29830
|
+
end
|
29831
|
+
end
|
29832
|
+
|
29833
|
+
# ReportDatabase请求参数结构体
|
29834
|
+
class ReportDatabaseRequest < TencentCloud::Common::AbstractModel
|
29835
|
+
# @param DatasourceId: 数据源id
|
29836
|
+
# @type DatasourceId: Integer
|
29837
|
+
# @param DatabaseName: database名称,字符长度128内
|
29838
|
+
# @type DatabaseName: String
|
29839
|
+
# @param Description: 描述,字符长度3000内
|
29840
|
+
# @type Description: String
|
29841
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29842
|
+
# @type CreateTime: Integer
|
29843
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29844
|
+
# @type ModifiedTime: Integer
|
29845
|
+
|
29846
|
+
attr_accessor :DatasourceId, :DatabaseName, :Description, :CreateTime, :ModifiedTime
|
29847
|
+
|
29848
|
+
def initialize(datasourceid=nil, databasename=nil, description=nil, createtime=nil, modifiedtime=nil)
|
29849
|
+
@DatasourceId = datasourceid
|
29850
|
+
@DatabaseName = databasename
|
29851
|
+
@Description = description
|
29852
|
+
@CreateTime = createtime
|
29853
|
+
@ModifiedTime = modifiedtime
|
29854
|
+
end
|
29855
|
+
|
29856
|
+
def deserialize(params)
|
29857
|
+
@DatasourceId = params['DatasourceId']
|
29858
|
+
@DatabaseName = params['DatabaseName']
|
29859
|
+
@Description = params['Description']
|
29860
|
+
@CreateTime = params['CreateTime']
|
29861
|
+
@ModifiedTime = params['ModifiedTime']
|
29862
|
+
end
|
29863
|
+
end
|
29864
|
+
|
29865
|
+
# ReportDatabase返回参数结构体
|
29866
|
+
class ReportDatabaseResponse < TencentCloud::Common::AbstractModel
|
29867
|
+
# @param Guid: 元数据唯一id
|
29868
|
+
# @type Guid: String
|
29869
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29870
|
+
# @type RequestId: String
|
29871
|
+
|
29872
|
+
attr_accessor :Guid, :RequestId
|
29873
|
+
|
29874
|
+
def initialize(guid=nil, requestid=nil)
|
29875
|
+
@Guid = guid
|
29876
|
+
@RequestId = requestid
|
29877
|
+
end
|
29878
|
+
|
29879
|
+
def deserialize(params)
|
29880
|
+
@Guid = params['Guid']
|
29881
|
+
@RequestId = params['RequestId']
|
29882
|
+
end
|
29883
|
+
end
|
29884
|
+
|
29885
|
+
# ReportSchema请求参数结构体
|
29886
|
+
class ReportSchemaRequest < TencentCloud::Common::AbstractModel
|
29887
|
+
# @param DatasourceId: 数据源id
|
29888
|
+
# @type DatasourceId: Integer
|
29889
|
+
# @param DatabaseName: database名称,字符长度128内
|
29890
|
+
# @type DatabaseName: String
|
29891
|
+
# @param SchemaName: schema名称,字符长度128内
|
29892
|
+
# @type SchemaName: String
|
29893
|
+
# @param Description: 描述,字符长度3000内
|
29894
|
+
# @type Description: String
|
29895
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29896
|
+
# @type CreateTime: Integer
|
29897
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29898
|
+
# @type ModifiedTime: Integer
|
29899
|
+
|
29900
|
+
attr_accessor :DatasourceId, :DatabaseName, :SchemaName, :Description, :CreateTime, :ModifiedTime
|
29901
|
+
|
29902
|
+
def initialize(datasourceid=nil, databasename=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil)
|
29903
|
+
@DatasourceId = datasourceid
|
29904
|
+
@DatabaseName = databasename
|
29905
|
+
@SchemaName = schemaname
|
29906
|
+
@Description = description
|
29907
|
+
@CreateTime = createtime
|
29908
|
+
@ModifiedTime = modifiedtime
|
29909
|
+
end
|
29910
|
+
|
29911
|
+
def deserialize(params)
|
29912
|
+
@DatasourceId = params['DatasourceId']
|
29913
|
+
@DatabaseName = params['DatabaseName']
|
29914
|
+
@SchemaName = params['SchemaName']
|
29915
|
+
@Description = params['Description']
|
29916
|
+
@CreateTime = params['CreateTime']
|
29917
|
+
@ModifiedTime = params['ModifiedTime']
|
29918
|
+
end
|
29919
|
+
end
|
29920
|
+
|
29921
|
+
# ReportSchema返回参数结构体
|
29922
|
+
class ReportSchemaResponse < TencentCloud::Common::AbstractModel
|
29923
|
+
# @param Guid: 元数据唯一id
|
29924
|
+
# @type Guid: String
|
29925
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29926
|
+
# @type RequestId: String
|
29927
|
+
|
29928
|
+
attr_accessor :Guid, :RequestId
|
29929
|
+
|
29930
|
+
def initialize(guid=nil, requestid=nil)
|
29931
|
+
@Guid = guid
|
29932
|
+
@RequestId = requestid
|
29933
|
+
end
|
29934
|
+
|
29935
|
+
def deserialize(params)
|
29936
|
+
@Guid = params['Guid']
|
29937
|
+
@RequestId = params['RequestId']
|
29938
|
+
end
|
29939
|
+
end
|
29940
|
+
|
29941
|
+
# ReportTable请求参数结构体
|
29942
|
+
class ReportTableRequest < TencentCloud::Common::AbstractModel
|
29943
|
+
# @param DatasourceId: 数据源id
|
29944
|
+
# @type DatasourceId: Integer
|
29945
|
+
# @param DatabaseName: database名称,字符长度128内
|
29946
|
+
# @type DatabaseName: String
|
29947
|
+
# @param TableName: table名称,字符长度128内
|
29948
|
+
# @type TableName: String
|
29949
|
+
# @param Type: 表类型,VIEW/TABLE
|
29950
|
+
# @type Type: String
|
29951
|
+
# @param SchemaName: schema名称,字符长度128内
|
29952
|
+
# @type SchemaName: String
|
29953
|
+
# @param Description: 描述,字符长度1000内
|
29954
|
+
# @type Description: String
|
29955
|
+
# @param CreateTime: 创建时间戳,毫秒,为空默认当前时间
|
29956
|
+
# @type CreateTime: Integer
|
29957
|
+
# @param ModifiedTime: 修改时间戳,毫秒,为空默认当前时间
|
29958
|
+
# @type ModifiedTime: Integer
|
29959
|
+
# @param Columns: 字段信息
|
29960
|
+
# @type Columns: Array
|
29961
|
+
|
29962
|
+
attr_accessor :DatasourceId, :DatabaseName, :TableName, :Type, :SchemaName, :Description, :CreateTime, :ModifiedTime, :Columns
|
29963
|
+
|
29964
|
+
def initialize(datasourceid=nil, databasename=nil, tablename=nil, type=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil, columns=nil)
|
29965
|
+
@DatasourceId = datasourceid
|
29966
|
+
@DatabaseName = databasename
|
29967
|
+
@TableName = tablename
|
29968
|
+
@Type = type
|
29969
|
+
@SchemaName = schemaname
|
29970
|
+
@Description = description
|
29971
|
+
@CreateTime = createtime
|
29972
|
+
@ModifiedTime = modifiedtime
|
29973
|
+
@Columns = columns
|
29974
|
+
end
|
29975
|
+
|
29976
|
+
def deserialize(params)
|
29977
|
+
@DatasourceId = params['DatasourceId']
|
29978
|
+
@DatabaseName = params['DatabaseName']
|
29979
|
+
@TableName = params['TableName']
|
29980
|
+
@Type = params['Type']
|
29981
|
+
@SchemaName = params['SchemaName']
|
29982
|
+
@Description = params['Description']
|
29983
|
+
@CreateTime = params['CreateTime']
|
29984
|
+
@ModifiedTime = params['ModifiedTime']
|
29985
|
+
unless params['Columns'].nil?
|
29986
|
+
@Columns = []
|
29987
|
+
params['Columns'].each do |i|
|
29988
|
+
reportcolumninfo_tmp = ReportColumnInfo.new
|
29989
|
+
reportcolumninfo_tmp.deserialize(i)
|
29990
|
+
@Columns << reportcolumninfo_tmp
|
29991
|
+
end
|
29992
|
+
end
|
29993
|
+
end
|
29994
|
+
end
|
29995
|
+
|
29996
|
+
# ReportTable返回参数结构体
|
29997
|
+
class ReportTableResponse < TencentCloud::Common::AbstractModel
|
29998
|
+
# @param Guid: 元数据唯一id
|
29999
|
+
# @type Guid: String
|
30000
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
30001
|
+
# @type RequestId: String
|
30002
|
+
|
30003
|
+
attr_accessor :Guid, :RequestId
|
30004
|
+
|
30005
|
+
def initialize(guid=nil, requestid=nil)
|
30006
|
+
@Guid = guid
|
30007
|
+
@RequestId = requestid
|
30008
|
+
end
|
30009
|
+
|
30010
|
+
def deserialize(params)
|
30011
|
+
@Guid = params['Guid']
|
30012
|
+
@RequestId = params['RequestId']
|
30013
|
+
end
|
30014
|
+
end
|
30015
|
+
|
29477
30016
|
# 上报任务详情
|
29478
30017
|
class ReportTaskDetail < TencentCloud::Common::AbstractModel
|
29479
30018
|
# @param EngineTaskId: 引擎任务id
|
@@ -31144,10 +31683,13 @@ module TencentCloud
|
|
31144
31683
|
# @type DatasourceId: String
|
31145
31684
|
# @param Description: 任务描述
|
31146
31685
|
# @type Description: String
|
31686
|
+
# @param ScheduleTimeZone: 时区
|
31687
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31688
|
+
# @type ScheduleTimeZone: String
|
31147
31689
|
|
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
|
31690
|
+
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
31691
|
|
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)
|
31692
|
+
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
31693
|
@RuleGroupId = rulegroupid
|
31152
31694
|
@MonitorType = monitortype
|
31153
31695
|
@ExecQueue = execqueue
|
@@ -31172,6 +31714,7 @@ module TencentCloud
|
|
31172
31714
|
@TableName = tablename
|
31173
31715
|
@DatasourceId = datasourceid
|
31174
31716
|
@Description = description
|
31717
|
+
@ScheduleTimeZone = scheduletimezone
|
31175
31718
|
end
|
31176
31719
|
|
31177
31720
|
def deserialize(params)
|
@@ -31206,6 +31749,7 @@ module TencentCloud
|
|
31206
31749
|
@TableName = params['TableName']
|
31207
31750
|
@DatasourceId = params['DatasourceId']
|
31208
31751
|
@Description = params['Description']
|
31752
|
+
@ScheduleTimeZone = params['ScheduleTimeZone']
|
31209
31753
|
end
|
31210
31754
|
end
|
31211
31755
|
|
@@ -35895,10 +36439,13 @@ module TencentCloud
|
|
35895
36439
|
# @param TemplateId: 引用的代码模版id
|
35896
36440
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
35897
36441
|
# @type TemplateId: String
|
36442
|
+
# @param AllowRedoType: 允许重跑类 ALL 无论实例成功或者失败,都允许重跑 FAILURE 只有失败的实例允许重跑,成功的实例不允许重跑 NONE 无论成功或者失败,都不允许重跑
|
36443
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
36444
|
+
# @type AllowRedoType: String
|
35898
36445
|
|
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
|
36446
|
+
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
36447
|
|
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)
|
36448
|
+
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
36449
|
@TaskId = taskid
|
35903
36450
|
@VirtualTaskId = virtualtaskid
|
35904
36451
|
@VirtualFlag = virtualflag
|
@@ -35999,6 +36546,7 @@ module TencentCloud
|
|
35999
36546
|
@ConcurrentStrategy = concurrentstrategy
|
36000
36547
|
@ScheduleTimeZone = scheduletimezone
|
36001
36548
|
@TemplateId = templateid
|
36549
|
+
@AllowRedoType = allowredotype
|
36002
36550
|
end
|
36003
36551
|
|
36004
36552
|
def deserialize(params)
|
@@ -36171,6 +36719,7 @@ module TencentCloud
|
|
36171
36719
|
@ConcurrentStrategy = params['ConcurrentStrategy']
|
36172
36720
|
@ScheduleTimeZone = params['ScheduleTimeZone']
|
36173
36721
|
@TemplateId = params['TemplateId']
|
36722
|
+
@AllowRedoType = params['AllowRedoType']
|
36174
36723
|
end
|
36175
36724
|
end
|
36176
36725
|
|
@@ -37119,10 +37668,12 @@ module TencentCloud
|
|
37119
37668
|
# no:任务无需满足自依赖
|
37120
37669
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
37121
37670
|
# @type SelfWorkFlowDependType: String
|
37671
|
+
# @param AllowRedoType: 允许重跑类型,ALL 表示无论实例运行成功还是失败都允许重跑,NONE表示无论成功或者失败都不允许重跑,FAILURE 表示只有运行失败才能重跑
|
37672
|
+
# @type AllowRedoType: String
|
37122
37673
|
|
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
|
37674
|
+
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
37675
|
|
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)
|
37676
|
+
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
37677
|
@TaskId = taskid
|
37127
37678
|
@VirtualTaskId = virtualtaskid
|
37128
37679
|
@VirtualFlag = virtualflag
|
@@ -37213,6 +37764,7 @@ module TencentCloud
|
|
37213
37764
|
@ExtResourceFlag = extresourceflag
|
37214
37765
|
@NewParentTaskInfos = newparenttaskinfos
|
37215
37766
|
@SelfWorkFlowDependType = selfworkflowdependtype
|
37767
|
+
@AllowRedoType = allowredotype
|
37216
37768
|
end
|
37217
37769
|
|
37218
37770
|
def deserialize(params)
|
@@ -37338,6 +37890,7 @@ module TencentCloud
|
|
37338
37890
|
end
|
37339
37891
|
end
|
37340
37892
|
@SelfWorkFlowDependType = params['SelfWorkFlowDependType']
|
37893
|
+
@AllowRedoType = params['AllowRedoType']
|
37341
37894
|
end
|
37342
37895
|
end
|
37343
37896
|
|
@@ -39655,10 +40208,16 @@ module TencentCloud
|
|
39655
40208
|
# - manual 手动工作流
|
39656
40209
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
39657
40210
|
# @type WorkflowType: String
|
40211
|
+
# @param UpdateUser: 最近更新人名称
|
40212
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
40213
|
+
# @type UpdateUser: String
|
40214
|
+
# @param UpdateUserId: 最近更新人id
|
40215
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
40216
|
+
# @type UpdateUserId: String
|
39658
40217
|
|
39659
|
-
attr_accessor :WorkflowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkflowDesc, :WorkflowName, :FolderId, :SparkParams, :Tasks, :Links, :Params, :WorkflowType
|
40218
|
+
attr_accessor :WorkflowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkflowDesc, :WorkflowName, :FolderId, :SparkParams, :Tasks, :Links, :Params, :WorkflowType, :UpdateUser, :UpdateUserId
|
39660
40219
|
|
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)
|
40220
|
+
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
40221
|
@WorkflowId = workflowid
|
39663
40222
|
@Owner = owner
|
39664
40223
|
@OwnerId = ownerid
|
@@ -39673,6 +40232,8 @@ module TencentCloud
|
|
39673
40232
|
@Links = links
|
39674
40233
|
@Params = params
|
39675
40234
|
@WorkflowType = workflowtype
|
40235
|
+
@UpdateUser = updateuser
|
40236
|
+
@UpdateUserId = updateuserid
|
39676
40237
|
end
|
39677
40238
|
|
39678
40239
|
def deserialize(params)
|
@@ -39711,6 +40272,8 @@ module TencentCloud
|
|
39711
40272
|
end
|
39712
40273
|
end
|
39713
40274
|
@WorkflowType = params['WorkflowType']
|
40275
|
+
@UpdateUser = params['UpdateUser']
|
40276
|
+
@UpdateUserId = params['UpdateUserId']
|
39714
40277
|
end
|
39715
40278
|
end
|
39716
40279
|
|
@@ -39758,13 +40321,16 @@ module TencentCloud
|
|
39758
40321
|
# @param ModifyTime: 最近更新时间
|
39759
40322
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
39760
40323
|
# @type ModifyTime: String
|
40324
|
+
# @param ModifyUser: 最近更新人
|
40325
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
40326
|
+
# @type ModifyUser: String
|
39761
40327
|
# @param WorkflowType: 工作流类型,周期cycle,手动manual
|
39762
40328
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
39763
40329
|
# @type WorkflowType: String
|
39764
40330
|
|
39765
|
-
attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :WorkflowType
|
40331
|
+
attr_accessor :TaskCount, :FolderName, :WorkFlowId, :Owner, :OwnerId, :ProjectId, :ProjectIdent, :ProjectName, :WorkFlowDesc, :WorkFlowName, :FolderId, :Status, :CreateTime, :ModifyTime, :ModifyUser, :WorkflowType
|
39766
40332
|
|
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)
|
40333
|
+
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
40334
|
@TaskCount = taskcount
|
39769
40335
|
@FolderName = foldername
|
39770
40336
|
@WorkFlowId = workflowid
|
@@ -39779,6 +40345,7 @@ module TencentCloud
|
|
39779
40345
|
@Status = status
|
39780
40346
|
@CreateTime = createtime
|
39781
40347
|
@ModifyTime = modifytime
|
40348
|
+
@ModifyUser = modifyuser
|
39782
40349
|
@WorkflowType = workflowtype
|
39783
40350
|
end
|
39784
40351
|
|
@@ -39797,6 +40364,7 @@ module TencentCloud
|
|
39797
40364
|
@Status = params['Status']
|
39798
40365
|
@CreateTime = params['CreateTime']
|
39799
40366
|
@ModifyTime = params['ModifyTime']
|
40367
|
+
@ModifyUser = params['ModifyUser']
|
39800
40368
|
@WorkflowType = params['WorkflowType']
|
39801
40369
|
end
|
39802
40370
|
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.1113
|
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-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|