tencentcloud-sdk-wedata 3.0.804 → 3.0.806
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 +261 -2384
- data/lib/v20210820/models.rb +14109 -24012
- metadata +2 -2
data/lib/v20210820/client.rb
CHANGED
@@ -53,30 +53,6 @@ module TencentCloud
|
|
53
53
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
54
|
end
|
55
55
|
|
56
|
-
# 批量创建任务版本Ds
|
57
|
-
|
58
|
-
# @param request: Request instance for BatchCreateTaskVersionDs.
|
59
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchCreateTaskVersionDsRequest`
|
60
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchCreateTaskVersionDsResponse`
|
61
|
-
def BatchCreateTaskVersionDs(request)
|
62
|
-
body = send_request('BatchCreateTaskVersionDs', request.serialize)
|
63
|
-
response = JSON.parse(body)
|
64
|
-
if response['Response'].key?('Error') == false
|
65
|
-
model = BatchCreateTaskVersionDsResponse.new
|
66
|
-
model.deserialize(response['Response'])
|
67
|
-
model
|
68
|
-
else
|
69
|
-
code = response['Response']['Error']['Code']
|
70
|
-
message = response['Response']['Error']['Message']
|
71
|
-
reqid = response['Response']['RequestId']
|
72
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
-
end
|
74
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
-
raise e
|
76
|
-
rescue StandardError => e
|
77
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
-
end
|
79
|
-
|
80
56
|
# 批量删除集成任务
|
81
57
|
|
82
58
|
# @param request: Request instance for BatchDeleteIntegrationTasks.
|
@@ -101,7 +77,7 @@ module TencentCloud
|
|
101
77
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
78
|
end
|
103
79
|
|
104
|
-
#
|
80
|
+
# 任务运维-批量删除任务
|
105
81
|
|
106
82
|
# @param request: Request instance for BatchDeleteOpsTasks.
|
107
83
|
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchDeleteOpsTasksRequest`
|
@@ -125,55 +101,6 @@ module TencentCloud
|
|
125
101
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
102
|
end
|
127
103
|
|
128
|
-
# Ds批量删除任务,仅对任务状态为”已停止“有效;
|
129
|
-
|
130
|
-
# @param request: Request instance for BatchDeleteTasksDs.
|
131
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchDeleteTasksDsRequest`
|
132
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchDeleteTasksDsResponse`
|
133
|
-
def BatchDeleteTasksDs(request)
|
134
|
-
body = send_request('BatchDeleteTasksDs', request.serialize)
|
135
|
-
response = JSON.parse(body)
|
136
|
-
if response['Response'].key?('Error') == false
|
137
|
-
model = BatchDeleteTasksDsResponse.new
|
138
|
-
model.deserialize(response['Response'])
|
139
|
-
model
|
140
|
-
else
|
141
|
-
code = response['Response']['Error']['Code']
|
142
|
-
message = response['Response']['Error']['Message']
|
143
|
-
reqid = response['Response']['RequestId']
|
144
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
-
end
|
146
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
-
raise e
|
148
|
-
rescue StandardError => e
|
149
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
-
end
|
151
|
-
|
152
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
153
|
-
# 批量删除任务,仅对任务状态为”已停止“有效;
|
154
|
-
|
155
|
-
# @param request: Request instance for BatchDeleteTasksNew.
|
156
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchDeleteTasksNewRequest`
|
157
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchDeleteTasksNewResponse`
|
158
|
-
def BatchDeleteTasksNew(request)
|
159
|
-
body = send_request('BatchDeleteTasksNew', request.serialize)
|
160
|
-
response = JSON.parse(body)
|
161
|
-
if response['Response'].key?('Error') == false
|
162
|
-
model = BatchDeleteTasksNewResponse.new
|
163
|
-
model.deserialize(response['Response'])
|
164
|
-
model
|
165
|
-
else
|
166
|
-
code = response['Response']['Error']['Code']
|
167
|
-
message = response['Response']['Error']['Message']
|
168
|
-
reqid = response['Response']['RequestId']
|
169
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
170
|
-
end
|
171
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
172
|
-
raise e
|
173
|
-
rescue StandardError => e
|
174
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
175
|
-
end
|
176
|
-
|
177
104
|
# 批量置成功集成任务实例
|
178
105
|
|
179
106
|
# @param request: Request instance for BatchForceSuccessIntegrationTaskInstances.
|
@@ -270,31 +197,6 @@ module TencentCloud
|
|
270
197
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
271
198
|
end
|
272
199
|
|
273
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
274
|
-
# 批量修改任务责任人
|
275
|
-
|
276
|
-
# @param request: Request instance for BatchModifyOwnersNew.
|
277
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchModifyOwnersNewRequest`
|
278
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchModifyOwnersNewResponse`
|
279
|
-
def BatchModifyOwnersNew(request)
|
280
|
-
body = send_request('BatchModifyOwnersNew', request.serialize)
|
281
|
-
response = JSON.parse(body)
|
282
|
-
if response['Response'].key?('Error') == false
|
283
|
-
model = BatchModifyOwnersNewResponse.new
|
284
|
-
model.deserialize(response['Response'])
|
285
|
-
model
|
286
|
-
else
|
287
|
-
code = response['Response']['Error']['Code']
|
288
|
-
message = response['Response']['Error']['Message']
|
289
|
-
reqid = response['Response']['RequestId']
|
290
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
291
|
-
end
|
292
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
293
|
-
raise e
|
294
|
-
rescue StandardError => e
|
295
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
296
|
-
end
|
297
|
-
|
298
200
|
# 批量重跑集成任务实例
|
299
201
|
|
300
202
|
# @param request: Request instance for BatchRerunIntegrationTaskInstances.
|
@@ -343,7 +245,7 @@ module TencentCloud
|
|
343
245
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
344
246
|
end
|
345
247
|
|
346
|
-
# 任务运维-任务列表
|
248
|
+
# 任务运维-任务列表 批量启动
|
347
249
|
|
348
250
|
# @param request: Request instance for BatchRunOpsTask.
|
349
251
|
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchRunOpsTaskRequest`
|
@@ -439,31 +341,6 @@ module TencentCloud
|
|
439
341
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
440
342
|
end
|
441
343
|
|
442
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
443
|
-
# 仅对任务状态为”调度中“和”已暂停“有效,对所选任务的任务实例进行终止,并停止调度
|
444
|
-
|
445
|
-
# @param request: Request instance for BatchStopTasksNew.
|
446
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchStopTasksNewRequest`
|
447
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchStopTasksNewResponse`
|
448
|
-
def BatchStopTasksNew(request)
|
449
|
-
body = send_request('BatchStopTasksNew', request.serialize)
|
450
|
-
response = JSON.parse(body)
|
451
|
-
if response['Response'].key?('Error') == false
|
452
|
-
model = BatchStopTasksNewResponse.new
|
453
|
-
model.deserialize(response['Response'])
|
454
|
-
model
|
455
|
-
else
|
456
|
-
code = response['Response']['Error']['Code']
|
457
|
-
message = response['Response']['Error']['Message']
|
458
|
-
reqid = response['Response']['RequestId']
|
459
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
460
|
-
end
|
461
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
462
|
-
raise e
|
463
|
-
rescue StandardError => e
|
464
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
465
|
-
end
|
466
|
-
|
467
344
|
# 批量停止工作流
|
468
345
|
|
469
346
|
# @param request: Request instance for BatchStopWorkflowsByIds.
|
@@ -560,54 +437,6 @@ module TencentCloud
|
|
560
437
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
561
438
|
end
|
562
439
|
|
563
|
-
# 检查规则名称是否重复
|
564
|
-
|
565
|
-
# @param request: Request instance for CheckDuplicateRuleName.
|
566
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CheckDuplicateRuleNameRequest`
|
567
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CheckDuplicateRuleNameResponse`
|
568
|
-
def CheckDuplicateRuleName(request)
|
569
|
-
body = send_request('CheckDuplicateRuleName', request.serialize)
|
570
|
-
response = JSON.parse(body)
|
571
|
-
if response['Response'].key?('Error') == false
|
572
|
-
model = CheckDuplicateRuleNameResponse.new
|
573
|
-
model.deserialize(response['Response'])
|
574
|
-
model
|
575
|
-
else
|
576
|
-
code = response['Response']['Error']['Code']
|
577
|
-
message = response['Response']['Error']['Message']
|
578
|
-
reqid = response['Response']['RequestId']
|
579
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
580
|
-
end
|
581
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
582
|
-
raise e
|
583
|
-
rescue StandardError => e
|
584
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
585
|
-
end
|
586
|
-
|
587
|
-
# 检查规则模板名称是否重复
|
588
|
-
|
589
|
-
# @param request: Request instance for CheckDuplicateTemplateName.
|
590
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CheckDuplicateTemplateNameRequest`
|
591
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CheckDuplicateTemplateNameResponse`
|
592
|
-
def CheckDuplicateTemplateName(request)
|
593
|
-
body = send_request('CheckDuplicateTemplateName', request.serialize)
|
594
|
-
response = JSON.parse(body)
|
595
|
-
if response['Response'].key?('Error') == false
|
596
|
-
model = CheckDuplicateTemplateNameResponse.new
|
597
|
-
model.deserialize(response['Response'])
|
598
|
-
model
|
599
|
-
else
|
600
|
-
code = response['Response']['Error']['Code']
|
601
|
-
message = response['Response']['Error']['Message']
|
602
|
-
reqid = response['Response']['RequestId']
|
603
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
604
|
-
end
|
605
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
606
|
-
raise e
|
607
|
-
rescue StandardError => e
|
608
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
609
|
-
end
|
610
|
-
|
611
440
|
# 判断集成节点名称是否存在
|
612
441
|
|
613
442
|
# @param request: Request instance for CheckIntegrationNodeNameExists.
|
@@ -680,30 +509,6 @@ module TencentCloud
|
|
680
509
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
681
510
|
end
|
682
511
|
|
683
|
-
# 提交数据导出任务
|
684
|
-
|
685
|
-
# @param request: Request instance for CommitExportTask.
|
686
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CommitExportTaskRequest`
|
687
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CommitExportTaskResponse`
|
688
|
-
def CommitExportTask(request)
|
689
|
-
body = send_request('CommitExportTask', request.serialize)
|
690
|
-
response = JSON.parse(body)
|
691
|
-
if response['Response'].key?('Error') == false
|
692
|
-
model = CommitExportTaskResponse.new
|
693
|
-
model.deserialize(response['Response'])
|
694
|
-
model
|
695
|
-
else
|
696
|
-
code = response['Response']['Error']['Code']
|
697
|
-
message = response['Response']['Error']['Message']
|
698
|
-
reqid = response['Response']['RequestId']
|
699
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
700
|
-
end
|
701
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
702
|
-
raise e
|
703
|
-
rescue StandardError => e
|
704
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
705
|
-
end
|
706
|
-
|
707
512
|
# 提交集成任务
|
708
513
|
|
709
514
|
# @param request: Request instance for CommitIntegrationTask.
|
@@ -728,30 +533,6 @@ module TencentCloud
|
|
728
533
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
729
534
|
end
|
730
535
|
|
731
|
-
# Runner 规则检测结果上报
|
732
|
-
|
733
|
-
# @param request: Request instance for CommitRuleGroupExecResult.
|
734
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CommitRuleGroupExecResultRequest`
|
735
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CommitRuleGroupExecResultResponse`
|
736
|
-
def CommitRuleGroupExecResult(request)
|
737
|
-
body = send_request('CommitRuleGroupExecResult', request.serialize)
|
738
|
-
response = JSON.parse(body)
|
739
|
-
if response['Response'].key?('Error') == false
|
740
|
-
model = CommitRuleGroupExecResultResponse.new
|
741
|
-
model.deserialize(response['Response'])
|
742
|
-
model
|
743
|
-
else
|
744
|
-
code = response['Response']['Error']['Code']
|
745
|
-
message = response['Response']['Error']['Message']
|
746
|
-
reqid = response['Response']['RequestId']
|
747
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
748
|
-
end
|
749
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
750
|
-
raise e
|
751
|
-
rescue StandardError => e
|
752
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
753
|
-
end
|
754
|
-
|
755
536
|
# 提交规则组运行任务接口
|
756
537
|
|
757
538
|
# @param request: Request instance for CommitRuleGroupTask.
|
@@ -800,30 +581,6 @@ module TencentCloud
|
|
800
581
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
801
582
|
end
|
802
583
|
|
803
|
-
# 创建基线
|
804
|
-
|
805
|
-
# @param request: Request instance for CreateBaseline.
|
806
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateBaselineRequest`
|
807
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateBaselineResponse`
|
808
|
-
def CreateBaseline(request)
|
809
|
-
body = send_request('CreateBaseline', request.serialize)
|
810
|
-
response = JSON.parse(body)
|
811
|
-
if response['Response'].key?('Error') == false
|
812
|
-
model = CreateBaselineResponse.new
|
813
|
-
model.deserialize(response['Response'])
|
814
|
-
model
|
815
|
-
else
|
816
|
-
code = response['Response']['Error']['Code']
|
817
|
-
message = response['Response']['Error']['Message']
|
818
|
-
reqid = response['Response']['RequestId']
|
819
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
820
|
-
end
|
821
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
822
|
-
raise e
|
823
|
-
rescue StandardError => e
|
824
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
825
|
-
end
|
826
|
-
|
827
584
|
# 创建用户自定义函数
|
828
585
|
|
829
586
|
# @param request: Request instance for CreateCustomFunction.
|
@@ -848,7 +605,6 @@ module TencentCloud
|
|
848
605
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
849
606
|
end
|
850
607
|
|
851
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
852
608
|
# 创建数据源
|
853
609
|
|
854
610
|
# @param request: Request instance for CreateDataSource.
|
@@ -897,31 +653,6 @@ module TencentCloud
|
|
897
653
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
898
654
|
end
|
899
655
|
|
900
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
901
|
-
# 创建文件夹
|
902
|
-
|
903
|
-
# @param request: Request instance for CreateFolder.
|
904
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateFolderRequest`
|
905
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateFolderResponse`
|
906
|
-
def CreateFolder(request)
|
907
|
-
body = send_request('CreateFolder', request.serialize)
|
908
|
-
response = JSON.parse(body)
|
909
|
-
if response['Response'].key?('Error') == false
|
910
|
-
model = CreateFolderResponse.new
|
911
|
-
model.deserialize(response['Response'])
|
912
|
-
model
|
913
|
-
else
|
914
|
-
code = response['Response']['Error']['Code']
|
915
|
-
message = response['Response']['Error']['Message']
|
916
|
-
reqid = response['Response']['RequestId']
|
917
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
918
|
-
end
|
919
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
920
|
-
raise e
|
921
|
-
rescue StandardError => e
|
922
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
923
|
-
end
|
924
|
-
|
925
656
|
# 建hive表
|
926
657
|
|
927
658
|
# @param request: Request instance for CreateHiveTable.
|
@@ -1042,7 +773,7 @@ module TencentCloud
|
|
1042
773
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1043
774
|
end
|
1044
775
|
|
1045
|
-
#
|
776
|
+
# 批量补数据(创建补录任务)
|
1046
777
|
|
1047
778
|
# @param request: Request instance for CreateOpsMakePlan.
|
1048
779
|
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateOpsMakePlanRequest`
|
@@ -1066,54 +797,6 @@ module TencentCloud
|
|
1066
797
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1067
798
|
end
|
1068
799
|
|
1069
|
-
# 资源管理需要先将资源上传到cos中,然后调用该接口,将cos资源绑定到wedata
|
1070
|
-
|
1071
|
-
# @param request: Request instance for CreateOrUpdateResource.
|
1072
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateOrUpdateResourceRequest`
|
1073
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateOrUpdateResourceResponse`
|
1074
|
-
def CreateOrUpdateResource(request)
|
1075
|
-
body = send_request('CreateOrUpdateResource', request.serialize)
|
1076
|
-
response = JSON.parse(body)
|
1077
|
-
if response['Response'].key?('Error') == false
|
1078
|
-
model = CreateOrUpdateResourceResponse.new
|
1079
|
-
model.deserialize(response['Response'])
|
1080
|
-
model
|
1081
|
-
else
|
1082
|
-
code = response['Response']['Error']['Code']
|
1083
|
-
message = response['Response']['Error']['Message']
|
1084
|
-
reqid = response['Response']['RequestId']
|
1085
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1086
|
-
end
|
1087
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1088
|
-
raise e
|
1089
|
-
rescue StandardError => e
|
1090
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1091
|
-
end
|
1092
|
-
|
1093
|
-
# 文件路径的根目录为 /datastudio/resource,如果要在根目录下创建 aaa 文件夹,FilePath的值应该为 /datastudio/resource,如果根目录下已经创建了 aaa 文件夹,要在 aaa 下创建 bbb 文件夹,FilePath的值应该为 /datastudio/resource/aaa
|
1094
|
-
|
1095
|
-
# @param request: Request instance for CreateResourcePath.
|
1096
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateResourcePathRequest`
|
1097
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateResourcePathResponse`
|
1098
|
-
def CreateResourcePath(request)
|
1099
|
-
body = send_request('CreateResourcePath', request.serialize)
|
1100
|
-
response = JSON.parse(body)
|
1101
|
-
if response['Response'].key?('Error') == false
|
1102
|
-
model = CreateResourcePathResponse.new
|
1103
|
-
model.deserialize(response['Response'])
|
1104
|
-
model
|
1105
|
-
else
|
1106
|
-
code = response['Response']['Error']['Code']
|
1107
|
-
message = response['Response']['Error']['Message']
|
1108
|
-
reqid = response['Response']['RequestId']
|
1109
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1110
|
-
end
|
1111
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1112
|
-
raise e
|
1113
|
-
rescue StandardError => e
|
1114
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1115
|
-
end
|
1116
|
-
|
1117
800
|
# 创建质量规则接口
|
1118
801
|
|
1119
802
|
# @param request: Request instance for CreateRule.
|
@@ -1162,7 +845,6 @@ module TencentCloud
|
|
1162
845
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1163
846
|
end
|
1164
847
|
|
1165
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
1166
848
|
# 创建任务
|
1167
849
|
|
1168
850
|
# @param request: Request instance for CreateTask.
|
@@ -1211,7 +893,7 @@ module TencentCloud
|
|
1211
893
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1212
894
|
end
|
1213
895
|
|
1214
|
-
#
|
896
|
+
# 提交任务版本
|
1215
897
|
|
1216
898
|
# @param request: Request instance for CreateTaskVersionDs.
|
1217
899
|
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateTaskVersionDsRequest`
|
@@ -1235,17 +917,16 @@ module TencentCloud
|
|
1235
917
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1236
918
|
end
|
1237
919
|
|
1238
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
1239
920
|
# 创建工作流
|
1240
921
|
|
1241
|
-
# @param request: Request instance for
|
1242
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1243
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1244
|
-
def
|
1245
|
-
body = send_request('
|
922
|
+
# @param request: Request instance for CreateWorkflowDs.
|
923
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateWorkflowDsRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateWorkflowDsResponse`
|
925
|
+
def CreateWorkflowDs(request)
|
926
|
+
body = send_request('CreateWorkflowDs', request.serialize)
|
1246
927
|
response = JSON.parse(body)
|
1247
928
|
if response['Response'].key?('Error') == false
|
1248
|
-
model =
|
929
|
+
model = CreateWorkflowDsResponse.new
|
1249
930
|
model.deserialize(response['Response'])
|
1250
931
|
model
|
1251
932
|
else
|
@@ -1284,30 +965,6 @@ module TencentCloud
|
|
1284
965
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1285
966
|
end
|
1286
967
|
|
1287
|
-
# DeleteBaseline
|
1288
|
-
|
1289
|
-
# @param request: Request instance for DeleteBaseline.
|
1290
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteBaselineRequest`
|
1291
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteBaselineResponse`
|
1292
|
-
def DeleteBaseline(request)
|
1293
|
-
body = send_request('DeleteBaseline', request.serialize)
|
1294
|
-
response = JSON.parse(body)
|
1295
|
-
if response['Response'].key?('Error') == false
|
1296
|
-
model = DeleteBaselineResponse.new
|
1297
|
-
model.deserialize(response['Response'])
|
1298
|
-
model
|
1299
|
-
else
|
1300
|
-
code = response['Response']['Error']['Code']
|
1301
|
-
message = response['Response']['Error']['Message']
|
1302
|
-
reqid = response['Response']['RequestId']
|
1303
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1304
|
-
end
|
1305
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1306
|
-
raise e
|
1307
|
-
rescue StandardError => e
|
1308
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1309
|
-
end
|
1310
|
-
|
1311
968
|
# 删除用户自定义函数
|
1312
969
|
|
1313
970
|
# @param request: Request instance for DeleteCustomFunction.
|
@@ -1332,7 +989,6 @@ module TencentCloud
|
|
1332
989
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1333
990
|
end
|
1334
991
|
|
1335
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
1336
992
|
# 删除数据源
|
1337
993
|
|
1338
994
|
# @param request: Request instance for DeleteDataSources.
|
@@ -1429,17 +1085,16 @@ module TencentCloud
|
|
1429
1085
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1430
1086
|
end
|
1431
1087
|
|
1432
|
-
#
|
1433
|
-
# 删除文件夹
|
1088
|
+
# 删除集成节点
|
1434
1089
|
|
1435
|
-
# @param request: Request instance for
|
1436
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1437
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1438
|
-
def
|
1439
|
-
body = send_request('
|
1090
|
+
# @param request: Request instance for DeleteIntegrationNode.
|
1091
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteIntegrationNodeRequest`
|
1092
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteIntegrationNodeResponse`
|
1093
|
+
def DeleteIntegrationNode(request)
|
1094
|
+
body = send_request('DeleteIntegrationNode', request.serialize)
|
1440
1095
|
response = JSON.parse(body)
|
1441
1096
|
if response['Response'].key?('Error') == false
|
1442
|
-
model =
|
1097
|
+
model = DeleteIntegrationNodeResponse.new
|
1443
1098
|
model.deserialize(response['Response'])
|
1444
1099
|
model
|
1445
1100
|
else
|
@@ -1454,31 +1109,7 @@ module TencentCloud
|
|
1454
1109
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1455
1110
|
end
|
1456
1111
|
|
1457
|
-
#
|
1458
|
-
|
1459
|
-
# @param request: Request instance for DeleteIntegrationNode.
|
1460
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteIntegrationNodeRequest`
|
1461
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteIntegrationNodeResponse`
|
1462
|
-
def DeleteIntegrationNode(request)
|
1463
|
-
body = send_request('DeleteIntegrationNode', request.serialize)
|
1464
|
-
response = JSON.parse(body)
|
1465
|
-
if response['Response'].key?('Error') == false
|
1466
|
-
model = DeleteIntegrationNodeResponse.new
|
1467
|
-
model.deserialize(response['Response'])
|
1468
|
-
model
|
1469
|
-
else
|
1470
|
-
code = response['Response']['Error']['Code']
|
1471
|
-
message = response['Response']['Error']['Message']
|
1472
|
-
reqid = response['Response']['RequestId']
|
1473
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1474
|
-
end
|
1475
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1476
|
-
raise e
|
1477
|
-
rescue StandardError => e
|
1478
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1479
|
-
end
|
1480
|
-
|
1481
|
-
# 删除集成任务
|
1112
|
+
# 删除集成任务
|
1482
1113
|
|
1483
1114
|
# @param request: Request instance for DeleteIntegrationTask.
|
1484
1115
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteIntegrationTaskRequest`
|
@@ -1718,7 +1349,7 @@ module TencentCloud
|
|
1718
1349
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1719
1350
|
end
|
1720
1351
|
|
1721
|
-
#
|
1352
|
+
# 删除编排空间任务
|
1722
1353
|
|
1723
1354
|
# @param request: Request instance for DeleteTaskDs.
|
1724
1355
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteTaskDsRequest`
|
@@ -1766,31 +1397,6 @@ module TencentCloud
|
|
1766
1397
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1767
1398
|
end
|
1768
1399
|
|
1769
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
1770
|
-
# 删除工作流
|
1771
|
-
|
1772
|
-
# @param request: Request instance for DeleteWorkflowNew.
|
1773
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteWorkflowNewRequest`
|
1774
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteWorkflowNewResponse`
|
1775
|
-
def DeleteWorkflowNew(request)
|
1776
|
-
body = send_request('DeleteWorkflowNew', request.serialize)
|
1777
|
-
response = JSON.parse(body)
|
1778
|
-
if response['Response'].key?('Error') == false
|
1779
|
-
model = DeleteWorkflowNewResponse.new
|
1780
|
-
model.deserialize(response['Response'])
|
1781
|
-
model
|
1782
|
-
else
|
1783
|
-
code = response['Response']['Error']['Code']
|
1784
|
-
message = response['Response']['Error']['Message']
|
1785
|
-
reqid = response['Response']['RequestId']
|
1786
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1787
|
-
end
|
1788
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1789
|
-
raise e
|
1790
|
-
rescue StandardError => e
|
1791
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1792
|
-
end
|
1793
|
-
|
1794
1400
|
# 告警事件列表
|
1795
1401
|
|
1796
1402
|
# @param request: Request instance for DescribeAlarmEvents.
|
@@ -1863,16 +1469,16 @@ module TencentCloud
|
|
1863
1469
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1864
1470
|
end
|
1865
1471
|
|
1866
|
-
#
|
1472
|
+
# 获取待审批列表
|
1867
1473
|
|
1868
|
-
# @param request: Request instance for
|
1869
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1870
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1871
|
-
def
|
1872
|
-
body = send_request('
|
1474
|
+
# @param request: Request instance for DescribeApproveList.
|
1475
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeApproveListRequest`
|
1476
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeApproveListResponse`
|
1477
|
+
def DescribeApproveList(request)
|
1478
|
+
body = send_request('DescribeApproveList', request.serialize)
|
1873
1479
|
response = JSON.parse(body)
|
1874
1480
|
if response['Response'].key?('Error') == false
|
1875
|
-
model =
|
1481
|
+
model = DescribeApproveListResponse.new
|
1876
1482
|
model.deserialize(response['Response'])
|
1877
1483
|
model
|
1878
1484
|
else
|
@@ -1887,16 +1493,16 @@ module TencentCloud
|
|
1887
1493
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1888
1494
|
end
|
1889
1495
|
|
1890
|
-
#
|
1496
|
+
# 获取审批分类列表
|
1891
1497
|
|
1892
|
-
# @param request: Request instance for
|
1893
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1894
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1895
|
-
def
|
1896
|
-
body = send_request('
|
1498
|
+
# @param request: Request instance for DescribeApproveTypeList.
|
1499
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeApproveTypeListRequest`
|
1500
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeApproveTypeListResponse`
|
1501
|
+
def DescribeApproveTypeList(request)
|
1502
|
+
body = send_request('DescribeApproveTypeList', request.serialize)
|
1897
1503
|
response = JSON.parse(body)
|
1898
1504
|
if response['Response'].key?('Error') == false
|
1899
|
-
model =
|
1505
|
+
model = DescribeApproveTypeListResponse.new
|
1900
1506
|
model.deserialize(response['Response'])
|
1901
1507
|
model
|
1902
1508
|
else
|
@@ -1911,16 +1517,16 @@ module TencentCloud
|
|
1911
1517
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1912
1518
|
end
|
1913
1519
|
|
1914
|
-
#
|
1520
|
+
# 批量操作页面获取任务列表
|
1915
1521
|
|
1916
|
-
# @param request: Request instance for
|
1917
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1918
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1919
|
-
def
|
1920
|
-
body = send_request('
|
1522
|
+
# @param request: Request instance for DescribeBatchOperateTask.
|
1523
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBatchOperateTaskRequest`
|
1524
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBatchOperateTaskResponse`
|
1525
|
+
def DescribeBatchOperateTask(request)
|
1526
|
+
body = send_request('DescribeBatchOperateTask', request.serialize)
|
1921
1527
|
response = JSON.parse(body)
|
1922
1528
|
if response['Response'].key?('Error') == false
|
1923
|
-
model =
|
1529
|
+
model = DescribeBatchOperateTaskResponse.new
|
1924
1530
|
model.deserialize(response['Response'])
|
1925
1531
|
model
|
1926
1532
|
else
|
@@ -1935,16 +1541,16 @@ module TencentCloud
|
|
1935
1541
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1936
1542
|
end
|
1937
1543
|
|
1938
|
-
#
|
1544
|
+
# 列出字段血缘信息
|
1939
1545
|
|
1940
|
-
# @param request: Request instance for
|
1941
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1942
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1943
|
-
def
|
1944
|
-
body = send_request('
|
1546
|
+
# @param request: Request instance for DescribeColumnLineage.
|
1547
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeColumnLineageRequest`
|
1548
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeColumnLineageResponse`
|
1549
|
+
def DescribeColumnLineage(request)
|
1550
|
+
body = send_request('DescribeColumnLineage', request.serialize)
|
1945
1551
|
response = JSON.parse(body)
|
1946
1552
|
if response['Response'].key?('Error') == false
|
1947
|
-
model =
|
1553
|
+
model = DescribeColumnLineageResponse.new
|
1948
1554
|
model.deserialize(response['Response'])
|
1949
1555
|
model
|
1950
1556
|
else
|
@@ -1959,16 +1565,16 @@ module TencentCloud
|
|
1959
1565
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1960
1566
|
end
|
1961
1567
|
|
1962
|
-
#
|
1568
|
+
# 查询表的所有列元数据
|
1963
1569
|
|
1964
|
-
# @param request: Request instance for
|
1965
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1966
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1967
|
-
def
|
1968
|
-
body = send_request('
|
1570
|
+
# @param request: Request instance for DescribeColumnsMeta.
|
1571
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeColumnsMetaRequest`
|
1572
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeColumnsMetaResponse`
|
1573
|
+
def DescribeColumnsMeta(request)
|
1574
|
+
body = send_request('DescribeColumnsMeta', request.serialize)
|
1969
1575
|
response = JSON.parse(body)
|
1970
1576
|
if response['Response'].key?('Error') == false
|
1971
|
-
model =
|
1577
|
+
model = DescribeColumnsMetaResponse.new
|
1972
1578
|
model.deserialize(response['Response'])
|
1973
1579
|
model
|
1974
1580
|
else
|
@@ -1983,16 +1589,16 @@ module TencentCloud
|
|
1983
1589
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1984
1590
|
end
|
1985
1591
|
|
1986
|
-
#
|
1592
|
+
# 数据质量的概览页面数据监测情况接口
|
1987
1593
|
|
1988
|
-
# @param request: Request instance for
|
1989
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1990
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1991
|
-
def
|
1992
|
-
body = send_request('
|
1594
|
+
# @param request: Request instance for DescribeDataCheckStat.
|
1595
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataCheckStatRequest`
|
1596
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataCheckStatResponse`
|
1597
|
+
def DescribeDataCheckStat(request)
|
1598
|
+
body = send_request('DescribeDataCheckStat', request.serialize)
|
1993
1599
|
response = JSON.parse(body)
|
1994
1600
|
if response['Response'].key?('Error') == false
|
1995
|
-
model =
|
1601
|
+
model = DescribeDataCheckStatResponse.new
|
1996
1602
|
model.deserialize(response['Response'])
|
1997
1603
|
model
|
1998
1604
|
else
|
@@ -2007,16 +1613,16 @@ module TencentCloud
|
|
2007
1613
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2008
1614
|
end
|
2009
1615
|
|
2010
|
-
#
|
1616
|
+
# 获取数据源信息-数据源分页列表
|
2011
1617
|
|
2012
|
-
# @param request: Request instance for
|
2013
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2014
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2015
|
-
def
|
2016
|
-
body = send_request('
|
1618
|
+
# @param request: Request instance for DescribeDataSourceInfoList.
|
1619
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceInfoListRequest`
|
1620
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceInfoListResponse`
|
1621
|
+
def DescribeDataSourceInfoList(request)
|
1622
|
+
body = send_request('DescribeDataSourceInfoList', request.serialize)
|
2017
1623
|
response = JSON.parse(body)
|
2018
1624
|
if response['Response'].key?('Error') == false
|
2019
|
-
model =
|
1625
|
+
model = DescribeDataSourceInfoListResponse.new
|
2020
1626
|
model.deserialize(response['Response'])
|
2021
1627
|
model
|
2022
1628
|
else
|
@@ -2031,16 +1637,16 @@ module TencentCloud
|
|
2031
1637
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2032
1638
|
end
|
2033
1639
|
|
2034
|
-
#
|
1640
|
+
# 数据源详情
|
2035
1641
|
|
2036
|
-
# @param request: Request instance for
|
2037
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2038
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2039
|
-
def
|
2040
|
-
body = send_request('
|
1642
|
+
# @param request: Request instance for DescribeDataSourceList.
|
1643
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceListRequest`
|
1644
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceListResponse`
|
1645
|
+
def DescribeDataSourceList(request)
|
1646
|
+
body = send_request('DescribeDataSourceList', request.serialize)
|
2041
1647
|
response = JSON.parse(body)
|
2042
1648
|
if response['Response'].key?('Error') == false
|
2043
|
-
model =
|
1649
|
+
model = DescribeDataSourceListResponse.new
|
2044
1650
|
model.deserialize(response['Response'])
|
2045
1651
|
model
|
2046
1652
|
else
|
@@ -2055,16 +1661,16 @@ module TencentCloud
|
|
2055
1661
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2056
1662
|
end
|
2057
1663
|
|
2058
|
-
#
|
1664
|
+
# 获取数据库信息
|
2059
1665
|
|
2060
|
-
# @param request: Request instance for
|
2061
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2062
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2063
|
-
def
|
2064
|
-
body = send_request('
|
1666
|
+
# @param request: Request instance for DescribeDatabaseInfoList.
|
1667
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseInfoListRequest`
|
1668
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseInfoListResponse`
|
1669
|
+
def DescribeDatabaseInfoList(request)
|
1670
|
+
body = send_request('DescribeDatabaseInfoList', request.serialize)
|
2065
1671
|
response = JSON.parse(body)
|
2066
1672
|
if response['Response'].key?('Error') == false
|
2067
|
-
model =
|
1673
|
+
model = DescribeDatabaseInfoListResponse.new
|
2068
1674
|
model.deserialize(response['Response'])
|
2069
1675
|
model
|
2070
1676
|
else
|
@@ -2079,16 +1685,16 @@ module TencentCloud
|
|
2079
1685
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2080
1686
|
end
|
2081
1687
|
|
2082
|
-
#
|
1688
|
+
# 查询数据库列表
|
2083
1689
|
|
2084
|
-
# @param request: Request instance for
|
2085
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2086
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2087
|
-
def
|
2088
|
-
body = send_request('
|
1690
|
+
# @param request: Request instance for DescribeDatabaseMetas.
|
1691
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseMetasRequest`
|
1692
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseMetasResponse`
|
1693
|
+
def DescribeDatabaseMetas(request)
|
1694
|
+
body = send_request('DescribeDatabaseMetas', request.serialize)
|
2089
1695
|
response = JSON.parse(body)
|
2090
1696
|
if response['Response'].key?('Error') == false
|
2091
|
-
model =
|
1697
|
+
model = DescribeDatabaseMetasResponse.new
|
2092
1698
|
model.deserialize(response['Response'])
|
2093
1699
|
model
|
2094
1700
|
else
|
@@ -2103,16 +1709,16 @@ module TencentCloud
|
|
2103
1709
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2104
1710
|
end
|
2105
1711
|
|
2106
|
-
#
|
1712
|
+
# 数据源详情
|
2107
1713
|
|
2108
|
-
# @param request: Request instance for
|
2109
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2110
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2111
|
-
def
|
2112
|
-
body = send_request('
|
1714
|
+
# @param request: Request instance for DescribeDatasource.
|
1715
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatasourceRequest`
|
1716
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatasourceResponse`
|
1717
|
+
def DescribeDatasource(request)
|
1718
|
+
body = send_request('DescribeDatasource', request.serialize)
|
2113
1719
|
response = JSON.parse(body)
|
2114
1720
|
if response['Response'].key?('Error') == false
|
2115
|
-
model =
|
1721
|
+
model = DescribeDatasourceResponse.new
|
2116
1722
|
model.deserialize(response['Response'])
|
2117
1723
|
model
|
2118
1724
|
else
|
@@ -2127,16 +1733,16 @@ module TencentCloud
|
|
2127
1733
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2128
1734
|
end
|
2129
1735
|
|
2130
|
-
#
|
1736
|
+
# 根据层级查找上/下游任务节点
|
2131
1737
|
|
2132
|
-
# @param request: Request instance for
|
2133
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2134
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2135
|
-
def
|
2136
|
-
body = send_request('
|
1738
|
+
# @param request: Request instance for DescribeDependOpsTasks.
|
1739
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTasksRequest`
|
1740
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTasksResponse`
|
1741
|
+
def DescribeDependOpsTasks(request)
|
1742
|
+
body = send_request('DescribeDependOpsTasks', request.serialize)
|
2137
1743
|
response = JSON.parse(body)
|
2138
1744
|
if response['Response'].key?('Error') == false
|
2139
|
-
model =
|
1745
|
+
model = DescribeDependOpsTasksResponse.new
|
2140
1746
|
model.deserialize(response['Response'])
|
2141
1747
|
model
|
2142
1748
|
else
|
@@ -2151,16 +1757,16 @@ module TencentCloud
|
|
2151
1757
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2152
1758
|
end
|
2153
1759
|
|
2154
|
-
#
|
1760
|
+
# 通过taskIds查询task详情列表
|
2155
1761
|
|
2156
|
-
# @param request: Request instance for
|
2157
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2158
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2159
|
-
def
|
2160
|
-
body = send_request('
|
1762
|
+
# @param request: Request instance for DescribeDependTaskLists.
|
1763
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependTaskListsRequest`
|
1764
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependTaskListsResponse`
|
1765
|
+
def DescribeDependTaskLists(request)
|
1766
|
+
body = send_request('DescribeDependTaskLists', request.serialize)
|
2161
1767
|
response = JSON.parse(body)
|
2162
1768
|
if response['Response'].key?('Error') == false
|
2163
|
-
model =
|
1769
|
+
model = DescribeDependTaskListsResponse.new
|
2164
1770
|
model.deserialize(response['Response'])
|
2165
1771
|
model
|
2166
1772
|
else
|
@@ -2175,16 +1781,16 @@ module TencentCloud
|
|
2175
1781
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2176
1782
|
end
|
2177
1783
|
|
2178
|
-
#
|
1784
|
+
# 质量报告-查询质量评分
|
2179
1785
|
|
2180
|
-
# @param request: Request instance for
|
2181
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2182
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2183
|
-
def
|
2184
|
-
body = send_request('
|
1786
|
+
# @param request: Request instance for DescribeDimensionScore.
|
1787
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDimensionScoreRequest`
|
1788
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDimensionScoreResponse`
|
1789
|
+
def DescribeDimensionScore(request)
|
1790
|
+
body = send_request('DescribeDimensionScore', request.serialize)
|
2185
1791
|
response = JSON.parse(body)
|
2186
1792
|
if response['Response'].key?('Error') == false
|
2187
|
-
model =
|
1793
|
+
model = DescribeDimensionScoreResponse.new
|
2188
1794
|
model.deserialize(response['Response'])
|
2189
1795
|
model
|
2190
1796
|
else
|
@@ -2199,16 +1805,16 @@ module TencentCloud
|
|
2199
1805
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2200
1806
|
end
|
2201
1807
|
|
2202
|
-
#
|
1808
|
+
# 分页查询试运行实例列表
|
2203
1809
|
|
2204
|
-
# @param request: Request instance for
|
2205
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2206
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2207
|
-
def
|
2208
|
-
body = send_request('
|
1810
|
+
# @param request: Request instance for DescribeDrInstancePage.
|
1811
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstancePageRequest`
|
1812
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstancePageResponse`
|
1813
|
+
def DescribeDrInstancePage(request)
|
1814
|
+
body = send_request('DescribeDrInstancePage', request.serialize)
|
2209
1815
|
response = JSON.parse(body)
|
2210
1816
|
if response['Response'].key?('Error') == false
|
2211
|
-
model =
|
1817
|
+
model = DescribeDrInstancePageResponse.new
|
2212
1818
|
model.deserialize(response['Response'])
|
2213
1819
|
model
|
2214
1820
|
else
|
@@ -2223,16 +1829,16 @@ module TencentCloud
|
|
2223
1829
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2224
1830
|
end
|
2225
1831
|
|
2226
|
-
#
|
1832
|
+
# 查询目录树
|
2227
1833
|
|
2228
|
-
# @param request: Request instance for
|
2229
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2230
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2231
|
-
def
|
2232
|
-
body = send_request('
|
1834
|
+
# @param request: Request instance for DescribeDsFolderTree.
|
1835
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsFolderTreeRequest`
|
1836
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsFolderTreeResponse`
|
1837
|
+
def DescribeDsFolderTree(request)
|
1838
|
+
body = send_request('DescribeDsFolderTree', request.serialize)
|
2233
1839
|
response = JSON.parse(body)
|
2234
1840
|
if response['Response'].key?('Error') == false
|
2235
|
-
model =
|
1841
|
+
model = DescribeDsFolderTreeResponse.new
|
2236
1842
|
model.deserialize(response['Response'])
|
2237
1843
|
model
|
2238
1844
|
else
|
@@ -2247,16 +1853,16 @@ module TencentCloud
|
|
2247
1853
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2248
1854
|
end
|
2249
1855
|
|
2250
|
-
#
|
1856
|
+
# 查询父目录树,用于工作流、任务定位
|
2251
1857
|
|
2252
|
-
# @param request: Request instance for
|
2253
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2254
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2255
|
-
def
|
2256
|
-
body = send_request('
|
1858
|
+
# @param request: Request instance for DescribeDsParentFolderTree.
|
1859
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsParentFolderTreeRequest`
|
1860
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsParentFolderTreeResponse`
|
1861
|
+
def DescribeDsParentFolderTree(request)
|
1862
|
+
body = send_request('DescribeDsParentFolderTree', request.serialize)
|
2257
1863
|
response = JSON.parse(body)
|
2258
1864
|
if response['Response'].key?('Error') == false
|
2259
|
-
model =
|
1865
|
+
model = DescribeDsParentFolderTreeResponse.new
|
2260
1866
|
model.deserialize(response['Response'])
|
2261
1867
|
model
|
2262
1868
|
else
|
@@ -2271,16 +1877,16 @@ module TencentCloud
|
|
2271
1877
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2272
1878
|
end
|
2273
1879
|
|
2274
|
-
#
|
1880
|
+
# 根据项目ID和事件名称查看事件详情
|
2275
1881
|
|
2276
|
-
# @param request: Request instance for
|
2277
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2278
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2279
|
-
def
|
2280
|
-
body = send_request('
|
1882
|
+
# @param request: Request instance for DescribeEvent.
|
1883
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventRequest`
|
1884
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventResponse`
|
1885
|
+
def DescribeEvent(request)
|
1886
|
+
body = send_request('DescribeEvent', request.serialize)
|
2281
1887
|
response = JSON.parse(body)
|
2282
1888
|
if response['Response'].key?('Error') == false
|
2283
|
-
model =
|
1889
|
+
model = DescribeEventResponse.new
|
2284
1890
|
model.deserialize(response['Response'])
|
2285
1891
|
model
|
2286
1892
|
else
|
@@ -2295,17 +1901,16 @@ module TencentCloud
|
|
2295
1901
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2296
1902
|
end
|
2297
1903
|
|
2298
|
-
#
|
2299
|
-
# 数据源详情
|
1904
|
+
# 根据条件查找事件实例
|
2300
1905
|
|
2301
|
-
# @param request: Request instance for
|
2302
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2303
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2304
|
-
def
|
2305
|
-
body = send_request('
|
1906
|
+
# @param request: Request instance for DescribeEventCases.
|
1907
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventCasesRequest`
|
1908
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventCasesResponse`
|
1909
|
+
def DescribeEventCases(request)
|
1910
|
+
body = send_request('DescribeEventCases', request.serialize)
|
2306
1911
|
response = JSON.parse(body)
|
2307
1912
|
if response['Response'].key?('Error') == false
|
2308
|
-
model =
|
1913
|
+
model = DescribeEventCasesResponse.new
|
2309
1914
|
model.deserialize(response['Response'])
|
2310
1915
|
model
|
2311
1916
|
else
|
@@ -2320,17 +1925,16 @@ module TencentCloud
|
|
2320
1925
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2321
1926
|
end
|
2322
1927
|
|
2323
|
-
#
|
2324
|
-
# 数据源列表
|
1928
|
+
# 查看事件实例的消费任务
|
2325
1929
|
|
2326
|
-
# @param request: Request instance for
|
2327
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2328
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2329
|
-
def
|
2330
|
-
body = send_request('
|
1930
|
+
# @param request: Request instance for DescribeEventConsumeTasks.
|
1931
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventConsumeTasksRequest`
|
1932
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventConsumeTasksResponse`
|
1933
|
+
def DescribeEventConsumeTasks(request)
|
1934
|
+
body = send_request('DescribeEventConsumeTasks', request.serialize)
|
2331
1935
|
response = JSON.parse(body)
|
2332
1936
|
if response['Response'].key?('Error') == false
|
2333
|
-
model =
|
1937
|
+
model = DescribeEventConsumeTasksResponse.new
|
2334
1938
|
model.deserialize(response['Response'])
|
2335
1939
|
model
|
2336
1940
|
else
|
@@ -2345,16 +1949,16 @@ module TencentCloud
|
|
2345
1949
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2346
1950
|
end
|
2347
1951
|
|
2348
|
-
#
|
1952
|
+
# 查询规则组执行策略
|
2349
1953
|
|
2350
|
-
# @param request: Request instance for
|
2351
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2352
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2353
|
-
def
|
2354
|
-
body = send_request('
|
1954
|
+
# @param request: Request instance for DescribeExecStrategy.
|
1955
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeExecStrategyRequest`
|
1956
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeExecStrategyResponse`
|
1957
|
+
def DescribeExecStrategy(request)
|
1958
|
+
body = send_request('DescribeExecStrategy', request.serialize)
|
2355
1959
|
response = JSON.parse(body)
|
2356
1960
|
if response['Response'].key?('Error') == false
|
2357
|
-
model =
|
1961
|
+
model = DescribeExecStrategyResponse.new
|
2358
1962
|
model.deserialize(response['Response'])
|
2359
1963
|
model
|
2360
1964
|
else
|
@@ -2369,16 +1973,16 @@ module TencentCloud
|
|
2369
1973
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2370
1974
|
end
|
2371
1975
|
|
2372
|
-
#
|
1976
|
+
# 元数据模型-字段基础信息查询接口
|
2373
1977
|
|
2374
|
-
# @param request: Request instance for
|
2375
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2376
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2377
|
-
def
|
2378
|
-
body = send_request('
|
1978
|
+
# @param request: Request instance for DescribeFieldBasicInfo.
|
1979
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFieldBasicInfoRequest`
|
1980
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFieldBasicInfoResponse`
|
1981
|
+
def DescribeFieldBasicInfo(request)
|
1982
|
+
body = send_request('DescribeFieldBasicInfo', request.serialize)
|
2379
1983
|
response = JSON.parse(body)
|
2380
1984
|
if response['Response'].key?('Error') == false
|
2381
|
-
model =
|
1985
|
+
model = DescribeFieldBasicInfoResponse.new
|
2382
1986
|
model.deserialize(response['Response'])
|
2383
1987
|
model
|
2384
1988
|
else
|
@@ -2393,587 +1997,7 @@ module TencentCloud
|
|
2393
1997
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2394
1998
|
end
|
2395
1999
|
|
2396
|
-
#
|
2397
|
-
|
2398
|
-
# @param request: Request instance for DescribeDatabaseMetas.
|
2399
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseMetasRequest`
|
2400
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseMetasResponse`
|
2401
|
-
def DescribeDatabaseMetas(request)
|
2402
|
-
body = send_request('DescribeDatabaseMetas', request.serialize)
|
2403
|
-
response = JSON.parse(body)
|
2404
|
-
if response['Response'].key?('Error') == false
|
2405
|
-
model = DescribeDatabaseMetasResponse.new
|
2406
|
-
model.deserialize(response['Response'])
|
2407
|
-
model
|
2408
|
-
else
|
2409
|
-
code = response['Response']['Error']['Code']
|
2410
|
-
message = response['Response']['Error']['Message']
|
2411
|
-
reqid = response['Response']['RequestId']
|
2412
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2413
|
-
end
|
2414
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2415
|
-
raise e
|
2416
|
-
rescue StandardError => e
|
2417
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2418
|
-
end
|
2419
|
-
|
2420
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2421
|
-
# 数据源详情
|
2422
|
-
|
2423
|
-
# @param request: Request instance for DescribeDatasource.
|
2424
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatasourceRequest`
|
2425
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatasourceResponse`
|
2426
|
-
def DescribeDatasource(request)
|
2427
|
-
body = send_request('DescribeDatasource', request.serialize)
|
2428
|
-
response = JSON.parse(body)
|
2429
|
-
if response['Response'].key?('Error') == false
|
2430
|
-
model = DescribeDatasourceResponse.new
|
2431
|
-
model.deserialize(response['Response'])
|
2432
|
-
model
|
2433
|
-
else
|
2434
|
-
code = response['Response']['Error']['Code']
|
2435
|
-
message = response['Response']['Error']['Message']
|
2436
|
-
reqid = response['Response']['RequestId']
|
2437
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2438
|
-
end
|
2439
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2440
|
-
raise e
|
2441
|
-
rescue StandardError => e
|
2442
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2443
|
-
end
|
2444
|
-
|
2445
|
-
# 根据任务id获取下游依赖任务列表
|
2446
|
-
|
2447
|
-
# @param request: Request instance for DescribeDependOpsTaskList.
|
2448
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTaskListRequest`
|
2449
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTaskListResponse`
|
2450
|
-
def DescribeDependOpsTaskList(request)
|
2451
|
-
body = send_request('DescribeDependOpsTaskList', request.serialize)
|
2452
|
-
response = JSON.parse(body)
|
2453
|
-
if response['Response'].key?('Error') == false
|
2454
|
-
model = DescribeDependOpsTaskListResponse.new
|
2455
|
-
model.deserialize(response['Response'])
|
2456
|
-
model
|
2457
|
-
else
|
2458
|
-
code = response['Response']['Error']['Code']
|
2459
|
-
message = response['Response']['Error']['Message']
|
2460
|
-
reqid = response['Response']['RequestId']
|
2461
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2462
|
-
end
|
2463
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2464
|
-
raise e
|
2465
|
-
rescue StandardError => e
|
2466
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2467
|
-
end
|
2468
|
-
|
2469
|
-
# 根据层级查找上/下游任务节点
|
2470
|
-
|
2471
|
-
# @param request: Request instance for DescribeDependOpsTasks.
|
2472
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTasksRequest`
|
2473
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTasksResponse`
|
2474
|
-
def DescribeDependOpsTasks(request)
|
2475
|
-
body = send_request('DescribeDependOpsTasks', request.serialize)
|
2476
|
-
response = JSON.parse(body)
|
2477
|
-
if response['Response'].key?('Error') == false
|
2478
|
-
model = DescribeDependOpsTasksResponse.new
|
2479
|
-
model.deserialize(response['Response'])
|
2480
|
-
model
|
2481
|
-
else
|
2482
|
-
code = response['Response']['Error']['Code']
|
2483
|
-
message = response['Response']['Error']['Message']
|
2484
|
-
reqid = response['Response']['RequestId']
|
2485
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2486
|
-
end
|
2487
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2488
|
-
raise e
|
2489
|
-
rescue StandardError => e
|
2490
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2491
|
-
end
|
2492
|
-
|
2493
|
-
# 通过taskIds查询task详情列表
|
2494
|
-
|
2495
|
-
# @param request: Request instance for DescribeDependTaskLists.
|
2496
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependTaskListsRequest`
|
2497
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependTaskListsResponse`
|
2498
|
-
def DescribeDependTaskLists(request)
|
2499
|
-
body = send_request('DescribeDependTaskLists', request.serialize)
|
2500
|
-
response = JSON.parse(body)
|
2501
|
-
if response['Response'].key?('Error') == false
|
2502
|
-
model = DescribeDependTaskListsResponse.new
|
2503
|
-
model.deserialize(response['Response'])
|
2504
|
-
model
|
2505
|
-
else
|
2506
|
-
code = response['Response']['Error']['Code']
|
2507
|
-
message = response['Response']['Error']['Message']
|
2508
|
-
reqid = response['Response']['RequestId']
|
2509
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2510
|
-
end
|
2511
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2512
|
-
raise e
|
2513
|
-
rescue StandardError => e
|
2514
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2515
|
-
end
|
2516
|
-
|
2517
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2518
|
-
# 根据层级查找上/下游任务节点
|
2519
|
-
|
2520
|
-
# @param request: Request instance for DescribeDependTasksNew.
|
2521
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependTasksNewRequest`
|
2522
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependTasksNewResponse`
|
2523
|
-
def DescribeDependTasksNew(request)
|
2524
|
-
body = send_request('DescribeDependTasksNew', request.serialize)
|
2525
|
-
response = JSON.parse(body)
|
2526
|
-
if response['Response'].key?('Error') == false
|
2527
|
-
model = DescribeDependTasksNewResponse.new
|
2528
|
-
model.deserialize(response['Response'])
|
2529
|
-
model
|
2530
|
-
else
|
2531
|
-
code = response['Response']['Error']['Code']
|
2532
|
-
message = response['Response']['Error']['Message']
|
2533
|
-
reqid = response['Response']['RequestId']
|
2534
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2535
|
-
end
|
2536
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2537
|
-
raise e
|
2538
|
-
rescue StandardError => e
|
2539
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2540
|
-
end
|
2541
|
-
|
2542
|
-
# 查询基线诊断信息
|
2543
|
-
|
2544
|
-
# @param request: Request instance for DescribeDiagnosticInfoByBaselineId.
|
2545
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDiagnosticInfoByBaselineIdRequest`
|
2546
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDiagnosticInfoByBaselineIdResponse`
|
2547
|
-
def DescribeDiagnosticInfoByBaselineId(request)
|
2548
|
-
body = send_request('DescribeDiagnosticInfoByBaselineId', request.serialize)
|
2549
|
-
response = JSON.parse(body)
|
2550
|
-
if response['Response'].key?('Error') == false
|
2551
|
-
model = DescribeDiagnosticInfoByBaselineIdResponse.new
|
2552
|
-
model.deserialize(response['Response'])
|
2553
|
-
model
|
2554
|
-
else
|
2555
|
-
code = response['Response']['Error']['Code']
|
2556
|
-
message = response['Response']['Error']['Message']
|
2557
|
-
reqid = response['Response']['RequestId']
|
2558
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2559
|
-
end
|
2560
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2561
|
-
raise e
|
2562
|
-
rescue StandardError => e
|
2563
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2564
|
-
end
|
2565
|
-
|
2566
|
-
# 质量报告-查询质量评分
|
2567
|
-
|
2568
|
-
# @param request: Request instance for DescribeDimensionScore.
|
2569
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDimensionScoreRequest`
|
2570
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDimensionScoreResponse`
|
2571
|
-
def DescribeDimensionScore(request)
|
2572
|
-
body = send_request('DescribeDimensionScore', request.serialize)
|
2573
|
-
response = JSON.parse(body)
|
2574
|
-
if response['Response'].key?('Error') == false
|
2575
|
-
model = DescribeDimensionScoreResponse.new
|
2576
|
-
model.deserialize(response['Response'])
|
2577
|
-
model
|
2578
|
-
else
|
2579
|
-
code = response['Response']['Error']['Code']
|
2580
|
-
message = response['Response']['Error']['Message']
|
2581
|
-
reqid = response['Response']['RequestId']
|
2582
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2583
|
-
end
|
2584
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2585
|
-
raise e
|
2586
|
-
rescue StandardError => e
|
2587
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2588
|
-
end
|
2589
|
-
|
2590
|
-
# 分页查询试运行实例列表
|
2591
|
-
|
2592
|
-
# @param request: Request instance for DescribeDrInstancePage.
|
2593
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstancePageRequest`
|
2594
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstancePageResponse`
|
2595
|
-
def DescribeDrInstancePage(request)
|
2596
|
-
body = send_request('DescribeDrInstancePage', request.serialize)
|
2597
|
-
response = JSON.parse(body)
|
2598
|
-
if response['Response'].key?('Error') == false
|
2599
|
-
model = DescribeDrInstancePageResponse.new
|
2600
|
-
model.deserialize(response['Response'])
|
2601
|
-
model
|
2602
|
-
else
|
2603
|
-
code = response['Response']['Error']['Code']
|
2604
|
-
message = response['Response']['Error']['Message']
|
2605
|
-
reqid = response['Response']['RequestId']
|
2606
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2607
|
-
end
|
2608
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2609
|
-
raise e
|
2610
|
-
rescue StandardError => e
|
2611
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2612
|
-
end
|
2613
|
-
|
2614
|
-
# 查询试运行实例执行内容
|
2615
|
-
|
2616
|
-
# @param request: Request instance for DescribeDrInstanceScriptContent.
|
2617
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstanceScriptContentRequest`
|
2618
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstanceScriptContentResponse`
|
2619
|
-
def DescribeDrInstanceScriptContent(request)
|
2620
|
-
body = send_request('DescribeDrInstanceScriptContent', request.serialize)
|
2621
|
-
response = JSON.parse(body)
|
2622
|
-
if response['Response'].key?('Error') == false
|
2623
|
-
model = DescribeDrInstanceScriptContentResponse.new
|
2624
|
-
model.deserialize(response['Response'])
|
2625
|
-
model
|
2626
|
-
else
|
2627
|
-
code = response['Response']['Error']['Code']
|
2628
|
-
message = response['Response']['Error']['Message']
|
2629
|
-
reqid = response['Response']['RequestId']
|
2630
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2631
|
-
end
|
2632
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2633
|
-
raise e
|
2634
|
-
rescue StandardError => e
|
2635
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2636
|
-
end
|
2637
|
-
|
2638
|
-
# 查询试运行实例子实例列表
|
2639
|
-
|
2640
|
-
# @param request: Request instance for DescribeDrSonInstance.
|
2641
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrSonInstanceRequest`
|
2642
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrSonInstanceResponse`
|
2643
|
-
def DescribeDrSonInstance(request)
|
2644
|
-
body = send_request('DescribeDrSonInstance', request.serialize)
|
2645
|
-
response = JSON.parse(body)
|
2646
|
-
if response['Response'].key?('Error') == false
|
2647
|
-
model = DescribeDrSonInstanceResponse.new
|
2648
|
-
model.deserialize(response['Response'])
|
2649
|
-
model
|
2650
|
-
else
|
2651
|
-
code = response['Response']['Error']['Code']
|
2652
|
-
message = response['Response']['Error']['Message']
|
2653
|
-
reqid = response['Response']['RequestId']
|
2654
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2655
|
-
end
|
2656
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2657
|
-
raise e
|
2658
|
-
rescue StandardError => e
|
2659
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2660
|
-
end
|
2661
|
-
|
2662
|
-
# 查询目录树
|
2663
|
-
|
2664
|
-
# @param request: Request instance for DescribeDsFolderTree.
|
2665
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsFolderTreeRequest`
|
2666
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsFolderTreeResponse`
|
2667
|
-
def DescribeDsFolderTree(request)
|
2668
|
-
body = send_request('DescribeDsFolderTree', request.serialize)
|
2669
|
-
response = JSON.parse(body)
|
2670
|
-
if response['Response'].key?('Error') == false
|
2671
|
-
model = DescribeDsFolderTreeResponse.new
|
2672
|
-
model.deserialize(response['Response'])
|
2673
|
-
model
|
2674
|
-
else
|
2675
|
-
code = response['Response']['Error']['Code']
|
2676
|
-
message = response['Response']['Error']['Message']
|
2677
|
-
reqid = response['Response']['RequestId']
|
2678
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2679
|
-
end
|
2680
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2681
|
-
raise e
|
2682
|
-
rescue StandardError => e
|
2683
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2684
|
-
end
|
2685
|
-
|
2686
|
-
# 查询父目录树,用于工作流、任务定位
|
2687
|
-
|
2688
|
-
# @param request: Request instance for DescribeDsParentFolderTree.
|
2689
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsParentFolderTreeRequest`
|
2690
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsParentFolderTreeResponse`
|
2691
|
-
def DescribeDsParentFolderTree(request)
|
2692
|
-
body = send_request('DescribeDsParentFolderTree', request.serialize)
|
2693
|
-
response = JSON.parse(body)
|
2694
|
-
if response['Response'].key?('Error') == false
|
2695
|
-
model = DescribeDsParentFolderTreeResponse.new
|
2696
|
-
model.deserialize(response['Response'])
|
2697
|
-
model
|
2698
|
-
else
|
2699
|
-
code = response['Response']['Error']['Code']
|
2700
|
-
message = response['Response']['Error']['Message']
|
2701
|
-
reqid = response['Response']['RequestId']
|
2702
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2703
|
-
end
|
2704
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2705
|
-
raise e
|
2706
|
-
rescue StandardError => e
|
2707
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2708
|
-
end
|
2709
|
-
|
2710
|
-
# 根据项目ID和事件名称查看事件详情
|
2711
|
-
|
2712
|
-
# @param request: Request instance for DescribeEvent.
|
2713
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventRequest`
|
2714
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventResponse`
|
2715
|
-
def DescribeEvent(request)
|
2716
|
-
body = send_request('DescribeEvent', request.serialize)
|
2717
|
-
response = JSON.parse(body)
|
2718
|
-
if response['Response'].key?('Error') == false
|
2719
|
-
model = DescribeEventResponse.new
|
2720
|
-
model.deserialize(response['Response'])
|
2721
|
-
model
|
2722
|
-
else
|
2723
|
-
code = response['Response']['Error']['Code']
|
2724
|
-
message = response['Response']['Error']['Message']
|
2725
|
-
reqid = response['Response']['RequestId']
|
2726
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2727
|
-
end
|
2728
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2729
|
-
raise e
|
2730
|
-
rescue StandardError => e
|
2731
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2732
|
-
end
|
2733
|
-
|
2734
|
-
# 根据条件查找事件实例
|
2735
|
-
|
2736
|
-
# @param request: Request instance for DescribeEventCases.
|
2737
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventCasesRequest`
|
2738
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventCasesResponse`
|
2739
|
-
def DescribeEventCases(request)
|
2740
|
-
body = send_request('DescribeEventCases', request.serialize)
|
2741
|
-
response = JSON.parse(body)
|
2742
|
-
if response['Response'].key?('Error') == false
|
2743
|
-
model = DescribeEventCasesResponse.new
|
2744
|
-
model.deserialize(response['Response'])
|
2745
|
-
model
|
2746
|
-
else
|
2747
|
-
code = response['Response']['Error']['Code']
|
2748
|
-
message = response['Response']['Error']['Message']
|
2749
|
-
reqid = response['Response']['RequestId']
|
2750
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2751
|
-
end
|
2752
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2753
|
-
raise e
|
2754
|
-
rescue StandardError => e
|
2755
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2756
|
-
end
|
2757
|
-
|
2758
|
-
# 查看事件实例的消费任务
|
2759
|
-
|
2760
|
-
# @param request: Request instance for DescribeEventConsumeTasks.
|
2761
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventConsumeTasksRequest`
|
2762
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventConsumeTasksResponse`
|
2763
|
-
def DescribeEventConsumeTasks(request)
|
2764
|
-
body = send_request('DescribeEventConsumeTasks', request.serialize)
|
2765
|
-
response = JSON.parse(body)
|
2766
|
-
if response['Response'].key?('Error') == false
|
2767
|
-
model = DescribeEventConsumeTasksResponse.new
|
2768
|
-
model.deserialize(response['Response'])
|
2769
|
-
model
|
2770
|
-
else
|
2771
|
-
code = response['Response']['Error']['Code']
|
2772
|
-
message = response['Response']['Error']['Message']
|
2773
|
-
reqid = response['Response']['RequestId']
|
2774
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2775
|
-
end
|
2776
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2777
|
-
raise e
|
2778
|
-
rescue StandardError => e
|
2779
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2780
|
-
end
|
2781
|
-
|
2782
|
-
# 智能运维事件详情1
|
2783
|
-
|
2784
|
-
# @param request: Request instance for DescribeEventDetail.
|
2785
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventDetailRequest`
|
2786
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventDetailResponse`
|
2787
|
-
def DescribeEventDetail(request)
|
2788
|
-
body = send_request('DescribeEventDetail', request.serialize)
|
2789
|
-
response = JSON.parse(body)
|
2790
|
-
if response['Response'].key?('Error') == false
|
2791
|
-
model = DescribeEventDetailResponse.new
|
2792
|
-
model.deserialize(response['Response'])
|
2793
|
-
model
|
2794
|
-
else
|
2795
|
-
code = response['Response']['Error']['Code']
|
2796
|
-
message = response['Response']['Error']['Message']
|
2797
|
-
reqid = response['Response']['RequestId']
|
2798
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2799
|
-
end
|
2800
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2801
|
-
raise e
|
2802
|
-
rescue StandardError => e
|
2803
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2804
|
-
end
|
2805
|
-
|
2806
|
-
# 事件是否告警过滤条件
|
2807
|
-
|
2808
|
-
# @param request: Request instance for DescribeEventIsAlarmTypes.
|
2809
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventIsAlarmTypesRequest`
|
2810
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventIsAlarmTypesResponse`
|
2811
|
-
def DescribeEventIsAlarmTypes(request)
|
2812
|
-
body = send_request('DescribeEventIsAlarmTypes', request.serialize)
|
2813
|
-
response = JSON.parse(body)
|
2814
|
-
if response['Response'].key?('Error') == false
|
2815
|
-
model = DescribeEventIsAlarmTypesResponse.new
|
2816
|
-
model.deserialize(response['Response'])
|
2817
|
-
model
|
2818
|
-
else
|
2819
|
-
code = response['Response']['Error']['Code']
|
2820
|
-
message = response['Response']['Error']['Message']
|
2821
|
-
reqid = response['Response']['RequestId']
|
2822
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2823
|
-
end
|
2824
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2825
|
-
raise e
|
2826
|
-
rescue StandardError => e
|
2827
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2828
|
-
end
|
2829
|
-
|
2830
|
-
# 查询事件类型列表
|
2831
|
-
|
2832
|
-
# @param request: Request instance for DescribeEventTypes.
|
2833
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventTypesRequest`
|
2834
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventTypesResponse`
|
2835
|
-
def DescribeEventTypes(request)
|
2836
|
-
body = send_request('DescribeEventTypes', request.serialize)
|
2837
|
-
response = JSON.parse(body)
|
2838
|
-
if response['Response'].key?('Error') == false
|
2839
|
-
model = DescribeEventTypesResponse.new
|
2840
|
-
model.deserialize(response['Response'])
|
2841
|
-
model
|
2842
|
-
else
|
2843
|
-
code = response['Response']['Error']['Code']
|
2844
|
-
message = response['Response']['Error']['Message']
|
2845
|
-
reqid = response['Response']['RequestId']
|
2846
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2847
|
-
end
|
2848
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2849
|
-
raise e
|
2850
|
-
rescue StandardError => e
|
2851
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2852
|
-
end
|
2853
|
-
|
2854
|
-
# 智能运维事件查询列表
|
2855
|
-
|
2856
|
-
# @param request: Request instance for DescribeEvents.
|
2857
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventsRequest`
|
2858
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventsResponse`
|
2859
|
-
def DescribeEvents(request)
|
2860
|
-
body = send_request('DescribeEvents', request.serialize)
|
2861
|
-
response = JSON.parse(body)
|
2862
|
-
if response['Response'].key?('Error') == false
|
2863
|
-
model = DescribeEventsResponse.new
|
2864
|
-
model.deserialize(response['Response'])
|
2865
|
-
model
|
2866
|
-
else
|
2867
|
-
code = response['Response']['Error']['Code']
|
2868
|
-
message = response['Response']['Error']['Message']
|
2869
|
-
reqid = response['Response']['RequestId']
|
2870
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2871
|
-
end
|
2872
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2873
|
-
raise e
|
2874
|
-
rescue StandardError => e
|
2875
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2876
|
-
end
|
2877
|
-
|
2878
|
-
# 查询规则组执行策略
|
2879
|
-
|
2880
|
-
# @param request: Request instance for DescribeExecStrategy.
|
2881
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeExecStrategyRequest`
|
2882
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeExecStrategyResponse`
|
2883
|
-
def DescribeExecStrategy(request)
|
2884
|
-
body = send_request('DescribeExecStrategy', request.serialize)
|
2885
|
-
response = JSON.parse(body)
|
2886
|
-
if response['Response'].key?('Error') == false
|
2887
|
-
model = DescribeExecStrategyResponse.new
|
2888
|
-
model.deserialize(response['Response'])
|
2889
|
-
model
|
2890
|
-
else
|
2891
|
-
code = response['Response']['Error']['Code']
|
2892
|
-
message = response['Response']['Error']['Message']
|
2893
|
-
reqid = response['Response']['RequestId']
|
2894
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2895
|
-
end
|
2896
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2897
|
-
raise e
|
2898
|
-
rescue StandardError => e
|
2899
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2900
|
-
end
|
2901
|
-
|
2902
|
-
# 获取关联父实例
|
2903
|
-
|
2904
|
-
# @param request: Request instance for DescribeFathers.
|
2905
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFathersRequest`
|
2906
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFathersResponse`
|
2907
|
-
def DescribeFathers(request)
|
2908
|
-
body = send_request('DescribeFathers', request.serialize)
|
2909
|
-
response = JSON.parse(body)
|
2910
|
-
if response['Response'].key?('Error') == false
|
2911
|
-
model = DescribeFathersResponse.new
|
2912
|
-
model.deserialize(response['Response'])
|
2913
|
-
model
|
2914
|
-
else
|
2915
|
-
code = response['Response']['Error']['Code']
|
2916
|
-
message = response['Response']['Error']['Message']
|
2917
|
-
reqid = response['Response']['RequestId']
|
2918
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2919
|
-
end
|
2920
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2921
|
-
raise e
|
2922
|
-
rescue StandardError => e
|
2923
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2924
|
-
end
|
2925
|
-
|
2926
|
-
# 元数据模型-字段基础信息查询接口
|
2927
|
-
|
2928
|
-
# @param request: Request instance for DescribeFieldBasicInfo.
|
2929
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFieldBasicInfoRequest`
|
2930
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFieldBasicInfoResponse`
|
2931
|
-
def DescribeFieldBasicInfo(request)
|
2932
|
-
body = send_request('DescribeFieldBasicInfo', request.serialize)
|
2933
|
-
response = JSON.parse(body)
|
2934
|
-
if response['Response'].key?('Error') == false
|
2935
|
-
model = DescribeFieldBasicInfoResponse.new
|
2936
|
-
model.deserialize(response['Response'])
|
2937
|
-
model
|
2938
|
-
else
|
2939
|
-
code = response['Response']['Error']['Code']
|
2940
|
-
message = response['Response']['Error']['Message']
|
2941
|
-
reqid = response['Response']['RequestId']
|
2942
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2943
|
-
end
|
2944
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2945
|
-
raise e
|
2946
|
-
rescue StandardError => e
|
2947
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2948
|
-
end
|
2949
|
-
|
2950
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2951
|
-
# 拉取文件夹目录
|
2952
|
-
|
2953
|
-
# @param request: Request instance for DescribeFolderList.
|
2954
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFolderListRequest`
|
2955
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFolderListResponse`
|
2956
|
-
def DescribeFolderList(request)
|
2957
|
-
body = send_request('DescribeFolderList', request.serialize)
|
2958
|
-
response = JSON.parse(body)
|
2959
|
-
if response['Response'].key?('Error') == false
|
2960
|
-
model = DescribeFolderListResponse.new
|
2961
|
-
model.deserialize(response['Response'])
|
2962
|
-
model
|
2963
|
-
else
|
2964
|
-
code = response['Response']['Error']['Code']
|
2965
|
-
message = response['Response']['Error']['Message']
|
2966
|
-
reqid = response['Response']['RequestId']
|
2967
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2968
|
-
end
|
2969
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2970
|
-
raise e
|
2971
|
-
rescue StandardError => e
|
2972
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2973
|
-
end
|
2974
|
-
|
2975
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2976
|
-
# 拉取文件夹下的工作流
|
2000
|
+
# 根据项目id 获取项目下所有工作流列表
|
2977
2001
|
|
2978
2002
|
# @param request: Request instance for DescribeFolderWorkflowList.
|
2979
2003
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFolderWorkflowListRequest`
|
@@ -3069,30 +2093,6 @@ module TencentCloud
|
|
3069
2093
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3070
2094
|
end
|
3071
2095
|
|
3072
|
-
# 实例状态周期增长趋势
|
3073
|
-
|
3074
|
-
# @param request: Request instance for DescribeInstanceByCycleReport.
|
3075
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceByCycleReportRequest`
|
3076
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceByCycleReportResponse`
|
3077
|
-
def DescribeInstanceByCycleReport(request)
|
3078
|
-
body = send_request('DescribeInstanceByCycleReport', request.serialize)
|
3079
|
-
response = JSON.parse(body)
|
3080
|
-
if response['Response'].key?('Error') == false
|
3081
|
-
model = DescribeInstanceByCycleReportResponse.new
|
3082
|
-
model.deserialize(response['Response'])
|
3083
|
-
model
|
3084
|
-
else
|
3085
|
-
code = response['Response']['Error']['Code']
|
3086
|
-
message = response['Response']['Error']['Message']
|
3087
|
-
reqid = response['Response']['RequestId']
|
3088
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3089
|
-
end
|
3090
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3091
|
-
raise e
|
3092
|
-
rescue StandardError => e
|
3093
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3094
|
-
end
|
3095
|
-
|
3096
2096
|
# 日志获取详情页面
|
3097
2097
|
|
3098
2098
|
# @param request: Request instance for DescribeInstanceLastLog.
|
@@ -3189,7 +2189,7 @@ module TencentCloud
|
|
3189
2189
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3190
2190
|
end
|
3191
2191
|
|
3192
|
-
#
|
2192
|
+
# 下载日志文件,返回日志下载URL
|
3193
2193
|
|
3194
2194
|
# @param request: Request instance for DescribeInstanceLogFile.
|
3195
2195
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogFileRequest`
|
@@ -3237,79 +2237,6 @@ module TencentCloud
|
|
3237
2237
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3238
2238
|
end
|
3239
2239
|
|
3240
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
3241
|
-
# 获取实例日志列表
|
3242
|
-
|
3243
|
-
# @param request: Request instance for DescribeInstanceLogs.
|
3244
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogsRequest`
|
3245
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogsResponse`
|
3246
|
-
def DescribeInstanceLogs(request)
|
3247
|
-
body = send_request('DescribeInstanceLogs', request.serialize)
|
3248
|
-
response = JSON.parse(body)
|
3249
|
-
if response['Response'].key?('Error') == false
|
3250
|
-
model = DescribeInstanceLogsResponse.new
|
3251
|
-
model.deserialize(response['Response'])
|
3252
|
-
model
|
3253
|
-
else
|
3254
|
-
code = response['Response']['Error']['Code']
|
3255
|
-
message = response['Response']['Error']['Message']
|
3256
|
-
reqid = response['Response']['RequestId']
|
3257
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3258
|
-
end
|
3259
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3260
|
-
raise e
|
3261
|
-
rescue StandardError => e
|
3262
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3263
|
-
end
|
3264
|
-
|
3265
|
-
# 数据质量,查询调度任务的实例列表
|
3266
|
-
|
3267
|
-
# @param request: Request instance for DescribeInstances.
|
3268
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesRequest`
|
3269
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesResponse`
|
3270
|
-
def DescribeInstances(request)
|
3271
|
-
body = send_request('DescribeInstances', request.serialize)
|
3272
|
-
response = JSON.parse(body)
|
3273
|
-
if response['Response'].key?('Error') == false
|
3274
|
-
model = DescribeInstancesResponse.new
|
3275
|
-
model.deserialize(response['Response'])
|
3276
|
-
model
|
3277
|
-
else
|
3278
|
-
code = response['Response']['Error']['Code']
|
3279
|
-
message = response['Response']['Error']['Message']
|
3280
|
-
reqid = response['Response']['RequestId']
|
3281
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3282
|
-
end
|
3283
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3284
|
-
raise e
|
3285
|
-
rescue StandardError => e
|
3286
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3287
|
-
end
|
3288
|
-
|
3289
|
-
# 拉取实例列表,join task表一些信息
|
3290
|
-
|
3291
|
-
# @param request: Request instance for DescribeInstancesInfoWithTaskInfo.
|
3292
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesInfoWithTaskInfoRequest`
|
3293
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesInfoWithTaskInfoResponse`
|
3294
|
-
def DescribeInstancesInfoWithTaskInfo(request)
|
3295
|
-
body = send_request('DescribeInstancesInfoWithTaskInfo', request.serialize)
|
3296
|
-
response = JSON.parse(body)
|
3297
|
-
if response['Response'].key?('Error') == false
|
3298
|
-
model = DescribeInstancesInfoWithTaskInfoResponse.new
|
3299
|
-
model.deserialize(response['Response'])
|
3300
|
-
model
|
3301
|
-
else
|
3302
|
-
code = response['Response']['Error']['Code']
|
3303
|
-
message = response['Response']['Error']['Message']
|
3304
|
-
reqid = response['Response']['RequestId']
|
3305
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3306
|
-
end
|
3307
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3308
|
-
raise e
|
3309
|
-
rescue StandardError => e
|
3310
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3311
|
-
end
|
3312
|
-
|
3313
2240
|
# 查询集成节点
|
3314
2241
|
|
3315
2242
|
# @param request: Request instance for DescribeIntegrationNode.
|
@@ -3405,113 +2332,17 @@ module TencentCloud
|
|
3405
2332
|
rescue StandardError => e
|
3406
2333
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3407
2334
|
end
|
3408
|
-
|
3409
|
-
# 数据集成大屏任务状态分布统计
|
3410
|
-
|
3411
|
-
# @param request: Request instance for DescribeIntegrationStatisticsTaskStatus.
|
3412
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusRequest`
|
3413
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusResponse`
|
3414
|
-
def DescribeIntegrationStatisticsTaskStatus(request)
|
3415
|
-
body = send_request('DescribeIntegrationStatisticsTaskStatus', request.serialize)
|
3416
|
-
response = JSON.parse(body)
|
3417
|
-
if response['Response'].key?('Error') == false
|
3418
|
-
model = DescribeIntegrationStatisticsTaskStatusResponse.new
|
3419
|
-
model.deserialize(response['Response'])
|
3420
|
-
model
|
3421
|
-
else
|
3422
|
-
code = response['Response']['Error']['Code']
|
3423
|
-
message = response['Response']['Error']['Message']
|
3424
|
-
reqid = response['Response']['RequestId']
|
3425
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3426
|
-
end
|
3427
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3428
|
-
raise e
|
3429
|
-
rescue StandardError => e
|
3430
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3431
|
-
end
|
3432
|
-
|
3433
|
-
# 数据集成大屏任务状态统计趋势
|
3434
|
-
|
3435
|
-
# @param request: Request instance for DescribeIntegrationStatisticsTaskStatusTrend.
|
3436
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusTrendRequest`
|
3437
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusTrendResponse`
|
3438
|
-
def DescribeIntegrationStatisticsTaskStatusTrend(request)
|
3439
|
-
body = send_request('DescribeIntegrationStatisticsTaskStatusTrend', request.serialize)
|
3440
|
-
response = JSON.parse(body)
|
3441
|
-
if response['Response'].key?('Error') == false
|
3442
|
-
model = DescribeIntegrationStatisticsTaskStatusTrendResponse.new
|
3443
|
-
model.deserialize(response['Response'])
|
3444
|
-
model
|
3445
|
-
else
|
3446
|
-
code = response['Response']['Error']['Code']
|
3447
|
-
message = response['Response']['Error']['Message']
|
3448
|
-
reqid = response['Response']['RequestId']
|
3449
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3450
|
-
end
|
3451
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3452
|
-
raise e
|
3453
|
-
rescue StandardError => e
|
3454
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3455
|
-
end
|
3456
|
-
|
3457
|
-
# 查询集成任务
|
3458
|
-
|
3459
|
-
# @param request: Request instance for DescribeIntegrationTask.
|
3460
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTaskRequest`
|
3461
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTaskResponse`
|
3462
|
-
def DescribeIntegrationTask(request)
|
3463
|
-
body = send_request('DescribeIntegrationTask', request.serialize)
|
3464
|
-
response = JSON.parse(body)
|
3465
|
-
if response['Response'].key?('Error') == false
|
3466
|
-
model = DescribeIntegrationTaskResponse.new
|
3467
|
-
model.deserialize(response['Response'])
|
3468
|
-
model
|
3469
|
-
else
|
3470
|
-
code = response['Response']['Error']['Code']
|
3471
|
-
message = response['Response']['Error']['Message']
|
3472
|
-
reqid = response['Response']['RequestId']
|
3473
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3474
|
-
end
|
3475
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3476
|
-
raise e
|
3477
|
-
rescue StandardError => e
|
3478
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3479
|
-
end
|
3480
|
-
|
3481
|
-
# 查询集成任务列表
|
3482
|
-
|
3483
|
-
# @param request: Request instance for DescribeIntegrationTasks.
|
3484
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTasksRequest`
|
3485
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTasksResponse`
|
3486
|
-
def DescribeIntegrationTasks(request)
|
3487
|
-
body = send_request('DescribeIntegrationTasks', request.serialize)
|
3488
|
-
response = JSON.parse(body)
|
3489
|
-
if response['Response'].key?('Error') == false
|
3490
|
-
model = DescribeIntegrationTasksResponse.new
|
3491
|
-
model.deserialize(response['Response'])
|
3492
|
-
model
|
3493
|
-
else
|
3494
|
-
code = response['Response']['Error']['Code']
|
3495
|
-
message = response['Response']['Error']['Message']
|
3496
|
-
reqid = response['Response']['RequestId']
|
3497
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3498
|
-
end
|
3499
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3500
|
-
raise e
|
3501
|
-
rescue StandardError => e
|
3502
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3503
|
-
end
|
3504
|
-
|
3505
|
-
# 查询集成任务版本节点信息
|
3506
|
-
|
3507
|
-
# @param request: Request instance for DescribeIntegrationVersionNodesInfo.
|
3508
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationVersionNodesInfoRequest`
|
3509
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationVersionNodesInfoResponse`
|
3510
|
-
def DescribeIntegrationVersionNodesInfo(request)
|
3511
|
-
body = send_request('DescribeIntegrationVersionNodesInfo', request.serialize)
|
2335
|
+
|
2336
|
+
# 数据集成大屏任务状态分布统计
|
2337
|
+
|
2338
|
+
# @param request: Request instance for DescribeIntegrationStatisticsTaskStatus.
|
2339
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusRequest`
|
2340
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusResponse`
|
2341
|
+
def DescribeIntegrationStatisticsTaskStatus(request)
|
2342
|
+
body = send_request('DescribeIntegrationStatisticsTaskStatus', request.serialize)
|
3512
2343
|
response = JSON.parse(body)
|
3513
2344
|
if response['Response'].key?('Error') == false
|
3514
|
-
model =
|
2345
|
+
model = DescribeIntegrationStatisticsTaskStatusResponse.new
|
3515
2346
|
model.deserialize(response['Response'])
|
3516
2347
|
model
|
3517
2348
|
else
|
@@ -3526,16 +2357,16 @@ module TencentCloud
|
|
3526
2357
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3527
2358
|
end
|
3528
2359
|
|
3529
|
-
#
|
2360
|
+
# 数据集成大屏任务状态统计趋势
|
3530
2361
|
|
3531
|
-
# @param request: Request instance for
|
3532
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3533
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3534
|
-
def
|
3535
|
-
body = send_request('
|
2362
|
+
# @param request: Request instance for DescribeIntegrationStatisticsTaskStatusTrend.
|
2363
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusTrendRequest`
|
2364
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusTrendResponse`
|
2365
|
+
def DescribeIntegrationStatisticsTaskStatusTrend(request)
|
2366
|
+
body = send_request('DescribeIntegrationStatisticsTaskStatusTrend', request.serialize)
|
3536
2367
|
response = JSON.parse(body)
|
3537
2368
|
if response['Response'].key?('Error') == false
|
3538
|
-
model =
|
2369
|
+
model = DescribeIntegrationStatisticsTaskStatusTrendResponse.new
|
3539
2370
|
model.deserialize(response['Response'])
|
3540
2371
|
model
|
3541
2372
|
else
|
@@ -3550,16 +2381,16 @@ module TencentCloud
|
|
3550
2381
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3551
2382
|
end
|
3552
2383
|
|
3553
|
-
#
|
2384
|
+
# 查询集成任务
|
3554
2385
|
|
3555
|
-
# @param request: Request instance for
|
3556
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3557
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3558
|
-
def
|
3559
|
-
body = send_request('
|
2386
|
+
# @param request: Request instance for DescribeIntegrationTask.
|
2387
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTaskRequest`
|
2388
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTaskResponse`
|
2389
|
+
def DescribeIntegrationTask(request)
|
2390
|
+
body = send_request('DescribeIntegrationTask', request.serialize)
|
3560
2391
|
response = JSON.parse(body)
|
3561
2392
|
if response['Response'].key?('Error') == false
|
3562
|
-
model =
|
2393
|
+
model = DescribeIntegrationTaskResponse.new
|
3563
2394
|
model.deserialize(response['Response'])
|
3564
2395
|
model
|
3565
2396
|
else
|
@@ -3574,16 +2405,16 @@ module TencentCloud
|
|
3574
2405
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3575
2406
|
end
|
3576
2407
|
|
3577
|
-
#
|
2408
|
+
# 查询集成任务列表
|
3578
2409
|
|
3579
|
-
# @param request: Request instance for
|
3580
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3581
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3582
|
-
def
|
3583
|
-
body = send_request('
|
2410
|
+
# @param request: Request instance for DescribeIntegrationTasks.
|
2411
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTasksRequest`
|
2412
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTasksResponse`
|
2413
|
+
def DescribeIntegrationTasks(request)
|
2414
|
+
body = send_request('DescribeIntegrationTasks', request.serialize)
|
3584
2415
|
response = JSON.parse(body)
|
3585
2416
|
if response['Response'].key?('Error') == false
|
3586
|
-
model =
|
2417
|
+
model = DescribeIntegrationTasksResponse.new
|
3587
2418
|
model.deserialize(response['Response'])
|
3588
2419
|
model
|
3589
2420
|
else
|
@@ -3598,16 +2429,16 @@ module TencentCloud
|
|
3598
2429
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3599
2430
|
end
|
3600
2431
|
|
3601
|
-
#
|
2432
|
+
# 查询集成任务版本节点信息
|
3602
2433
|
|
3603
|
-
# @param request: Request instance for
|
3604
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3605
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3606
|
-
def
|
3607
|
-
body = send_request('
|
2434
|
+
# @param request: Request instance for DescribeIntegrationVersionNodesInfo.
|
2435
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationVersionNodesInfoRequest`
|
2436
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationVersionNodesInfoResponse`
|
2437
|
+
def DescribeIntegrationVersionNodesInfo(request)
|
2438
|
+
body = send_request('DescribeIntegrationVersionNodesInfo', request.serialize)
|
3608
2439
|
response = JSON.parse(body)
|
3609
2440
|
if response['Response'].key?('Error') == false
|
3610
|
-
model =
|
2441
|
+
model = DescribeIntegrationVersionNodesInfoResponse.new
|
3611
2442
|
model.deserialize(response['Response'])
|
3612
2443
|
model
|
3613
2444
|
else
|
@@ -3622,16 +2453,16 @@ module TencentCloud
|
|
3622
2453
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3623
2454
|
end
|
3624
2455
|
|
3625
|
-
#
|
2456
|
+
# 获取离线任务长连接Token
|
3626
2457
|
|
3627
|
-
# @param request: Request instance for
|
3628
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3629
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3630
|
-
def
|
3631
|
-
body = send_request('
|
2458
|
+
# @param request: Request instance for DescribeOfflineTaskToken.
|
2459
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOfflineTaskTokenRequest`
|
2460
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOfflineTaskTokenResponse`
|
2461
|
+
def DescribeOfflineTaskToken(request)
|
2462
|
+
body = send_request('DescribeOfflineTaskToken', request.serialize)
|
3632
2463
|
response = JSON.parse(body)
|
3633
2464
|
if response['Response'].key?('Error') == false
|
3634
|
-
model =
|
2465
|
+
model = DescribeOfflineTaskTokenResponse.new
|
3635
2466
|
model.deserialize(response['Response'])
|
3636
2467
|
model
|
3637
2468
|
else
|
@@ -3648,14 +2479,14 @@ module TencentCloud
|
|
3648
2479
|
|
3649
2480
|
# 任务运维列表组合条件查询
|
3650
2481
|
|
3651
|
-
# @param request: Request instance for
|
3652
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3653
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3654
|
-
def
|
3655
|
-
body = send_request('
|
2482
|
+
# @param request: Request instance for DescribeOperateOpsTasks.
|
2483
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTasksRequest`
|
2484
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTasksResponse`
|
2485
|
+
def DescribeOperateOpsTasks(request)
|
2486
|
+
body = send_request('DescribeOperateOpsTasks', request.serialize)
|
3656
2487
|
response = JSON.parse(body)
|
3657
2488
|
if response['Response'].key?('Error') == false
|
3658
|
-
model =
|
2489
|
+
model = DescribeOperateOpsTasksResponse.new
|
3659
2490
|
model.deserialize(response['Response'])
|
3660
2491
|
model
|
3661
2492
|
else
|
@@ -3814,30 +2645,6 @@ module TencentCloud
|
|
3814
2645
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3815
2646
|
end
|
3816
2647
|
|
3817
|
-
# 数据质量获取生产调度任务列表
|
3818
|
-
|
3819
|
-
# @param request: Request instance for DescribeProdTasks.
|
3820
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProdTasksRequest`
|
3821
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProdTasksResponse`
|
3822
|
-
def DescribeProdTasks(request)
|
3823
|
-
body = send_request('DescribeProdTasks', request.serialize)
|
3824
|
-
response = JSON.parse(body)
|
3825
|
-
if response['Response'].key?('Error') == false
|
3826
|
-
model = DescribeProdTasksResponse.new
|
3827
|
-
model.deserialize(response['Response'])
|
3828
|
-
model
|
3829
|
-
else
|
3830
|
-
code = response['Response']['Error']['Code']
|
3831
|
-
message = response['Response']['Error']['Message']
|
3832
|
-
reqid = response['Response']['RequestId']
|
3833
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3834
|
-
end
|
3835
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3836
|
-
raise e
|
3837
|
-
rescue StandardError => e
|
3838
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3839
|
-
end
|
3840
|
-
|
3841
2648
|
# 获取项目信息
|
3842
2649
|
|
3843
2650
|
# @param request: Request instance for DescribeProject.
|
@@ -3982,30 +2789,6 @@ module TencentCloud
|
|
3982
2789
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3983
2790
|
end
|
3984
2791
|
|
3985
|
-
# 查询任务实例的关联实例列表
|
3986
|
-
|
3987
|
-
# @param request: Request instance for DescribeRelatedInstances.
|
3988
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRelatedInstancesRequest`
|
3989
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRelatedInstancesResponse`
|
3990
|
-
def DescribeRelatedInstances(request)
|
3991
|
-
body = send_request('DescribeRelatedInstances', request.serialize)
|
3992
|
-
response = JSON.parse(body)
|
3993
|
-
if response['Response'].key?('Error') == false
|
3994
|
-
model = DescribeRelatedInstancesResponse.new
|
3995
|
-
model.deserialize(response['Response'])
|
3996
|
-
model
|
3997
|
-
else
|
3998
|
-
code = response['Response']['Error']['Code']
|
3999
|
-
message = response['Response']['Error']['Message']
|
4000
|
-
reqid = response['Response']['RequestId']
|
4001
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4002
|
-
end
|
4003
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4004
|
-
raise e
|
4005
|
-
rescue StandardError => e
|
4006
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4007
|
-
end
|
4008
|
-
|
4009
2792
|
# 获取资源管理目录树
|
4010
2793
|
|
4011
2794
|
# @param request: Request instance for DescribeResourceManagePathTrees.
|
@@ -4054,30 +2837,6 @@ module TencentCloud
|
|
4054
2837
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4055
2838
|
end
|
4056
2839
|
|
4057
|
-
# 查询质量规则数据源
|
4058
|
-
|
4059
|
-
# @param request: Request instance for DescribeRuleDataSources.
|
4060
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleDataSourcesRequest`
|
4061
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleDataSourcesResponse`
|
4062
|
-
def DescribeRuleDataSources(request)
|
4063
|
-
body = send_request('DescribeRuleDataSources', request.serialize)
|
4064
|
-
response = JSON.parse(body)
|
4065
|
-
if response['Response'].key?('Error') == false
|
4066
|
-
model = DescribeRuleDataSourcesResponse.new
|
4067
|
-
model.deserialize(response['Response'])
|
4068
|
-
model
|
4069
|
-
else
|
4070
|
-
code = response['Response']['Error']['Code']
|
4071
|
-
message = response['Response']['Error']['Message']
|
4072
|
-
reqid = response['Response']['RequestId']
|
4073
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4074
|
-
end
|
4075
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4076
|
-
raise e
|
4077
|
-
rescue StandardError => e
|
4078
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4079
|
-
end
|
4080
|
-
|
4081
2840
|
# 数据质量概览页面触发维度分布统计接口
|
4082
2841
|
|
4083
2842
|
# @param request: Request instance for DescribeRuleDimStat.
|
@@ -4126,54 +2885,6 @@ module TencentCloud
|
|
4126
2885
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4127
2886
|
end
|
4128
2887
|
|
4129
|
-
# 查询规则执行导出结果
|
4130
|
-
|
4131
|
-
# @param request: Request instance for DescribeRuleExecExportResult.
|
4132
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecExportResultRequest`
|
4133
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecExportResultResponse`
|
4134
|
-
def DescribeRuleExecExportResult(request)
|
4135
|
-
body = send_request('DescribeRuleExecExportResult', request.serialize)
|
4136
|
-
response = JSON.parse(body)
|
4137
|
-
if response['Response'].key?('Error') == false
|
4138
|
-
model = DescribeRuleExecExportResultResponse.new
|
4139
|
-
model.deserialize(response['Response'])
|
4140
|
-
model
|
4141
|
-
else
|
4142
|
-
code = response['Response']['Error']['Code']
|
4143
|
-
message = response['Response']['Error']['Message']
|
4144
|
-
reqid = response['Response']['RequestId']
|
4145
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4146
|
-
end
|
4147
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4148
|
-
raise e
|
4149
|
-
rescue StandardError => e
|
4150
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4151
|
-
end
|
4152
|
-
|
4153
|
-
# 查询规则执行历史, 最近30条
|
4154
|
-
|
4155
|
-
# @param request: Request instance for DescribeRuleExecHistory.
|
4156
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecHistoryRequest`
|
4157
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecHistoryResponse`
|
4158
|
-
def DescribeRuleExecHistory(request)
|
4159
|
-
body = send_request('DescribeRuleExecHistory', request.serialize)
|
4160
|
-
response = JSON.parse(body)
|
4161
|
-
if response['Response'].key?('Error') == false
|
4162
|
-
model = DescribeRuleExecHistoryResponse.new
|
4163
|
-
model.deserialize(response['Response'])
|
4164
|
-
model
|
4165
|
-
else
|
4166
|
-
code = response['Response']['Error']['Code']
|
4167
|
-
message = response['Response']['Error']['Message']
|
4168
|
-
reqid = response['Response']['RequestId']
|
4169
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4170
|
-
end
|
4171
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4172
|
-
raise e
|
4173
|
-
rescue StandardError => e
|
4174
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4175
|
-
end
|
4176
|
-
|
4177
2888
|
# 规则执行日志查询
|
4178
2889
|
|
4179
2890
|
# @param request: Request instance for DescribeRuleExecLog.
|
@@ -4222,30 +2933,6 @@ module TencentCloud
|
|
4222
2933
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4223
2934
|
end
|
4224
2935
|
|
4225
|
-
# 分页查询规则执行结果列表
|
4226
|
-
|
4227
|
-
# @param request: Request instance for DescribeRuleExecResultsByPage.
|
4228
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecResultsByPageRequest`
|
4229
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecResultsByPageResponse`
|
4230
|
-
def DescribeRuleExecResultsByPage(request)
|
4231
|
-
body = send_request('DescribeRuleExecResultsByPage', request.serialize)
|
4232
|
-
response = JSON.parse(body)
|
4233
|
-
if response['Response'].key?('Error') == false
|
4234
|
-
model = DescribeRuleExecResultsByPageResponse.new
|
4235
|
-
model.deserialize(response['Response'])
|
4236
|
-
model
|
4237
|
-
else
|
4238
|
-
code = response['Response']['Error']['Code']
|
4239
|
-
message = response['Response']['Error']['Message']
|
4240
|
-
reqid = response['Response']['RequestId']
|
4241
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4242
|
-
end
|
4243
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4244
|
-
raise e
|
4245
|
-
rescue StandardError => e
|
4246
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4247
|
-
end
|
4248
|
-
|
4249
2936
|
# 数据质量概览页面规则运行情况接口
|
4250
2937
|
|
4251
2938
|
# @param request: Request instance for DescribeRuleExecStat.
|
@@ -4318,30 +3005,6 @@ module TencentCloud
|
|
4318
3005
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4319
3006
|
end
|
4320
3007
|
|
4321
|
-
# 规则组执行结果分页查询接口不带鉴权
|
4322
|
-
|
4323
|
-
# @param request: Request instance for DescribeRuleGroupExecResultsByPageWithoutAuth.
|
4324
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupExecResultsByPageWithoutAuthRequest`
|
4325
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupExecResultsByPageWithoutAuthResponse`
|
4326
|
-
def DescribeRuleGroupExecResultsByPageWithoutAuth(request)
|
4327
|
-
body = send_request('DescribeRuleGroupExecResultsByPageWithoutAuth', request.serialize)
|
4328
|
-
response = JSON.parse(body)
|
4329
|
-
if response['Response'].key?('Error') == false
|
4330
|
-
model = DescribeRuleGroupExecResultsByPageWithoutAuthResponse.new
|
4331
|
-
model.deserialize(response['Response'])
|
4332
|
-
model
|
4333
|
-
else
|
4334
|
-
code = response['Response']['Error']['Code']
|
4335
|
-
message = response['Response']['Error']['Message']
|
4336
|
-
reqid = response['Response']['RequestId']
|
4337
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4338
|
-
end
|
4339
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4340
|
-
raise e
|
4341
|
-
rescue StandardError => e
|
4342
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4343
|
-
end
|
4344
|
-
|
4345
3008
|
# 查询规则组订阅信息
|
4346
3009
|
|
4347
3010
|
# @param request: Request instance for DescribeRuleGroupSubscription.
|
@@ -4417,54 +3080,6 @@ module TencentCloud
|
|
4417
3080
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4418
3081
|
end
|
4419
3082
|
|
4420
|
-
# 过滤条件【必要字段】{ruleId}
|
4421
|
-
|
4422
|
-
# @param request: Request instance for DescribeRuleHistoryByPage.
|
4423
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleHistoryByPageRequest`
|
4424
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleHistoryByPageResponse`
|
4425
|
-
def DescribeRuleHistoryByPage(request)
|
4426
|
-
body = send_request('DescribeRuleHistoryByPage', request.serialize)
|
4427
|
-
response = JSON.parse(body)
|
4428
|
-
if response['Response'].key?('Error') == false
|
4429
|
-
model = DescribeRuleHistoryByPageResponse.new
|
4430
|
-
model.deserialize(response['Response'])
|
4431
|
-
model
|
4432
|
-
else
|
4433
|
-
code = response['Response']['Error']['Code']
|
4434
|
-
message = response['Response']['Error']['Message']
|
4435
|
-
reqid = response['Response']['RequestId']
|
4436
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4437
|
-
end
|
4438
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4439
|
-
raise e
|
4440
|
-
rescue StandardError => e
|
4441
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4442
|
-
end
|
4443
|
-
|
4444
|
-
# 获取表列表
|
4445
|
-
|
4446
|
-
# @param request: Request instance for DescribeRuleTablesByPage.
|
4447
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTablesByPageRequest`
|
4448
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTablesByPageResponse`
|
4449
|
-
def DescribeRuleTablesByPage(request)
|
4450
|
-
body = send_request('DescribeRuleTablesByPage', request.serialize)
|
4451
|
-
response = JSON.parse(body)
|
4452
|
-
if response['Response'].key?('Error') == false
|
4453
|
-
model = DescribeRuleTablesByPageResponse.new
|
4454
|
-
model.deserialize(response['Response'])
|
4455
|
-
model
|
4456
|
-
else
|
4457
|
-
code = response['Response']['Error']['Code']
|
4458
|
-
message = response['Response']['Error']['Message']
|
4459
|
-
reqid = response['Response']['RequestId']
|
4460
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4461
|
-
end
|
4462
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4463
|
-
raise e
|
4464
|
-
rescue StandardError => e
|
4465
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4466
|
-
end
|
4467
|
-
|
4468
3083
|
# 查询模板详情
|
4469
3084
|
|
4470
3085
|
# @param request: Request instance for DescribeRuleTemplate.
|
@@ -4585,30 +3200,6 @@ module TencentCloud
|
|
4585
3200
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4586
3201
|
end
|
4587
3202
|
|
4588
|
-
# 在基线系统内查询单个调度任务实例
|
4589
|
-
|
4590
|
-
# @param request: Request instance for DescribeScheduleInstance.
|
4591
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeScheduleInstanceRequest`
|
4592
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeScheduleInstanceResponse`
|
4593
|
-
def DescribeScheduleInstance(request)
|
4594
|
-
body = send_request('DescribeScheduleInstance', request.serialize)
|
4595
|
-
response = JSON.parse(body)
|
4596
|
-
if response['Response'].key?('Error') == false
|
4597
|
-
model = DescribeScheduleInstanceResponse.new
|
4598
|
-
model.deserialize(response['Response'])
|
4599
|
-
model
|
4600
|
-
else
|
4601
|
-
code = response['Response']['Error']['Code']
|
4602
|
-
message = response['Response']['Error']['Message']
|
4603
|
-
reqid = response['Response']['RequestId']
|
4604
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4605
|
-
end
|
4606
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4607
|
-
raise e
|
4608
|
-
rescue StandardError => e
|
4609
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4610
|
-
end
|
4611
|
-
|
4612
3203
|
# 获取实例列表
|
4613
3204
|
|
4614
3205
|
# @param request: Request instance for DescribeScheduleInstances.
|
@@ -4709,36 +3300,12 @@ module TencentCloud
|
|
4709
3300
|
|
4710
3301
|
# @param request: Request instance for DescribeSchedulerTaskTypeCnt.
|
4711
3302
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskTypeCntRequest`
|
4712
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskTypeCntResponse`
|
4713
|
-
def DescribeSchedulerTaskTypeCnt(request)
|
4714
|
-
body = send_request('DescribeSchedulerTaskTypeCnt', request.serialize)
|
4715
|
-
response = JSON.parse(body)
|
4716
|
-
if response['Response'].key?('Error') == false
|
4717
|
-
model = DescribeSchedulerTaskTypeCntResponse.new
|
4718
|
-
model.deserialize(response['Response'])
|
4719
|
-
model
|
4720
|
-
else
|
4721
|
-
code = response['Response']['Error']['Code']
|
4722
|
-
message = response['Response']['Error']['Message']
|
4723
|
-
reqid = response['Response']['RequestId']
|
4724
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4725
|
-
end
|
4726
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4727
|
-
raise e
|
4728
|
-
rescue StandardError => e
|
4729
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4730
|
-
end
|
4731
|
-
|
4732
|
-
# 获取关联子实例
|
4733
|
-
|
4734
|
-
# @param request: Request instance for DescribeSonInstances.
|
4735
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSonInstancesRequest`
|
4736
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSonInstancesResponse`
|
4737
|
-
def DescribeSonInstances(request)
|
4738
|
-
body = send_request('DescribeSonInstances', request.serialize)
|
3303
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskTypeCntResponse`
|
3304
|
+
def DescribeSchedulerTaskTypeCnt(request)
|
3305
|
+
body = send_request('DescribeSchedulerTaskTypeCnt', request.serialize)
|
4739
3306
|
response = JSON.parse(body)
|
4740
3307
|
if response['Response'].key?('Error') == false
|
4741
|
-
model =
|
3308
|
+
model = DescribeSchedulerTaskTypeCntResponse.new
|
4742
3309
|
model.deserialize(response['Response'])
|
4743
3310
|
model
|
4744
3311
|
else
|
@@ -5137,103 +3704,6 @@ module TencentCloud
|
|
5137
3704
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5138
3705
|
end
|
5139
3706
|
|
5140
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5141
|
-
# 查询任务具体详情
|
5142
|
-
|
5143
|
-
# @param request: Request instance for DescribeTaskDetail.
|
5144
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskDetailRequest`
|
5145
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskDetailResponse`
|
5146
|
-
def DescribeTaskDetail(request)
|
5147
|
-
body = send_request('DescribeTaskDetail', request.serialize)
|
5148
|
-
response = JSON.parse(body)
|
5149
|
-
if response['Response'].key?('Error') == false
|
5150
|
-
model = DescribeTaskDetailResponse.new
|
5151
|
-
model.deserialize(response['Response'])
|
5152
|
-
model
|
5153
|
-
else
|
5154
|
-
code = response['Response']['Error']['Code']
|
5155
|
-
message = response['Response']['Error']['Message']
|
5156
|
-
reqid = response['Response']['RequestId']
|
5157
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5158
|
-
end
|
5159
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5160
|
-
raise e
|
5161
|
-
rescue StandardError => e
|
5162
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5163
|
-
end
|
5164
|
-
|
5165
|
-
# 离线任务实例详情
|
5166
|
-
|
5167
|
-
# @param request: Request instance for DescribeTaskInstance.
|
5168
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceRequest`
|
5169
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceResponse`
|
5170
|
-
def DescribeTaskInstance(request)
|
5171
|
-
body = send_request('DescribeTaskInstance', request.serialize)
|
5172
|
-
response = JSON.parse(body)
|
5173
|
-
if response['Response'].key?('Error') == false
|
5174
|
-
model = DescribeTaskInstanceResponse.new
|
5175
|
-
model.deserialize(response['Response'])
|
5176
|
-
model
|
5177
|
-
else
|
5178
|
-
code = response['Response']['Error']['Code']
|
5179
|
-
message = response['Response']['Error']['Message']
|
5180
|
-
reqid = response['Response']['RequestId']
|
5181
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5182
|
-
end
|
5183
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5184
|
-
raise e
|
5185
|
-
rescue StandardError => e
|
5186
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5187
|
-
end
|
5188
|
-
|
5189
|
-
# 离线任务实例统计明细
|
5190
|
-
|
5191
|
-
# @param request: Request instance for DescribeTaskInstanceReportDetail.
|
5192
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceReportDetailRequest`
|
5193
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceReportDetailResponse`
|
5194
|
-
def DescribeTaskInstanceReportDetail(request)
|
5195
|
-
body = send_request('DescribeTaskInstanceReportDetail', request.serialize)
|
5196
|
-
response = JSON.parse(body)
|
5197
|
-
if response['Response'].key?('Error') == false
|
5198
|
-
model = DescribeTaskInstanceReportDetailResponse.new
|
5199
|
-
model.deserialize(response['Response'])
|
5200
|
-
model
|
5201
|
-
else
|
5202
|
-
code = response['Response']['Error']['Code']
|
5203
|
-
message = response['Response']['Error']['Message']
|
5204
|
-
reqid = response['Response']['RequestId']
|
5205
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5206
|
-
end
|
5207
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5208
|
-
raise e
|
5209
|
-
rescue StandardError => e
|
5210
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5211
|
-
end
|
5212
|
-
|
5213
|
-
# 查询任务实例列表
|
5214
|
-
|
5215
|
-
# @param request: Request instance for DescribeTaskInstances.
|
5216
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstancesRequest`
|
5217
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstancesResponse`
|
5218
|
-
def DescribeTaskInstances(request)
|
5219
|
-
body = send_request('DescribeTaskInstances', request.serialize)
|
5220
|
-
response = JSON.parse(body)
|
5221
|
-
if response['Response'].key?('Error') == false
|
5222
|
-
model = DescribeTaskInstancesResponse.new
|
5223
|
-
model.deserialize(response['Response'])
|
5224
|
-
model
|
5225
|
-
else
|
5226
|
-
code = response['Response']['Error']['Code']
|
5227
|
-
message = response['Response']['Error']['Message']
|
5228
|
-
reqid = response['Response']['RequestId']
|
5229
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5230
|
-
end
|
5231
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5232
|
-
raise e
|
5233
|
-
rescue StandardError => e
|
5234
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5235
|
-
end
|
5236
|
-
|
5237
3707
|
# 查看任务锁状态信息
|
5238
3708
|
|
5239
3709
|
# @param request: Request instance for DescribeTaskLockStatus.
|
@@ -5258,54 +3728,6 @@ module TencentCloud
|
|
5258
3728
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5259
3729
|
end
|
5260
3730
|
|
5261
|
-
# 按起止日期统计离线任务的所有实例的运行指标总和
|
5262
|
-
|
5263
|
-
# @param request: Request instance for DescribeTaskReport.
|
5264
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportRequest`
|
5265
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportResponse`
|
5266
|
-
def DescribeTaskReport(request)
|
5267
|
-
body = send_request('DescribeTaskReport', request.serialize)
|
5268
|
-
response = JSON.parse(body)
|
5269
|
-
if response['Response'].key?('Error') == false
|
5270
|
-
model = DescribeTaskReportResponse.new
|
5271
|
-
model.deserialize(response['Response'])
|
5272
|
-
model
|
5273
|
-
else
|
5274
|
-
code = response['Response']['Error']['Code']
|
5275
|
-
message = response['Response']['Error']['Message']
|
5276
|
-
reqid = response['Response']['RequestId']
|
5277
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5278
|
-
end
|
5279
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5280
|
-
raise e
|
5281
|
-
rescue StandardError => e
|
5282
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5283
|
-
end
|
5284
|
-
|
5285
|
-
# 离线任务周期统计明细
|
5286
|
-
|
5287
|
-
# @param request: Request instance for DescribeTaskReportDetailList.
|
5288
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportDetailListRequest`
|
5289
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportDetailListResponse`
|
5290
|
-
def DescribeTaskReportDetailList(request)
|
5291
|
-
body = send_request('DescribeTaskReportDetailList', request.serialize)
|
5292
|
-
response = JSON.parse(body)
|
5293
|
-
if response['Response'].key?('Error') == false
|
5294
|
-
model = DescribeTaskReportDetailListResponse.new
|
5295
|
-
model.deserialize(response['Response'])
|
5296
|
-
model
|
5297
|
-
else
|
5298
|
-
code = response['Response']['Error']['Code']
|
5299
|
-
message = response['Response']['Error']['Message']
|
5300
|
-
reqid = response['Response']['RequestId']
|
5301
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5302
|
-
end
|
5303
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5304
|
-
raise e
|
5305
|
-
rescue StandardError => e
|
5306
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5307
|
-
end
|
5308
|
-
|
5309
3731
|
# 分页查询任务运行历史
|
5310
3732
|
|
5311
3733
|
# @param request: Request instance for DescribeTaskRunHistory.
|
@@ -5330,7 +3752,6 @@ module TencentCloud
|
|
5330
3752
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5331
3753
|
end
|
5332
3754
|
|
5333
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5334
3755
|
# 查询任务脚本
|
5335
3756
|
|
5336
3757
|
# @param request: Request instance for DescribeTaskScript.
|
@@ -5355,31 +3776,6 @@ module TencentCloud
|
|
5355
3776
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5356
3777
|
end
|
5357
3778
|
|
5358
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5359
|
-
# 根据工作流分页查询任务
|
5360
|
-
|
5361
|
-
# @param request: Request instance for DescribeTasksByPage.
|
5362
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTasksByPageRequest`
|
5363
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTasksByPageResponse`
|
5364
|
-
def DescribeTasksByPage(request)
|
5365
|
-
body = send_request('DescribeTasksByPage', request.serialize)
|
5366
|
-
response = JSON.parse(body)
|
5367
|
-
if response['Response'].key?('Error') == false
|
5368
|
-
model = DescribeTasksByPageResponse.new
|
5369
|
-
model.deserialize(response['Response'])
|
5370
|
-
model
|
5371
|
-
else
|
5372
|
-
code = response['Response']['Error']['Code']
|
5373
|
-
message = response['Response']['Error']['Message']
|
5374
|
-
reqid = response['Response']['RequestId']
|
5375
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5376
|
-
end
|
5377
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5378
|
-
raise e
|
5379
|
-
rescue StandardError => e
|
5380
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5381
|
-
end
|
5382
|
-
|
5383
3779
|
# 查询规则模板维度分布情况
|
5384
3780
|
|
5385
3781
|
# @param request: Request instance for DescribeTemplateDimCount.
|
@@ -5404,30 +3800,6 @@ module TencentCloud
|
|
5404
3800
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5405
3801
|
end
|
5406
3802
|
|
5407
|
-
# 查询规则模板操作记录
|
5408
|
-
|
5409
|
-
# @param request: Request instance for DescribeTemplateHistory.
|
5410
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTemplateHistoryRequest`
|
5411
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTemplateHistoryResponse`
|
5412
|
-
def DescribeTemplateHistory(request)
|
5413
|
-
body = send_request('DescribeTemplateHistory', request.serialize)
|
5414
|
-
response = JSON.parse(body)
|
5415
|
-
if response['Response'].key?('Error') == false
|
5416
|
-
model = DescribeTemplateHistoryResponse.new
|
5417
|
-
model.deserialize(response['Response'])
|
5418
|
-
model
|
5419
|
-
else
|
5420
|
-
code = response['Response']['Error']['Code']
|
5421
|
-
message = response['Response']['Error']['Message']
|
5422
|
-
reqid = response['Response']['RequestId']
|
5423
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5424
|
-
end
|
5425
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5426
|
-
raise e
|
5427
|
-
rescue StandardError => e
|
5428
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5429
|
-
end
|
5430
|
-
|
5431
3803
|
# 获取第三方运行日志
|
5432
3804
|
|
5433
3805
|
# @param request: Request instance for DescribeThirdTaskRunLog.
|
@@ -5596,30 +3968,6 @@ module TencentCloud
|
|
5596
3968
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5597
3969
|
end
|
5598
3970
|
|
5599
|
-
# 查询运维画布信息,只需要获取边和节点
|
5600
|
-
|
5601
|
-
# @param request: Request instance for DescribeWorkflowOpsCanvasInfo.
|
5602
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowOpsCanvasInfoRequest`
|
5603
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowOpsCanvasInfoResponse`
|
5604
|
-
def DescribeWorkflowOpsCanvasInfo(request)
|
5605
|
-
body = send_request('DescribeWorkflowOpsCanvasInfo', request.serialize)
|
5606
|
-
response = JSON.parse(body)
|
5607
|
-
if response['Response'].key?('Error') == false
|
5608
|
-
model = DescribeWorkflowOpsCanvasInfoResponse.new
|
5609
|
-
model.deserialize(response['Response'])
|
5610
|
-
model
|
5611
|
-
else
|
5612
|
-
code = response['Response']['Error']['Code']
|
5613
|
-
message = response['Response']['Error']['Message']
|
5614
|
-
reqid = response['Response']['RequestId']
|
5615
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5616
|
-
end
|
5617
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5618
|
-
raise e
|
5619
|
-
rescue StandardError => e
|
5620
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5621
|
-
end
|
5622
|
-
|
5623
3971
|
# 查询工作流任务数
|
5624
3972
|
|
5625
3973
|
# @param request: Request instance for DescribeWorkflowTaskCount.
|
@@ -5644,16 +3992,16 @@ module TencentCloud
|
|
5644
3992
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5645
3993
|
end
|
5646
3994
|
|
5647
|
-
#
|
3995
|
+
# 实例诊断
|
5648
3996
|
|
5649
|
-
# @param request: Request instance for
|
5650
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
5651
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
5652
|
-
def
|
5653
|
-
body = send_request('
|
3997
|
+
# @param request: Request instance for DiagnosePro.
|
3998
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DiagnoseProRequest`
|
3999
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DiagnoseProResponse`
|
4000
|
+
def DiagnosePro(request)
|
4001
|
+
body = send_request('DiagnosePro', request.serialize)
|
5654
4002
|
response = JSON.parse(body)
|
5655
4003
|
if response['Response'].key?('Error') == false
|
5656
|
-
model =
|
4004
|
+
model = DiagnoseProResponse.new
|
5657
4005
|
model.deserialize(response['Response'])
|
5658
4006
|
model
|
5659
4007
|
else
|
@@ -5692,138 +4040,16 @@ module TencentCloud
|
|
5692
4040
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5693
4041
|
end
|
5694
4042
|
|
5695
|
-
#
|
5696
|
-
|
5697
|
-
# @param request: Request instance for EditBaseline.
|
5698
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::EditBaselineRequest`
|
5699
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::EditBaselineResponse`
|
5700
|
-
def EditBaseline(request)
|
5701
|
-
body = send_request('EditBaseline', request.serialize)
|
5702
|
-
response = JSON.parse(body)
|
5703
|
-
if response['Response'].key?('Error') == false
|
5704
|
-
model = EditBaselineResponse.new
|
5705
|
-
model.deserialize(response['Response'])
|
5706
|
-
model
|
5707
|
-
else
|
5708
|
-
code = response['Response']['Error']['Code']
|
5709
|
-
message = response['Response']['Error']['Message']
|
5710
|
-
reqid = response['Response']['RequestId']
|
5711
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5712
|
-
end
|
5713
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5714
|
-
raise e
|
5715
|
-
rescue StandardError => e
|
5716
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5717
|
-
end
|
5718
|
-
|
5719
|
-
# 查找全部的文件夹
|
5720
|
-
|
5721
|
-
# @param request: Request instance for FindAllFolder.
|
5722
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::FindAllFolderRequest`
|
5723
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::FindAllFolderResponse`
|
5724
|
-
def FindAllFolder(request)
|
5725
|
-
body = send_request('FindAllFolder', request.serialize)
|
5726
|
-
response = JSON.parse(body)
|
5727
|
-
if response['Response'].key?('Error') == false
|
5728
|
-
model = FindAllFolderResponse.new
|
5729
|
-
model.deserialize(response['Response'])
|
5730
|
-
model
|
5731
|
-
else
|
5732
|
-
code = response['Response']['Error']['Code']
|
5733
|
-
message = response['Response']['Error']['Message']
|
5734
|
-
reqid = response['Response']['RequestId']
|
5735
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5736
|
-
end
|
5737
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5738
|
-
raise e
|
5739
|
-
rescue StandardError => e
|
5740
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5741
|
-
end
|
5742
|
-
|
5743
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5744
|
-
# 实例批量置成功
|
5745
|
-
|
5746
|
-
# @param request: Request instance for ForceSucInstances.
|
5747
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::ForceSucInstancesRequest`
|
5748
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::ForceSucInstancesResponse`
|
5749
|
-
def ForceSucInstances(request)
|
5750
|
-
body = send_request('ForceSucInstances', request.serialize)
|
5751
|
-
response = JSON.parse(body)
|
5752
|
-
if response['Response'].key?('Error') == false
|
5753
|
-
model = ForceSucInstancesResponse.new
|
5754
|
-
model.deserialize(response['Response'])
|
5755
|
-
model
|
5756
|
-
else
|
5757
|
-
code = response['Response']['Error']['Code']
|
5758
|
-
message = response['Response']['Error']['Message']
|
5759
|
-
reqid = response['Response']['RequestId']
|
5760
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5761
|
-
end
|
5762
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5763
|
-
raise e
|
5764
|
-
rescue StandardError => e
|
5765
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5766
|
-
end
|
5767
|
-
|
5768
|
-
# 实例强制成功
|
5769
|
-
|
5770
|
-
# @param request: Request instance for ForceSucScheduleInstances.
|
5771
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::ForceSucScheduleInstancesRequest`
|
5772
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::ForceSucScheduleInstancesResponse`
|
5773
|
-
def ForceSucScheduleInstances(request)
|
5774
|
-
body = send_request('ForceSucScheduleInstances', request.serialize)
|
5775
|
-
response = JSON.parse(body)
|
5776
|
-
if response['Response'].key?('Error') == false
|
5777
|
-
model = ForceSucScheduleInstancesResponse.new
|
5778
|
-
model.deserialize(response['Response'])
|
5779
|
-
model
|
5780
|
-
else
|
5781
|
-
code = response['Response']['Error']['Code']
|
5782
|
-
message = response['Response']['Error']['Message']
|
5783
|
-
reqid = response['Response']['RequestId']
|
5784
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5785
|
-
end
|
5786
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5787
|
-
raise e
|
5788
|
-
rescue StandardError => e
|
5789
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5790
|
-
end
|
5791
|
-
|
5792
|
-
# 任务运维-批量冻结任务
|
5793
|
-
|
5794
|
-
# @param request: Request instance for FreezeOpsTasks.
|
5795
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksRequest`
|
5796
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksResponse`
|
5797
|
-
def FreezeOpsTasks(request)
|
5798
|
-
body = send_request('FreezeOpsTasks', request.serialize)
|
5799
|
-
response = JSON.parse(body)
|
5800
|
-
if response['Response'].key?('Error') == false
|
5801
|
-
model = FreezeOpsTasksResponse.new
|
5802
|
-
model.deserialize(response['Response'])
|
5803
|
-
model
|
5804
|
-
else
|
5805
|
-
code = response['Response']['Error']['Code']
|
5806
|
-
message = response['Response']['Error']['Message']
|
5807
|
-
reqid = response['Response']['RequestId']
|
5808
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5809
|
-
end
|
5810
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5811
|
-
raise e
|
5812
|
-
rescue StandardError => e
|
5813
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5814
|
-
end
|
5815
|
-
|
5816
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5817
|
-
# 批量冻结任务
|
4043
|
+
# 编排空间批量操作页面查找全部的文件夹
|
5818
4044
|
|
5819
|
-
# @param request: Request instance for
|
5820
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
5821
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
5822
|
-
def
|
5823
|
-
body = send_request('
|
4045
|
+
# @param request: Request instance for FindAllFolder.
|
4046
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::FindAllFolderRequest`
|
4047
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::FindAllFolderResponse`
|
4048
|
+
def FindAllFolder(request)
|
4049
|
+
body = send_request('FindAllFolder', request.serialize)
|
5824
4050
|
response = JSON.parse(body)
|
5825
4051
|
if response['Response'].key?('Error') == false
|
5826
|
-
model =
|
4052
|
+
model = FindAllFolderResponse.new
|
5827
4053
|
model.deserialize(response['Response'])
|
5828
4054
|
model
|
5829
4055
|
else
|
@@ -5838,17 +4064,16 @@ module TencentCloud
|
|
5838
4064
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5839
4065
|
end
|
5840
4066
|
|
5841
|
-
#
|
5842
|
-
# 基于多个工作流进行批量冻结任务操作
|
4067
|
+
# 任务运维-批量冻结任务
|
5843
4068
|
|
5844
|
-
# @param request: Request instance for
|
5845
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
5846
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
5847
|
-
def
|
5848
|
-
body = send_request('
|
4069
|
+
# @param request: Request instance for FreezeOpsTasks.
|
4070
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksRequest`
|
4071
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksResponse`
|
4072
|
+
def FreezeOpsTasks(request)
|
4073
|
+
body = send_request('FreezeOpsTasks', request.serialize)
|
5849
4074
|
response = JSON.parse(body)
|
5850
4075
|
if response['Response'].key?('Error') == false
|
5851
|
-
model =
|
4076
|
+
model = FreezeOpsTasksResponse.new
|
5852
4077
|
model.deserialize(response['Response'])
|
5853
4078
|
model
|
5854
4079
|
else
|
@@ -6007,31 +4232,6 @@ module TencentCloud
|
|
6007
4232
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6008
4233
|
end
|
6009
4234
|
|
6010
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6011
|
-
# 实例批量终止操作
|
6012
|
-
|
6013
|
-
# @param request: Request instance for KillInstances.
|
6014
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::KillInstancesRequest`
|
6015
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::KillInstancesResponse`
|
6016
|
-
def KillInstances(request)
|
6017
|
-
body = send_request('KillInstances', request.serialize)
|
6018
|
-
response = JSON.parse(body)
|
6019
|
-
if response['Response'].key?('Error') == false
|
6020
|
-
model = KillInstancesResponse.new
|
6021
|
-
model.deserialize(response['Response'])
|
6022
|
-
model
|
6023
|
-
else
|
6024
|
-
code = response['Response']['Error']['Code']
|
6025
|
-
message = response['Response']['Error']['Message']
|
6026
|
-
reqid = response['Response']['RequestId']
|
6027
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6028
|
-
end
|
6029
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6030
|
-
raise e
|
6031
|
-
rescue StandardError => e
|
6032
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6033
|
-
end
|
6034
|
-
|
6035
4235
|
# 按补录计划批量终止实例。
|
6036
4236
|
|
6037
4237
|
# @param request: Request instance for KillOpsMakePlanInstances.
|
@@ -6056,7 +4256,7 @@ module TencentCloud
|
|
6056
4256
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6057
4257
|
end
|
6058
4258
|
|
6059
|
-
#
|
4259
|
+
# 批量终止实例
|
6060
4260
|
|
6061
4261
|
# @param request: Request instance for KillScheduleInstances.
|
6062
4262
|
# @type request: :class:`Tencentcloud::wedata::V20210820::KillScheduleInstancesRequest`
|
@@ -6104,106 +4304,6 @@ module TencentCloud
|
|
6104
4304
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6105
4305
|
end
|
6106
4306
|
|
6107
|
-
# 任务批量补录,调度状态任务才可以补录;
|
6108
|
-
|
6109
|
-
# @param request: Request instance for MakeUpOpsTasks.
|
6110
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::MakeUpOpsTasksRequest`
|
6111
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::MakeUpOpsTasksResponse`
|
6112
|
-
def MakeUpOpsTasks(request)
|
6113
|
-
body = send_request('MakeUpOpsTasks', request.serialize)
|
6114
|
-
response = JSON.parse(body)
|
6115
|
-
if response['Response'].key?('Error') == false
|
6116
|
-
model = MakeUpOpsTasksResponse.new
|
6117
|
-
model.deserialize(response['Response'])
|
6118
|
-
model
|
6119
|
-
else
|
6120
|
-
code = response['Response']['Error']['Code']
|
6121
|
-
message = response['Response']['Error']['Message']
|
6122
|
-
reqid = response['Response']['RequestId']
|
6123
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6124
|
-
end
|
6125
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6126
|
-
raise e
|
6127
|
-
rescue StandardError => e
|
6128
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6129
|
-
end
|
6130
|
-
|
6131
|
-
# 工作流补数据
|
6132
|
-
|
6133
|
-
# @param request: Request instance for MakeUpTasksByWorkflow.
|
6134
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::MakeUpTasksByWorkflowRequest`
|
6135
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::MakeUpTasksByWorkflowResponse`
|
6136
|
-
def MakeUpTasksByWorkflow(request)
|
6137
|
-
body = send_request('MakeUpTasksByWorkflow', request.serialize)
|
6138
|
-
response = JSON.parse(body)
|
6139
|
-
if response['Response'].key?('Error') == false
|
6140
|
-
model = MakeUpTasksByWorkflowResponse.new
|
6141
|
-
model.deserialize(response['Response'])
|
6142
|
-
model
|
6143
|
-
else
|
6144
|
-
code = response['Response']['Error']['Code']
|
6145
|
-
message = response['Response']['Error']['Message']
|
6146
|
-
reqid = response['Response']['RequestId']
|
6147
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6148
|
-
end
|
6149
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6150
|
-
raise e
|
6151
|
-
rescue StandardError => e
|
6152
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6153
|
-
end
|
6154
|
-
|
6155
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6156
|
-
# 任务批量补录,调度状态任务才可以补录;
|
6157
|
-
|
6158
|
-
|
6159
|
-
|
6160
|
-
# @param request: Request instance for MakeUpTasksNew.
|
6161
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::MakeUpTasksNewRequest`
|
6162
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::MakeUpTasksNewResponse`
|
6163
|
-
def MakeUpTasksNew(request)
|
6164
|
-
body = send_request('MakeUpTasksNew', request.serialize)
|
6165
|
-
response = JSON.parse(body)
|
6166
|
-
if response['Response'].key?('Error') == false
|
6167
|
-
model = MakeUpTasksNewResponse.new
|
6168
|
-
model.deserialize(response['Response'])
|
6169
|
-
model
|
6170
|
-
else
|
6171
|
-
code = response['Response']['Error']['Code']
|
6172
|
-
message = response['Response']['Error']['Message']
|
6173
|
-
reqid = response['Response']['RequestId']
|
6174
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6175
|
-
end
|
6176
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6177
|
-
raise e
|
6178
|
-
rescue StandardError => e
|
6179
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6180
|
-
end
|
6181
|
-
|
6182
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6183
|
-
# 工作流下所有任务的补录
|
6184
|
-
|
6185
|
-
# @param request: Request instance for MakeUpWorkflowNew.
|
6186
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::MakeUpWorkflowNewRequest`
|
6187
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::MakeUpWorkflowNewResponse`
|
6188
|
-
def MakeUpWorkflowNew(request)
|
6189
|
-
body = send_request('MakeUpWorkflowNew', request.serialize)
|
6190
|
-
response = JSON.parse(body)
|
6191
|
-
if response['Response'].key?('Error') == false
|
6192
|
-
model = MakeUpWorkflowNewResponse.new
|
6193
|
-
model.deserialize(response['Response'])
|
6194
|
-
model
|
6195
|
-
else
|
6196
|
-
code = response['Response']['Error']['Code']
|
6197
|
-
message = response['Response']['Error']['Message']
|
6198
|
-
reqid = response['Response']['RequestId']
|
6199
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6200
|
-
end
|
6201
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6202
|
-
raise e
|
6203
|
-
rescue StandardError => e
|
6204
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6205
|
-
end
|
6206
|
-
|
6207
4307
|
# 修改审批单状态
|
6208
4308
|
|
6209
4309
|
# @param request: Request instance for ModifyApproveStatus.
|
@@ -6228,55 +4328,6 @@ module TencentCloud
|
|
6228
4328
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6229
4329
|
end
|
6230
4330
|
|
6231
|
-
# 编辑基线告警状态
|
6232
|
-
|
6233
|
-
# @param request: Request instance for ModifyBaselineAlarmStatus.
|
6234
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineAlarmStatusRequest`
|
6235
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineAlarmStatusResponse`
|
6236
|
-
def ModifyBaselineAlarmStatus(request)
|
6237
|
-
body = send_request('ModifyBaselineAlarmStatus', request.serialize)
|
6238
|
-
response = JSON.parse(body)
|
6239
|
-
if response['Response'].key?('Error') == false
|
6240
|
-
model = ModifyBaselineAlarmStatusResponse.new
|
6241
|
-
model.deserialize(response['Response'])
|
6242
|
-
model
|
6243
|
-
else
|
6244
|
-
code = response['Response']['Error']['Code']
|
6245
|
-
message = response['Response']['Error']['Message']
|
6246
|
-
reqid = response['Response']['RequestId']
|
6247
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6248
|
-
end
|
6249
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6250
|
-
raise e
|
6251
|
-
rescue StandardError => e
|
6252
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6253
|
-
end
|
6254
|
-
|
6255
|
-
# 编辑基线实例中任务告警状态
|
6256
|
-
|
6257
|
-
# @param request: Request instance for ModifyBaselineTaskAlarmStatus.
|
6258
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineTaskAlarmStatusRequest`
|
6259
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineTaskAlarmStatusResponse`
|
6260
|
-
def ModifyBaselineTaskAlarmStatus(request)
|
6261
|
-
body = send_request('ModifyBaselineTaskAlarmStatus', request.serialize)
|
6262
|
-
response = JSON.parse(body)
|
6263
|
-
if response['Response'].key?('Error') == false
|
6264
|
-
model = ModifyBaselineTaskAlarmStatusResponse.new
|
6265
|
-
model.deserialize(response['Response'])
|
6266
|
-
model
|
6267
|
-
else
|
6268
|
-
code = response['Response']['Error']['Code']
|
6269
|
-
message = response['Response']['Error']['Message']
|
6270
|
-
reqid = response['Response']['RequestId']
|
6271
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6272
|
-
end
|
6273
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6274
|
-
raise e
|
6275
|
-
rescue StandardError => e
|
6276
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6277
|
-
end
|
6278
|
-
|
6279
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6280
4331
|
# 修改数据源
|
6281
4332
|
|
6282
4333
|
# @param request: Request instance for ModifyDataSource.
|
@@ -6373,31 +4424,6 @@ module TencentCloud
|
|
6373
4424
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6374
4425
|
end
|
6375
4426
|
|
6376
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6377
|
-
# 文件夹更新
|
6378
|
-
|
6379
|
-
# @param request: Request instance for ModifyFolder.
|
6380
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyFolderRequest`
|
6381
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyFolderResponse`
|
6382
|
-
def ModifyFolder(request)
|
6383
|
-
body = send_request('ModifyFolder', request.serialize)
|
6384
|
-
response = JSON.parse(body)
|
6385
|
-
if response['Response'].key?('Error') == false
|
6386
|
-
model = ModifyFolderResponse.new
|
6387
|
-
model.deserialize(response['Response'])
|
6388
|
-
model
|
6389
|
-
else
|
6390
|
-
code = response['Response']['Error']['Code']
|
6391
|
-
message = response['Response']['Error']['Message']
|
6392
|
-
reqid = response['Response']['RequestId']
|
6393
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6394
|
-
end
|
6395
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6396
|
-
raise e
|
6397
|
-
rescue StandardError => e
|
6398
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6399
|
-
end
|
6400
|
-
|
6401
4427
|
# 更新集成节点
|
6402
4428
|
|
6403
4429
|
# @param request: Request instance for ModifyIntegrationNode.
|
@@ -6566,7 +4592,7 @@ module TencentCloud
|
|
6566
4592
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6567
4593
|
end
|
6568
4594
|
|
6569
|
-
# <p style="color:red;">[
|
4595
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
6570
4596
|
# 更新任务
|
6571
4597
|
|
6572
4598
|
# @param request: Request instance for ModifyTaskInfo.
|
@@ -6591,7 +4617,7 @@ module TencentCloud
|
|
6591
4617
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6592
4618
|
end
|
6593
4619
|
|
6594
|
-
# <p style="color:red;">[
|
4620
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
6595
4621
|
# 添加父任务依赖
|
6596
4622
|
|
6597
4623
|
# @param request: Request instance for ModifyTaskLinks.
|
@@ -6640,7 +4666,7 @@ module TencentCloud
|
|
6640
4666
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6641
4667
|
end
|
6642
4668
|
|
6643
|
-
# <p style="color:red;">[
|
4669
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
6644
4670
|
# 修改任务脚本
|
6645
4671
|
|
6646
4672
|
# @param request: Request instance for ModifyTaskScript.
|
@@ -6665,8 +4691,7 @@ module TencentCloud
|
|
6665
4691
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6666
4692
|
end
|
6667
4693
|
|
6668
|
-
#
|
6669
|
-
# 更新工作流
|
4694
|
+
# 更新工作流信息
|
6670
4695
|
|
6671
4696
|
# @param request: Request instance for ModifyWorkflowInfo.
|
6672
4697
|
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyWorkflowInfoRequest`
|
@@ -6690,7 +4715,6 @@ module TencentCloud
|
|
6690
4715
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6691
4716
|
end
|
6692
4717
|
|
6693
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6694
4718
|
# 更新工作流调度
|
6695
4719
|
|
6696
4720
|
# @param request: Request instance for ModifyWorkflowSchedule.
|
@@ -6715,7 +4739,7 @@ module TencentCloud
|
|
6715
4739
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6716
4740
|
end
|
6717
4741
|
|
6718
|
-
# <p style="color:red;">[
|
4742
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
6719
4743
|
# 注册事件
|
6720
4744
|
|
6721
4745
|
# @param request: Request instance for RegisterEvent.
|
@@ -6740,7 +4764,7 @@ module TencentCloud
|
|
6740
4764
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6741
4765
|
end
|
6742
4766
|
|
6743
|
-
# <p style="color:red;">[
|
4767
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
6744
4768
|
# 注册事件监听器
|
6745
4769
|
|
6746
4770
|
# @param request: Request instance for RegisterEventListener.
|
@@ -6789,79 +4813,6 @@ module TencentCloud
|
|
6789
4813
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6790
4814
|
end
|
6791
4815
|
|
6792
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6793
|
-
# 实例批量重跑
|
6794
|
-
|
6795
|
-
# @param request: Request instance for RerunInstances.
|
6796
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::RerunInstancesRequest`
|
6797
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::RerunInstancesResponse`
|
6798
|
-
def RerunInstances(request)
|
6799
|
-
body = send_request('RerunInstances', request.serialize)
|
6800
|
-
response = JSON.parse(body)
|
6801
|
-
if response['Response'].key?('Error') == false
|
6802
|
-
model = RerunInstancesResponse.new
|
6803
|
-
model.deserialize(response['Response'])
|
6804
|
-
model
|
6805
|
-
else
|
6806
|
-
code = response['Response']['Error']['Code']
|
6807
|
-
message = response['Response']['Error']['Message']
|
6808
|
-
reqid = response['Response']['RequestId']
|
6809
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6810
|
-
end
|
6811
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6812
|
-
raise e
|
6813
|
-
rescue StandardError => e
|
6814
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6815
|
-
end
|
6816
|
-
|
6817
|
-
# 按补录计划批量重跑/选择补录计划→补录任务→补录实例,点击重跑
|
6818
|
-
|
6819
|
-
# @param request: Request instance for RerunOpsMakePlanInstances.
|
6820
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::RerunOpsMakePlanInstancesRequest`
|
6821
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::RerunOpsMakePlanInstancesResponse`
|
6822
|
-
def RerunOpsMakePlanInstances(request)
|
6823
|
-
body = send_request('RerunOpsMakePlanInstances', request.serialize)
|
6824
|
-
response = JSON.parse(body)
|
6825
|
-
if response['Response'].key?('Error') == false
|
6826
|
-
model = RerunOpsMakePlanInstancesResponse.new
|
6827
|
-
model.deserialize(response['Response'])
|
6828
|
-
model
|
6829
|
-
else
|
6830
|
-
code = response['Response']['Error']['Code']
|
6831
|
-
message = response['Response']['Error']['Message']
|
6832
|
-
reqid = response['Response']['RequestId']
|
6833
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6834
|
-
end
|
6835
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6836
|
-
raise e
|
6837
|
-
rescue StandardError => e
|
6838
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6839
|
-
end
|
6840
|
-
|
6841
|
-
# 实例批量重跑
|
6842
|
-
|
6843
|
-
# @param request: Request instance for RerunScheduleInstances.
|
6844
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::RerunScheduleInstancesRequest`
|
6845
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::RerunScheduleInstancesResponse`
|
6846
|
-
def RerunScheduleInstances(request)
|
6847
|
-
body = send_request('RerunScheduleInstances', request.serialize)
|
6848
|
-
response = JSON.parse(body)
|
6849
|
-
if response['Response'].key?('Error') == false
|
6850
|
-
model = RerunScheduleInstancesResponse.new
|
6851
|
-
model.deserialize(response['Response'])
|
6852
|
-
model
|
6853
|
-
else
|
6854
|
-
code = response['Response']['Error']['Code']
|
6855
|
-
message = response['Response']['Error']['Message']
|
6856
|
-
reqid = response['Response']['RequestId']
|
6857
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6858
|
-
end
|
6859
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6860
|
-
raise e
|
6861
|
-
rescue StandardError => e
|
6862
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6863
|
-
end
|
6864
|
-
|
6865
4816
|
# 继续集成任务
|
6866
4817
|
|
6867
4818
|
# @param request: Request instance for ResumeIntegrationTask.
|
@@ -6910,7 +4861,7 @@ module TencentCloud
|
|
6910
4861
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6911
4862
|
end
|
6912
4863
|
|
6913
|
-
#
|
4864
|
+
# 实例批量置成功
|
6914
4865
|
|
6915
4866
|
# @param request: Request instance for RunForceSucScheduleInstances.
|
6916
4867
|
# @type request: :class:`Tencentcloud::wedata::V20210820::RunForceSucScheduleInstancesRequest`
|
@@ -6958,31 +4909,6 @@ module TencentCloud
|
|
6958
4909
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6959
4910
|
end
|
6960
4911
|
|
6961
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6962
|
-
# 运行任务
|
6963
|
-
|
6964
|
-
# @param request: Request instance for RunTask.
|
6965
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::RunTaskRequest`
|
6966
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::RunTaskResponse`
|
6967
|
-
def RunTask(request)
|
6968
|
-
body = send_request('RunTask', request.serialize)
|
6969
|
-
response = JSON.parse(body)
|
6970
|
-
if response['Response'].key?('Error') == false
|
6971
|
-
model = RunTaskResponse.new
|
6972
|
-
model.deserialize(response['Response'])
|
6973
|
-
model
|
6974
|
-
else
|
6975
|
-
code = response['Response']['Error']['Code']
|
6976
|
-
message = response['Response']['Error']['Message']
|
6977
|
-
reqid = response['Response']['RequestId']
|
6978
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6979
|
-
end
|
6980
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6981
|
-
raise e
|
6982
|
-
rescue StandardError => e
|
6983
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6984
|
-
end
|
6985
|
-
|
6986
4912
|
# 批量启动工作流
|
6987
4913
|
|
6988
4914
|
# @param request: Request instance for RunTasksByMultiWorkflow.
|
@@ -7031,7 +4957,7 @@ module TencentCloud
|
|
7031
4957
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7032
4958
|
end
|
7033
4959
|
|
7034
|
-
# <p style="color:red;">[
|
4960
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
7035
4961
|
# 设置任务告警,新建/更新告警信息(最新)
|
7036
4962
|
|
7037
4963
|
# @param request: Request instance for SetTaskAlarmNew.
|
@@ -7080,30 +5006,6 @@ module TencentCloud
|
|
7080
5006
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7081
5007
|
end
|
7082
5008
|
|
7083
|
-
# 提交基线
|
7084
|
-
|
7085
|
-
# @param request: Request instance for StopBaseline.
|
7086
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::StopBaselineRequest`
|
7087
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::StopBaselineResponse`
|
7088
|
-
def StopBaseline(request)
|
7089
|
-
body = send_request('StopBaseline', request.serialize)
|
7090
|
-
response = JSON.parse(body)
|
7091
|
-
if response['Response'].key?('Error') == false
|
7092
|
-
model = StopBaselineResponse.new
|
7093
|
-
model.deserialize(response['Response'])
|
7094
|
-
model
|
7095
|
-
else
|
7096
|
-
code = response['Response']['Error']['Code']
|
7097
|
-
message = response['Response']['Error']['Message']
|
7098
|
-
reqid = response['Response']['RequestId']
|
7099
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7100
|
-
end
|
7101
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7102
|
-
raise e
|
7103
|
-
rescue StandardError => e
|
7104
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7105
|
-
end
|
7106
|
-
|
7107
5009
|
# 停止集成任务
|
7108
5010
|
|
7109
5011
|
# @param request: Request instance for StopIntegrationTask.
|
@@ -7128,30 +5030,6 @@ module TencentCloud
|
|
7128
5030
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7129
5031
|
end
|
7130
5032
|
|
7131
|
-
# 提交基线
|
7132
|
-
|
7133
|
-
# @param request: Request instance for SubmitBaseline.
|
7134
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::SubmitBaselineRequest`
|
7135
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitBaselineResponse`
|
7136
|
-
def SubmitBaseline(request)
|
7137
|
-
body = send_request('SubmitBaseline', request.serialize)
|
7138
|
-
response = JSON.parse(body)
|
7139
|
-
if response['Response'].key?('Error') == false
|
7140
|
-
model = SubmitBaselineResponse.new
|
7141
|
-
model.deserialize(response['Response'])
|
7142
|
-
model
|
7143
|
-
else
|
7144
|
-
code = response['Response']['Error']['Code']
|
7145
|
-
message = response['Response']['Error']['Message']
|
7146
|
-
reqid = response['Response']['RequestId']
|
7147
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7148
|
-
end
|
7149
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7150
|
-
raise e
|
7151
|
-
rescue StandardError => e
|
7152
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7153
|
-
end
|
7154
|
-
|
7155
5033
|
# 提交自定义函数
|
7156
5034
|
|
7157
5035
|
# @param request: Request instance for SubmitCustomFunction.
|
@@ -7200,7 +5078,7 @@ module TencentCloud
|
|
7200
5078
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7201
5079
|
end
|
7202
5080
|
|
7203
|
-
# <p style="color:red;">[
|
5081
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
7204
5082
|
# 提交任务
|
7205
5083
|
|
7206
5084
|
# @param request: Request instance for SubmitTask.
|
@@ -7249,7 +5127,6 @@ module TencentCloud
|
|
7249
5127
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7250
5128
|
end
|
7251
5129
|
|
7252
|
-
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
7253
5130
|
# 提交工作流
|
7254
5131
|
|
7255
5132
|
# @param request: Request instance for SubmitWorkflow.
|
@@ -7346,7 +5223,7 @@ module TencentCloud
|
|
7346
5223
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7347
5224
|
end
|
7348
5225
|
|
7349
|
-
# <p style="color:red;">[
|
5226
|
+
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
7350
5227
|
# 触发事件
|
7351
5228
|
|
7352
5229
|
# @param request: Request instance for TriggerEvent.
|