tencentcloud-sdk-wedata 3.0.1152 → 3.0.1153
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/v20250806/client.rb +96 -0
- data/lib/v20250806/models.rb +343 -16
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be62e33f01d52c5934272677eff8a7eebe3177f9
|
4
|
+
data.tar.gz: 6ab38bd1afc39fa7d27ae204825171e897e25dbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d91d50b3bb05e61bcec64c5ddf5534e3aa7b84eec91b951a0b4de04773401c218e18fa0c69e9ebf57c261110272cd15b81904e5825ea9c2249ca8aa700080d1a
|
7
|
+
data.tar.gz: 49f24ba1299b70ccb48ef1df0e01f76872dbf0bb65cd1ac37e474383d919c421d9b8450273b1cf1f859ce9cc7da9489d93a411efadd801166cb5ba2429c9c0a4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1153
|
data/lib/v20250806/client.rb
CHANGED
@@ -893,6 +893,54 @@ module TencentCloud
|
|
893
893
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
894
894
|
end
|
895
895
|
|
896
|
+
# 获取sql文件夹详情
|
897
|
+
|
898
|
+
# @param request: Request instance for GetCodeFolder.
|
899
|
+
# @type request: :class:`Tencentcloud::wedata::V20250806::GetCodeFolderRequest`
|
900
|
+
# @rtype: :class:`Tencentcloud::wedata::V20250806::GetCodeFolderResponse`
|
901
|
+
def GetCodeFolder(request)
|
902
|
+
body = send_request('GetCodeFolder', request.serialize)
|
903
|
+
response = JSON.parse(body)
|
904
|
+
if response['Response'].key?('Error') == false
|
905
|
+
model = GetCodeFolderResponse.new
|
906
|
+
model.deserialize(response['Response'])
|
907
|
+
model
|
908
|
+
else
|
909
|
+
code = response['Response']['Error']['Code']
|
910
|
+
message = response['Response']['Error']['Message']
|
911
|
+
reqid = response['Response']['RequestId']
|
912
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
913
|
+
end
|
914
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
915
|
+
raise e
|
916
|
+
rescue StandardError => e
|
917
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
918
|
+
end
|
919
|
+
|
920
|
+
# 获取补录计划详情
|
921
|
+
|
922
|
+
# @param request: Request instance for GetDataBackfillPlan.
|
923
|
+
# @type request: :class:`Tencentcloud::wedata::V20250806::GetDataBackfillPlanRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::wedata::V20250806::GetDataBackfillPlanResponse`
|
925
|
+
def GetDataBackfillPlan(request)
|
926
|
+
body = send_request('GetDataBackfillPlan', request.serialize)
|
927
|
+
response = JSON.parse(body)
|
928
|
+
if response['Response'].key?('Error') == false
|
929
|
+
model = GetDataBackfillPlanResponse.new
|
930
|
+
model.deserialize(response['Response'])
|
931
|
+
model
|
932
|
+
else
|
933
|
+
code = response['Response']['Error']['Code']
|
934
|
+
message = response['Response']['Error']['Message']
|
935
|
+
reqid = response['Response']['RequestId']
|
936
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
937
|
+
end
|
938
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
939
|
+
raise e
|
940
|
+
rescue StandardError => e
|
941
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
942
|
+
end
|
943
|
+
|
896
944
|
# 该接口用于查看指定数据源的详细信息
|
897
945
|
|
898
946
|
# @param request: Request instance for GetDataSource.
|
@@ -1133,6 +1181,30 @@ module TencentCloud
|
|
1133
1181
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1134
1182
|
end
|
1135
1183
|
|
1184
|
+
# 获取sql文件夹详情
|
1185
|
+
|
1186
|
+
# @param request: Request instance for GetSQLFolder.
|
1187
|
+
# @type request: :class:`Tencentcloud::wedata::V20250806::GetSQLFolderRequest`
|
1188
|
+
# @rtype: :class:`Tencentcloud::wedata::V20250806::GetSQLFolderResponse`
|
1189
|
+
def GetSQLFolder(request)
|
1190
|
+
body = send_request('GetSQLFolder', request.serialize)
|
1191
|
+
response = JSON.parse(body)
|
1192
|
+
if response['Response'].key?('Error') == false
|
1193
|
+
model = GetSQLFolderResponse.new
|
1194
|
+
model.deserialize(response['Response'])
|
1195
|
+
model
|
1196
|
+
else
|
1197
|
+
code = response['Response']['Error']['Code']
|
1198
|
+
message = response['Response']['Error']['Message']
|
1199
|
+
reqid = response['Response']['RequestId']
|
1200
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1201
|
+
end
|
1202
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1203
|
+
raise e
|
1204
|
+
rescue StandardError => e
|
1205
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1206
|
+
end
|
1207
|
+
|
1136
1208
|
# 查询脚本详情
|
1137
1209
|
|
1138
1210
|
# @param request: Request instance for GetSQLScript.
|
@@ -2381,6 +2453,30 @@ module TencentCloud
|
|
2381
2453
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2382
2454
|
end
|
2383
2455
|
|
2456
|
+
# 异步批量启动任务
|
2457
|
+
|
2458
|
+
# @param request: Request instance for StartOpsTasks.
|
2459
|
+
# @type request: :class:`Tencentcloud::wedata::V20250806::StartOpsTasksRequest`
|
2460
|
+
# @rtype: :class:`Tencentcloud::wedata::V20250806::StartOpsTasksResponse`
|
2461
|
+
def StartOpsTasks(request)
|
2462
|
+
body = send_request('StartOpsTasks', request.serialize)
|
2463
|
+
response = JSON.parse(body)
|
2464
|
+
if response['Response'].key?('Error') == false
|
2465
|
+
model = StartOpsTasksResponse.new
|
2466
|
+
model.deserialize(response['Response'])
|
2467
|
+
model
|
2468
|
+
else
|
2469
|
+
code = response['Response']['Error']['Code']
|
2470
|
+
message = response['Response']['Error']['Message']
|
2471
|
+
reqid = response['Response']['RequestId']
|
2472
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2473
|
+
end
|
2474
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2475
|
+
raise e
|
2476
|
+
rescue StandardError => e
|
2477
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2478
|
+
end
|
2479
|
+
|
2384
2480
|
# 异步批量下线任务
|
2385
2481
|
|
2386
2482
|
# @param request: Request instance for StopOpsTasksAsync.
|
data/lib/v20250806/models.rb
CHANGED
@@ -669,10 +669,13 @@ module TencentCloud
|
|
669
669
|
# @param Path: 节点全路径,/aaa/bbb/ccc.ipynb,由各个节点的名称组成
|
670
670
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
671
671
|
# @type Path: String
|
672
|
+
# @param ParentFolderPath: 父文件夹路径
|
673
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
674
|
+
# @type ParentFolderPath: String
|
672
675
|
|
673
|
-
attr_accessor :CodeFileId, :CodeFileName, :OwnerUin, :CodeFileConfig, :CodeFileContent, :UpdateUserUin, :ProjectId, :UpdateTime, :CreateTime, :AccessScope, :Path
|
676
|
+
attr_accessor :CodeFileId, :CodeFileName, :OwnerUin, :CodeFileConfig, :CodeFileContent, :UpdateUserUin, :ProjectId, :UpdateTime, :CreateTime, :AccessScope, :Path, :ParentFolderPath
|
674
677
|
|
675
|
-
def initialize(codefileid=nil, codefilename=nil, owneruin=nil, codefileconfig=nil, codefilecontent=nil, updateuseruin=nil, projectid=nil, updatetime=nil, createtime=nil, accessscope=nil, path=nil)
|
678
|
+
def initialize(codefileid=nil, codefilename=nil, owneruin=nil, codefileconfig=nil, codefilecontent=nil, updateuseruin=nil, projectid=nil, updatetime=nil, createtime=nil, accessscope=nil, path=nil, parentfolderpath=nil)
|
676
679
|
@CodeFileId = codefileid
|
677
680
|
@CodeFileName = codefilename
|
678
681
|
@OwnerUin = owneruin
|
@@ -684,6 +687,7 @@ module TencentCloud
|
|
684
687
|
@CreateTime = createtime
|
685
688
|
@AccessScope = accessscope
|
686
689
|
@Path = path
|
690
|
+
@ParentFolderPath = parentfolderpath
|
687
691
|
end
|
688
692
|
|
689
693
|
def deserialize(params)
|
@@ -701,6 +705,7 @@ module TencentCloud
|
|
701
705
|
@CreateTime = params['CreateTime']
|
702
706
|
@AccessScope = params['AccessScope']
|
703
707
|
@Path = params['Path']
|
708
|
+
@ParentFolderPath = params['ParentFolderPath']
|
704
709
|
end
|
705
710
|
end
|
706
711
|
|
@@ -757,10 +762,13 @@ module TencentCloud
|
|
757
762
|
# @param Children: 子节点列表
|
758
763
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
759
764
|
# @type Children: Array
|
765
|
+
# @param ParentFolderPath: 父文件夹路径
|
766
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
767
|
+
# @type ParentFolderPath: String
|
760
768
|
|
761
|
-
attr_accessor :Id, :Title, :Type, :IsLeaf, :Params, :AccessScope, :Path, :OwnerUin, :CreateUserUin, :NodePermission, :Children
|
769
|
+
attr_accessor :Id, :Title, :Type, :IsLeaf, :Params, :AccessScope, :Path, :OwnerUin, :CreateUserUin, :NodePermission, :Children, :ParentFolderPath
|
762
770
|
|
763
|
-
def initialize(id=nil, title=nil, type=nil, isleaf=nil, params=nil, accessscope=nil, path=nil, owneruin=nil, createuseruin=nil, nodepermission=nil, children=nil)
|
771
|
+
def initialize(id=nil, title=nil, type=nil, isleaf=nil, params=nil, accessscope=nil, path=nil, owneruin=nil, createuseruin=nil, nodepermission=nil, children=nil, parentfolderpath=nil)
|
764
772
|
@Id = id
|
765
773
|
@Title = title
|
766
774
|
@Type = type
|
@@ -772,6 +780,7 @@ module TencentCloud
|
|
772
780
|
@CreateUserUin = createuseruin
|
773
781
|
@NodePermission = nodepermission
|
774
782
|
@Children = children
|
783
|
+
@ParentFolderPath = parentfolderpath
|
775
784
|
end
|
776
785
|
|
777
786
|
def deserialize(params)
|
@@ -793,6 +802,7 @@ module TencentCloud
|
|
793
802
|
@Children << codefoldernode_tmp
|
794
803
|
end
|
795
804
|
end
|
805
|
+
@ParentFolderPath = params['ParentFolderPath']
|
796
806
|
end
|
797
807
|
end
|
798
808
|
|
@@ -2490,6 +2500,119 @@ module TencentCloud
|
|
2490
2500
|
end
|
2491
2501
|
end
|
2492
2502
|
|
2503
|
+
# 补录计划详情
|
2504
|
+
class DataBackfill < TencentCloud::Common::AbstractModel
|
2505
|
+
# @param ProjectId: 项目Id
|
2506
|
+
# @type ProjectId: String
|
2507
|
+
# @param DataBackfillPlanId: 数据补录计划id
|
2508
|
+
# @type DataBackfillPlanId: String
|
2509
|
+
# @param DataBackfillPlanName: 数据补录计划名称
|
2510
|
+
# @type DataBackfillPlanName: String
|
2511
|
+
# @param TaskIds: 补录任务集合
|
2512
|
+
# @type TaskIds: Array
|
2513
|
+
# @param DataBackfillRangeList: 补录任务的数据配置列表
|
2514
|
+
# @type DataBackfillRangeList: Array
|
2515
|
+
# @param CheckParentType: 检查父任务类型,取值范围:- NONE-全部不检查- ALL-检查全部上游父任务- MAKE_SCOPE-只在(当前补录计划)选中任务中检查
|
2516
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2517
|
+
# @type CheckParentType: String
|
2518
|
+
# @param SkipEventListening: 补录是否忽略事件依赖
|
2519
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2520
|
+
# @type SkipEventListening: Boolean
|
2521
|
+
# @param RedefineParallelNum: 自定义实例运行并发度, 返回为null或者不返回,则表示任务原有自依赖
|
2522
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2523
|
+
# @type RedefineParallelNum: Integer
|
2524
|
+
# @param RedefineSelfWorkflowDependency: 自定义的工作流自依赖,yes或者no;如果不配置,则使用工作流原有自依赖
|
2525
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2526
|
+
# @type RedefineSelfWorkflowDependency: String
|
2527
|
+
# @param SchedulerResourceGroupId: 调度资源组id
|
2528
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2529
|
+
# @type SchedulerResourceGroupId: String
|
2530
|
+
# @param IntegrationResourceGroupId: 集成资源组id
|
2531
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2532
|
+
# @type IntegrationResourceGroupId: String
|
2533
|
+
# @param RedefineCycleType: 补录自定义的生成周期
|
2534
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2535
|
+
# @type RedefineCycleType: String
|
2536
|
+
# @param RedefineParamList: 自定义参数
|
2537
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2538
|
+
# @type RedefineParamList: Array
|
2539
|
+
# @param StartTime: 补录任务的执行开始时间
|
2540
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2541
|
+
# @type StartTime: String
|
2542
|
+
# @param EndTime: 补录任务的执行结束时间
|
2543
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2544
|
+
# @type EndTime: String
|
2545
|
+
# @param CreateUserUin: 创建用户id
|
2546
|
+
# @type CreateUserUin: String
|
2547
|
+
# @param CompletePercent: 补录计划实例完成百分数
|
2548
|
+
# @type CompletePercent: Integer
|
2549
|
+
# @param SuccessPercent: 补录计划实例成功百分数
|
2550
|
+
# @type SuccessPercent: Integer
|
2551
|
+
# @param DataTimeOrder: 补录是实例数据时间顺序,生效必须满足2个条件:1. 必须同周期任务2. 优先按依赖关系执行,无依赖关系影响的情况下按配置执行顺序执行 可选值- NORMAL: 不设置- ORDER: 顺序- REVERSE: 逆序不设置默认为NORMAL
|
2552
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2553
|
+
# @type DataTimeOrder: String
|
2554
|
+
|
2555
|
+
attr_accessor :ProjectId, :DataBackfillPlanId, :DataBackfillPlanName, :TaskIds, :DataBackfillRangeList, :CheckParentType, :SkipEventListening, :RedefineParallelNum, :RedefineSelfWorkflowDependency, :SchedulerResourceGroupId, :IntegrationResourceGroupId, :RedefineCycleType, :RedefineParamList, :StartTime, :EndTime, :CreateUserUin, :CompletePercent, :SuccessPercent, :DataTimeOrder
|
2556
|
+
|
2557
|
+
def initialize(projectid=nil, databackfillplanid=nil, databackfillplanname=nil, taskids=nil, databackfillrangelist=nil, checkparenttype=nil, skipeventlistening=nil, redefineparallelnum=nil, redefineselfworkflowdependency=nil, schedulerresourcegroupid=nil, integrationresourcegroupid=nil, redefinecycletype=nil, redefineparamlist=nil, starttime=nil, endtime=nil, createuseruin=nil, completepercent=nil, successpercent=nil, datatimeorder=nil)
|
2558
|
+
@ProjectId = projectid
|
2559
|
+
@DataBackfillPlanId = databackfillplanid
|
2560
|
+
@DataBackfillPlanName = databackfillplanname
|
2561
|
+
@TaskIds = taskids
|
2562
|
+
@DataBackfillRangeList = databackfillrangelist
|
2563
|
+
@CheckParentType = checkparenttype
|
2564
|
+
@SkipEventListening = skipeventlistening
|
2565
|
+
@RedefineParallelNum = redefineparallelnum
|
2566
|
+
@RedefineSelfWorkflowDependency = redefineselfworkflowdependency
|
2567
|
+
@SchedulerResourceGroupId = schedulerresourcegroupid
|
2568
|
+
@IntegrationResourceGroupId = integrationresourcegroupid
|
2569
|
+
@RedefineCycleType = redefinecycletype
|
2570
|
+
@RedefineParamList = redefineparamlist
|
2571
|
+
@StartTime = starttime
|
2572
|
+
@EndTime = endtime
|
2573
|
+
@CreateUserUin = createuseruin
|
2574
|
+
@CompletePercent = completepercent
|
2575
|
+
@SuccessPercent = successpercent
|
2576
|
+
@DataTimeOrder = datatimeorder
|
2577
|
+
end
|
2578
|
+
|
2579
|
+
def deserialize(params)
|
2580
|
+
@ProjectId = params['ProjectId']
|
2581
|
+
@DataBackfillPlanId = params['DataBackfillPlanId']
|
2582
|
+
@DataBackfillPlanName = params['DataBackfillPlanName']
|
2583
|
+
@TaskIds = params['TaskIds']
|
2584
|
+
unless params['DataBackfillRangeList'].nil?
|
2585
|
+
@DataBackfillRangeList = []
|
2586
|
+
params['DataBackfillRangeList'].each do |i|
|
2587
|
+
databackfillrange_tmp = DataBackfillRange.new
|
2588
|
+
databackfillrange_tmp.deserialize(i)
|
2589
|
+
@DataBackfillRangeList << databackfillrange_tmp
|
2590
|
+
end
|
2591
|
+
end
|
2592
|
+
@CheckParentType = params['CheckParentType']
|
2593
|
+
@SkipEventListening = params['SkipEventListening']
|
2594
|
+
@RedefineParallelNum = params['RedefineParallelNum']
|
2595
|
+
@RedefineSelfWorkflowDependency = params['RedefineSelfWorkflowDependency']
|
2596
|
+
@SchedulerResourceGroupId = params['SchedulerResourceGroupId']
|
2597
|
+
@IntegrationResourceGroupId = params['IntegrationResourceGroupId']
|
2598
|
+
@RedefineCycleType = params['RedefineCycleType']
|
2599
|
+
unless params['RedefineParamList'].nil?
|
2600
|
+
@RedefineParamList = []
|
2601
|
+
params['RedefineParamList'].each do |i|
|
2602
|
+
kvpair_tmp = KVPair.new
|
2603
|
+
kvpair_tmp.deserialize(i)
|
2604
|
+
@RedefineParamList << kvpair_tmp
|
2605
|
+
end
|
2606
|
+
end
|
2607
|
+
@StartTime = params['StartTime']
|
2608
|
+
@EndTime = params['EndTime']
|
2609
|
+
@CreateUserUin = params['CreateUserUin']
|
2610
|
+
@CompletePercent = params['CompletePercent']
|
2611
|
+
@SuccessPercent = params['SuccessPercent']
|
2612
|
+
@DataTimeOrder = params['DataTimeOrder']
|
2613
|
+
end
|
2614
|
+
end
|
2615
|
+
|
2493
2616
|
# 补录计划日期范围
|
2494
2617
|
class DataBackfillRange < TencentCloud::Common::AbstractModel
|
2495
2618
|
# @param StartDate: 开始日期,格式yyyy-MM-dd 表示从指定日期的00:00:00开始
|
@@ -4153,6 +4276,96 @@ module TencentCloud
|
|
4153
4276
|
end
|
4154
4277
|
end
|
4155
4278
|
|
4279
|
+
# GetCodeFolder请求参数结构体
|
4280
|
+
class GetCodeFolderRequest < TencentCloud::Common::AbstractModel
|
4281
|
+
# @param ProjectId: 项目id
|
4282
|
+
# @type ProjectId: String
|
4283
|
+
# @param FolderId: 文件夹id
|
4284
|
+
# @type FolderId: String
|
4285
|
+
|
4286
|
+
attr_accessor :ProjectId, :FolderId
|
4287
|
+
|
4288
|
+
def initialize(projectid=nil, folderid=nil)
|
4289
|
+
@ProjectId = projectid
|
4290
|
+
@FolderId = folderid
|
4291
|
+
end
|
4292
|
+
|
4293
|
+
def deserialize(params)
|
4294
|
+
@ProjectId = params['ProjectId']
|
4295
|
+
@FolderId = params['FolderId']
|
4296
|
+
end
|
4297
|
+
end
|
4298
|
+
|
4299
|
+
# GetCodeFolder返回参数结构体
|
4300
|
+
class GetCodeFolderResponse < TencentCloud::Common::AbstractModel
|
4301
|
+
# @param Data: codestudio文件夹
|
4302
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20250806.models.CodeFolderNode`
|
4303
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4304
|
+
# @type RequestId: String
|
4305
|
+
|
4306
|
+
attr_accessor :Data, :RequestId
|
4307
|
+
|
4308
|
+
def initialize(data=nil, requestid=nil)
|
4309
|
+
@Data = data
|
4310
|
+
@RequestId = requestid
|
4311
|
+
end
|
4312
|
+
|
4313
|
+
def deserialize(params)
|
4314
|
+
unless params['Data'].nil?
|
4315
|
+
@Data = CodeFolderNode.new
|
4316
|
+
@Data.deserialize(params['Data'])
|
4317
|
+
end
|
4318
|
+
@RequestId = params['RequestId']
|
4319
|
+
end
|
4320
|
+
end
|
4321
|
+
|
4322
|
+
# GetDataBackfillPlan请求参数结构体
|
4323
|
+
class GetDataBackfillPlanRequest < TencentCloud::Common::AbstractModel
|
4324
|
+
# @param ProjectId: 项目id
|
4325
|
+
# @type ProjectId: String
|
4326
|
+
# @param DataBackfillPlanId: 补录计划id
|
4327
|
+
# @type DataBackfillPlanId: String
|
4328
|
+
# @param TimeZone: 展示时区,默认UTC+8
|
4329
|
+
# @type TimeZone: String
|
4330
|
+
|
4331
|
+
attr_accessor :ProjectId, :DataBackfillPlanId, :TimeZone
|
4332
|
+
|
4333
|
+
def initialize(projectid=nil, databackfillplanid=nil, timezone=nil)
|
4334
|
+
@ProjectId = projectid
|
4335
|
+
@DataBackfillPlanId = databackfillplanid
|
4336
|
+
@TimeZone = timezone
|
4337
|
+
end
|
4338
|
+
|
4339
|
+
def deserialize(params)
|
4340
|
+
@ProjectId = params['ProjectId']
|
4341
|
+
@DataBackfillPlanId = params['DataBackfillPlanId']
|
4342
|
+
@TimeZone = params['TimeZone']
|
4343
|
+
end
|
4344
|
+
end
|
4345
|
+
|
4346
|
+
# GetDataBackfillPlan返回参数结构体
|
4347
|
+
class GetDataBackfillPlanResponse < TencentCloud::Common::AbstractModel
|
4348
|
+
# @param Data: 补录详情
|
4349
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20250806.models.DataBackfill`
|
4350
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4351
|
+
# @type RequestId: String
|
4352
|
+
|
4353
|
+
attr_accessor :Data, :RequestId
|
4354
|
+
|
4355
|
+
def initialize(data=nil, requestid=nil)
|
4356
|
+
@Data = data
|
4357
|
+
@RequestId = requestid
|
4358
|
+
end
|
4359
|
+
|
4360
|
+
def deserialize(params)
|
4361
|
+
unless params['Data'].nil?
|
4362
|
+
@Data = DataBackfill.new
|
4363
|
+
@Data.deserialize(params['Data'])
|
4364
|
+
end
|
4365
|
+
@RequestId = params['RequestId']
|
4366
|
+
end
|
4367
|
+
end
|
4368
|
+
|
4156
4369
|
# GetDataSourceRelatedTasks请求参数结构体
|
4157
4370
|
class GetDataSourceRelatedTasksRequest < TencentCloud::Common::AbstractModel
|
4158
4371
|
# @param Id: 数据源id
|
@@ -4599,6 +4812,49 @@ module TencentCloud
|
|
4599
4812
|
end
|
4600
4813
|
end
|
4601
4814
|
|
4815
|
+
# GetSQLFolder请求参数结构体
|
4816
|
+
class GetSQLFolderRequest < TencentCloud::Common::AbstractModel
|
4817
|
+
# @param ProjectId: 项目id
|
4818
|
+
# @type ProjectId: String
|
4819
|
+
# @param FolderId: 文件夹id
|
4820
|
+
# @type FolderId: String
|
4821
|
+
|
4822
|
+
attr_accessor :ProjectId, :FolderId
|
4823
|
+
|
4824
|
+
def initialize(projectid=nil, folderid=nil)
|
4825
|
+
@ProjectId = projectid
|
4826
|
+
@FolderId = folderid
|
4827
|
+
end
|
4828
|
+
|
4829
|
+
def deserialize(params)
|
4830
|
+
@ProjectId = params['ProjectId']
|
4831
|
+
@FolderId = params['FolderId']
|
4832
|
+
end
|
4833
|
+
end
|
4834
|
+
|
4835
|
+
# GetSQLFolder返回参数结构体
|
4836
|
+
class GetSQLFolderResponse < TencentCloud::Common::AbstractModel
|
4837
|
+
# @param Data: sql文件夹
|
4838
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20250806.models.SQLFolderNode`
|
4839
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4840
|
+
# @type RequestId: String
|
4841
|
+
|
4842
|
+
attr_accessor :Data, :RequestId
|
4843
|
+
|
4844
|
+
def initialize(data=nil, requestid=nil)
|
4845
|
+
@Data = data
|
4846
|
+
@RequestId = requestid
|
4847
|
+
end
|
4848
|
+
|
4849
|
+
def deserialize(params)
|
4850
|
+
unless params['Data'].nil?
|
4851
|
+
@Data = SQLFolderNode.new
|
4852
|
+
@Data.deserialize(params['Data'])
|
4853
|
+
end
|
4854
|
+
@RequestId = params['RequestId']
|
4855
|
+
end
|
4856
|
+
end
|
4857
|
+
|
4602
4858
|
# GetSQLScript请求参数结构体
|
4603
4859
|
class GetSQLScriptRequest < TencentCloud::Common::AbstractModel
|
4604
4860
|
# @param ScriptId: 探索脚本Id
|
@@ -5014,21 +5270,25 @@ module TencentCloud
|
|
5014
5270
|
# @type ProjectId: String
|
5015
5271
|
# @param UserUin: 用户id
|
5016
5272
|
# @type UserUin: String
|
5017
|
-
# @param
|
5018
|
-
#
|
5273
|
+
# @param RoleIds: 角色id列表,目前支持的项目角色有
|
5274
|
+
# - 308335260274237440 (项目管理员)
|
5275
|
+
# - 308335260676890624 (数据工程师)
|
5276
|
+
# - 308335260844662784 (运维工程师)
|
5277
|
+
# - 308335260945326080 (普通成员)
|
5278
|
+
# @type RoleIds: Array
|
5019
5279
|
|
5020
|
-
attr_accessor :ProjectId, :UserUin, :
|
5280
|
+
attr_accessor :ProjectId, :UserUin, :RoleIds
|
5021
5281
|
|
5022
|
-
def initialize(projectid=nil, useruin=nil,
|
5282
|
+
def initialize(projectid=nil, useruin=nil, roleids=nil)
|
5023
5283
|
@ProjectId = projectid
|
5024
5284
|
@UserUin = useruin
|
5025
|
-
@
|
5285
|
+
@RoleIds = roleids
|
5026
5286
|
end
|
5027
5287
|
|
5028
5288
|
def deserialize(params)
|
5029
5289
|
@ProjectId = params['ProjectId']
|
5030
5290
|
@UserUin = params['UserUin']
|
5031
|
-
@
|
5291
|
+
@RoleIds = params['RoleIds']
|
5032
5292
|
end
|
5033
5293
|
end
|
5034
5294
|
|
@@ -9921,21 +10181,25 @@ module TencentCloud
|
|
9921
10181
|
# @type ProjectId: String
|
9922
10182
|
# @param UserUin: 用户id
|
9923
10183
|
# @type UserUin: String
|
9924
|
-
# @param
|
9925
|
-
#
|
10184
|
+
# @param RoleIds: 角色id列表,目前支持的项目角色有
|
10185
|
+
# - 308335260274237440 (项目管理员)
|
10186
|
+
# - 308335260676890624 (数据工程师)
|
10187
|
+
# - 308335260844662784 (运维工程师)
|
10188
|
+
# - 308335260945326080 (普通成员)
|
10189
|
+
# @type RoleIds: Array
|
9926
10190
|
|
9927
|
-
attr_accessor :ProjectId, :UserUin, :
|
10191
|
+
attr_accessor :ProjectId, :UserUin, :RoleIds
|
9928
10192
|
|
9929
|
-
def initialize(projectid=nil, useruin=nil,
|
10193
|
+
def initialize(projectid=nil, useruin=nil, roleids=nil)
|
9930
10194
|
@ProjectId = projectid
|
9931
10195
|
@UserUin = useruin
|
9932
|
-
@
|
10196
|
+
@RoleIds = roleids
|
9933
10197
|
end
|
9934
10198
|
|
9935
10199
|
def deserialize(params)
|
9936
10200
|
@ProjectId = params['ProjectId']
|
9937
10201
|
@UserUin = params['UserUin']
|
9938
|
-
@
|
10202
|
+
@RoleIds = params['RoleIds']
|
9939
10203
|
end
|
9940
10204
|
end
|
9941
10205
|
|
@@ -10827,6 +11091,69 @@ module TencentCloud
|
|
10827
11091
|
end
|
10828
11092
|
end
|
10829
11093
|
|
11094
|
+
# StartOpsTasks请求参数结构体
|
11095
|
+
class StartOpsTasksRequest < TencentCloud::Common::AbstractModel
|
11096
|
+
# @param ProjectId: 所属项目Id
|
11097
|
+
# @type ProjectId: String
|
11098
|
+
# @param TaskIds: 任务Id列表
|
11099
|
+
# @type TaskIds: Array
|
11100
|
+
# @param EnableDataBackfill: 启动时是否补录上次暂停到当前的中间实例,默认false即不补录
|
11101
|
+
# @type EnableDataBackfill: Boolean
|
11102
|
+
|
11103
|
+
attr_accessor :ProjectId, :TaskIds, :EnableDataBackfill
|
11104
|
+
|
11105
|
+
def initialize(projectid=nil, taskids=nil, enabledatabackfill=nil)
|
11106
|
+
@ProjectId = projectid
|
11107
|
+
@TaskIds = taskids
|
11108
|
+
@EnableDataBackfill = enabledatabackfill
|
11109
|
+
end
|
11110
|
+
|
11111
|
+
def deserialize(params)
|
11112
|
+
@ProjectId = params['ProjectId']
|
11113
|
+
@TaskIds = params['TaskIds']
|
11114
|
+
@EnableDataBackfill = params['EnableDataBackfill']
|
11115
|
+
end
|
11116
|
+
end
|
11117
|
+
|
11118
|
+
# StartOpsTasks返回参数结构体
|
11119
|
+
class StartOpsTasksResponse < TencentCloud::Common::AbstractModel
|
11120
|
+
# @param Data: 异步操作结果
|
11121
|
+
# @type Data: :class:`Tencentcloud::Wedata.v20250806.models.StartTasks`
|
11122
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11123
|
+
# @type RequestId: String
|
11124
|
+
|
11125
|
+
attr_accessor :Data, :RequestId
|
11126
|
+
|
11127
|
+
def initialize(data=nil, requestid=nil)
|
11128
|
+
@Data = data
|
11129
|
+
@RequestId = requestid
|
11130
|
+
end
|
11131
|
+
|
11132
|
+
def deserialize(params)
|
11133
|
+
unless params['Data'].nil?
|
11134
|
+
@Data = StartTasks.new
|
11135
|
+
@Data.deserialize(params['Data'])
|
11136
|
+
end
|
11137
|
+
@RequestId = params['RequestId']
|
11138
|
+
end
|
11139
|
+
end
|
11140
|
+
|
11141
|
+
# 批量启动任务返回参数
|
11142
|
+
class StartTasks < TencentCloud::Common::AbstractModel
|
11143
|
+
# @param Status: 任务启动是否成功
|
11144
|
+
# @type Status: Boolean
|
11145
|
+
|
11146
|
+
attr_accessor :Status
|
11147
|
+
|
11148
|
+
def initialize(status=nil)
|
11149
|
+
@Status = status
|
11150
|
+
end
|
11151
|
+
|
11152
|
+
def deserialize(params)
|
11153
|
+
@Status = params['Status']
|
11154
|
+
end
|
11155
|
+
end
|
11156
|
+
|
10830
11157
|
# StopOpsTasksAsync请求参数结构体
|
10831
11158
|
class StopOpsTasksAsyncRequest < TencentCloud::Common::AbstractModel
|
10832
11159
|
# @param ProjectId: 所属项目Id
|
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.1153
|
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-10-
|
11
|
+
date: 2025-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,11 +33,11 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20250806/client.rb
|
37
|
-
- lib/v20250806/models.rb
|
38
|
-
- lib/tencentcloud-sdk-wedata.rb
|
39
|
-
- lib/v20210820/client.rb
|
40
36
|
- lib/v20210820/models.rb
|
37
|
+
- lib/v20210820/client.rb
|
38
|
+
- lib/tencentcloud-sdk-wedata.rb
|
39
|
+
- lib/v20250806/models.rb
|
40
|
+
- lib/v20250806/client.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|