tencentcloud-sdk-wedata 3.0.615 → 3.0.616

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef83e6a0fa4296d9fe6cdec88b3e785b2bcaf533
4
- data.tar.gz: 510da4b4adfccb3a4a1e1ad314d0c0dc2380a2ab
3
+ metadata.gz: 9c0f6d829b62ca3dc4172a66bea5da7d7eceaf05
4
+ data.tar.gz: 80536477f8f76546be441c16b220dac5a8af9de1
5
5
  SHA512:
6
- metadata.gz: 33cd54437fd4ad2e7abeed68db57ed0e5a226b0cd81d6dec0dd0210a9462ef9eba266b7668172a77ec2dd801ae359076756593abb1f2f5e548c1eb76998ce4f9
7
- data.tar.gz: 121c69c068ecf3d5558ea4f9aaac391625ca1b1ddde2237d816e1eafafbfd058f9b70b784c0b52852b050476791a299c585b1ebca1ce01b3ec6c5b58c152a28f
6
+ metadata.gz: 1a3ec8264df644bee228fbfeaced4744abce162f081a3d7b0ff22fd799101071b35417404bee77f778fdd93a040f3eab9f722a035937bcd60da1b923917de97b
7
+ data.tar.gz: 53336746ed9c7f5808194656845a37e55f9367c4d8ac4731557ac10be16f5ad6b5caebdc72bdbd276d83b576c7b7691d237ca2bd2565608d752753ca2f17adc1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.615
1
+ 3.0.616
@@ -77,6 +77,30 @@ module TencentCloud
77
77
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
78
78
  end
79
79
 
80
+ # Ds批量删除任务,仅对任务状态为”已停止“有效;
81
+
82
+ # @param request: Request instance for BatchDeleteTasksDs.
83
+ # @type request: :class:`Tencentcloud::wedata::V20210820::BatchDeleteTasksDsRequest`
84
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::BatchDeleteTasksDsResponse`
85
+ def BatchDeleteTasksDs(request)
86
+ body = send_request('BatchDeleteTasksDs', request.serialize)
87
+ response = JSON.parse(body)
88
+ if response['Response'].key?('Error') == false
89
+ model = BatchDeleteTasksDsResponse.new
90
+ model.deserialize(response['Response'])
91
+ model
92
+ else
93
+ code = response['Response']['Error']['Code']
94
+ message = response['Response']['Error']['Message']
95
+ reqid = response['Response']['RequestId']
96
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
97
+ end
98
+ rescue TencentCloud::Common::TencentCloudSDKException => e
99
+ raise e
100
+ rescue StandardError => e
101
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
102
+ end
103
+
80
104
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
81
105
  # 批量删除任务,仅对任务状态为”已停止“有效;
82
106
 
@@ -1045,6 +1069,30 @@ module TencentCloud
1045
1069
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1046
1070
  end
1047
1071
 
1072
+ # 开发空间-批量删除目录和文件
1073
+
1074
+ # @param request: Request instance for DeleteFilePath.
1075
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DeleteFilePathRequest`
1076
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteFilePathResponse`
1077
+ def DeleteFilePath(request)
1078
+ body = send_request('DeleteFilePath', request.serialize)
1079
+ response = JSON.parse(body)
1080
+ if response['Response'].key?('Error') == false
1081
+ model = DeleteFilePathResponse.new
1082
+ model.deserialize(response['Response'])
1083
+ model
1084
+ else
1085
+ code = response['Response']['Error']['Code']
1086
+ message = response['Response']['Error']['Message']
1087
+ reqid = response['Response']['RequestId']
1088
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1089
+ end
1090
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1091
+ raise e
1092
+ rescue StandardError => e
1093
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1094
+ end
1095
+
1048
1096
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
1049
1097
  # 删除文件夹
1050
1098
 
@@ -1166,6 +1214,30 @@ module TencentCloud
1166
1214
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1167
1215
  end
1168
1216
 
1217
+ # 删除项目参数
1218
+
1219
+ # @param request: Request instance for DeleteProjectParamDs.
1220
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DeleteProjectParamDsRequest`
1221
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteProjectParamDsResponse`
1222
+ def DeleteProjectParamDs(request)
1223
+ body = send_request('DeleteProjectParamDs', request.serialize)
1224
+ response = JSON.parse(body)
1225
+ if response['Response'].key?('Error') == false
1226
+ model = DeleteProjectParamDsResponse.new
1227
+ model.deserialize(response['Response'])
1228
+ model
1229
+ else
1230
+ code = response['Response']['Error']['Code']
1231
+ message = response['Response']['Error']['Message']
1232
+ reqid = response['Response']['RequestId']
1233
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1234
+ end
1235
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1236
+ raise e
1237
+ rescue StandardError => e
1238
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1239
+ end
1240
+
1169
1241
  # 资源管理删除资源
1170
1242
 
1171
1243
  # @param request: Request instance for DeleteResource.
@@ -1190,6 +1262,30 @@ module TencentCloud
1190
1262
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1191
1263
  end
1192
1264
 
1265
+ # 资源管理-批量删除资源文件
1266
+
1267
+ # @param request: Request instance for DeleteResourceFiles.
1268
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DeleteResourceFilesRequest`
1269
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteResourceFilesResponse`
1270
+ def DeleteResourceFiles(request)
1271
+ body = send_request('DeleteResourceFiles', request.serialize)
1272
+ response = JSON.parse(body)
1273
+ if response['Response'].key?('Error') == false
1274
+ model = DeleteResourceFilesResponse.new
1275
+ model.deserialize(response['Response'])
1276
+ model
1277
+ else
1278
+ code = response['Response']['Error']['Code']
1279
+ message = response['Response']['Error']['Message']
1280
+ reqid = response['Response']['RequestId']
1281
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1282
+ end
1283
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1284
+ raise e
1285
+ rescue StandardError => e
1286
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1287
+ end
1288
+
1193
1289
  # 删除质量规则接口
1194
1290
 
1195
1291
  # @param request: Request instance for DeleteRule.
@@ -1262,6 +1358,30 @@ module TencentCloud
1262
1358
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1263
1359
  end
1264
1360
 
1361
+ # 删除任务Ds
1362
+
1363
+ # @param request: Request instance for DeleteTaskDs.
1364
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DeleteTaskDsRequest`
1365
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteTaskDsResponse`
1366
+ def DeleteTaskDs(request)
1367
+ body = send_request('DeleteTaskDs', request.serialize)
1368
+ response = JSON.parse(body)
1369
+ if response['Response'].key?('Error') == false
1370
+ model = DeleteTaskDsResponse.new
1371
+ model.deserialize(response['Response'])
1372
+ model
1373
+ else
1374
+ code = response['Response']['Error']['Code']
1375
+ message = response['Response']['Error']['Message']
1376
+ reqid = response['Response']['RequestId']
1377
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1378
+ end
1379
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1380
+ raise e
1381
+ rescue StandardError => e
1382
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1383
+ end
1384
+
1265
1385
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
1266
1386
  # 删除工作流
1267
1387
 
@@ -4437,6 +4557,30 @@ module TencentCloud
4437
4557
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4438
4558
  end
4439
4559
 
4560
+ # 删除编排空间工作流
4561
+
4562
+ # @param request: Request instance for RemoveWorkflowDs.
4563
+ # @type request: :class:`Tencentcloud::wedata::V20210820::RemoveWorkflowDsRequest`
4564
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::RemoveWorkflowDsResponse`
4565
+ def RemoveWorkflowDs(request)
4566
+ body = send_request('RemoveWorkflowDs', request.serialize)
4567
+ response = JSON.parse(body)
4568
+ if response['Response'].key?('Error') == false
4569
+ model = RemoveWorkflowDsResponse.new
4570
+ model.deserialize(response['Response'])
4571
+ model
4572
+ else
4573
+ code = response['Response']['Error']['Code']
4574
+ message = response['Response']['Error']['Message']
4575
+ reqid = response['Response']['RequestId']
4576
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4577
+ end
4578
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4579
+ raise e
4580
+ rescue StandardError => e
4581
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4582
+ end
4583
+
4440
4584
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
4441
4585
  # 实例批量重跑
4442
4586
 
@@ -4680,6 +4824,30 @@ module TencentCloud
4680
4824
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4681
4825
  end
4682
4826
 
4827
+ # 即席分析提交SQL任务
4828
+
4829
+ # @param request: Request instance for SubmitSqlTask.
4830
+ # @type request: :class:`Tencentcloud::wedata::V20210820::SubmitSqlTaskRequest`
4831
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitSqlTaskResponse`
4832
+ def SubmitSqlTask(request)
4833
+ body = send_request('SubmitSqlTask', request.serialize)
4834
+ response = JSON.parse(body)
4835
+ if response['Response'].key?('Error') == false
4836
+ model = SubmitSqlTaskResponse.new
4837
+ model.deserialize(response['Response'])
4838
+ model
4839
+ else
4840
+ code = response['Response']['Error']['Code']
4841
+ message = response['Response']['Error']['Message']
4842
+ reqid = response['Response']['RequestId']
4843
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4844
+ end
4845
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4846
+ raise e
4847
+ rescue StandardError => e
4848
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4849
+ end
4850
+
4683
4851
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
4684
4852
  # 提交任务
4685
4853
 
@@ -4705,6 +4873,30 @@ module TencentCloud
4705
4873
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4706
4874
  end
4707
4875
 
4876
+ # 无
4877
+
4878
+ # @param request: Request instance for SubmitTaskTestRun.
4879
+ # @type request: :class:`Tencentcloud::wedata::V20210820::SubmitTaskTestRunRequest`
4880
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitTaskTestRunResponse`
4881
+ def SubmitTaskTestRun(request)
4882
+ body = send_request('SubmitTaskTestRun', request.serialize)
4883
+ response = JSON.parse(body)
4884
+ if response['Response'].key?('Error') == false
4885
+ model = SubmitTaskTestRunResponse.new
4886
+ model.deserialize(response['Response'])
4887
+ model
4888
+ else
4889
+ code = response['Response']['Error']['Code']
4890
+ message = response['Response']['Error']['Message']
4891
+ reqid = response['Response']['RequestId']
4892
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4893
+ end
4894
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4895
+ raise e
4896
+ rescue StandardError => e
4897
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4898
+ end
4899
+
4708
4900
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
4709
4901
  # 提交工作流
4710
4902
 
@@ -17,6 +17,81 @@
17
17
  module TencentCloud
18
18
  module Wedata
19
19
  module V20210820
20
+ # 子任务记录
21
+ class AdhocDetail < TencentCloud::Common::AbstractModel
22
+ # @param Id: 子任务记录Id
23
+ # @type Id: Integer
24
+ # @param ScriptContent: 脚本内容
25
+ # @type ScriptContent: String
26
+ # @param StartTime: 任务启动时间
27
+ # 注意:此字段可能返回 null,表示取不到有效值。
28
+ # @type StartTime: String
29
+ # @param EndTime: 任务结束时间
30
+ # 注意:此字段可能返回 null,表示取不到有效值。
31
+ # @type EndTime: String
32
+ # @param Status: 当前任务状态
33
+ # @type Status: String
34
+ # @param RecordId: 提交任务id
35
+ # @type RecordId: Integer
36
+
37
+ attr_accessor :Id, :ScriptContent, :StartTime, :EndTime, :Status, :RecordId
38
+
39
+ def initialize(id=nil, scriptcontent=nil, starttime=nil, endtime=nil, status=nil, recordid=nil)
40
+ @Id = id
41
+ @ScriptContent = scriptcontent
42
+ @StartTime = starttime
43
+ @EndTime = endtime
44
+ @Status = status
45
+ @RecordId = recordid
46
+ end
47
+
48
+ def deserialize(params)
49
+ @Id = params['Id']
50
+ @ScriptContent = params['ScriptContent']
51
+ @StartTime = params['StartTime']
52
+ @EndTime = params['EndTime']
53
+ @Status = params['Status']
54
+ @RecordId = params['RecordId']
55
+ end
56
+ end
57
+
58
+ # 任务提交记录
59
+ class AdhocRecord < TencentCloud::Common::AbstractModel
60
+ # @param Id: 任务提交记录id
61
+ # 注意:此字段可能返回 null,表示取不到有效值。
62
+ # @type Id: Integer
63
+ # @param ScriptContent: 脚本内容
64
+ # 注意:此字段可能返回 null,表示取不到有效值。
65
+ # @type ScriptContent: String
66
+ # @param CreateTime: 任务提交时间
67
+ # 注意:此字段可能返回 null,表示取不到有效值。
68
+ # @type CreateTime: String
69
+ # @param Status: 任务状态
70
+ # 注意:此字段可能返回 null,表示取不到有效值。
71
+ # @type Status: String
72
+ # @param InstanceId: 实例id
73
+ # 注意:此字段可能返回 null,表示取不到有效值。
74
+ # @type InstanceId: String
75
+
76
+ attr_accessor :Id, :ScriptContent, :CreateTime, :Status, :InstanceId
77
+
78
+ def initialize(id=nil, scriptcontent=nil, createtime=nil, status=nil, instanceid=nil)
79
+ @Id = id
80
+ @ScriptContent = scriptcontent
81
+ @CreateTime = createtime
82
+ @Status = status
83
+ @InstanceId = instanceid
84
+ end
85
+
86
+ def deserialize(params)
87
+ @Id = params['Id']
88
+ @ScriptContent = params['ScriptContent']
89
+ @CreateTime = params['CreateTime']
90
+ @Status = params['Status']
91
+ @InstanceId = params['InstanceId']
92
+ end
93
+ end
94
+
20
95
  # 告警事件详情
21
96
  class AlarmEventInfo < TencentCloud::Common::AbstractModel
22
97
  # @param AlarmId: 告警ID
@@ -383,6 +458,64 @@ module TencentCloud
383
458
  end
384
459
  end
385
460
 
461
+ # BatchDeleteTasksDs请求参数结构体
462
+ class BatchDeleteTasksDsRequest < TencentCloud::Common::AbstractModel
463
+ # @param TaskIdList: 批量删除的任务TaskId
464
+ # @type TaskIdList: Array
465
+ # @param DeleteMode: true : 删除后下游任务可正常运行
466
+ # false:删除后下游任务不可运行
467
+ # @type DeleteMode: Boolean
468
+ # @param OperateInform: true:通知下游任务责任人
469
+ # false: 不通知下游任务责任人
470
+ # @type OperateInform: Boolean
471
+ # @param ProjectId: 项目Id
472
+ # @type ProjectId: String
473
+ # @param DeleteScript: true: 删除任务引用的脚本
474
+ # false: 不删除任务引用的脚本
475
+ # @type DeleteScript: Boolean
476
+
477
+ attr_accessor :TaskIdList, :DeleteMode, :OperateInform, :ProjectId, :DeleteScript
478
+
479
+ def initialize(taskidlist=nil, deletemode=nil, operateinform=nil, projectid=nil, deletescript=nil)
480
+ @TaskIdList = taskidlist
481
+ @DeleteMode = deletemode
482
+ @OperateInform = operateinform
483
+ @ProjectId = projectid
484
+ @DeleteScript = deletescript
485
+ end
486
+
487
+ def deserialize(params)
488
+ @TaskIdList = params['TaskIdList']
489
+ @DeleteMode = params['DeleteMode']
490
+ @OperateInform = params['OperateInform']
491
+ @ProjectId = params['ProjectId']
492
+ @DeleteScript = params['DeleteScript']
493
+ end
494
+ end
495
+
496
+ # BatchDeleteTasksDs返回参数结构体
497
+ class BatchDeleteTasksDsResponse < TencentCloud::Common::AbstractModel
498
+ # @param Data: 返回批量操作成功个数、失败个数、操作总数
499
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.BatchOperateResult`
500
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
501
+ # @type RequestId: String
502
+
503
+ attr_accessor :Data, :RequestId
504
+
505
+ def initialize(data=nil, requestid=nil)
506
+ @Data = data
507
+ @RequestId = requestid
508
+ end
509
+
510
+ def deserialize(params)
511
+ unless params['Data'].nil?
512
+ @Data = BatchOperateResult.new
513
+ @Data.deserialize(params['Data'])
514
+ end
515
+ @RequestId = params['RequestId']
516
+ end
517
+ end
518
+
386
519
  # BatchDeleteTasksNew请求参数结构体
387
520
  class BatchDeleteTasksNewRequest < TencentCloud::Common::AbstractModel
388
521
  # @param TaskIdList: 批量删除的任务TaskId
@@ -3578,6 +3711,62 @@ module TencentCloud
3578
3711
  end
3579
3712
  end
3580
3713
 
3714
+ # DeleteFilePath请求参数结构体
3715
+ class DeleteFilePathRequest < TencentCloud::Common::AbstractModel
3716
+ # @param ProjectId: 项目ID
3717
+ # @type ProjectId: String
3718
+ # @param ResourceIds: 资源ID
3719
+ # @type ResourceIds: Array
3720
+ # @param UseStatus: 使用状态
3721
+ # @type UseStatus: String
3722
+ # @param FilePaths: 文件路径
3723
+ # @type FilePaths: Array
3724
+
3725
+ attr_accessor :ProjectId, :ResourceIds, :UseStatus, :FilePaths
3726
+
3727
+ def initialize(projectid=nil, resourceids=nil, usestatus=nil, filepaths=nil)
3728
+ @ProjectId = projectid
3729
+ @ResourceIds = resourceids
3730
+ @UseStatus = usestatus
3731
+ @FilePaths = filepaths
3732
+ end
3733
+
3734
+ def deserialize(params)
3735
+ @ProjectId = params['ProjectId']
3736
+ @ResourceIds = params['ResourceIds']
3737
+ @UseStatus = params['UseStatus']
3738
+ @FilePaths = params['FilePaths']
3739
+ end
3740
+ end
3741
+
3742
+ # DeleteFilePath返回参数结构体
3743
+ class DeleteFilePathResponse < TencentCloud::Common::AbstractModel
3744
+ # @param UserFileList: 文件列表
3745
+ # 注意:此字段可能返回 null,表示取不到有效值。
3746
+ # @type UserFileList: Array
3747
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3748
+ # @type RequestId: String
3749
+
3750
+ attr_accessor :UserFileList, :RequestId
3751
+
3752
+ def initialize(userfilelist=nil, requestid=nil)
3753
+ @UserFileList = userfilelist
3754
+ @RequestId = requestid
3755
+ end
3756
+
3757
+ def deserialize(params)
3758
+ unless params['UserFileList'].nil?
3759
+ @UserFileList = []
3760
+ params['UserFileList'].each do |i|
3761
+ userfileinfo_tmp = UserFileInfo.new
3762
+ userfileinfo_tmp.deserialize(i)
3763
+ @UserFileList << userfileinfo_tmp
3764
+ end
3765
+ end
3766
+ @RequestId = params['RequestId']
3767
+ end
3768
+ end
3769
+
3581
3770
  # DeleteFolder请求参数结构体
3582
3771
  class DeleteFolderRequest < TencentCloud::Common::AbstractModel
3583
3772
  # @param ProjectId: 项目Id
@@ -3782,6 +3971,94 @@ module TencentCloud
3782
3971
  end
3783
3972
  end
3784
3973
 
3974
+ # DeleteProjectParamDs请求参数结构体
3975
+ class DeleteProjectParamDsRequest < TencentCloud::Common::AbstractModel
3976
+ # @param ParamKey: 参数名
3977
+ # @type ParamKey: String
3978
+ # @param ProjectId: 项目id
3979
+ # @type ProjectId: String
3980
+
3981
+ attr_accessor :ParamKey, :ProjectId
3982
+
3983
+ def initialize(paramkey=nil, projectid=nil)
3984
+ @ParamKey = paramkey
3985
+ @ProjectId = projectid
3986
+ end
3987
+
3988
+ def deserialize(params)
3989
+ @ParamKey = params['ParamKey']
3990
+ @ProjectId = params['ProjectId']
3991
+ end
3992
+ end
3993
+
3994
+ # DeleteProjectParamDs返回参数结构体
3995
+ class DeleteProjectParamDsResponse < TencentCloud::Common::AbstractModel
3996
+ # @param Data: 结果
3997
+ # @type Data: Boolean
3998
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3999
+ # @type RequestId: String
4000
+
4001
+ attr_accessor :Data, :RequestId
4002
+
4003
+ def initialize(data=nil, requestid=nil)
4004
+ @Data = data
4005
+ @RequestId = requestid
4006
+ end
4007
+
4008
+ def deserialize(params)
4009
+ @Data = params['Data']
4010
+ @RequestId = params['RequestId']
4011
+ end
4012
+ end
4013
+
4014
+ # DeleteResourceFiles请求参数结构体
4015
+ class DeleteResourceFilesRequest < TencentCloud::Common::AbstractModel
4016
+ # @param ProjectId: 项目id
4017
+ # @type ProjectId: String
4018
+ # @param UseStatus: 使用状态
4019
+ # @type UseStatus: Boolean
4020
+ # @param ResourceIds: 资源id列表
4021
+ # @type ResourceIds: Array
4022
+ # @param FilePaths: 资源路径列表
4023
+ # @type FilePaths: Array
4024
+
4025
+ attr_accessor :ProjectId, :UseStatus, :ResourceIds, :FilePaths
4026
+
4027
+ def initialize(projectid=nil, usestatus=nil, resourceids=nil, filepaths=nil)
4028
+ @ProjectId = projectid
4029
+ @UseStatus = usestatus
4030
+ @ResourceIds = resourceids
4031
+ @FilePaths = filepaths
4032
+ end
4033
+
4034
+ def deserialize(params)
4035
+ @ProjectId = params['ProjectId']
4036
+ @UseStatus = params['UseStatus']
4037
+ @ResourceIds = params['ResourceIds']
4038
+ @FilePaths = params['FilePaths']
4039
+ end
4040
+ end
4041
+
4042
+ # DeleteResourceFiles返回参数结构体
4043
+ class DeleteResourceFilesResponse < TencentCloud::Common::AbstractModel
4044
+ # @param Data: 资源批量删除结果
4045
+ # @type Data: Boolean
4046
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4047
+ # @type RequestId: String
4048
+
4049
+ attr_accessor :Data, :RequestId
4050
+
4051
+ def initialize(data=nil, requestid=nil)
4052
+ @Data = data
4053
+ @RequestId = requestid
4054
+ end
4055
+
4056
+ def deserialize(params)
4057
+ @Data = params['Data']
4058
+ @RequestId = params['RequestId']
4059
+ end
4060
+ end
4061
+
3785
4062
  # DeleteResource请求参数结构体
3786
4063
  class DeleteResourceRequest < TencentCloud::Common::AbstractModel
3787
4064
  # @param ProjectId: 项目ID
@@ -3954,6 +4231,67 @@ module TencentCloud
3954
4231
  end
3955
4232
  end
3956
4233
 
4234
+ # DeleteTaskDs请求参数结构体
4235
+ class DeleteTaskDsRequest < TencentCloud::Common::AbstractModel
4236
+ # @param ProjectId: 项目Id
4237
+ # @type ProjectId: String
4238
+ # @param DeleteScript: 是否删除脚本
4239
+ # @type DeleteScript: Boolean
4240
+ # @param OperateInform: 任务操作是否消息通知下游任务责任人
4241
+ # @type OperateInform: Boolean
4242
+ # @param TaskId: 任务ID
4243
+ # @type TaskId: String
4244
+ # @param VirtualTaskId: 虚拟任务id
4245
+ # @type VirtualTaskId: String
4246
+ # @param VirtualFlag: 虚拟任务标记
4247
+ # @type VirtualFlag: Boolean
4248
+ # @param DeleteMode: 任务删除方式
4249
+ # @type DeleteMode: Boolean
4250
+
4251
+ attr_accessor :ProjectId, :DeleteScript, :OperateInform, :TaskId, :VirtualTaskId, :VirtualFlag, :DeleteMode
4252
+
4253
+ def initialize(projectid=nil, deletescript=nil, operateinform=nil, taskid=nil, virtualtaskid=nil, virtualflag=nil, deletemode=nil)
4254
+ @ProjectId = projectid
4255
+ @DeleteScript = deletescript
4256
+ @OperateInform = operateinform
4257
+ @TaskId = taskid
4258
+ @VirtualTaskId = virtualtaskid
4259
+ @VirtualFlag = virtualflag
4260
+ @DeleteMode = deletemode
4261
+ end
4262
+
4263
+ def deserialize(params)
4264
+ @ProjectId = params['ProjectId']
4265
+ @DeleteScript = params['DeleteScript']
4266
+ @OperateInform = params['OperateInform']
4267
+ @TaskId = params['TaskId']
4268
+ @VirtualTaskId = params['VirtualTaskId']
4269
+ @VirtualFlag = params['VirtualFlag']
4270
+ @DeleteMode = params['DeleteMode']
4271
+ end
4272
+ end
4273
+
4274
+ # DeleteTaskDs返回参数结构体
4275
+ class DeleteTaskDsResponse < TencentCloud::Common::AbstractModel
4276
+ # @param Data: 无
4277
+ # 注意:此字段可能返回 null,表示取不到有效值。
4278
+ # @type Data: Boolean
4279
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4280
+ # @type RequestId: String
4281
+
4282
+ attr_accessor :Data, :RequestId
4283
+
4284
+ def initialize(data=nil, requestid=nil)
4285
+ @Data = data
4286
+ @RequestId = requestid
4287
+ end
4288
+
4289
+ def deserialize(params)
4290
+ @Data = params['Data']
4291
+ @RequestId = params['RequestId']
4292
+ end
4293
+ end
4294
+
3957
4295
  # DeleteWorkflowNew请求参数结构体
3958
4296
  class DeleteWorkflowNewRequest < TencentCloud::Common::AbstractModel
3959
4297
  # @param WorkFlowId: 工作流id
@@ -14852,30 +15190,70 @@ module TencentCloud
14852
15190
  end
14853
15191
  end
14854
15192
 
14855
- # RerunInstances请求参数结构体
14856
- class RerunInstancesRequest < TencentCloud::Common::AbstractModel
14857
- # @param ProjectId: 项目Id
15193
+ # RemoveWorkflowDs请求参数结构体
15194
+ class RemoveWorkflowDsRequest < TencentCloud::Common::AbstractModel
15195
+ # @param ProjectId: 项目ID
14858
15196
  # @type ProjectId: String
14859
- # @param Instances: 实例嵌套集合
14860
- # @type Instances: Array
14861
- # @param CheckFather: 检查父任务类型, true: 检查父任务; false: 不检查父任务
14862
- # @type CheckFather: Boolean
14863
- # @param RerunType: 重跑类型, 1: 自身; 3: 孩子; 2: 自身以及孩子
14864
- # @type RerunType: String
14865
- # @param DependentWay: 实例依赖方式, 1: 自依赖; 2: 任务依赖; 3: 自依赖及父子依赖
14866
- # @type DependentWay: String
14867
- # @param SkipEventListening: 重跑忽略事件监听与否
14868
- # @type SkipEventListening: Boolean
14869
- # @param SonInstanceType: 下游实例范围 1: 所在工作流 2: 所在项目 3: 所有跨工作流依赖的项目
14870
- # @type SonInstanceType: String
15197
+ # @param WorkflowId: 工作流ID
15198
+ # @type WorkflowId: String
14871
15199
 
14872
- attr_accessor :ProjectId, :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType
15200
+ attr_accessor :ProjectId, :WorkflowId
14873
15201
 
14874
- def initialize(projectid=nil, instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil)
15202
+ def initialize(projectid=nil, workflowid=nil)
14875
15203
  @ProjectId = projectid
14876
- @Instances = instances
14877
- @CheckFather = checkfather
14878
- @RerunType = reruntype
15204
+ @WorkflowId = workflowid
15205
+ end
15206
+
15207
+ def deserialize(params)
15208
+ @ProjectId = params['ProjectId']
15209
+ @WorkflowId = params['WorkflowId']
15210
+ end
15211
+ end
15212
+
15213
+ # RemoveWorkflowDs返回参数结构体
15214
+ class RemoveWorkflowDsResponse < TencentCloud::Common::AbstractModel
15215
+ # @param Data: 工作流ID
15216
+ # @type Data: Boolean
15217
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
15218
+ # @type RequestId: String
15219
+
15220
+ attr_accessor :Data, :RequestId
15221
+
15222
+ def initialize(data=nil, requestid=nil)
15223
+ @Data = data
15224
+ @RequestId = requestid
15225
+ end
15226
+
15227
+ def deserialize(params)
15228
+ @Data = params['Data']
15229
+ @RequestId = params['RequestId']
15230
+ end
15231
+ end
15232
+
15233
+ # RerunInstances请求参数结构体
15234
+ class RerunInstancesRequest < TencentCloud::Common::AbstractModel
15235
+ # @param ProjectId: 项目Id
15236
+ # @type ProjectId: String
15237
+ # @param Instances: 实例嵌套集合
15238
+ # @type Instances: Array
15239
+ # @param CheckFather: 检查父任务类型, true: 检查父任务; false: 不检查父任务
15240
+ # @type CheckFather: Boolean
15241
+ # @param RerunType: 重跑类型, 1: 自身; 3: 孩子; 2: 自身以及孩子
15242
+ # @type RerunType: String
15243
+ # @param DependentWay: 实例依赖方式, 1: 自依赖; 2: 任务依赖; 3: 自依赖及父子依赖
15244
+ # @type DependentWay: String
15245
+ # @param SkipEventListening: 重跑忽略事件监听与否
15246
+ # @type SkipEventListening: Boolean
15247
+ # @param SonInstanceType: 下游实例范围 1: 所在工作流 2: 所在项目 3: 所有跨工作流依赖的项目
15248
+ # @type SonInstanceType: String
15249
+
15250
+ attr_accessor :ProjectId, :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType
15251
+
15252
+ def initialize(projectid=nil, instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil)
15253
+ @ProjectId = projectid
15254
+ @Instances = instances
15255
+ @CheckFather = checkfather
15256
+ @RerunType = reruntype
14879
15257
  @DependentWay = dependentway
14880
15258
  @SkipEventListening = skipeventlistening
14881
15259
  @SonInstanceType = soninstancetype
@@ -17528,6 +17906,81 @@ module TencentCloud
17528
17906
  end
17529
17907
  end
17530
17908
 
17909
+ # 无
17910
+ class StageCloudApiRequest < TencentCloud::Common::AbstractModel
17911
+ # @param ClusterId: 无
17912
+ # @type ClusterId: String
17913
+ # @param StageId: 无
17914
+ # @type StageId: String
17915
+ # @param JobId: 无
17916
+ # @type JobId: String
17917
+ # @param StageName: 无
17918
+ # @type StageName: String
17919
+ # @param Type: 无
17920
+ # @type Type: String
17921
+ # @param Mode: 无
17922
+ # @type Mode: String
17923
+ # @param Version: 无
17924
+ # @type Version: String
17925
+ # @param Queue: 无
17926
+ # @type Queue: String
17927
+ # @param Content: 无
17928
+ # @type Content: String
17929
+ # @param Parameters: 无
17930
+ # @type Parameters: Array
17931
+ # @param Description: 无
17932
+ # @type Description: String
17933
+ # @param ProjectId: 无
17934
+ # @type ProjectId: String
17935
+ # @param JobType: 无
17936
+ # @type JobType: String
17937
+ # @param WorkFlowId: 无
17938
+ # @type WorkFlowId: String
17939
+
17940
+ attr_accessor :ClusterId, :StageId, :JobId, :StageName, :Type, :Mode, :Version, :Queue, :Content, :Parameters, :Description, :ProjectId, :JobType, :WorkFlowId
17941
+
17942
+ def initialize(clusterid=nil, stageid=nil, jobid=nil, stagename=nil, type=nil, mode=nil, version=nil, queue=nil, content=nil, parameters=nil, description=nil, projectid=nil, jobtype=nil, workflowid=nil)
17943
+ @ClusterId = clusterid
17944
+ @StageId = stageid
17945
+ @JobId = jobid
17946
+ @StageName = stagename
17947
+ @Type = type
17948
+ @Mode = mode
17949
+ @Version = version
17950
+ @Queue = queue
17951
+ @Content = content
17952
+ @Parameters = parameters
17953
+ @Description = description
17954
+ @ProjectId = projectid
17955
+ @JobType = jobtype
17956
+ @WorkFlowId = workflowid
17957
+ end
17958
+
17959
+ def deserialize(params)
17960
+ @ClusterId = params['ClusterId']
17961
+ @StageId = params['StageId']
17962
+ @JobId = params['JobId']
17963
+ @StageName = params['StageName']
17964
+ @Type = params['Type']
17965
+ @Mode = params['Mode']
17966
+ @Version = params['Version']
17967
+ @Queue = params['Queue']
17968
+ @Content = params['Content']
17969
+ unless params['Parameters'].nil?
17970
+ @Parameters = []
17971
+ params['Parameters'].each do |i|
17972
+ property_tmp = Property.new
17973
+ property_tmp.deserialize(i)
17974
+ @Parameters << property_tmp
17975
+ end
17976
+ end
17977
+ @Description = params['Description']
17978
+ @ProjectId = params['ProjectId']
17979
+ @JobType = params['JobType']
17980
+ @WorkFlowId = params['WorkFlowId']
17981
+ end
17982
+ end
17983
+
17531
17984
  # StartIntegrationTask请求参数结构体
17532
17985
  class StartIntegrationTaskRequest < TencentCloud::Common::AbstractModel
17533
17986
  # @param TaskId: 任务id
@@ -17677,6 +18130,104 @@ module TencentCloud
17677
18130
  end
17678
18131
  end
17679
18132
 
18133
+ # SubmitSqlTask请求参数结构体
18134
+ class SubmitSqlTaskRequest < TencentCloud::Common::AbstractModel
18135
+ # @param DatabaseType: 数据库类型
18136
+ # @type DatabaseType: String
18137
+ # @param DatasourceId: 数据源Id
18138
+ # @type DatasourceId: Integer
18139
+ # @param GroupId: 资源组Id
18140
+ # @type GroupId: String
18141
+ # @param ScriptId: 脚本文件id
18142
+ # @type ScriptId: String
18143
+ # @param ProjectId: 项目id
18144
+ # @type ProjectId: String
18145
+ # @param DatabaseName: 数据库名称
18146
+ # @type DatabaseName: String
18147
+ # @param EngineId: 执行引擎实例ID
18148
+ # @type EngineId: String
18149
+ # @param ScriptContent: 脚本内容
18150
+ # @type ScriptContent: String
18151
+ # @param ResourceQueue: 资源队列
18152
+ # @type ResourceQueue: String
18153
+ # @param DatasourceType: 数据库类型
18154
+ # @type DatasourceType: String
18155
+ # @param ComputeResource: 计算资源名称
18156
+ # @type ComputeResource: String
18157
+ # @param RunParams: 高级运行参数
18158
+ # @type RunParams: String
18159
+ # @param ConfParams: 高级设置
18160
+ # @type ConfParams: String
18161
+
18162
+ attr_accessor :DatabaseType, :DatasourceId, :GroupId, :ScriptId, :ProjectId, :DatabaseName, :EngineId, :ScriptContent, :ResourceQueue, :DatasourceType, :ComputeResource, :RunParams, :ConfParams
18163
+
18164
+ def initialize(databasetype=nil, datasourceid=nil, groupid=nil, scriptid=nil, projectid=nil, databasename=nil, engineid=nil, scriptcontent=nil, resourcequeue=nil, datasourcetype=nil, computeresource=nil, runparams=nil, confparams=nil)
18165
+ @DatabaseType = databasetype
18166
+ @DatasourceId = datasourceid
18167
+ @GroupId = groupid
18168
+ @ScriptId = scriptid
18169
+ @ProjectId = projectid
18170
+ @DatabaseName = databasename
18171
+ @EngineId = engineid
18172
+ @ScriptContent = scriptcontent
18173
+ @ResourceQueue = resourcequeue
18174
+ @DatasourceType = datasourcetype
18175
+ @ComputeResource = computeresource
18176
+ @RunParams = runparams
18177
+ @ConfParams = confparams
18178
+ end
18179
+
18180
+ def deserialize(params)
18181
+ @DatabaseType = params['DatabaseType']
18182
+ @DatasourceId = params['DatasourceId']
18183
+ @GroupId = params['GroupId']
18184
+ @ScriptId = params['ScriptId']
18185
+ @ProjectId = params['ProjectId']
18186
+ @DatabaseName = params['DatabaseName']
18187
+ @EngineId = params['EngineId']
18188
+ @ScriptContent = params['ScriptContent']
18189
+ @ResourceQueue = params['ResourceQueue']
18190
+ @DatasourceType = params['DatasourceType']
18191
+ @ComputeResource = params['ComputeResource']
18192
+ @RunParams = params['RunParams']
18193
+ @ConfParams = params['ConfParams']
18194
+ end
18195
+ end
18196
+
18197
+ # SubmitSqlTask返回参数结构体
18198
+ class SubmitSqlTaskResponse < TencentCloud::Common::AbstractModel
18199
+ # @param Record: 任务提交记录
18200
+ # @type Record: :class:`Tencentcloud::Wedata.v20210820.models.AdhocRecord`
18201
+ # @param Details: 子任务记录列表
18202
+ # @type Details: Array
18203
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18204
+ # @type RequestId: String
18205
+
18206
+ attr_accessor :Record, :Details, :RequestId
18207
+
18208
+ def initialize(record=nil, details=nil, requestid=nil)
18209
+ @Record = record
18210
+ @Details = details
18211
+ @RequestId = requestid
18212
+ end
18213
+
18214
+ def deserialize(params)
18215
+ unless params['Record'].nil?
18216
+ @Record = AdhocRecord.new
18217
+ @Record.deserialize(params['Record'])
18218
+ end
18219
+ unless params['Details'].nil?
18220
+ @Details = []
18221
+ params['Details'].each do |i|
18222
+ adhocdetail_tmp = AdhocDetail.new
18223
+ adhocdetail_tmp.deserialize(i)
18224
+ @Details << adhocdetail_tmp
18225
+ end
18226
+ end
18227
+ @RequestId = params['RequestId']
18228
+ end
18229
+ end
18230
+
17680
18231
  # SubmitTask请求参数结构体
17681
18232
  class SubmitTaskRequest < TencentCloud::Common::AbstractModel
17682
18233
  # @param ProjectId: 项目Id
@@ -17725,6 +18276,85 @@ module TencentCloud
17725
18276
  end
17726
18277
  end
17727
18278
 
18279
+ # SubmitTaskTestRun请求参数结构体
18280
+ class SubmitTaskTestRunRequest < TencentCloud::Common::AbstractModel
18281
+ # @param TaskIds: 无
18282
+ # @type TaskIds: String
18283
+ # @param ProjectId: 无
18284
+ # @type ProjectId: String
18285
+ # @param WorkFlowId: 无
18286
+ # @type WorkFlowId: String
18287
+ # @param Name: 无
18288
+ # @type Name: String
18289
+ # @param Tasks: 无
18290
+ # @type Tasks: Array
18291
+ # @param Description: 无
18292
+ # @type Description: String
18293
+ # @param RunParams: 无
18294
+ # @type RunParams: String
18295
+ # @param ScriptContent: 无
18296
+ # @type ScriptContent: String
18297
+ # @param VersionId: 无
18298
+ # @type VersionId: String
18299
+
18300
+ attr_accessor :TaskIds, :ProjectId, :WorkFlowId, :Name, :Tasks, :Description, :RunParams, :ScriptContent, :VersionId
18301
+
18302
+ def initialize(taskids=nil, projectid=nil, workflowid=nil, name=nil, tasks=nil, description=nil, runparams=nil, scriptcontent=nil, versionid=nil)
18303
+ @TaskIds = taskids
18304
+ @ProjectId = projectid
18305
+ @WorkFlowId = workflowid
18306
+ @Name = name
18307
+ @Tasks = tasks
18308
+ @Description = description
18309
+ @RunParams = runparams
18310
+ @ScriptContent = scriptcontent
18311
+ @VersionId = versionid
18312
+ end
18313
+
18314
+ def deserialize(params)
18315
+ @TaskIds = params['TaskIds']
18316
+ @ProjectId = params['ProjectId']
18317
+ @WorkFlowId = params['WorkFlowId']
18318
+ @Name = params['Name']
18319
+ unless params['Tasks'].nil?
18320
+ @Tasks = []
18321
+ params['Tasks'].each do |i|
18322
+ stagecloudapirequest_tmp = StageCloudApiRequest.new
18323
+ stagecloudapirequest_tmp.deserialize(i)
18324
+ @Tasks << stagecloudapirequest_tmp
18325
+ end
18326
+ end
18327
+ @Description = params['Description']
18328
+ @RunParams = params['RunParams']
18329
+ @ScriptContent = params['ScriptContent']
18330
+ @VersionId = params['VersionId']
18331
+ end
18332
+ end
18333
+
18334
+ # SubmitTaskTestRun返回参数结构体
18335
+ class SubmitTaskTestRunResponse < TencentCloud::Common::AbstractModel
18336
+ # @param JobId: 无
18337
+ # @type JobId: Integer
18338
+ # @param RecordId: 无
18339
+ # @type RecordId: Array
18340
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
18341
+ # @type RequestId: String
18342
+
18343
+ attr_accessor :JobId, :RecordId, :RequestId
18344
+
18345
+ def initialize(jobid=nil, recordid=nil, requestid=nil)
18346
+ @JobId = jobid
18347
+ @RecordId = recordid
18348
+ @RequestId = requestid
18349
+ end
18350
+
18351
+ def deserialize(params)
18352
+ @JobId = params['JobId']
18353
+ @RecordId = params['RecordId']
18354
+ @RequestId = params['RequestId']
18355
+ end
18356
+ end
18357
+
17728
18358
  # 提交工作流实体
17729
18359
  class SubmitWorkflow < TencentCloud::Common::AbstractModel
17730
18360
  # @param TaskIds: 被提交的任务id集合
@@ -18577,10 +19207,20 @@ module TencentCloud
18577
19207
  # @param CreateTime: 任务创建时间
18578
19208
  # 注意:此字段可能返回 null,表示取不到有效值。
18579
19209
  # @type CreateTime: String
19210
+ # @param UserId: UserId
19211
+ # 注意:此字段可能返回 null,表示取不到有效值。
19212
+ # @type UserId: String
19213
+ # @param OwnerId: OwnerId
19214
+ # 注意:此字段可能返回 null,表示取不到有效值。
19215
+ # @type OwnerId: String
19216
+ # @param TenantId: TenantId
18580
19217
 
18581
- attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :ProjectName, :ProjectIdent, :Status, :TaskTypeId, :TaskTypeDesc, :ProjectId, :FolderName, :FolderId, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :InCharge, :CycleUnit, :LeftCoordinate, :TopCoordinate, :VirtualFlag, :TaskAction, :DelayTime, :ExecutionStartTime, :ExecutionEndTime, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :CreateTime
19218
+ # 注意:此字段可能返回 null,表示取不到有效值。
19219
+ # @type TenantId: String
19220
+
19221
+ attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :ProjectName, :ProjectIdent, :Status, :TaskTypeId, :TaskTypeDesc, :ProjectId, :FolderName, :FolderId, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :InCharge, :CycleUnit, :LeftCoordinate, :TopCoordinate, :VirtualFlag, :TaskAction, :DelayTime, :ExecutionStartTime, :ExecutionEndTime, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :CreateTime, :UserId, :OwnerId, :TenantId
18582
19222
 
18583
- def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, projectname=nil, projectident=nil, status=nil, tasktypeid=nil, tasktypedesc=nil, projectid=nil, foldername=nil, folderid=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, incharge=nil, cycleunit=nil, leftcoordinate=nil, topcoordinate=nil, virtualflag=nil, taskaction=nil, delaytime=nil, executionstarttime=nil, executionendtime=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, alarmtype=nil, createtime=nil)
19223
+ def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, projectname=nil, projectident=nil, status=nil, tasktypeid=nil, tasktypedesc=nil, projectid=nil, foldername=nil, folderid=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, incharge=nil, cycleunit=nil, leftcoordinate=nil, topcoordinate=nil, virtualflag=nil, taskaction=nil, delaytime=nil, executionstarttime=nil, executionendtime=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, alarmtype=nil, createtime=nil, userid=nil, ownerid=nil, tenantid=nil)
18584
19224
  @TaskId = taskid
18585
19225
  @TaskName = taskname
18586
19226
  @WorkflowId = workflowid
@@ -18612,6 +19252,9 @@ module TencentCloud
18612
19252
  @TargetServiceType = targetservicetype
18613
19253
  @AlarmType = alarmtype
18614
19254
  @CreateTime = createtime
19255
+ @UserId = userid
19256
+ @OwnerId = ownerid
19257
+ @TenantId = tenantid
18615
19258
  end
18616
19259
 
18617
19260
  def deserialize(params)
@@ -18646,6 +19289,9 @@ module TencentCloud
18646
19289
  @TargetServiceType = params['TargetServiceType']
18647
19290
  @AlarmType = params['AlarmType']
18648
19291
  @CreateTime = params['CreateTime']
19292
+ @UserId = params['UserId']
19293
+ @OwnerId = params['OwnerId']
19294
+ @TenantId = params['TenantId']
18649
19295
  end
18650
19296
  end
18651
19297
 
@@ -19888,6 +20534,145 @@ module TencentCloud
19888
20534
  end
19889
20535
  end
19890
20536
 
20537
+ # 开发空间-获取数据开发脚本信息响应体
20538
+ class UserFileInfo < TencentCloud::Common::AbstractModel
20539
+ # @param ResourceId: 资源ID
20540
+ # 注意:此字段可能返回 null,表示取不到有效值。
20541
+ # @type ResourceId: String
20542
+ # @param FileName: 文件名
20543
+ # 注意:此字段可能返回 null,表示取不到有效值。
20544
+ # @type FileName: String
20545
+ # @param FileExtensionType: 文件类型,如 jar zip 等
20546
+ # 注意:此字段可能返回 null,表示取不到有效值。
20547
+ # @type FileExtensionType: String
20548
+ # @param Type: 文件上传类型,资源管理为 resource
20549
+ # 注意:此字段可能返回 null,表示取不到有效值。
20550
+ # @type Type: String
20551
+ # @param Md5Value: 文件MD5值
20552
+ # 注意:此字段可能返回 null,表示取不到有效值。
20553
+ # @type Md5Value: String
20554
+ # @param CreateTime: 创建时间
20555
+ # 注意:此字段可能返回 null,表示取不到有效值。
20556
+ # @type CreateTime: String
20557
+ # @param UpdateTime: 更新时间
20558
+ # 注意:此字段可能返回 null,表示取不到有效值。
20559
+ # @type UpdateTime: String
20560
+ # @param Size: 文件大小,单位为字节
20561
+ # 注意:此字段可能返回 null,表示取不到有效值。
20562
+ # @type Size: Integer
20563
+ # @param LocalPath: 本地路径
20564
+ # 注意:此字段可能返回 null,表示取不到有效值。
20565
+ # @type LocalPath: String
20566
+ # @param LocalTempPath: 本地临时路径
20567
+ # 注意:此字段可能返回 null,表示取不到有效值。
20568
+ # @type LocalTempPath: String
20569
+ # @param RemotePath: 远程路径
20570
+ # 注意:此字段可能返回 null,表示取不到有效值。
20571
+ # @type RemotePath: String
20572
+ # @param OwnerName: 文件拥有者名字
20573
+ # 注意:此字段可能返回 null,表示取不到有效值。
20574
+ # @type OwnerName: String
20575
+ # @param Owner: 文件拥有者uin
20576
+ # 注意:此字段可能返回 null,表示取不到有效值。
20577
+ # @type Owner: String
20578
+ # @param PathDepth: 文件深度
20579
+ # 注意:此字段可能返回 null,表示取不到有效值。
20580
+ # @type PathDepth: Integer
20581
+ # @param ProjectId: 项目ID
20582
+ # 注意:此字段可能返回 null,表示取不到有效值。
20583
+ # @type ProjectId: String
20584
+ # @param ExtraInfo: 附加信息
20585
+ # 注意:此字段可能返回 null,表示取不到有效值。
20586
+ # @type ExtraInfo: Array
20587
+ # @param ZipPath: 本地临时压缩文件绝对路径
20588
+ # 注意:此字段可能返回 null,表示取不到有效值。
20589
+ # @type ZipPath: String
20590
+ # @param Bucket: 文件所属存储桶
20591
+ # 注意:此字段可能返回 null,表示取不到有效值。
20592
+ # @type Bucket: String
20593
+ # @param Region: 文件所属存储桶的地域
20594
+ # 注意:此字段可能返回 null,表示取不到有效值。
20595
+ # @type Region: String
20596
+ # @param DeleteName: 无
20597
+ # 注意:此字段可能返回 null,表示取不到有效值。
20598
+ # @type DeleteName: String
20599
+ # @param DeleteOwner: 无
20600
+ # 注意:此字段可能返回 null,表示取不到有效值。
20601
+ # @type DeleteOwner: String
20602
+ # @param Operator: 无
20603
+ # 注意:此字段可能返回 null,表示取不到有效值。
20604
+ # @type Operator: String
20605
+ # @param OperatorName: 无
20606
+ # 注意:此字段可能返回 null,表示取不到有效值。
20607
+ # @type OperatorName: String
20608
+ # @param EncodeExtraInfo: 附加信息 base64编码
20609
+ # 注意:此字段可能返回 null,表示取不到有效值。
20610
+ # @type EncodeExtraInfo: String
20611
+
20612
+ attr_accessor :ResourceId, :FileName, :FileExtensionType, :Type, :Md5Value, :CreateTime, :UpdateTime, :Size, :LocalPath, :LocalTempPath, :RemotePath, :OwnerName, :Owner, :PathDepth, :ProjectId, :ExtraInfo, :ZipPath, :Bucket, :Region, :DeleteName, :DeleteOwner, :Operator, :OperatorName, :EncodeExtraInfo
20613
+
20614
+ def initialize(resourceid=nil, filename=nil, fileextensiontype=nil, type=nil, md5value=nil, createtime=nil, updatetime=nil, size=nil, localpath=nil, localtemppath=nil, remotepath=nil, ownername=nil, owner=nil, pathdepth=nil, projectid=nil, extrainfo=nil, zippath=nil, bucket=nil, region=nil, deletename=nil, deleteowner=nil, operator=nil, operatorname=nil, encodeextrainfo=nil)
20615
+ @ResourceId = resourceid
20616
+ @FileName = filename
20617
+ @FileExtensionType = fileextensiontype
20618
+ @Type = type
20619
+ @Md5Value = md5value
20620
+ @CreateTime = createtime
20621
+ @UpdateTime = updatetime
20622
+ @Size = size
20623
+ @LocalPath = localpath
20624
+ @LocalTempPath = localtemppath
20625
+ @RemotePath = remotepath
20626
+ @OwnerName = ownername
20627
+ @Owner = owner
20628
+ @PathDepth = pathdepth
20629
+ @ProjectId = projectid
20630
+ @ExtraInfo = extrainfo
20631
+ @ZipPath = zippath
20632
+ @Bucket = bucket
20633
+ @Region = region
20634
+ @DeleteName = deletename
20635
+ @DeleteOwner = deleteowner
20636
+ @Operator = operator
20637
+ @OperatorName = operatorname
20638
+ @EncodeExtraInfo = encodeextrainfo
20639
+ end
20640
+
20641
+ def deserialize(params)
20642
+ @ResourceId = params['ResourceId']
20643
+ @FileName = params['FileName']
20644
+ @FileExtensionType = params['FileExtensionType']
20645
+ @Type = params['Type']
20646
+ @Md5Value = params['Md5Value']
20647
+ @CreateTime = params['CreateTime']
20648
+ @UpdateTime = params['UpdateTime']
20649
+ @Size = params['Size']
20650
+ @LocalPath = params['LocalPath']
20651
+ @LocalTempPath = params['LocalTempPath']
20652
+ @RemotePath = params['RemotePath']
20653
+ @OwnerName = params['OwnerName']
20654
+ @Owner = params['Owner']
20655
+ @PathDepth = params['PathDepth']
20656
+ @ProjectId = params['ProjectId']
20657
+ unless params['ExtraInfo'].nil?
20658
+ @ExtraInfo = []
20659
+ params['ExtraInfo'].each do |i|
20660
+ paraminfo_tmp = ParamInfo.new
20661
+ paraminfo_tmp.deserialize(i)
20662
+ @ExtraInfo << paraminfo_tmp
20663
+ end
20664
+ end
20665
+ @ZipPath = params['ZipPath']
20666
+ @Bucket = params['Bucket']
20667
+ @Region = params['Region']
20668
+ @DeleteName = params['DeleteName']
20669
+ @DeleteOwner = params['DeleteOwner']
20670
+ @Operator = params['Operator']
20671
+ @OperatorName = params['OperatorName']
20672
+ @EncodeExtraInfo = params['EncodeExtraInfo']
20673
+ end
20674
+ end
20675
+
19891
20676
  # 权重信息
19892
20677
  class WeightInfo < TencentCloud::Common::AbstractModel
19893
20678
  # @param Weight: 权重
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.615
4
+ version: 3.0.616
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-18 00:00:00.000000000 Z
11
+ date: 2023-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common