tencentcloud-sdk-wedata 3.0.616 → 3.0.617
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 +2820 -708
- data/lib/v20210820/models.rb +18828 -8735
- metadata +2 -2
data/lib/v20210820/client.rb
CHANGED
@@ -77,6 +77,30 @@ module TencentCloud
|
|
77
77
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
78
|
end
|
79
79
|
|
80
|
+
# 智能运维-批量删除任务
|
81
|
+
|
82
|
+
# @param request: Request instance for BatchDeleteOpsTasks.
|
83
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchDeleteOpsTasksRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchDeleteOpsTasksResponse`
|
85
|
+
def BatchDeleteOpsTasks(request)
|
86
|
+
body = send_request('BatchDeleteOpsTasks', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = BatchDeleteOpsTasksResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
80
104
|
# Ds批量删除任务,仅对任务状态为”已停止“有效;
|
81
105
|
|
82
106
|
# @param request: Request instance for BatchDeleteTasksDs.
|
@@ -198,6 +222,30 @@ module TencentCloud
|
|
198
222
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
199
223
|
end
|
200
224
|
|
225
|
+
# 批量修改任务责任人
|
226
|
+
|
227
|
+
# @param request: Request instance for BatchModifyOpsOwners.
|
228
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchModifyOpsOwnersRequest`
|
229
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchModifyOpsOwnersResponse`
|
230
|
+
def BatchModifyOpsOwners(request)
|
231
|
+
body = send_request('BatchModifyOpsOwners', request.serialize)
|
232
|
+
response = JSON.parse(body)
|
233
|
+
if response['Response'].key?('Error') == false
|
234
|
+
model = BatchModifyOpsOwnersResponse.new
|
235
|
+
model.deserialize(response['Response'])
|
236
|
+
model
|
237
|
+
else
|
238
|
+
code = response['Response']['Error']['Code']
|
239
|
+
message = response['Response']['Error']['Message']
|
240
|
+
reqid = response['Response']['RequestId']
|
241
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
242
|
+
end
|
243
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
244
|
+
raise e
|
245
|
+
rescue StandardError => e
|
246
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
247
|
+
end
|
248
|
+
|
201
249
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
202
250
|
# 批量修改任务责任人
|
203
251
|
|
@@ -271,6 +319,30 @@ module TencentCloud
|
|
271
319
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
272
320
|
end
|
273
321
|
|
322
|
+
# 任务运维-任务列表 批量运行
|
323
|
+
|
324
|
+
# @param request: Request instance for BatchRunOpsTask.
|
325
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchRunOpsTaskRequest`
|
326
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchRunOpsTaskResponse`
|
327
|
+
def BatchRunOpsTask(request)
|
328
|
+
body = send_request('BatchRunOpsTask', request.serialize)
|
329
|
+
response = JSON.parse(body)
|
330
|
+
if response['Response'].key?('Error') == false
|
331
|
+
model = BatchRunOpsTaskResponse.new
|
332
|
+
model.deserialize(response['Response'])
|
333
|
+
model
|
334
|
+
else
|
335
|
+
code = response['Response']['Error']['Code']
|
336
|
+
message = response['Response']['Error']['Message']
|
337
|
+
reqid = response['Response']['RequestId']
|
338
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
339
|
+
end
|
340
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
341
|
+
raise e
|
342
|
+
rescue StandardError => e
|
343
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
344
|
+
end
|
345
|
+
|
274
346
|
# 批量运行集成任务
|
275
347
|
|
276
348
|
# @param request: Request instance for BatchStartIntegrationTasks.
|
@@ -319,6 +391,30 @@ module TencentCloud
|
|
319
391
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
320
392
|
end
|
321
393
|
|
394
|
+
# 仅对任务状态为”调度中“和”已暂停“有效,对所选任务的任务实例进行终止,并停止调度
|
395
|
+
|
396
|
+
# @param request: Request instance for BatchStopOpsTasks.
|
397
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchStopOpsTasksRequest`
|
398
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchStopOpsTasksResponse`
|
399
|
+
def BatchStopOpsTasks(request)
|
400
|
+
body = send_request('BatchStopOpsTasks', request.serialize)
|
401
|
+
response = JSON.parse(body)
|
402
|
+
if response['Response'].key?('Error') == false
|
403
|
+
model = BatchStopOpsTasksResponse.new
|
404
|
+
model.deserialize(response['Response'])
|
405
|
+
model
|
406
|
+
else
|
407
|
+
code = response['Response']['Error']['Code']
|
408
|
+
message = response['Response']['Error']['Message']
|
409
|
+
reqid = response['Response']['RequestId']
|
410
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
411
|
+
end
|
412
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
413
|
+
raise e
|
414
|
+
rescue StandardError => e
|
415
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
416
|
+
end
|
417
|
+
|
322
418
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
323
419
|
# 仅对任务状态为”调度中“和”已暂停“有效,对所选任务的任务实例进行终止,并停止调度
|
324
420
|
|
@@ -344,6 +440,30 @@ module TencentCloud
|
|
344
440
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
345
441
|
end
|
346
442
|
|
443
|
+
# 批量停止工作流
|
444
|
+
|
445
|
+
# @param request: Request instance for BatchStopWorkflowsByIds.
|
446
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchStopWorkflowsByIdsRequest`
|
447
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchStopWorkflowsByIdsResponse`
|
448
|
+
def BatchStopWorkflowsByIds(request)
|
449
|
+
body = send_request('BatchStopWorkflowsByIds', request.serialize)
|
450
|
+
response = JSON.parse(body)
|
451
|
+
if response['Response'].key?('Error') == false
|
452
|
+
model = BatchStopWorkflowsByIdsResponse.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
|
+
|
347
467
|
# 批量暂停集成任务
|
348
468
|
|
349
469
|
# @param request: Request instance for BatchSuspendIntegrationTasks.
|
@@ -632,6 +752,54 @@ module TencentCloud
|
|
632
752
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
633
753
|
end
|
634
754
|
|
755
|
+
# 统计任务实例状态
|
756
|
+
|
757
|
+
# @param request: Request instance for CountOpsInstanceState.
|
758
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CountOpsInstanceStateRequest`
|
759
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CountOpsInstanceStateResponse`
|
760
|
+
def CountOpsInstanceState(request)
|
761
|
+
body = send_request('CountOpsInstanceState', request.serialize)
|
762
|
+
response = JSON.parse(body)
|
763
|
+
if response['Response'].key?('Error') == false
|
764
|
+
model = CountOpsInstanceStateResponse.new
|
765
|
+
model.deserialize(response['Response'])
|
766
|
+
model
|
767
|
+
else
|
768
|
+
code = response['Response']['Error']['Code']
|
769
|
+
message = response['Response']['Error']['Message']
|
770
|
+
reqid = response['Response']['RequestId']
|
771
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
772
|
+
end
|
773
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
774
|
+
raise e
|
775
|
+
rescue StandardError => e
|
776
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
777
|
+
end
|
778
|
+
|
779
|
+
# 创建基线
|
780
|
+
|
781
|
+
# @param request: Request instance for CreateBaseline.
|
782
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateBaselineRequest`
|
783
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateBaselineResponse`
|
784
|
+
def CreateBaseline(request)
|
785
|
+
body = send_request('CreateBaseline', request.serialize)
|
786
|
+
response = JSON.parse(body)
|
787
|
+
if response['Response'].key?('Error') == false
|
788
|
+
model = CreateBaselineResponse.new
|
789
|
+
model.deserialize(response['Response'])
|
790
|
+
model
|
791
|
+
else
|
792
|
+
code = response['Response']['Error']['Code']
|
793
|
+
message = response['Response']['Error']['Message']
|
794
|
+
reqid = response['Response']['RequestId']
|
795
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
796
|
+
end
|
797
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
798
|
+
raise e
|
799
|
+
rescue StandardError => e
|
800
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
801
|
+
end
|
802
|
+
|
635
803
|
# 创建用户自定义函数
|
636
804
|
|
637
805
|
# @param request: Request instance for CreateCustomFunction.
|
@@ -850,6 +1018,30 @@ module TencentCloud
|
|
850
1018
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
851
1019
|
end
|
852
1020
|
|
1021
|
+
# 补录任务
|
1022
|
+
|
1023
|
+
# @param request: Request instance for CreateOpsMakePlan.
|
1024
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateOpsMakePlanRequest`
|
1025
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateOpsMakePlanResponse`
|
1026
|
+
def CreateOpsMakePlan(request)
|
1027
|
+
body = send_request('CreateOpsMakePlan', request.serialize)
|
1028
|
+
response = JSON.parse(body)
|
1029
|
+
if response['Response'].key?('Error') == false
|
1030
|
+
model = CreateOpsMakePlanResponse.new
|
1031
|
+
model.deserialize(response['Response'])
|
1032
|
+
model
|
1033
|
+
else
|
1034
|
+
code = response['Response']['Error']['Code']
|
1035
|
+
message = response['Response']['Error']['Message']
|
1036
|
+
reqid = response['Response']['RequestId']
|
1037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1038
|
+
end
|
1039
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1040
|
+
raise e
|
1041
|
+
rescue StandardError => e
|
1042
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1043
|
+
end
|
1044
|
+
|
853
1045
|
# 资源管理需要先将资源上传到cos中,然后调用该接口,将cos资源绑定到wedata
|
854
1046
|
|
855
1047
|
# @param request: Request instance for CreateOrUpdateResource.
|
@@ -1020,6 +1212,54 @@ module TencentCloud
|
|
1020
1212
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1021
1213
|
end
|
1022
1214
|
|
1215
|
+
# 拉取dag实例
|
1216
|
+
|
1217
|
+
# @param request: Request instance for DagInstances.
|
1218
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DagInstancesRequest`
|
1219
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DagInstancesResponse`
|
1220
|
+
def DagInstances(request)
|
1221
|
+
body = send_request('DagInstances', request.serialize)
|
1222
|
+
response = JSON.parse(body)
|
1223
|
+
if response['Response'].key?('Error') == false
|
1224
|
+
model = DagInstancesResponse.new
|
1225
|
+
model.deserialize(response['Response'])
|
1226
|
+
model
|
1227
|
+
else
|
1228
|
+
code = response['Response']['Error']['Code']
|
1229
|
+
message = response['Response']['Error']['Message']
|
1230
|
+
reqid = response['Response']['RequestId']
|
1231
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1232
|
+
end
|
1233
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1234
|
+
raise e
|
1235
|
+
rescue StandardError => e
|
1236
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
# DeleteBaseline
|
1240
|
+
|
1241
|
+
# @param request: Request instance for DeleteBaseline.
|
1242
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteBaselineRequest`
|
1243
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteBaselineResponse`
|
1244
|
+
def DeleteBaseline(request)
|
1245
|
+
body = send_request('DeleteBaseline', request.serialize)
|
1246
|
+
response = JSON.parse(body)
|
1247
|
+
if response['Response'].key?('Error') == false
|
1248
|
+
model = DeleteBaselineResponse.new
|
1249
|
+
model.deserialize(response['Response'])
|
1250
|
+
model
|
1251
|
+
else
|
1252
|
+
code = response['Response']['Error']['Code']
|
1253
|
+
message = response['Response']['Error']['Message']
|
1254
|
+
reqid = response['Response']['RequestId']
|
1255
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1256
|
+
end
|
1257
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1258
|
+
raise e
|
1259
|
+
rescue StandardError => e
|
1260
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1261
|
+
end
|
1262
|
+
|
1023
1263
|
# 删除用户自定义函数
|
1024
1264
|
|
1025
1265
|
# @param request: Request instance for DeleteCustomFunction.
|
@@ -1069,6 +1309,30 @@ module TencentCloud
|
|
1069
1309
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1070
1310
|
end
|
1071
1311
|
|
1312
|
+
# 删除文件
|
1313
|
+
|
1314
|
+
# @param request: Request instance for DeleteFile.
|
1315
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteFileRequest`
|
1316
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteFileResponse`
|
1317
|
+
def DeleteFile(request)
|
1318
|
+
body = send_request('DeleteFile', request.serialize)
|
1319
|
+
response = JSON.parse(body)
|
1320
|
+
if response['Response'].key?('Error') == false
|
1321
|
+
model = DeleteFileResponse.new
|
1322
|
+
model.deserialize(response['Response'])
|
1323
|
+
model
|
1324
|
+
else
|
1325
|
+
code = response['Response']['Error']['Code']
|
1326
|
+
message = response['Response']['Error']['Message']
|
1327
|
+
reqid = response['Response']['RequestId']
|
1328
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1329
|
+
end
|
1330
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1331
|
+
raise e
|
1332
|
+
rescue StandardError => e
|
1333
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1334
|
+
end
|
1335
|
+
|
1072
1336
|
# 开发空间-批量删除目录和文件
|
1073
1337
|
|
1074
1338
|
# @param request: Request instance for DeleteFilePath.
|
@@ -1262,6 +1526,30 @@ module TencentCloud
|
|
1262
1526
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1263
1527
|
end
|
1264
1528
|
|
1529
|
+
# 资源管理-删除资源文件
|
1530
|
+
|
1531
|
+
# @param request: Request instance for DeleteResourceFile.
|
1532
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteResourceFileRequest`
|
1533
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteResourceFileResponse`
|
1534
|
+
def DeleteResourceFile(request)
|
1535
|
+
body = send_request('DeleteResourceFile', request.serialize)
|
1536
|
+
response = JSON.parse(body)
|
1537
|
+
if response['Response'].key?('Error') == false
|
1538
|
+
model = DeleteResourceFileResponse.new
|
1539
|
+
model.deserialize(response['Response'])
|
1540
|
+
model
|
1541
|
+
else
|
1542
|
+
code = response['Response']['Error']['Code']
|
1543
|
+
message = response['Response']['Error']['Message']
|
1544
|
+
reqid = response['Response']['RequestId']
|
1545
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1546
|
+
end
|
1547
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1548
|
+
raise e
|
1549
|
+
rescue StandardError => e
|
1550
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1551
|
+
end
|
1552
|
+
|
1265
1553
|
# 资源管理-批量删除资源文件
|
1266
1554
|
|
1267
1555
|
# @param request: Request instance for DeleteResourceFiles.
|
@@ -1382,6 +1670,30 @@ module TencentCloud
|
|
1382
1670
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1383
1671
|
end
|
1384
1672
|
|
1673
|
+
# 通过工作流Id删除工作流
|
1674
|
+
|
1675
|
+
# @param request: Request instance for DeleteWorkflowById.
|
1676
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteWorkflowByIdRequest`
|
1677
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteWorkflowByIdResponse`
|
1678
|
+
def DeleteWorkflowById(request)
|
1679
|
+
body = send_request('DeleteWorkflowById', request.serialize)
|
1680
|
+
response = JSON.parse(body)
|
1681
|
+
if response['Response'].key?('Error') == false
|
1682
|
+
model = DeleteWorkflowByIdResponse.new
|
1683
|
+
model.deserialize(response['Response'])
|
1684
|
+
model
|
1685
|
+
else
|
1686
|
+
code = response['Response']['Error']['Code']
|
1687
|
+
message = response['Response']['Error']['Message']
|
1688
|
+
reqid = response['Response']['RequestId']
|
1689
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1690
|
+
end
|
1691
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1692
|
+
raise e
|
1693
|
+
rescue StandardError => e
|
1694
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1695
|
+
end
|
1696
|
+
|
1385
1697
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
1386
1698
|
# 删除工作流
|
1387
1699
|
|
@@ -1455,16 +1767,16 @@ module TencentCloud
|
|
1455
1767
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1456
1768
|
end
|
1457
1769
|
|
1458
|
-
#
|
1770
|
+
# 查询父目录下所有子文件夹+工作流
|
1459
1771
|
|
1460
|
-
# @param request: Request instance for
|
1461
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1462
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1463
|
-
def
|
1464
|
-
body = send_request('
|
1772
|
+
# @param request: Request instance for DescribeAllByFolderNew.
|
1773
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeAllByFolderNewRequest`
|
1774
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeAllByFolderNewResponse`
|
1775
|
+
def DescribeAllByFolderNew(request)
|
1776
|
+
body = send_request('DescribeAllByFolderNew', request.serialize)
|
1465
1777
|
response = JSON.parse(body)
|
1466
1778
|
if response['Response'].key?('Error') == false
|
1467
|
-
model =
|
1779
|
+
model = DescribeAllByFolderNewResponse.new
|
1468
1780
|
model.deserialize(response['Response'])
|
1469
1781
|
model
|
1470
1782
|
else
|
@@ -1479,16 +1791,16 @@ module TencentCloud
|
|
1479
1791
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1480
1792
|
end
|
1481
1793
|
|
1482
|
-
#
|
1794
|
+
# 获取所有任务类型
|
1483
1795
|
|
1484
|
-
# @param request: Request instance for
|
1485
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1486
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1487
|
-
def
|
1488
|
-
body = send_request('
|
1796
|
+
# @param request: Request instance for DescribeAllTaskType.
|
1797
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeAllTaskTypeRequest`
|
1798
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeAllTaskTypeResponse`
|
1799
|
+
def DescribeAllTaskType(request)
|
1800
|
+
body = send_request('DescribeAllTaskType', request.serialize)
|
1489
1801
|
response = JSON.parse(body)
|
1490
1802
|
if response['Response'].key?('Error') == false
|
1491
|
-
model =
|
1803
|
+
model = DescribeAllTaskTypeResponse.new
|
1492
1804
|
model.deserialize(response['Response'])
|
1493
1805
|
model
|
1494
1806
|
else
|
@@ -1503,16 +1815,16 @@ module TencentCloud
|
|
1503
1815
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1504
1816
|
end
|
1505
1817
|
|
1506
|
-
#
|
1818
|
+
# 根据任务Id查找生产态子任务
|
1507
1819
|
|
1508
|
-
# @param request: Request instance for
|
1509
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1510
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1511
|
-
def
|
1512
|
-
body = send_request('
|
1820
|
+
# @param request: Request instance for DescribeAllUsedVersionSon.
|
1821
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeAllUsedVersionSonRequest`
|
1822
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeAllUsedVersionSonResponse`
|
1823
|
+
def DescribeAllUsedVersionSon(request)
|
1824
|
+
body = send_request('DescribeAllUsedVersionSon', request.serialize)
|
1513
1825
|
response = JSON.parse(body)
|
1514
1826
|
if response['Response'].key?('Error') == false
|
1515
|
-
model =
|
1827
|
+
model = DescribeAllUsedVersionSonResponse.new
|
1516
1828
|
model.deserialize(response['Response'])
|
1517
1829
|
model
|
1518
1830
|
else
|
@@ -1527,16 +1839,16 @@ module TencentCloud
|
|
1527
1839
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1528
1840
|
end
|
1529
1841
|
|
1530
|
-
#
|
1842
|
+
# 查询基线DAG
|
1531
1843
|
|
1532
|
-
# @param request: Request instance for
|
1533
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1534
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1535
|
-
def
|
1536
|
-
body = send_request('
|
1844
|
+
# @param request: Request instance for DescribeBaselineAllTaskDag.
|
1845
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineAllTaskDagRequest`
|
1846
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineAllTaskDagResponse`
|
1847
|
+
def DescribeBaselineAllTaskDag(request)
|
1848
|
+
body = send_request('DescribeBaselineAllTaskDag', request.serialize)
|
1537
1849
|
response = JSON.parse(body)
|
1538
1850
|
if response['Response'].key?('Error') == false
|
1539
|
-
model =
|
1851
|
+
model = DescribeBaselineAllTaskDagResponse.new
|
1540
1852
|
model.deserialize(response['Response'])
|
1541
1853
|
model
|
1542
1854
|
else
|
@@ -1551,16 +1863,16 @@ module TencentCloud
|
|
1551
1863
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1552
1864
|
end
|
1553
1865
|
|
1554
|
-
#
|
1866
|
+
# 基线列表
|
1555
1867
|
|
1556
|
-
# @param request: Request instance for
|
1557
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1558
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1559
|
-
def
|
1560
|
-
body = send_request('
|
1868
|
+
# @param request: Request instance for DescribeBaselineById.
|
1869
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineByIdRequest`
|
1870
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineByIdResponse`
|
1871
|
+
def DescribeBaselineById(request)
|
1872
|
+
body = send_request('DescribeBaselineById', request.serialize)
|
1561
1873
|
response = JSON.parse(body)
|
1562
1874
|
if response['Response'].key?('Error') == false
|
1563
|
-
model =
|
1875
|
+
model = DescribeBaselineByIdResponse.new
|
1564
1876
|
model.deserialize(response['Response'])
|
1565
1877
|
model
|
1566
1878
|
else
|
@@ -1575,16 +1887,16 @@ module TencentCloud
|
|
1575
1887
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1576
1888
|
end
|
1577
1889
|
|
1578
|
-
#
|
1890
|
+
# 查询基线实例DAG
|
1579
1891
|
|
1580
|
-
# @param request: Request instance for
|
1581
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1582
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1583
|
-
def
|
1584
|
-
body = send_request('
|
1892
|
+
# @param request: Request instance for DescribeBaselineInstanceDag.
|
1893
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineInstanceDagRequest`
|
1894
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineInstanceDagResponse`
|
1895
|
+
def DescribeBaselineInstanceDag(request)
|
1896
|
+
body = send_request('DescribeBaselineInstanceDag', request.serialize)
|
1585
1897
|
response = JSON.parse(body)
|
1586
1898
|
if response['Response'].key?('Error') == false
|
1587
|
-
model =
|
1899
|
+
model = DescribeBaselineInstanceDagResponse.new
|
1588
1900
|
model.deserialize(response['Response'])
|
1589
1901
|
model
|
1590
1902
|
else
|
@@ -1599,16 +1911,16 @@ module TencentCloud
|
|
1599
1911
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1600
1912
|
end
|
1601
1913
|
|
1602
|
-
#
|
1914
|
+
# 查询基线实例关键任务实例甘特图
|
1603
1915
|
|
1604
|
-
# @param request: Request instance for
|
1605
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1606
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1607
|
-
def
|
1608
|
-
body = send_request('
|
1916
|
+
# @param request: Request instance for DescribeBaselineInstanceGantt.
|
1917
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineInstanceGanttRequest`
|
1918
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineInstanceGanttResponse`
|
1919
|
+
def DescribeBaselineInstanceGantt(request)
|
1920
|
+
body = send_request('DescribeBaselineInstanceGantt', request.serialize)
|
1609
1921
|
response = JSON.parse(body)
|
1610
1922
|
if response['Response'].key?('Error') == false
|
1611
|
-
model =
|
1923
|
+
model = DescribeBaselineInstanceGanttResponse.new
|
1612
1924
|
model.deserialize(response['Response'])
|
1613
1925
|
model
|
1614
1926
|
else
|
@@ -1623,17 +1935,16 @@ module TencentCloud
|
|
1623
1935
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1624
1936
|
end
|
1625
1937
|
|
1626
|
-
#
|
1627
|
-
# 数据源详情
|
1938
|
+
# 查询基线实例列表
|
1628
1939
|
|
1629
|
-
# @param request: Request instance for
|
1630
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1631
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1632
|
-
def
|
1633
|
-
body = send_request('
|
1940
|
+
# @param request: Request instance for DescribeBaselineInstances.
|
1941
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineInstancesRequest`
|
1942
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaselineInstancesResponse`
|
1943
|
+
def DescribeBaselineInstances(request)
|
1944
|
+
body = send_request('DescribeBaselineInstances', request.serialize)
|
1634
1945
|
response = JSON.parse(body)
|
1635
1946
|
if response['Response'].key?('Error') == false
|
1636
|
-
model =
|
1947
|
+
model = DescribeBaselineInstancesResponse.new
|
1637
1948
|
model.deserialize(response['Response'])
|
1638
1949
|
model
|
1639
1950
|
else
|
@@ -1648,17 +1959,16 @@ module TencentCloud
|
|
1648
1959
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1649
1960
|
end
|
1650
1961
|
|
1651
|
-
#
|
1652
|
-
# 数据源列表
|
1962
|
+
# 基线列表
|
1653
1963
|
|
1654
|
-
# @param request: Request instance for
|
1655
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1656
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1657
|
-
def
|
1658
|
-
body = send_request('
|
1964
|
+
# @param request: Request instance for DescribeBaselines.
|
1965
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaselinesRequest`
|
1966
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaselinesResponse`
|
1967
|
+
def DescribeBaselines(request)
|
1968
|
+
body = send_request('DescribeBaselines', request.serialize)
|
1659
1969
|
response = JSON.parse(body)
|
1660
1970
|
if response['Response'].key?('Error') == false
|
1661
|
-
model =
|
1971
|
+
model = DescribeBaselinesResponse.new
|
1662
1972
|
model.deserialize(response['Response'])
|
1663
1973
|
model
|
1664
1974
|
else
|
@@ -1673,16 +1983,16 @@ module TencentCloud
|
|
1673
1983
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1674
1984
|
end
|
1675
1985
|
|
1676
|
-
#
|
1986
|
+
# 批量操作任务列表
|
1677
1987
|
|
1678
|
-
# @param request: Request instance for
|
1679
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1680
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1681
|
-
def
|
1682
|
-
body = send_request('
|
1988
|
+
# @param request: Request instance for DescribeBatchOperateTask.
|
1989
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBatchOperateTaskRequest`
|
1990
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBatchOperateTaskResponse`
|
1991
|
+
def DescribeBatchOperateTask(request)
|
1992
|
+
body = send_request('DescribeBatchOperateTask', request.serialize)
|
1683
1993
|
response = JSON.parse(body)
|
1684
1994
|
if response['Response'].key?('Error') == false
|
1685
|
-
model =
|
1995
|
+
model = DescribeBatchOperateTaskResponse.new
|
1686
1996
|
model.deserialize(response['Response'])
|
1687
1997
|
model
|
1688
1998
|
else
|
@@ -1697,16 +2007,16 @@ module TencentCloud
|
|
1697
2007
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1698
2008
|
end
|
1699
2009
|
|
1700
|
-
#
|
2010
|
+
# 智能运维-事件列表-所属任务/基线过滤列表
|
1701
2011
|
|
1702
|
-
# @param request: Request instance for
|
1703
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1704
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1705
|
-
def
|
1706
|
-
body = send_request('
|
2012
|
+
# @param request: Request instance for DescribeBelongTo.
|
2013
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBelongToRequest`
|
2014
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBelongToResponse`
|
2015
|
+
def DescribeBelongTo(request)
|
2016
|
+
body = send_request('DescribeBelongTo', request.serialize)
|
1707
2017
|
response = JSON.parse(body)
|
1708
2018
|
if response['Response'].key?('Error') == false
|
1709
|
-
model =
|
2019
|
+
model = DescribeBelongToResponse.new
|
1710
2020
|
model.deserialize(response['Response'])
|
1711
2021
|
model
|
1712
2022
|
else
|
@@ -1721,17 +2031,16 @@ module TencentCloud
|
|
1721
2031
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1722
2032
|
end
|
1723
2033
|
|
1724
|
-
#
|
1725
|
-
# 数据源详情
|
2034
|
+
# 获取集群命名空间列表
|
1726
2035
|
|
1727
|
-
# @param request: Request instance for
|
1728
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1729
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1730
|
-
def
|
1731
|
-
body = send_request('
|
2036
|
+
# @param request: Request instance for DescribeClusterNamespaceList.
|
2037
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeClusterNamespaceListRequest`
|
2038
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeClusterNamespaceListResponse`
|
2039
|
+
def DescribeClusterNamespaceList(request)
|
2040
|
+
body = send_request('DescribeClusterNamespaceList', request.serialize)
|
1732
2041
|
response = JSON.parse(body)
|
1733
2042
|
if response['Response'].key?('Error') == false
|
1734
|
-
model =
|
2043
|
+
model = DescribeClusterNamespaceListResponse.new
|
1735
2044
|
model.deserialize(response['Response'])
|
1736
2045
|
model
|
1737
2046
|
else
|
@@ -1746,17 +2055,16 @@ module TencentCloud
|
|
1746
2055
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1747
2056
|
end
|
1748
2057
|
|
1749
|
-
#
|
1750
|
-
# 根据层级查找上/下游任务节点
|
2058
|
+
# 列出字段血缘信息
|
1751
2059
|
|
1752
|
-
# @param request: Request instance for
|
1753
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1754
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1755
|
-
def
|
1756
|
-
body = send_request('
|
2060
|
+
# @param request: Request instance for DescribeColumnLineage.
|
2061
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeColumnLineageRequest`
|
2062
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeColumnLineageResponse`
|
2063
|
+
def DescribeColumnLineage(request)
|
2064
|
+
body = send_request('DescribeColumnLineage', request.serialize)
|
1757
2065
|
response = JSON.parse(body)
|
1758
2066
|
if response['Response'].key?('Error') == false
|
1759
|
-
model =
|
2067
|
+
model = DescribeColumnLineageResponse.new
|
1760
2068
|
model.deserialize(response['Response'])
|
1761
2069
|
model
|
1762
2070
|
else
|
@@ -1771,16 +2079,16 @@ module TencentCloud
|
|
1771
2079
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1772
2080
|
end
|
1773
2081
|
|
1774
|
-
#
|
2082
|
+
# 查询数据来源列表
|
1775
2083
|
|
1776
|
-
# @param request: Request instance for
|
1777
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1778
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1779
|
-
def
|
1780
|
-
body = send_request('
|
2084
|
+
# @param request: Request instance for DescribeDataBases.
|
2085
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataBasesRequest`
|
2086
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataBasesResponse`
|
2087
|
+
def DescribeDataBases(request)
|
2088
|
+
body = send_request('DescribeDataBases', request.serialize)
|
1781
2089
|
response = JSON.parse(body)
|
1782
2090
|
if response['Response'].key?('Error') == false
|
1783
|
-
model =
|
2091
|
+
model = DescribeDataBasesResponse.new
|
1784
2092
|
model.deserialize(response['Response'])
|
1785
2093
|
model
|
1786
2094
|
else
|
@@ -1795,16 +2103,16 @@ module TencentCloud
|
|
1795
2103
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1796
2104
|
end
|
1797
2105
|
|
1798
|
-
#
|
2106
|
+
# 数据质量的概览页面数据监测情况接口
|
1799
2107
|
|
1800
|
-
# @param request: Request instance for
|
1801
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1802
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1803
|
-
def
|
1804
|
-
body = send_request('
|
2108
|
+
# @param request: Request instance for DescribeDataCheckStat.
|
2109
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataCheckStatRequest`
|
2110
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataCheckStatResponse`
|
2111
|
+
def DescribeDataCheckStat(request)
|
2112
|
+
body = send_request('DescribeDataCheckStat', request.serialize)
|
1805
2113
|
response = JSON.parse(body)
|
1806
2114
|
if response['Response'].key?('Error') == false
|
1807
|
-
model =
|
2115
|
+
model = DescribeDataCheckStatResponse.new
|
1808
2116
|
model.deserialize(response['Response'])
|
1809
2117
|
model
|
1810
2118
|
else
|
@@ -1819,17 +2127,16 @@ module TencentCloud
|
|
1819
2127
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1820
2128
|
end
|
1821
2129
|
|
1822
|
-
#
|
1823
|
-
# 拉取文件夹目录
|
2130
|
+
# 查询规则组数据对象列表
|
1824
2131
|
|
1825
|
-
# @param request: Request instance for
|
1826
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1827
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1828
|
-
def
|
1829
|
-
body = send_request('
|
2132
|
+
# @param request: Request instance for DescribeDataObjects.
|
2133
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataObjectsRequest`
|
2134
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataObjectsResponse`
|
2135
|
+
def DescribeDataObjects(request)
|
2136
|
+
body = send_request('DescribeDataObjects', request.serialize)
|
1830
2137
|
response = JSON.parse(body)
|
1831
2138
|
if response['Response'].key?('Error') == false
|
1832
|
-
model =
|
2139
|
+
model = DescribeDataObjectsResponse.new
|
1833
2140
|
model.deserialize(response['Response'])
|
1834
2141
|
model
|
1835
2142
|
else
|
@@ -1844,17 +2151,16 @@ module TencentCloud
|
|
1844
2151
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1845
2152
|
end
|
1846
2153
|
|
1847
|
-
#
|
1848
|
-
# 拉取文件夹下的工作流
|
2154
|
+
# 获取数据源信息-数据源分页列表
|
1849
2155
|
|
1850
|
-
# @param request: Request instance for
|
1851
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1852
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1853
|
-
def
|
1854
|
-
body = send_request('
|
2156
|
+
# @param request: Request instance for DescribeDataSourceInfoList.
|
2157
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceInfoListRequest`
|
2158
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceInfoListResponse`
|
2159
|
+
def DescribeDataSourceInfoList(request)
|
2160
|
+
body = send_request('DescribeDataSourceInfoList', request.serialize)
|
1855
2161
|
response = JSON.parse(body)
|
1856
2162
|
if response['Response'].key?('Error') == false
|
1857
|
-
model =
|
2163
|
+
model = DescribeDataSourceInfoListResponse.new
|
1858
2164
|
model.deserialize(response['Response'])
|
1859
2165
|
model
|
1860
2166
|
else
|
@@ -1869,16 +2175,17 @@ module TencentCloud
|
|
1869
2175
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1870
2176
|
end
|
1871
2177
|
|
1872
|
-
#
|
2178
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2179
|
+
# 数据源详情
|
1873
2180
|
|
1874
|
-
# @param request: Request instance for
|
1875
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1876
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1877
|
-
def
|
1878
|
-
body = send_request('
|
2181
|
+
# @param request: Request instance for DescribeDataSourceList.
|
2182
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceListRequest`
|
2183
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceListResponse`
|
2184
|
+
def DescribeDataSourceList(request)
|
2185
|
+
body = send_request('DescribeDataSourceList', request.serialize)
|
1879
2186
|
response = JSON.parse(body)
|
1880
2187
|
if response['Response'].key?('Error') == false
|
1881
|
-
model =
|
2188
|
+
model = DescribeDataSourceListResponse.new
|
1882
2189
|
model.deserialize(response['Response'])
|
1883
2190
|
model
|
1884
2191
|
else
|
@@ -1893,16 +2200,17 @@ module TencentCloud
|
|
1893
2200
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1894
2201
|
end
|
1895
2202
|
|
1896
|
-
#
|
2203
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2204
|
+
# 数据源列表
|
1897
2205
|
|
1898
|
-
# @param request: Request instance for
|
1899
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1900
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1901
|
-
def
|
1902
|
-
body = send_request('
|
2206
|
+
# @param request: Request instance for DescribeDataSourceWithoutInfo.
|
2207
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceWithoutInfoRequest`
|
2208
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataSourceWithoutInfoResponse`
|
2209
|
+
def DescribeDataSourceWithoutInfo(request)
|
2210
|
+
body = send_request('DescribeDataSourceWithoutInfo', request.serialize)
|
1903
2211
|
response = JSON.parse(body)
|
1904
2212
|
if response['Response'].key?('Error') == false
|
1905
|
-
model =
|
2213
|
+
model = DescribeDataSourceWithoutInfoResponse.new
|
1906
2214
|
model.deserialize(response['Response'])
|
1907
2215
|
model
|
1908
2216
|
else
|
@@ -1917,16 +2225,16 @@ module TencentCloud
|
|
1917
2225
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1918
2226
|
end
|
1919
2227
|
|
1920
|
-
#
|
2228
|
+
# 获取字段类型列表
|
1921
2229
|
|
1922
|
-
# @param request: Request instance for
|
1923
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1924
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1925
|
-
def
|
1926
|
-
body = send_request('
|
2230
|
+
# @param request: Request instance for DescribeDataTypes.
|
2231
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataTypesRequest`
|
2232
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataTypesResponse`
|
2233
|
+
def DescribeDataTypes(request)
|
2234
|
+
body = send_request('DescribeDataTypes', request.serialize)
|
1927
2235
|
response = JSON.parse(body)
|
1928
2236
|
if response['Response'].key?('Error') == false
|
1929
|
-
model =
|
2237
|
+
model = DescribeDataTypesResponse.new
|
1930
2238
|
model.deserialize(response['Response'])
|
1931
2239
|
model
|
1932
2240
|
else
|
@@ -1941,16 +2249,16 @@ module TencentCloud
|
|
1941
2249
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1942
2250
|
end
|
1943
2251
|
|
1944
|
-
#
|
2252
|
+
# 获取数据库信息
|
1945
2253
|
|
1946
|
-
# @param request: Request instance for
|
1947
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1948
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1949
|
-
def
|
1950
|
-
body = send_request('
|
2254
|
+
# @param request: Request instance for DescribeDatabaseInfoList.
|
2255
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseInfoListRequest`
|
2256
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatabaseInfoListResponse`
|
2257
|
+
def DescribeDatabaseInfoList(request)
|
2258
|
+
body = send_request('DescribeDatabaseInfoList', request.serialize)
|
1951
2259
|
response = JSON.parse(body)
|
1952
2260
|
if response['Response'].key?('Error') == false
|
1953
|
-
model =
|
2261
|
+
model = DescribeDatabaseInfoListResponse.new
|
1954
2262
|
model.deserialize(response['Response'])
|
1955
2263
|
model
|
1956
2264
|
else
|
@@ -1965,16 +2273,17 @@ module TencentCloud
|
|
1965
2273
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1966
2274
|
end
|
1967
2275
|
|
1968
|
-
#
|
2276
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2277
|
+
# 数据源详情
|
1969
2278
|
|
1970
|
-
# @param request: Request instance for
|
1971
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1972
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1973
|
-
def
|
1974
|
-
body = send_request('
|
2279
|
+
# @param request: Request instance for DescribeDatasource.
|
2280
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDatasourceRequest`
|
2281
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDatasourceResponse`
|
2282
|
+
def DescribeDatasource(request)
|
2283
|
+
body = send_request('DescribeDatasource', request.serialize)
|
1975
2284
|
response = JSON.parse(body)
|
1976
2285
|
if response['Response'].key?('Error') == false
|
1977
|
-
model =
|
2286
|
+
model = DescribeDatasourceResponse.new
|
1978
2287
|
model.deserialize(response['Response'])
|
1979
2288
|
model
|
1980
2289
|
else
|
@@ -1989,16 +2298,16 @@ module TencentCloud
|
|
1989
2298
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1990
2299
|
end
|
1991
2300
|
|
1992
|
-
#
|
2301
|
+
# 根据任务id获取下游依赖任务列表
|
1993
2302
|
|
1994
|
-
# @param request: Request instance for
|
1995
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
1996
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
1997
|
-
def
|
1998
|
-
body = send_request('
|
2303
|
+
# @param request: Request instance for DescribeDependOpsTaskList.
|
2304
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTaskListRequest`
|
2305
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTaskListResponse`
|
2306
|
+
def DescribeDependOpsTaskList(request)
|
2307
|
+
body = send_request('DescribeDependOpsTaskList', request.serialize)
|
1999
2308
|
response = JSON.parse(body)
|
2000
2309
|
if response['Response'].key?('Error') == false
|
2001
|
-
model =
|
2310
|
+
model = DescribeDependOpsTaskListResponse.new
|
2002
2311
|
model.deserialize(response['Response'])
|
2003
2312
|
model
|
2004
2313
|
else
|
@@ -2013,16 +2322,16 @@ module TencentCloud
|
|
2013
2322
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2014
2323
|
end
|
2015
2324
|
|
2016
|
-
#
|
2325
|
+
# 根据层级查找上/下游任务节点
|
2017
2326
|
|
2018
|
-
# @param request: Request instance for
|
2019
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2020
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2021
|
-
def
|
2022
|
-
body = send_request('
|
2327
|
+
# @param request: Request instance for DescribeDependOpsTasks.
|
2328
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTasksRequest`
|
2329
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependOpsTasksResponse`
|
2330
|
+
def DescribeDependOpsTasks(request)
|
2331
|
+
body = send_request('DescribeDependOpsTasks', request.serialize)
|
2023
2332
|
response = JSON.parse(body)
|
2024
2333
|
if response['Response'].key?('Error') == false
|
2025
|
-
model =
|
2334
|
+
model = DescribeDependOpsTasksResponse.new
|
2026
2335
|
model.deserialize(response['Response'])
|
2027
2336
|
model
|
2028
2337
|
else
|
@@ -2037,16 +2346,16 @@ module TencentCloud
|
|
2037
2346
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2038
2347
|
end
|
2039
2348
|
|
2040
|
-
#
|
2349
|
+
# 通过taskIds查询task详情列表
|
2041
2350
|
|
2042
|
-
# @param request: Request instance for
|
2043
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2044
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2045
|
-
def
|
2046
|
-
body = send_request('
|
2351
|
+
# @param request: Request instance for DescribeDependTaskLists.
|
2352
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependTaskListsRequest`
|
2353
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependTaskListsResponse`
|
2354
|
+
def DescribeDependTaskLists(request)
|
2355
|
+
body = send_request('DescribeDependTaskLists', request.serialize)
|
2047
2356
|
response = JSON.parse(body)
|
2048
2357
|
if response['Response'].key?('Error') == false
|
2049
|
-
model =
|
2358
|
+
model = DescribeDependTaskListsResponse.new
|
2050
2359
|
model.deserialize(response['Response'])
|
2051
2360
|
model
|
2052
2361
|
else
|
@@ -2061,16 +2370,17 @@ module TencentCloud
|
|
2061
2370
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2062
2371
|
end
|
2063
2372
|
|
2064
|
-
#
|
2373
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2374
|
+
# 根据层级查找上/下游任务节点
|
2065
2375
|
|
2066
|
-
# @param request: Request instance for
|
2067
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2068
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2069
|
-
def
|
2070
|
-
body = send_request('
|
2376
|
+
# @param request: Request instance for DescribeDependTasksNew.
|
2377
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDependTasksNewRequest`
|
2378
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDependTasksNewResponse`
|
2379
|
+
def DescribeDependTasksNew(request)
|
2380
|
+
body = send_request('DescribeDependTasksNew', request.serialize)
|
2071
2381
|
response = JSON.parse(body)
|
2072
2382
|
if response['Response'].key?('Error') == false
|
2073
|
-
model =
|
2383
|
+
model = DescribeDependTasksNewResponse.new
|
2074
2384
|
model.deserialize(response['Response'])
|
2075
2385
|
model
|
2076
2386
|
else
|
@@ -2085,16 +2395,16 @@ module TencentCloud
|
|
2085
2395
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2086
2396
|
end
|
2087
2397
|
|
2088
|
-
#
|
2398
|
+
# 查询基线诊断信息
|
2089
2399
|
|
2090
|
-
# @param request: Request instance for
|
2091
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2092
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2093
|
-
def
|
2094
|
-
body = send_request('
|
2400
|
+
# @param request: Request instance for DescribeDiagnosticInfoByBaselineId.
|
2401
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDiagnosticInfoByBaselineIdRequest`
|
2402
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDiagnosticInfoByBaselineIdResponse`
|
2403
|
+
def DescribeDiagnosticInfoByBaselineId(request)
|
2404
|
+
body = send_request('DescribeDiagnosticInfoByBaselineId', request.serialize)
|
2095
2405
|
response = JSON.parse(body)
|
2096
2406
|
if response['Response'].key?('Error') == false
|
2097
|
-
model =
|
2407
|
+
model = DescribeDiagnosticInfoByBaselineIdResponse.new
|
2098
2408
|
model.deserialize(response['Response'])
|
2099
2409
|
model
|
2100
2410
|
else
|
@@ -2109,17 +2419,16 @@ module TencentCloud
|
|
2109
2419
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2110
2420
|
end
|
2111
2421
|
|
2112
|
-
#
|
2113
|
-
# 获取实例日志列表
|
2422
|
+
# 质量报告-查询质量评分
|
2114
2423
|
|
2115
|
-
# @param request: Request instance for
|
2116
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2117
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2118
|
-
def
|
2119
|
-
body = send_request('
|
2424
|
+
# @param request: Request instance for DescribeDimensionScore.
|
2425
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDimensionScoreRequest`
|
2426
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDimensionScoreResponse`
|
2427
|
+
def DescribeDimensionScore(request)
|
2428
|
+
body = send_request('DescribeDimensionScore', request.serialize)
|
2120
2429
|
response = JSON.parse(body)
|
2121
2430
|
if response['Response'].key?('Error') == false
|
2122
|
-
model =
|
2431
|
+
model = DescribeDimensionScoreResponse.new
|
2123
2432
|
model.deserialize(response['Response'])
|
2124
2433
|
model
|
2125
2434
|
else
|
@@ -2134,16 +2443,16 @@ module TencentCloud
|
|
2134
2443
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2135
2444
|
end
|
2136
2445
|
|
2137
|
-
#
|
2446
|
+
# 分页查询试运行实例列表
|
2138
2447
|
|
2139
|
-
# @param request: Request instance for
|
2140
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2141
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2142
|
-
def
|
2143
|
-
body = send_request('
|
2448
|
+
# @param request: Request instance for DescribeDrInstancePage.
|
2449
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstancePageRequest`
|
2450
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstancePageResponse`
|
2451
|
+
def DescribeDrInstancePage(request)
|
2452
|
+
body = send_request('DescribeDrInstancePage', request.serialize)
|
2144
2453
|
response = JSON.parse(body)
|
2145
2454
|
if response['Response'].key?('Error') == false
|
2146
|
-
model =
|
2455
|
+
model = DescribeDrInstancePageResponse.new
|
2147
2456
|
model.deserialize(response['Response'])
|
2148
2457
|
model
|
2149
2458
|
else
|
@@ -2158,16 +2467,16 @@ module TencentCloud
|
|
2158
2467
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2159
2468
|
end
|
2160
2469
|
|
2161
|
-
#
|
2470
|
+
# 查询试运行实例执行内容
|
2162
2471
|
|
2163
|
-
# @param request: Request instance for
|
2164
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2165
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2166
|
-
def
|
2167
|
-
body = send_request('
|
2472
|
+
# @param request: Request instance for DescribeDrInstanceScriptContent.
|
2473
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstanceScriptContentRequest`
|
2474
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrInstanceScriptContentResponse`
|
2475
|
+
def DescribeDrInstanceScriptContent(request)
|
2476
|
+
body = send_request('DescribeDrInstanceScriptContent', request.serialize)
|
2168
2477
|
response = JSON.parse(body)
|
2169
2478
|
if response['Response'].key?('Error') == false
|
2170
|
-
model =
|
2479
|
+
model = DescribeDrInstanceScriptContentResponse.new
|
2171
2480
|
model.deserialize(response['Response'])
|
2172
2481
|
model
|
2173
2482
|
else
|
@@ -2182,16 +2491,16 @@ module TencentCloud
|
|
2182
2491
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2183
2492
|
end
|
2184
2493
|
|
2185
|
-
#
|
2494
|
+
# 查询试运行实例子实例列表
|
2186
2495
|
|
2187
|
-
# @param request: Request instance for
|
2188
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2189
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2190
|
-
def
|
2191
|
-
body = send_request('
|
2496
|
+
# @param request: Request instance for DescribeDrSonInstance.
|
2497
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDrSonInstanceRequest`
|
2498
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDrSonInstanceResponse`
|
2499
|
+
def DescribeDrSonInstance(request)
|
2500
|
+
body = send_request('DescribeDrSonInstance', request.serialize)
|
2192
2501
|
response = JSON.parse(body)
|
2193
2502
|
if response['Response'].key?('Error') == false
|
2194
|
-
model =
|
2503
|
+
model = DescribeDrSonInstanceResponse.new
|
2195
2504
|
model.deserialize(response['Response'])
|
2196
2505
|
model
|
2197
2506
|
else
|
@@ -2206,16 +2515,16 @@ module TencentCloud
|
|
2206
2515
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2207
2516
|
end
|
2208
2517
|
|
2209
|
-
#
|
2518
|
+
# 根据项目ID和事件名称查看事件详情
|
2210
2519
|
|
2211
|
-
# @param request: Request instance for
|
2212
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2213
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2214
|
-
def
|
2215
|
-
body = send_request('
|
2520
|
+
# @param request: Request instance for DescribeEvent.
|
2521
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventRequest`
|
2522
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventResponse`
|
2523
|
+
def DescribeEvent(request)
|
2524
|
+
body = send_request('DescribeEvent', request.serialize)
|
2216
2525
|
response = JSON.parse(body)
|
2217
2526
|
if response['Response'].key?('Error') == false
|
2218
|
-
model =
|
2527
|
+
model = DescribeEventResponse.new
|
2219
2528
|
model.deserialize(response['Response'])
|
2220
2529
|
model
|
2221
2530
|
else
|
@@ -2230,16 +2539,16 @@ module TencentCloud
|
|
2230
2539
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2231
2540
|
end
|
2232
2541
|
|
2233
|
-
#
|
2542
|
+
# 根据条件查找事件实例
|
2234
2543
|
|
2235
|
-
# @param request: Request instance for
|
2236
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2237
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2238
|
-
def
|
2239
|
-
body = send_request('
|
2544
|
+
# @param request: Request instance for DescribeEventCases.
|
2545
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventCasesRequest`
|
2546
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventCasesResponse`
|
2547
|
+
def DescribeEventCases(request)
|
2548
|
+
body = send_request('DescribeEventCases', request.serialize)
|
2240
2549
|
response = JSON.parse(body)
|
2241
2550
|
if response['Response'].key?('Error') == false
|
2242
|
-
model =
|
2551
|
+
model = DescribeEventCasesResponse.new
|
2243
2552
|
model.deserialize(response['Response'])
|
2244
2553
|
model
|
2245
2554
|
else
|
@@ -2254,16 +2563,16 @@ module TencentCloud
|
|
2254
2563
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2255
2564
|
end
|
2256
2565
|
|
2257
|
-
#
|
2566
|
+
# 查看事件实例的消费任务
|
2258
2567
|
|
2259
|
-
# @param request: Request instance for
|
2260
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2261
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2262
|
-
def
|
2263
|
-
body = send_request('
|
2568
|
+
# @param request: Request instance for DescribeEventConsumeTasks.
|
2569
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventConsumeTasksRequest`
|
2570
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventConsumeTasksResponse`
|
2571
|
+
def DescribeEventConsumeTasks(request)
|
2572
|
+
body = send_request('DescribeEventConsumeTasks', request.serialize)
|
2264
2573
|
response = JSON.parse(body)
|
2265
2574
|
if response['Response'].key?('Error') == false
|
2266
|
-
model =
|
2575
|
+
model = DescribeEventConsumeTasksResponse.new
|
2267
2576
|
model.deserialize(response['Response'])
|
2268
2577
|
model
|
2269
2578
|
else
|
@@ -2278,16 +2587,16 @@ module TencentCloud
|
|
2278
2587
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2279
2588
|
end
|
2280
2589
|
|
2281
|
-
#
|
2590
|
+
# 智能运维事件详情1
|
2282
2591
|
|
2283
|
-
# @param request: Request instance for
|
2284
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2285
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2286
|
-
def
|
2287
|
-
body = send_request('
|
2592
|
+
# @param request: Request instance for DescribeEventDetail.
|
2593
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventDetailRequest`
|
2594
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventDetailResponse`
|
2595
|
+
def DescribeEventDetail(request)
|
2596
|
+
body = send_request('DescribeEventDetail', request.serialize)
|
2288
2597
|
response = JSON.parse(body)
|
2289
2598
|
if response['Response'].key?('Error') == false
|
2290
|
-
model =
|
2599
|
+
model = DescribeEventDetailResponse.new
|
2291
2600
|
model.deserialize(response['Response'])
|
2292
2601
|
model
|
2293
2602
|
else
|
@@ -2302,16 +2611,16 @@ module TencentCloud
|
|
2302
2611
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2303
2612
|
end
|
2304
2613
|
|
2305
|
-
#
|
2614
|
+
# 事件是否告警过滤条件
|
2306
2615
|
|
2307
|
-
# @param request: Request instance for
|
2308
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2309
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2310
|
-
def
|
2311
|
-
body = send_request('
|
2616
|
+
# @param request: Request instance for DescribeEventIsAlarmTypes.
|
2617
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventIsAlarmTypesRequest`
|
2618
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventIsAlarmTypesResponse`
|
2619
|
+
def DescribeEventIsAlarmTypes(request)
|
2620
|
+
body = send_request('DescribeEventIsAlarmTypes', request.serialize)
|
2312
2621
|
response = JSON.parse(body)
|
2313
2622
|
if response['Response'].key?('Error') == false
|
2314
|
-
model =
|
2623
|
+
model = DescribeEventIsAlarmTypesResponse.new
|
2315
2624
|
model.deserialize(response['Response'])
|
2316
2625
|
model
|
2317
2626
|
else
|
@@ -2326,16 +2635,16 @@ module TencentCloud
|
|
2326
2635
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2327
2636
|
end
|
2328
2637
|
|
2329
|
-
#
|
2638
|
+
# 查询事件类型列表
|
2330
2639
|
|
2331
|
-
# @param request: Request instance for
|
2332
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2333
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2334
|
-
def
|
2335
|
-
body = send_request('
|
2640
|
+
# @param request: Request instance for DescribeEventTypes.
|
2641
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventTypesRequest`
|
2642
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventTypesResponse`
|
2643
|
+
def DescribeEventTypes(request)
|
2644
|
+
body = send_request('DescribeEventTypes', request.serialize)
|
2336
2645
|
response = JSON.parse(body)
|
2337
2646
|
if response['Response'].key?('Error') == false
|
2338
|
-
model =
|
2647
|
+
model = DescribeEventTypesResponse.new
|
2339
2648
|
model.deserialize(response['Response'])
|
2340
2649
|
model
|
2341
2650
|
else
|
@@ -2350,16 +2659,16 @@ module TencentCloud
|
|
2350
2659
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2351
2660
|
end
|
2352
2661
|
|
2353
|
-
#
|
2662
|
+
# 智能运维事件查询列表
|
2354
2663
|
|
2355
|
-
# @param request: Request instance for
|
2356
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2357
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2358
|
-
def
|
2359
|
-
body = send_request('
|
2664
|
+
# @param request: Request instance for DescribeEvents.
|
2665
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeEventsRequest`
|
2666
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeEventsResponse`
|
2667
|
+
def DescribeEvents(request)
|
2668
|
+
body = send_request('DescribeEvents', request.serialize)
|
2360
2669
|
response = JSON.parse(body)
|
2361
2670
|
if response['Response'].key?('Error') == false
|
2362
|
-
model =
|
2671
|
+
model = DescribeEventsResponse.new
|
2363
2672
|
model.deserialize(response['Response'])
|
2364
2673
|
model
|
2365
2674
|
else
|
@@ -2374,16 +2683,16 @@ module TencentCloud
|
|
2374
2683
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2375
2684
|
end
|
2376
2685
|
|
2377
|
-
#
|
2686
|
+
# 查询规则组执行策略
|
2378
2687
|
|
2379
|
-
# @param request: Request instance for
|
2380
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2381
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2382
|
-
def
|
2383
|
-
body = send_request('
|
2688
|
+
# @param request: Request instance for DescribeExecStrategy.
|
2689
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeExecStrategyRequest`
|
2690
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeExecStrategyResponse`
|
2691
|
+
def DescribeExecStrategy(request)
|
2692
|
+
body = send_request('DescribeExecStrategy', request.serialize)
|
2384
2693
|
response = JSON.parse(body)
|
2385
2694
|
if response['Response'].key?('Error') == false
|
2386
|
-
model =
|
2695
|
+
model = DescribeExecStrategyResponse.new
|
2387
2696
|
model.deserialize(response['Response'])
|
2388
2697
|
model
|
2389
2698
|
else
|
@@ -2398,16 +2707,16 @@ module TencentCloud
|
|
2398
2707
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2399
2708
|
end
|
2400
2709
|
|
2401
|
-
#
|
2710
|
+
# 获取关联父实例
|
2402
2711
|
|
2403
|
-
# @param request: Request instance for
|
2404
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2405
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2406
|
-
def
|
2407
|
-
body = send_request('
|
2712
|
+
# @param request: Request instance for DescribeFathers.
|
2713
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFathersRequest`
|
2714
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFathersResponse`
|
2715
|
+
def DescribeFathers(request)
|
2716
|
+
body = send_request('DescribeFathers', request.serialize)
|
2408
2717
|
response = JSON.parse(body)
|
2409
2718
|
if response['Response'].key?('Error') == false
|
2410
|
-
model =
|
2719
|
+
model = DescribeFathersResponse.new
|
2411
2720
|
model.deserialize(response['Response'])
|
2412
2721
|
model
|
2413
2722
|
else
|
@@ -2422,16 +2731,17 @@ module TencentCloud
|
|
2422
2731
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2423
2732
|
end
|
2424
2733
|
|
2425
|
-
#
|
2734
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2735
|
+
# 拉取文件夹目录
|
2426
2736
|
|
2427
|
-
# @param request: Request instance for
|
2428
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2429
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2430
|
-
def
|
2431
|
-
body = send_request('
|
2737
|
+
# @param request: Request instance for DescribeFolderList.
|
2738
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFolderListRequest`
|
2739
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFolderListResponse`
|
2740
|
+
def DescribeFolderList(request)
|
2741
|
+
body = send_request('DescribeFolderList', request.serialize)
|
2432
2742
|
response = JSON.parse(body)
|
2433
2743
|
if response['Response'].key?('Error') == false
|
2434
|
-
model =
|
2744
|
+
model = DescribeFolderListResponse.new
|
2435
2745
|
model.deserialize(response['Response'])
|
2436
2746
|
model
|
2437
2747
|
else
|
@@ -2446,16 +2756,17 @@ module TencentCloud
|
|
2446
2756
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2447
2757
|
end
|
2448
2758
|
|
2449
|
-
#
|
2759
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
2760
|
+
# 拉取文件夹下的工作流
|
2450
2761
|
|
2451
|
-
# @param request: Request instance for
|
2452
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2453
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2454
|
-
def
|
2455
|
-
body = send_request('
|
2762
|
+
# @param request: Request instance for DescribeFolderWorkflowList.
|
2763
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFolderWorkflowListRequest`
|
2764
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFolderWorkflowListResponse`
|
2765
|
+
def DescribeFolderWorkflowList(request)
|
2766
|
+
body = send_request('DescribeFolderWorkflowList', request.serialize)
|
2456
2767
|
response = JSON.parse(body)
|
2457
2768
|
if response['Response'].key?('Error') == false
|
2458
|
-
model =
|
2769
|
+
model = DescribeFolderWorkflowListResponse.new
|
2459
2770
|
model.deserialize(response['Response'])
|
2460
2771
|
model
|
2461
2772
|
else
|
@@ -2470,16 +2781,16 @@ module TencentCloud
|
|
2470
2781
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2471
2782
|
end
|
2472
2783
|
|
2473
|
-
#
|
2784
|
+
# 查询函数分类
|
2474
2785
|
|
2475
|
-
# @param request: Request instance for
|
2476
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2477
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2478
|
-
def
|
2479
|
-
body = send_request('
|
2786
|
+
# @param request: Request instance for DescribeFunctionKinds.
|
2787
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFunctionKindsRequest`
|
2788
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFunctionKindsResponse`
|
2789
|
+
def DescribeFunctionKinds(request)
|
2790
|
+
body = send_request('DescribeFunctionKinds', request.serialize)
|
2480
2791
|
response = JSON.parse(body)
|
2481
2792
|
if response['Response'].key?('Error') == false
|
2482
|
-
model =
|
2793
|
+
model = DescribeFunctionKindsResponse.new
|
2483
2794
|
model.deserialize(response['Response'])
|
2484
2795
|
model
|
2485
2796
|
else
|
@@ -2494,16 +2805,16 @@ module TencentCloud
|
|
2494
2805
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2495
2806
|
end
|
2496
2807
|
|
2497
|
-
#
|
2808
|
+
# 查询函数类型
|
2498
2809
|
|
2499
|
-
# @param request: Request instance for
|
2500
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2501
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2502
|
-
def
|
2503
|
-
body = send_request('
|
2810
|
+
# @param request: Request instance for DescribeFunctionTypes.
|
2811
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFunctionTypesRequest`
|
2812
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFunctionTypesResponse`
|
2813
|
+
def DescribeFunctionTypes(request)
|
2814
|
+
body = send_request('DescribeFunctionTypes', request.serialize)
|
2504
2815
|
response = JSON.parse(body)
|
2505
2816
|
if response['Response'].key?('Error') == false
|
2506
|
-
model =
|
2817
|
+
model = DescribeFunctionTypesResponse.new
|
2507
2818
|
model.deserialize(response['Response'])
|
2508
2819
|
model
|
2509
2820
|
else
|
@@ -2518,16 +2829,16 @@ module TencentCloud
|
|
2518
2829
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2519
2830
|
end
|
2520
2831
|
|
2521
|
-
#
|
2832
|
+
# 获取采集器列表
|
2522
2833
|
|
2523
|
-
# @param request: Request instance for
|
2524
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2525
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2526
|
-
def
|
2527
|
-
body = send_request('
|
2834
|
+
# @param request: Request instance for DescribeInLongAgentList.
|
2835
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentListRequest`
|
2836
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentListResponse`
|
2837
|
+
def DescribeInLongAgentList(request)
|
2838
|
+
body = send_request('DescribeInLongAgentList', request.serialize)
|
2528
2839
|
response = JSON.parse(body)
|
2529
2840
|
if response['Response'].key?('Error') == false
|
2530
|
-
model =
|
2841
|
+
model = DescribeInLongAgentListResponse.new
|
2531
2842
|
model.deserialize(response['Response'])
|
2532
2843
|
model
|
2533
2844
|
else
|
@@ -2542,16 +2853,16 @@ module TencentCloud
|
|
2542
2853
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2543
2854
|
end
|
2544
2855
|
|
2545
|
-
#
|
2856
|
+
# 查询采集器关联的任务列表
|
2546
2857
|
|
2547
|
-
# @param request: Request instance for
|
2548
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2549
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2550
|
-
def
|
2551
|
-
body = send_request('
|
2858
|
+
# @param request: Request instance for DescribeInLongAgentTaskList.
|
2859
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentTaskListRequest`
|
2860
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentTaskListResponse`
|
2861
|
+
def DescribeInLongAgentTaskList(request)
|
2862
|
+
body = send_request('DescribeInLongAgentTaskList', request.serialize)
|
2552
2863
|
response = JSON.parse(body)
|
2553
2864
|
if response['Response'].key?('Error') == false
|
2554
|
-
model =
|
2865
|
+
model = DescribeInLongAgentTaskListResponse.new
|
2555
2866
|
model.deserialize(response['Response'])
|
2556
2867
|
model
|
2557
2868
|
else
|
@@ -2566,16 +2877,16 @@ module TencentCloud
|
|
2566
2877
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2567
2878
|
end
|
2568
2879
|
|
2569
|
-
#
|
2880
|
+
# 获取采集器所在集群的VPC列表
|
2570
2881
|
|
2571
|
-
# @param request: Request instance for
|
2572
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2573
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2574
|
-
def
|
2575
|
-
body = send_request('
|
2882
|
+
# @param request: Request instance for DescribeInLongAgentVpcList.
|
2883
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentVpcListRequest`
|
2884
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentVpcListResponse`
|
2885
|
+
def DescribeInLongAgentVpcList(request)
|
2886
|
+
body = send_request('DescribeInLongAgentVpcList', request.serialize)
|
2576
2887
|
response = JSON.parse(body)
|
2577
2888
|
if response['Response'].key?('Error') == false
|
2578
|
-
model =
|
2889
|
+
model = DescribeInLongAgentVpcListResponse.new
|
2579
2890
|
model.deserialize(response['Response'])
|
2580
2891
|
model
|
2581
2892
|
else
|
@@ -2590,16 +2901,16 @@ module TencentCloud
|
|
2590
2901
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2591
2902
|
end
|
2592
2903
|
|
2593
|
-
#
|
2904
|
+
# 获取TKE集群列表
|
2594
2905
|
|
2595
|
-
# @param request: Request instance for
|
2596
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2597
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2598
|
-
def
|
2599
|
-
body = send_request('
|
2906
|
+
# @param request: Request instance for DescribeInLongTkeClusterList.
|
2907
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongTkeClusterListRequest`
|
2908
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongTkeClusterListResponse`
|
2909
|
+
def DescribeInLongTkeClusterList(request)
|
2910
|
+
body = send_request('DescribeInLongTkeClusterList', request.serialize)
|
2600
2911
|
response = JSON.parse(body)
|
2601
2912
|
if response['Response'].key?('Error') == false
|
2602
|
-
model =
|
2913
|
+
model = DescribeInLongTkeClusterListResponse.new
|
2603
2914
|
model.deserialize(response['Response'])
|
2604
2915
|
model
|
2605
2916
|
else
|
@@ -2614,16 +2925,16 @@ module TencentCloud
|
|
2614
2925
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2615
2926
|
end
|
2616
2927
|
|
2617
|
-
#
|
2928
|
+
# 根据周期类型查询所有实例
|
2618
2929
|
|
2619
|
-
# @param request: Request instance for
|
2620
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2621
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2622
|
-
def
|
2623
|
-
body = send_request('
|
2930
|
+
# @param request: Request instance for DescribeInstanceByCycle.
|
2931
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceByCycleRequest`
|
2932
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceByCycleResponse`
|
2933
|
+
def DescribeInstanceByCycle(request)
|
2934
|
+
body = send_request('DescribeInstanceByCycle', request.serialize)
|
2624
2935
|
response = JSON.parse(body)
|
2625
2936
|
if response['Response'].key?('Error') == false
|
2626
|
-
model =
|
2937
|
+
model = DescribeInstanceByCycleResponse.new
|
2627
2938
|
model.deserialize(response['Response'])
|
2628
2939
|
model
|
2629
2940
|
else
|
@@ -2638,16 +2949,16 @@ module TencentCloud
|
|
2638
2949
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2639
2950
|
end
|
2640
2951
|
|
2641
|
-
#
|
2952
|
+
# 实例状态周期增长趋势
|
2642
2953
|
|
2643
|
-
# @param request: Request instance for
|
2644
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2645
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2646
|
-
def
|
2647
|
-
body = send_request('
|
2954
|
+
# @param request: Request instance for DescribeInstanceByCycleReport.
|
2955
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceByCycleReportRequest`
|
2956
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceByCycleReportResponse`
|
2957
|
+
def DescribeInstanceByCycleReport(request)
|
2958
|
+
body = send_request('DescribeInstanceByCycleReport', request.serialize)
|
2648
2959
|
response = JSON.parse(body)
|
2649
2960
|
if response['Response'].key?('Error') == false
|
2650
|
-
model =
|
2961
|
+
model = DescribeInstanceByCycleReportResponse.new
|
2651
2962
|
model.deserialize(response['Response'])
|
2652
2963
|
model
|
2653
2964
|
else
|
@@ -2662,16 +2973,16 @@ module TencentCloud
|
|
2662
2973
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2663
2974
|
end
|
2664
2975
|
|
2665
|
-
#
|
2976
|
+
# 日志获取详情页面
|
2666
2977
|
|
2667
|
-
# @param request: Request instance for
|
2668
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2669
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2670
|
-
def
|
2671
|
-
body = send_request('
|
2978
|
+
# @param request: Request instance for DescribeInstanceLastLog.
|
2979
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLastLogRequest`
|
2980
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLastLogResponse`
|
2981
|
+
def DescribeInstanceLastLog(request)
|
2982
|
+
body = send_request('DescribeInstanceLastLog', request.serialize)
|
2672
2983
|
response = JSON.parse(body)
|
2673
2984
|
if response['Response'].key?('Error') == false
|
2674
|
-
model =
|
2985
|
+
model = DescribeInstanceLastLogResponse.new
|
2675
2986
|
model.deserialize(response['Response'])
|
2676
2987
|
model
|
2677
2988
|
else
|
@@ -2686,16 +2997,1484 @@ module TencentCloud
|
|
2686
2997
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2687
2998
|
end
|
2688
2999
|
|
2689
|
-
#
|
3000
|
+
# 获取实例列表
|
2690
3001
|
|
2691
|
-
# @param request: Request instance for
|
2692
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2693
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2694
|
-
def
|
3002
|
+
# @param request: Request instance for DescribeInstanceList.
|
3003
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceListRequest`
|
3004
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceListResponse`
|
3005
|
+
def DescribeInstanceList(request)
|
3006
|
+
body = send_request('DescribeInstanceList', request.serialize)
|
3007
|
+
response = JSON.parse(body)
|
3008
|
+
if response['Response'].key?('Error') == false
|
3009
|
+
model = DescribeInstanceListResponse.new
|
3010
|
+
model.deserialize(response['Response'])
|
3011
|
+
model
|
3012
|
+
else
|
3013
|
+
code = response['Response']['Error']['Code']
|
3014
|
+
message = response['Response']['Error']['Message']
|
3015
|
+
reqid = response['Response']['RequestId']
|
3016
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3017
|
+
end
|
3018
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3019
|
+
raise e
|
3020
|
+
rescue StandardError => e
|
3021
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3022
|
+
end
|
3023
|
+
|
3024
|
+
# 获取实例运行日志
|
3025
|
+
|
3026
|
+
# @param request: Request instance for DescribeInstanceLog.
|
3027
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogRequest`
|
3028
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogResponse`
|
3029
|
+
def DescribeInstanceLog(request)
|
3030
|
+
body = send_request('DescribeInstanceLog', request.serialize)
|
3031
|
+
response = JSON.parse(body)
|
3032
|
+
if response['Response'].key?('Error') == false
|
3033
|
+
model = DescribeInstanceLogResponse.new
|
3034
|
+
model.deserialize(response['Response'])
|
3035
|
+
model
|
3036
|
+
else
|
3037
|
+
code = response['Response']['Error']['Code']
|
3038
|
+
message = response['Response']['Error']['Message']
|
3039
|
+
reqid = response['Response']['RequestId']
|
3040
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3041
|
+
end
|
3042
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3043
|
+
raise e
|
3044
|
+
rescue StandardError => e
|
3045
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3046
|
+
end
|
3047
|
+
|
3048
|
+
# 获取具体实例相关日志信息
|
3049
|
+
|
3050
|
+
# @param request: Request instance for DescribeInstanceLogDetail.
|
3051
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogDetailRequest`
|
3052
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogDetailResponse`
|
3053
|
+
def DescribeInstanceLogDetail(request)
|
3054
|
+
body = send_request('DescribeInstanceLogDetail', request.serialize)
|
3055
|
+
response = JSON.parse(body)
|
3056
|
+
if response['Response'].key?('Error') == false
|
3057
|
+
model = DescribeInstanceLogDetailResponse.new
|
3058
|
+
model.deserialize(response['Response'])
|
3059
|
+
model
|
3060
|
+
else
|
3061
|
+
code = response['Response']['Error']['Code']
|
3062
|
+
message = response['Response']['Error']['Message']
|
3063
|
+
reqid = response['Response']['RequestId']
|
3064
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3065
|
+
end
|
3066
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3067
|
+
raise e
|
3068
|
+
rescue StandardError => e
|
3069
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3070
|
+
end
|
3071
|
+
|
3072
|
+
# 下载日志文件,返回日志URL
|
3073
|
+
|
3074
|
+
# @param request: Request instance for DescribeInstanceLogFile.
|
3075
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogFileRequest`
|
3076
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogFileResponse`
|
3077
|
+
def DescribeInstanceLogFile(request)
|
3078
|
+
body = send_request('DescribeInstanceLogFile', request.serialize)
|
3079
|
+
response = JSON.parse(body)
|
3080
|
+
if response['Response'].key?('Error') == false
|
3081
|
+
model = DescribeInstanceLogFileResponse.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
|
+
# 离线任务实例运行日志列表
|
3097
|
+
|
3098
|
+
# @param request: Request instance for DescribeInstanceLogList.
|
3099
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogListRequest`
|
3100
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogListResponse`
|
3101
|
+
def DescribeInstanceLogList(request)
|
3102
|
+
body = send_request('DescribeInstanceLogList', request.serialize)
|
3103
|
+
response = JSON.parse(body)
|
3104
|
+
if response['Response'].key?('Error') == false
|
3105
|
+
model = DescribeInstanceLogListResponse.new
|
3106
|
+
model.deserialize(response['Response'])
|
3107
|
+
model
|
3108
|
+
else
|
3109
|
+
code = response['Response']['Error']['Code']
|
3110
|
+
message = response['Response']['Error']['Message']
|
3111
|
+
reqid = response['Response']['RequestId']
|
3112
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3113
|
+
end
|
3114
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3115
|
+
raise e
|
3116
|
+
rescue StandardError => e
|
3117
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3118
|
+
end
|
3119
|
+
|
3120
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
3121
|
+
# 获取实例日志列表
|
3122
|
+
|
3123
|
+
# @param request: Request instance for DescribeInstanceLogs.
|
3124
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogsRequest`
|
3125
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceLogsResponse`
|
3126
|
+
def DescribeInstanceLogs(request)
|
3127
|
+
body = send_request('DescribeInstanceLogs', request.serialize)
|
3128
|
+
response = JSON.parse(body)
|
3129
|
+
if response['Response'].key?('Error') == false
|
3130
|
+
model = DescribeInstanceLogsResponse.new
|
3131
|
+
model.deserialize(response['Response'])
|
3132
|
+
model
|
3133
|
+
else
|
3134
|
+
code = response['Response']['Error']['Code']
|
3135
|
+
message = response['Response']['Error']['Message']
|
3136
|
+
reqid = response['Response']['RequestId']
|
3137
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3138
|
+
end
|
3139
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3140
|
+
raise e
|
3141
|
+
rescue StandardError => e
|
3142
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3143
|
+
end
|
3144
|
+
|
3145
|
+
# 数据质量,查询调度任务的实例列表
|
3146
|
+
|
3147
|
+
# @param request: Request instance for DescribeInstances.
|
3148
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesRequest`
|
3149
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesResponse`
|
3150
|
+
def DescribeInstances(request)
|
3151
|
+
body = send_request('DescribeInstances', request.serialize)
|
3152
|
+
response = JSON.parse(body)
|
3153
|
+
if response['Response'].key?('Error') == false
|
3154
|
+
model = DescribeInstancesResponse.new
|
3155
|
+
model.deserialize(response['Response'])
|
3156
|
+
model
|
3157
|
+
else
|
3158
|
+
code = response['Response']['Error']['Code']
|
3159
|
+
message = response['Response']['Error']['Message']
|
3160
|
+
reqid = response['Response']['RequestId']
|
3161
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3162
|
+
end
|
3163
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3164
|
+
raise e
|
3165
|
+
rescue StandardError => e
|
3166
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3167
|
+
end
|
3168
|
+
|
3169
|
+
# 拉取实例列表,join task表一些信息
|
3170
|
+
|
3171
|
+
# @param request: Request instance for DescribeInstancesInfoWithTaskInfo.
|
3172
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesInfoWithTaskInfoRequest`
|
3173
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstancesInfoWithTaskInfoResponse`
|
3174
|
+
def DescribeInstancesInfoWithTaskInfo(request)
|
3175
|
+
body = send_request('DescribeInstancesInfoWithTaskInfo', request.serialize)
|
3176
|
+
response = JSON.parse(body)
|
3177
|
+
if response['Response'].key?('Error') == false
|
3178
|
+
model = DescribeInstancesInfoWithTaskInfoResponse.new
|
3179
|
+
model.deserialize(response['Response'])
|
3180
|
+
model
|
3181
|
+
else
|
3182
|
+
code = response['Response']['Error']['Code']
|
3183
|
+
message = response['Response']['Error']['Message']
|
3184
|
+
reqid = response['Response']['RequestId']
|
3185
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3186
|
+
end
|
3187
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3188
|
+
raise e
|
3189
|
+
rescue StandardError => e
|
3190
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3191
|
+
end
|
3192
|
+
|
3193
|
+
# 查询集成节点
|
3194
|
+
|
3195
|
+
# @param request: Request instance for DescribeIntegrationNode.
|
3196
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationNodeRequest`
|
3197
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationNodeResponse`
|
3198
|
+
def DescribeIntegrationNode(request)
|
3199
|
+
body = send_request('DescribeIntegrationNode', request.serialize)
|
3200
|
+
response = JSON.parse(body)
|
3201
|
+
if response['Response'].key?('Error') == false
|
3202
|
+
model = DescribeIntegrationNodeResponse.new
|
3203
|
+
model.deserialize(response['Response'])
|
3204
|
+
model
|
3205
|
+
else
|
3206
|
+
code = response['Response']['Error']['Code']
|
3207
|
+
message = response['Response']['Error']['Message']
|
3208
|
+
reqid = response['Response']['RequestId']
|
3209
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3210
|
+
end
|
3211
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3212
|
+
raise e
|
3213
|
+
rescue StandardError => e
|
3214
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3215
|
+
end
|
3216
|
+
|
3217
|
+
# 数据集成大屏概览
|
3218
|
+
|
3219
|
+
# @param request: Request instance for DescribeIntegrationStatistics.
|
3220
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsRequest`
|
3221
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsResponse`
|
3222
|
+
def DescribeIntegrationStatistics(request)
|
3223
|
+
body = send_request('DescribeIntegrationStatistics', request.serialize)
|
3224
|
+
response = JSON.parse(body)
|
3225
|
+
if response['Response'].key?('Error') == false
|
3226
|
+
model = DescribeIntegrationStatisticsResponse.new
|
3227
|
+
model.deserialize(response['Response'])
|
3228
|
+
model
|
3229
|
+
else
|
3230
|
+
code = response['Response']['Error']['Code']
|
3231
|
+
message = response['Response']['Error']['Message']
|
3232
|
+
reqid = response['Response']['RequestId']
|
3233
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3234
|
+
end
|
3235
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3236
|
+
raise e
|
3237
|
+
rescue StandardError => e
|
3238
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3239
|
+
end
|
3240
|
+
|
3241
|
+
# 数据集成大屏采集器状态分布统计
|
3242
|
+
|
3243
|
+
# @param request: Request instance for DescribeIntegrationStatisticsAgentStatus.
|
3244
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsAgentStatusRequest`
|
3245
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsAgentStatusResponse`
|
3246
|
+
def DescribeIntegrationStatisticsAgentStatus(request)
|
3247
|
+
body = send_request('DescribeIntegrationStatisticsAgentStatus', request.serialize)
|
3248
|
+
response = JSON.parse(body)
|
3249
|
+
if response['Response'].key?('Error') == false
|
3250
|
+
model = DescribeIntegrationStatisticsAgentStatusResponse.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 DescribeIntegrationStatisticsInstanceTrend.
|
3268
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsInstanceTrendRequest`
|
3269
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsInstanceTrendResponse`
|
3270
|
+
def DescribeIntegrationStatisticsInstanceTrend(request)
|
3271
|
+
body = send_request('DescribeIntegrationStatisticsInstanceTrend', request.serialize)
|
3272
|
+
response = JSON.parse(body)
|
3273
|
+
if response['Response'].key?('Error') == false
|
3274
|
+
model = DescribeIntegrationStatisticsInstanceTrendResponse.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
|
+
# 数据集成大屏同步条数统计趋势
|
3290
|
+
|
3291
|
+
# @param request: Request instance for DescribeIntegrationStatisticsRecordsTrend.
|
3292
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsRecordsTrendRequest`
|
3293
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsRecordsTrendResponse`
|
3294
|
+
def DescribeIntegrationStatisticsRecordsTrend(request)
|
3295
|
+
body = send_request('DescribeIntegrationStatisticsRecordsTrend', request.serialize)
|
3296
|
+
response = JSON.parse(body)
|
3297
|
+
if response['Response'].key?('Error') == false
|
3298
|
+
model = DescribeIntegrationStatisticsRecordsTrendResponse.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
|
+
# 数据集成大屏任务状态分布统计
|
3314
|
+
|
3315
|
+
# @param request: Request instance for DescribeIntegrationStatisticsTaskStatus.
|
3316
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusRequest`
|
3317
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusResponse`
|
3318
|
+
def DescribeIntegrationStatisticsTaskStatus(request)
|
3319
|
+
body = send_request('DescribeIntegrationStatisticsTaskStatus', request.serialize)
|
3320
|
+
response = JSON.parse(body)
|
3321
|
+
if response['Response'].key?('Error') == false
|
3322
|
+
model = DescribeIntegrationStatisticsTaskStatusResponse.new
|
3323
|
+
model.deserialize(response['Response'])
|
3324
|
+
model
|
3325
|
+
else
|
3326
|
+
code = response['Response']['Error']['Code']
|
3327
|
+
message = response['Response']['Error']['Message']
|
3328
|
+
reqid = response['Response']['RequestId']
|
3329
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3330
|
+
end
|
3331
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3332
|
+
raise e
|
3333
|
+
rescue StandardError => e
|
3334
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3335
|
+
end
|
3336
|
+
|
3337
|
+
# 数据集成大屏任务状态统计趋势
|
3338
|
+
|
3339
|
+
# @param request: Request instance for DescribeIntegrationStatisticsTaskStatusTrend.
|
3340
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusTrendRequest`
|
3341
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsTaskStatusTrendResponse`
|
3342
|
+
def DescribeIntegrationStatisticsTaskStatusTrend(request)
|
3343
|
+
body = send_request('DescribeIntegrationStatisticsTaskStatusTrend', request.serialize)
|
3344
|
+
response = JSON.parse(body)
|
3345
|
+
if response['Response'].key?('Error') == false
|
3346
|
+
model = DescribeIntegrationStatisticsTaskStatusTrendResponse.new
|
3347
|
+
model.deserialize(response['Response'])
|
3348
|
+
model
|
3349
|
+
else
|
3350
|
+
code = response['Response']['Error']['Code']
|
3351
|
+
message = response['Response']['Error']['Message']
|
3352
|
+
reqid = response['Response']['RequestId']
|
3353
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3354
|
+
end
|
3355
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3356
|
+
raise e
|
3357
|
+
rescue StandardError => e
|
3358
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3359
|
+
end
|
3360
|
+
|
3361
|
+
# 查询集成任务
|
3362
|
+
|
3363
|
+
# @param request: Request instance for DescribeIntegrationTask.
|
3364
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTaskRequest`
|
3365
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTaskResponse`
|
3366
|
+
def DescribeIntegrationTask(request)
|
3367
|
+
body = send_request('DescribeIntegrationTask', request.serialize)
|
3368
|
+
response = JSON.parse(body)
|
3369
|
+
if response['Response'].key?('Error') == false
|
3370
|
+
model = DescribeIntegrationTaskResponse.new
|
3371
|
+
model.deserialize(response['Response'])
|
3372
|
+
model
|
3373
|
+
else
|
3374
|
+
code = response['Response']['Error']['Code']
|
3375
|
+
message = response['Response']['Error']['Message']
|
3376
|
+
reqid = response['Response']['RequestId']
|
3377
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3378
|
+
end
|
3379
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3380
|
+
raise e
|
3381
|
+
rescue StandardError => e
|
3382
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3383
|
+
end
|
3384
|
+
|
3385
|
+
# 查询集成任务列表
|
3386
|
+
|
3387
|
+
# @param request: Request instance for DescribeIntegrationTasks.
|
3388
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTasksRequest`
|
3389
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationTasksResponse`
|
3390
|
+
def DescribeIntegrationTasks(request)
|
3391
|
+
body = send_request('DescribeIntegrationTasks', request.serialize)
|
3392
|
+
response = JSON.parse(body)
|
3393
|
+
if response['Response'].key?('Error') == false
|
3394
|
+
model = DescribeIntegrationTasksResponse.new
|
3395
|
+
model.deserialize(response['Response'])
|
3396
|
+
model
|
3397
|
+
else
|
3398
|
+
code = response['Response']['Error']['Code']
|
3399
|
+
message = response['Response']['Error']['Message']
|
3400
|
+
reqid = response['Response']['RequestId']
|
3401
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3402
|
+
end
|
3403
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3404
|
+
raise e
|
3405
|
+
rescue StandardError => e
|
3406
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3407
|
+
end
|
3408
|
+
|
3409
|
+
# 查询集成任务版本节点信息
|
3410
|
+
|
3411
|
+
# @param request: Request instance for DescribeIntegrationVersionNodesInfo.
|
3412
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationVersionNodesInfoRequest`
|
3413
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationVersionNodesInfoResponse`
|
3414
|
+
def DescribeIntegrationVersionNodesInfo(request)
|
3415
|
+
body = send_request('DescribeIntegrationVersionNodesInfo', request.serialize)
|
3416
|
+
response = JSON.parse(body)
|
3417
|
+
if response['Response'].key?('Error') == false
|
3418
|
+
model = DescribeIntegrationVersionNodesInfoResponse.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
|
+
# 获取kafka的topic信息
|
3434
|
+
|
3435
|
+
# @param request: Request instance for DescribeKafkaTopicInfo.
|
3436
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeKafkaTopicInfoRequest`
|
3437
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeKafkaTopicInfoResponse`
|
3438
|
+
def DescribeKafkaTopicInfo(request)
|
3439
|
+
body = send_request('DescribeKafkaTopicInfo', request.serialize)
|
3440
|
+
response = JSON.parse(body)
|
3441
|
+
if response['Response'].key?('Error') == false
|
3442
|
+
model = DescribeKafkaTopicInfoResponse.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 DescribeMonitorsByPage.
|
3460
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeMonitorsByPageRequest`
|
3461
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeMonitorsByPageResponse`
|
3462
|
+
def DescribeMonitorsByPage(request)
|
3463
|
+
body = send_request('DescribeMonitorsByPage', request.serialize)
|
3464
|
+
response = JSON.parse(body)
|
3465
|
+
if response['Response'].key?('Error') == false
|
3466
|
+
model = DescribeMonitorsByPageResponse.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
|
+
# 获取离线任务长连接Token
|
3482
|
+
|
3483
|
+
# @param request: Request instance for DescribeOfflineTaskToken.
|
3484
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOfflineTaskTokenRequest`
|
3485
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOfflineTaskTokenResponse`
|
3486
|
+
def DescribeOfflineTaskToken(request)
|
3487
|
+
body = send_request('DescribeOfflineTaskToken', request.serialize)
|
3488
|
+
response = JSON.parse(body)
|
3489
|
+
if response['Response'].key?('Error') == false
|
3490
|
+
model = DescribeOfflineTaskTokenResponse.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 DescribeOperateOpsTaskDatasource.
|
3508
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTaskDatasourceRequest`
|
3509
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTaskDatasourceResponse`
|
3510
|
+
def DescribeOperateOpsTaskDatasource(request)
|
3511
|
+
body = send_request('DescribeOperateOpsTaskDatasource', request.serialize)
|
3512
|
+
response = JSON.parse(body)
|
3513
|
+
if response['Response'].key?('Error') == false
|
3514
|
+
model = DescribeOperateOpsTaskDatasourceResponse.new
|
3515
|
+
model.deserialize(response['Response'])
|
3516
|
+
model
|
3517
|
+
else
|
3518
|
+
code = response['Response']['Error']['Code']
|
3519
|
+
message = response['Response']['Error']['Message']
|
3520
|
+
reqid = response['Response']['RequestId']
|
3521
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3522
|
+
end
|
3523
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3524
|
+
raise e
|
3525
|
+
rescue StandardError => e
|
3526
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3527
|
+
end
|
3528
|
+
|
3529
|
+
# 任务运维-查询生产态任务数据源类型列表
|
3530
|
+
|
3531
|
+
# @param request: Request instance for DescribeOperateOpsTaskDatasourceType.
|
3532
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTaskDatasourceTypeRequest`
|
3533
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTaskDatasourceTypeResponse`
|
3534
|
+
def DescribeOperateOpsTaskDatasourceType(request)
|
3535
|
+
body = send_request('DescribeOperateOpsTaskDatasourceType', request.serialize)
|
3536
|
+
response = JSON.parse(body)
|
3537
|
+
if response['Response'].key?('Error') == false
|
3538
|
+
model = DescribeOperateOpsTaskDatasourceTypeResponse.new
|
3539
|
+
model.deserialize(response['Response'])
|
3540
|
+
model
|
3541
|
+
else
|
3542
|
+
code = response['Response']['Error']['Code']
|
3543
|
+
message = response['Response']['Error']['Message']
|
3544
|
+
reqid = response['Response']['RequestId']
|
3545
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3546
|
+
end
|
3547
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3548
|
+
raise e
|
3549
|
+
rescue StandardError => e
|
3550
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3551
|
+
end
|
3552
|
+
|
3553
|
+
# 任务运维列表组合条件查询
|
3554
|
+
|
3555
|
+
# @param request: Request instance for DescribeOperateOpsTasks.
|
3556
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTasksRequest`
|
3557
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOperateOpsTasksResponse`
|
3558
|
+
def DescribeOperateOpsTasks(request)
|
3559
|
+
body = send_request('DescribeOperateOpsTasks', request.serialize)
|
3560
|
+
response = JSON.parse(body)
|
3561
|
+
if response['Response'].key?('Error') == false
|
3562
|
+
model = DescribeOperateOpsTasksResponse.new
|
3563
|
+
model.deserialize(response['Response'])
|
3564
|
+
model
|
3565
|
+
else
|
3566
|
+
code = response['Response']['Error']['Code']
|
3567
|
+
message = response['Response']['Error']['Message']
|
3568
|
+
reqid = response['Response']['RequestId']
|
3569
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3570
|
+
end
|
3571
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3572
|
+
raise e
|
3573
|
+
rescue StandardError => e
|
3574
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3575
|
+
end
|
3576
|
+
|
3577
|
+
# 任务运维列表组合条件查询
|
3578
|
+
|
3579
|
+
# @param request: Request instance for DescribeOperateTasks.
|
3580
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOperateTasksRequest`
|
3581
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOperateTasksResponse`
|
3582
|
+
def DescribeOperateTasks(request)
|
3583
|
+
body = send_request('DescribeOperateTasks', request.serialize)
|
3584
|
+
response = JSON.parse(body)
|
3585
|
+
if response['Response'].key?('Error') == false
|
3586
|
+
model = DescribeOperateTasksResponse.new
|
3587
|
+
model.deserialize(response['Response'])
|
3588
|
+
model
|
3589
|
+
else
|
3590
|
+
code = response['Response']['Error']['Code']
|
3591
|
+
message = response['Response']['Error']['Message']
|
3592
|
+
reqid = response['Response']['RequestId']
|
3593
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3594
|
+
end
|
3595
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3596
|
+
raise e
|
3597
|
+
rescue StandardError => e
|
3598
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3599
|
+
end
|
3600
|
+
|
3601
|
+
# 实例运维-获取实例日志列表
|
3602
|
+
|
3603
|
+
# @param request: Request instance for DescribeOpsInstanceLogList.
|
3604
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOpsInstanceLogListRequest`
|
3605
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOpsInstanceLogListResponse`
|
3606
|
+
def DescribeOpsInstanceLogList(request)
|
3607
|
+
body = send_request('DescribeOpsInstanceLogList', request.serialize)
|
3608
|
+
response = JSON.parse(body)
|
3609
|
+
if response['Response'].key?('Error') == false
|
3610
|
+
model = DescribeOpsInstanceLogListResponse.new
|
3611
|
+
model.deserialize(response['Response'])
|
3612
|
+
model
|
3613
|
+
else
|
3614
|
+
code = response['Response']['Error']['Code']
|
3615
|
+
message = response['Response']['Error']['Message']
|
3616
|
+
reqid = response['Response']['RequestId']
|
3617
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3618
|
+
end
|
3619
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3620
|
+
raise e
|
3621
|
+
rescue StandardError => e
|
3622
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3623
|
+
end
|
3624
|
+
|
3625
|
+
# 根据补录计划和补录任务获取补录实例列表。
|
3626
|
+
|
3627
|
+
# @param request: Request instance for DescribeOpsMakePlanInstances.
|
3628
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOpsMakePlanInstancesRequest`
|
3629
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOpsMakePlanInstancesResponse`
|
3630
|
+
def DescribeOpsMakePlanInstances(request)
|
3631
|
+
body = send_request('DescribeOpsMakePlanInstances', request.serialize)
|
3632
|
+
response = JSON.parse(body)
|
3633
|
+
if response['Response'].key?('Error') == false
|
3634
|
+
model = DescribeOpsMakePlanInstancesResponse.new
|
3635
|
+
model.deserialize(response['Response'])
|
3636
|
+
model
|
3637
|
+
else
|
3638
|
+
code = response['Response']['Error']['Code']
|
3639
|
+
message = response['Response']['Error']['Message']
|
3640
|
+
reqid = response['Response']['RequestId']
|
3641
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3642
|
+
end
|
3643
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3644
|
+
raise e
|
3645
|
+
rescue StandardError => e
|
3646
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3647
|
+
end
|
3648
|
+
|
3649
|
+
# 查看补录计划任务
|
3650
|
+
|
3651
|
+
# @param request: Request instance for DescribeOpsMakePlanTasks.
|
3652
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOpsMakePlanTasksRequest`
|
3653
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOpsMakePlanTasksResponse`
|
3654
|
+
def DescribeOpsMakePlanTasks(request)
|
3655
|
+
body = send_request('DescribeOpsMakePlanTasks', request.serialize)
|
3656
|
+
response = JSON.parse(body)
|
3657
|
+
if response['Response'].key?('Error') == false
|
3658
|
+
model = DescribeOpsMakePlanTasksResponse.new
|
3659
|
+
model.deserialize(response['Response'])
|
3660
|
+
model
|
3661
|
+
else
|
3662
|
+
code = response['Response']['Error']['Code']
|
3663
|
+
message = response['Response']['Error']['Message']
|
3664
|
+
reqid = response['Response']['RequestId']
|
3665
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3666
|
+
end
|
3667
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3668
|
+
raise e
|
3669
|
+
rescue StandardError => e
|
3670
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3671
|
+
end
|
3672
|
+
|
3673
|
+
# 根据条件分页查询补录计划
|
3674
|
+
|
3675
|
+
# @param request: Request instance for DescribeOpsMakePlans.
|
3676
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOpsMakePlansRequest`
|
3677
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOpsMakePlansResponse`
|
3678
|
+
def DescribeOpsMakePlans(request)
|
3679
|
+
body = send_request('DescribeOpsMakePlans', request.serialize)
|
3680
|
+
response = JSON.parse(body)
|
3681
|
+
if response['Response'].key?('Error') == false
|
3682
|
+
model = DescribeOpsMakePlansResponse.new
|
3683
|
+
model.deserialize(response['Response'])
|
3684
|
+
model
|
3685
|
+
else
|
3686
|
+
code = response['Response']['Error']['Code']
|
3687
|
+
message = response['Response']['Error']['Message']
|
3688
|
+
reqid = response['Response']['RequestId']
|
3689
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3690
|
+
end
|
3691
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3692
|
+
raise e
|
3693
|
+
rescue StandardError => e
|
3694
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3695
|
+
end
|
3696
|
+
|
3697
|
+
# 查询用户生产工作流列表
|
3698
|
+
|
3699
|
+
# @param request: Request instance for DescribeOpsWorkflows.
|
3700
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOpsWorkflowsRequest`
|
3701
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOpsWorkflowsResponse`
|
3702
|
+
def DescribeOpsWorkflows(request)
|
3703
|
+
body = send_request('DescribeOpsWorkflows', request.serialize)
|
3704
|
+
response = JSON.parse(body)
|
3705
|
+
if response['Response'].key?('Error') == false
|
3706
|
+
model = DescribeOpsWorkflowsResponse.new
|
3707
|
+
model.deserialize(response['Response'])
|
3708
|
+
model
|
3709
|
+
else
|
3710
|
+
code = response['Response']['Error']['Code']
|
3711
|
+
message = response['Response']['Error']['Message']
|
3712
|
+
reqid = response['Response']['RequestId']
|
3713
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3714
|
+
end
|
3715
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3716
|
+
raise e
|
3717
|
+
rescue StandardError => e
|
3718
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3719
|
+
end
|
3720
|
+
|
3721
|
+
# 查询全量函数
|
3722
|
+
|
3723
|
+
# @param request: Request instance for DescribeOrganizationalFunctions.
|
3724
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeOrganizationalFunctionsRequest`
|
3725
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeOrganizationalFunctionsResponse`
|
3726
|
+
def DescribeOrganizationalFunctions(request)
|
3727
|
+
body = send_request('DescribeOrganizationalFunctions', request.serialize)
|
3728
|
+
response = JSON.parse(body)
|
3729
|
+
if response['Response'].key?('Error') == false
|
3730
|
+
model = DescribeOrganizationalFunctionsResponse.new
|
3731
|
+
model.deserialize(response['Response'])
|
3732
|
+
model
|
3733
|
+
else
|
3734
|
+
code = response['Response']['Error']['Code']
|
3735
|
+
message = response['Response']['Error']['Message']
|
3736
|
+
reqid = response['Response']['RequestId']
|
3737
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3738
|
+
end
|
3739
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3740
|
+
raise e
|
3741
|
+
rescue StandardError => e
|
3742
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3743
|
+
end
|
3744
|
+
|
3745
|
+
# 数据质量获取生产调度任务列表
|
3746
|
+
|
3747
|
+
# @param request: Request instance for DescribeProdTasks.
|
3748
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProdTasksRequest`
|
3749
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProdTasksResponse`
|
3750
|
+
def DescribeProdTasks(request)
|
3751
|
+
body = send_request('DescribeProdTasks', request.serialize)
|
3752
|
+
response = JSON.parse(body)
|
3753
|
+
if response['Response'].key?('Error') == false
|
3754
|
+
model = DescribeProdTasksResponse.new
|
3755
|
+
model.deserialize(response['Response'])
|
3756
|
+
model
|
3757
|
+
else
|
3758
|
+
code = response['Response']['Error']['Code']
|
3759
|
+
message = response['Response']['Error']['Message']
|
3760
|
+
reqid = response['Response']['RequestId']
|
3761
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3762
|
+
end
|
3763
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3764
|
+
raise e
|
3765
|
+
rescue StandardError => e
|
3766
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3767
|
+
end
|
3768
|
+
|
3769
|
+
# 获取项目信息
|
3770
|
+
|
3771
|
+
# @param request: Request instance for DescribeProject.
|
3772
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProjectRequest`
|
3773
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProjectResponse`
|
3774
|
+
def DescribeProject(request)
|
3775
|
+
body = send_request('DescribeProject', request.serialize)
|
3776
|
+
response = JSON.parse(body)
|
3777
|
+
if response['Response'].key?('Error') == false
|
3778
|
+
model = DescribeProjectResponse.new
|
3779
|
+
model.deserialize(response['Response'])
|
3780
|
+
model
|
3781
|
+
else
|
3782
|
+
code = response['Response']['Error']['Code']
|
3783
|
+
message = response['Response']['Error']['Message']
|
3784
|
+
reqid = response['Response']['RequestId']
|
3785
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3786
|
+
end
|
3787
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3788
|
+
raise e
|
3789
|
+
rescue StandardError => e
|
3790
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3791
|
+
end
|
3792
|
+
|
3793
|
+
# 质量报告-质量评分
|
3794
|
+
|
3795
|
+
# @param request: Request instance for DescribeQualityScore.
|
3796
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeQualityScoreRequest`
|
3797
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeQualityScoreResponse`
|
3798
|
+
def DescribeQualityScore(request)
|
3799
|
+
body = send_request('DescribeQualityScore', request.serialize)
|
3800
|
+
response = JSON.parse(body)
|
3801
|
+
if response['Response'].key?('Error') == false
|
3802
|
+
model = DescribeQualityScoreResponse.new
|
3803
|
+
model.deserialize(response['Response'])
|
3804
|
+
model
|
3805
|
+
else
|
3806
|
+
code = response['Response']['Error']['Code']
|
3807
|
+
message = response['Response']['Error']['Message']
|
3808
|
+
reqid = response['Response']['RequestId']
|
3809
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3810
|
+
end
|
3811
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3812
|
+
raise e
|
3813
|
+
rescue StandardError => e
|
3814
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3815
|
+
end
|
3816
|
+
|
3817
|
+
# 质量报告-质量分周期趋势
|
3818
|
+
|
3819
|
+
# @param request: Request instance for DescribeQualityScoreTrend.
|
3820
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeQualityScoreTrendRequest`
|
3821
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeQualityScoreTrendResponse`
|
3822
|
+
def DescribeQualityScoreTrend(request)
|
3823
|
+
body = send_request('DescribeQualityScoreTrend', request.serialize)
|
3824
|
+
response = JSON.parse(body)
|
3825
|
+
if response['Response'].key?('Error') == false
|
3826
|
+
model = DescribeQualityScoreTrendResponse.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
|
+
# 查询实时任务实例节点信息
|
3842
|
+
|
3843
|
+
# @param request: Request instance for DescribeRealTimeTaskInstanceNodeInfo.
|
3844
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRealTimeTaskInstanceNodeInfoRequest`
|
3845
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRealTimeTaskInstanceNodeInfoResponse`
|
3846
|
+
def DescribeRealTimeTaskInstanceNodeInfo(request)
|
3847
|
+
body = send_request('DescribeRealTimeTaskInstanceNodeInfo', request.serialize)
|
3848
|
+
response = JSON.parse(body)
|
3849
|
+
if response['Response'].key?('Error') == false
|
3850
|
+
model = DescribeRealTimeTaskInstanceNodeInfoResponse.new
|
3851
|
+
model.deserialize(response['Response'])
|
3852
|
+
model
|
3853
|
+
else
|
3854
|
+
code = response['Response']['Error']['Code']
|
3855
|
+
message = response['Response']['Error']['Message']
|
3856
|
+
reqid = response['Response']['RequestId']
|
3857
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3858
|
+
end
|
3859
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3860
|
+
raise e
|
3861
|
+
rescue StandardError => e
|
3862
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3863
|
+
end
|
3864
|
+
|
3865
|
+
# 实时任务运行指标概览
|
3866
|
+
|
3867
|
+
# @param request: Request instance for DescribeRealTimeTaskMetricOverview.
|
3868
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRealTimeTaskMetricOverviewRequest`
|
3869
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRealTimeTaskMetricOverviewResponse`
|
3870
|
+
def DescribeRealTimeTaskMetricOverview(request)
|
3871
|
+
body = send_request('DescribeRealTimeTaskMetricOverview', request.serialize)
|
3872
|
+
response = JSON.parse(body)
|
3873
|
+
if response['Response'].key?('Error') == false
|
3874
|
+
model = DescribeRealTimeTaskMetricOverviewResponse.new
|
3875
|
+
model.deserialize(response['Response'])
|
3876
|
+
model
|
3877
|
+
else
|
3878
|
+
code = response['Response']['Error']['Code']
|
3879
|
+
message = response['Response']['Error']['Message']
|
3880
|
+
reqid = response['Response']['RequestId']
|
3881
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3882
|
+
end
|
3883
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3884
|
+
raise e
|
3885
|
+
rescue StandardError => e
|
3886
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3887
|
+
end
|
3888
|
+
|
3889
|
+
# 实时任务同步速度趋势
|
3890
|
+
|
3891
|
+
# @param request: Request instance for DescribeRealTimeTaskSpeed.
|
3892
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRealTimeTaskSpeedRequest`
|
3893
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRealTimeTaskSpeedResponse`
|
3894
|
+
def DescribeRealTimeTaskSpeed(request)
|
3895
|
+
body = send_request('DescribeRealTimeTaskSpeed', request.serialize)
|
3896
|
+
response = JSON.parse(body)
|
3897
|
+
if response['Response'].key?('Error') == false
|
3898
|
+
model = DescribeRealTimeTaskSpeedResponse.new
|
3899
|
+
model.deserialize(response['Response'])
|
3900
|
+
model
|
3901
|
+
else
|
3902
|
+
code = response['Response']['Error']['Code']
|
3903
|
+
message = response['Response']['Error']['Message']
|
3904
|
+
reqid = response['Response']['RequestId']
|
3905
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3906
|
+
end
|
3907
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3908
|
+
raise e
|
3909
|
+
rescue StandardError => e
|
3910
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3911
|
+
end
|
3912
|
+
|
3913
|
+
# 查询任务实例的关联实例列表
|
3914
|
+
|
3915
|
+
# @param request: Request instance for DescribeRelatedInstances.
|
3916
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRelatedInstancesRequest`
|
3917
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRelatedInstancesResponse`
|
3918
|
+
def DescribeRelatedInstances(request)
|
2695
3919
|
body = send_request('DescribeRelatedInstances', request.serialize)
|
2696
3920
|
response = JSON.parse(body)
|
2697
3921
|
if response['Response'].key?('Error') == false
|
2698
|
-
model = DescribeRelatedInstancesResponse.new
|
3922
|
+
model = DescribeRelatedInstancesResponse.new
|
3923
|
+
model.deserialize(response['Response'])
|
3924
|
+
model
|
3925
|
+
else
|
3926
|
+
code = response['Response']['Error']['Code']
|
3927
|
+
message = response['Response']['Error']['Message']
|
3928
|
+
reqid = response['Response']['RequestId']
|
3929
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3930
|
+
end
|
3931
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3932
|
+
raise e
|
3933
|
+
rescue StandardError => e
|
3934
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3935
|
+
end
|
3936
|
+
|
3937
|
+
# 获取资源管理目录树
|
3938
|
+
|
3939
|
+
# @param request: Request instance for DescribeResourceManagePathTrees.
|
3940
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeResourceManagePathTreesRequest`
|
3941
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeResourceManagePathTreesResponse`
|
3942
|
+
def DescribeResourceManagePathTrees(request)
|
3943
|
+
body = send_request('DescribeResourceManagePathTrees', request.serialize)
|
3944
|
+
response = JSON.parse(body)
|
3945
|
+
if response['Response'].key?('Error') == false
|
3946
|
+
model = DescribeResourceManagePathTreesResponse.new
|
3947
|
+
model.deserialize(response['Response'])
|
3948
|
+
model
|
3949
|
+
else
|
3950
|
+
code = response['Response']['Error']['Code']
|
3951
|
+
message = response['Response']['Error']['Message']
|
3952
|
+
reqid = response['Response']['RequestId']
|
3953
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3954
|
+
end
|
3955
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3956
|
+
raise e
|
3957
|
+
rescue StandardError => e
|
3958
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3959
|
+
end
|
3960
|
+
|
3961
|
+
# 查询规则详情
|
3962
|
+
|
3963
|
+
# @param request: Request instance for DescribeRule.
|
3964
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleRequest`
|
3965
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleResponse`
|
3966
|
+
def DescribeRule(request)
|
3967
|
+
body = send_request('DescribeRule', request.serialize)
|
3968
|
+
response = JSON.parse(body)
|
3969
|
+
if response['Response'].key?('Error') == false
|
3970
|
+
model = DescribeRuleResponse.new
|
3971
|
+
model.deserialize(response['Response'])
|
3972
|
+
model
|
3973
|
+
else
|
3974
|
+
code = response['Response']['Error']['Code']
|
3975
|
+
message = response['Response']['Error']['Message']
|
3976
|
+
reqid = response['Response']['RequestId']
|
3977
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3978
|
+
end
|
3979
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3980
|
+
raise e
|
3981
|
+
rescue StandardError => e
|
3982
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3983
|
+
end
|
3984
|
+
|
3985
|
+
# 查询质量规则数据源
|
3986
|
+
|
3987
|
+
# @param request: Request instance for DescribeRuleDataSources.
|
3988
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleDataSourcesRequest`
|
3989
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleDataSourcesResponse`
|
3990
|
+
def DescribeRuleDataSources(request)
|
3991
|
+
body = send_request('DescribeRuleDataSources', request.serialize)
|
3992
|
+
response = JSON.parse(body)
|
3993
|
+
if response['Response'].key?('Error') == false
|
3994
|
+
model = DescribeRuleDataSourcesResponse.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
|
+
# 数据质量概览页面触发维度分布统计接口
|
4010
|
+
|
4011
|
+
# @param request: Request instance for DescribeRuleDimStat.
|
4012
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleDimStatRequest`
|
4013
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleDimStatResponse`
|
4014
|
+
def DescribeRuleDimStat(request)
|
4015
|
+
body = send_request('DescribeRuleDimStat', request.serialize)
|
4016
|
+
response = JSON.parse(body)
|
4017
|
+
if response['Response'].key?('Error') == false
|
4018
|
+
model = DescribeRuleDimStatResponse.new
|
4019
|
+
model.deserialize(response['Response'])
|
4020
|
+
model
|
4021
|
+
else
|
4022
|
+
code = response['Response']['Error']['Code']
|
4023
|
+
message = response['Response']['Error']['Message']
|
4024
|
+
reqid = response['Response']['RequestId']
|
4025
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4026
|
+
end
|
4027
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4028
|
+
raise e
|
4029
|
+
rescue StandardError => e
|
4030
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4031
|
+
end
|
4032
|
+
|
4033
|
+
# 查询规则执行结果详情
|
4034
|
+
|
4035
|
+
# @param request: Request instance for DescribeRuleExecDetail.
|
4036
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecDetailRequest`
|
4037
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecDetailResponse`
|
4038
|
+
def DescribeRuleExecDetail(request)
|
4039
|
+
body = send_request('DescribeRuleExecDetail', request.serialize)
|
4040
|
+
response = JSON.parse(body)
|
4041
|
+
if response['Response'].key?('Error') == false
|
4042
|
+
model = DescribeRuleExecDetailResponse.new
|
4043
|
+
model.deserialize(response['Response'])
|
4044
|
+
model
|
4045
|
+
else
|
4046
|
+
code = response['Response']['Error']['Code']
|
4047
|
+
message = response['Response']['Error']['Message']
|
4048
|
+
reqid = response['Response']['RequestId']
|
4049
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4050
|
+
end
|
4051
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4052
|
+
raise e
|
4053
|
+
rescue StandardError => e
|
4054
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4055
|
+
end
|
4056
|
+
|
4057
|
+
# 查询规则执行导出结果
|
4058
|
+
|
4059
|
+
# @param request: Request instance for DescribeRuleExecExportResult.
|
4060
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecExportResultRequest`
|
4061
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecExportResultResponse`
|
4062
|
+
def DescribeRuleExecExportResult(request)
|
4063
|
+
body = send_request('DescribeRuleExecExportResult', request.serialize)
|
4064
|
+
response = JSON.parse(body)
|
4065
|
+
if response['Response'].key?('Error') == false
|
4066
|
+
model = DescribeRuleExecExportResultResponse.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
|
+
# 查询规则执行历史, 最近30条
|
4082
|
+
|
4083
|
+
# @param request: Request instance for DescribeRuleExecHistory.
|
4084
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecHistoryRequest`
|
4085
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecHistoryResponse`
|
4086
|
+
def DescribeRuleExecHistory(request)
|
4087
|
+
body = send_request('DescribeRuleExecHistory', request.serialize)
|
4088
|
+
response = JSON.parse(body)
|
4089
|
+
if response['Response'].key?('Error') == false
|
4090
|
+
model = DescribeRuleExecHistoryResponse.new
|
4091
|
+
model.deserialize(response['Response'])
|
4092
|
+
model
|
4093
|
+
else
|
4094
|
+
code = response['Response']['Error']['Code']
|
4095
|
+
message = response['Response']['Error']['Message']
|
4096
|
+
reqid = response['Response']['RequestId']
|
4097
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4098
|
+
end
|
4099
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4100
|
+
raise e
|
4101
|
+
rescue StandardError => e
|
4102
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4103
|
+
end
|
4104
|
+
|
4105
|
+
# 规则执行日志查询
|
4106
|
+
|
4107
|
+
# @param request: Request instance for DescribeRuleExecLog.
|
4108
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecLogRequest`
|
4109
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecLogResponse`
|
4110
|
+
def DescribeRuleExecLog(request)
|
4111
|
+
body = send_request('DescribeRuleExecLog', request.serialize)
|
4112
|
+
response = JSON.parse(body)
|
4113
|
+
if response['Response'].key?('Error') == false
|
4114
|
+
model = DescribeRuleExecLogResponse.new
|
4115
|
+
model.deserialize(response['Response'])
|
4116
|
+
model
|
4117
|
+
else
|
4118
|
+
code = response['Response']['Error']['Code']
|
4119
|
+
message = response['Response']['Error']['Message']
|
4120
|
+
reqid = response['Response']['RequestId']
|
4121
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4122
|
+
end
|
4123
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4124
|
+
raise e
|
4125
|
+
rescue StandardError => e
|
4126
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4127
|
+
end
|
4128
|
+
|
4129
|
+
# 规则执行结果列表查询
|
4130
|
+
|
4131
|
+
# @param request: Request instance for DescribeRuleExecResults.
|
4132
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecResultsRequest`
|
4133
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecResultsResponse`
|
4134
|
+
def DescribeRuleExecResults(request)
|
4135
|
+
body = send_request('DescribeRuleExecResults', request.serialize)
|
4136
|
+
response = JSON.parse(body)
|
4137
|
+
if response['Response'].key?('Error') == false
|
4138
|
+
model = DescribeRuleExecResultsResponse.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
|
+
# 分页查询规则执行结果列表
|
4154
|
+
|
4155
|
+
# @param request: Request instance for DescribeRuleExecResultsByPage.
|
4156
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecResultsByPageRequest`
|
4157
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecResultsByPageResponse`
|
4158
|
+
def DescribeRuleExecResultsByPage(request)
|
4159
|
+
body = send_request('DescribeRuleExecResultsByPage', request.serialize)
|
4160
|
+
response = JSON.parse(body)
|
4161
|
+
if response['Response'].key?('Error') == false
|
4162
|
+
model = DescribeRuleExecResultsByPageResponse.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
|
+
# 数据质量概览页面规则运行情况接口
|
4178
|
+
|
4179
|
+
# @param request: Request instance for DescribeRuleExecStat.
|
4180
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecStatRequest`
|
4181
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleExecStatResponse`
|
4182
|
+
def DescribeRuleExecStat(request)
|
4183
|
+
body = send_request('DescribeRuleExecStat', request.serialize)
|
4184
|
+
response = JSON.parse(body)
|
4185
|
+
if response['Response'].key?('Error') == false
|
4186
|
+
model = DescribeRuleExecStatResponse.new
|
4187
|
+
model.deserialize(response['Response'])
|
4188
|
+
model
|
4189
|
+
else
|
4190
|
+
code = response['Response']['Error']['Code']
|
4191
|
+
message = response['Response']['Error']['Message']
|
4192
|
+
reqid = response['Response']['RequestId']
|
4193
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4194
|
+
end
|
4195
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4196
|
+
raise e
|
4197
|
+
rescue StandardError => e
|
4198
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4199
|
+
end
|
4200
|
+
|
4201
|
+
# 查询规则组详情接口
|
4202
|
+
|
4203
|
+
# @param request: Request instance for DescribeRuleGroup.
|
4204
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupRequest`
|
4205
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupResponse`
|
4206
|
+
def DescribeRuleGroup(request)
|
4207
|
+
body = send_request('DescribeRuleGroup', request.serialize)
|
4208
|
+
response = JSON.parse(body)
|
4209
|
+
if response['Response'].key?('Error') == false
|
4210
|
+
model = DescribeRuleGroupResponse.new
|
4211
|
+
model.deserialize(response['Response'])
|
4212
|
+
model
|
4213
|
+
else
|
4214
|
+
code = response['Response']['Error']['Code']
|
4215
|
+
message = response['Response']['Error']['Message']
|
4216
|
+
reqid = response['Response']['RequestId']
|
4217
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4218
|
+
end
|
4219
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4220
|
+
raise e
|
4221
|
+
rescue StandardError => e
|
4222
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4223
|
+
end
|
4224
|
+
|
4225
|
+
# 规则组执行结果分页查询接口
|
4226
|
+
|
4227
|
+
# @param request: Request instance for DescribeRuleGroupExecResultsByPage.
|
4228
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupExecResultsByPageRequest`
|
4229
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupExecResultsByPageResponse`
|
4230
|
+
def DescribeRuleGroupExecResultsByPage(request)
|
4231
|
+
body = send_request('DescribeRuleGroupExecResultsByPage', request.serialize)
|
4232
|
+
response = JSON.parse(body)
|
4233
|
+
if response['Response'].key?('Error') == false
|
4234
|
+
model = DescribeRuleGroupExecResultsByPageResponse.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
|
+
# 规则组执行结果分页查询接口不带鉴权
|
4250
|
+
|
4251
|
+
# @param request: Request instance for DescribeRuleGroupExecResultsByPageWithoutAuth.
|
4252
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupExecResultsByPageWithoutAuthRequest`
|
4253
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupExecResultsByPageWithoutAuthResponse`
|
4254
|
+
def DescribeRuleGroupExecResultsByPageWithoutAuth(request)
|
4255
|
+
body = send_request('DescribeRuleGroupExecResultsByPageWithoutAuth', request.serialize)
|
4256
|
+
response = JSON.parse(body)
|
4257
|
+
if response['Response'].key?('Error') == false
|
4258
|
+
model = DescribeRuleGroupExecResultsByPageWithoutAuthResponse.new
|
4259
|
+
model.deserialize(response['Response'])
|
4260
|
+
model
|
4261
|
+
else
|
4262
|
+
code = response['Response']['Error']['Code']
|
4263
|
+
message = response['Response']['Error']['Message']
|
4264
|
+
reqid = response['Response']['RequestId']
|
4265
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4266
|
+
end
|
4267
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4268
|
+
raise e
|
4269
|
+
rescue StandardError => e
|
4270
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4271
|
+
end
|
4272
|
+
|
4273
|
+
# 查询规则组订阅信息
|
4274
|
+
|
4275
|
+
# @param request: Request instance for DescribeRuleGroupSubscription.
|
4276
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupSubscriptionRequest`
|
4277
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupSubscriptionResponse`
|
4278
|
+
def DescribeRuleGroupSubscription(request)
|
4279
|
+
body = send_request('DescribeRuleGroupSubscription', request.serialize)
|
4280
|
+
response = JSON.parse(body)
|
4281
|
+
if response['Response'].key?('Error') == false
|
4282
|
+
model = DescribeRuleGroupSubscriptionResponse.new
|
4283
|
+
model.deserialize(response['Response'])
|
4284
|
+
model
|
4285
|
+
else
|
4286
|
+
code = response['Response']['Error']['Code']
|
4287
|
+
message = response['Response']['Error']['Message']
|
4288
|
+
reqid = response['Response']['RequestId']
|
4289
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4290
|
+
end
|
4291
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4292
|
+
raise e
|
4293
|
+
rescue StandardError => e
|
4294
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4295
|
+
end
|
4296
|
+
|
4297
|
+
# 查询表绑定执行规则组信息
|
4298
|
+
|
4299
|
+
# @param request: Request instance for DescribeRuleGroupTable.
|
4300
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupTableRequest`
|
4301
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupTableResponse`
|
4302
|
+
def DescribeRuleGroupTable(request)
|
4303
|
+
body = send_request('DescribeRuleGroupTable', request.serialize)
|
4304
|
+
response = JSON.parse(body)
|
4305
|
+
if response['Response'].key?('Error') == false
|
4306
|
+
model = DescribeRuleGroupTableResponse.new
|
4307
|
+
model.deserialize(response['Response'])
|
4308
|
+
model
|
4309
|
+
else
|
4310
|
+
code = response['Response']['Error']['Code']
|
4311
|
+
message = response['Response']['Error']['Message']
|
4312
|
+
reqid = response['Response']['RequestId']
|
4313
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4314
|
+
end
|
4315
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4316
|
+
raise e
|
4317
|
+
rescue StandardError => e
|
4318
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4319
|
+
end
|
4320
|
+
|
4321
|
+
# 【过滤条件】
|
4322
|
+
# {表名称TableName,支持模糊匹配} {表负责人TableOwnerName,支持模糊匹配} {监控方式MonitorTypes,1.未配置 2.关联生产调度 3.离线周期检测,支持多选} {订阅人ReceiverUin}
|
4323
|
+
# 【必要字段】
|
4324
|
+
# {数据来源DatasourceId}
|
4325
|
+
|
4326
|
+
# @param request: Request instance for DescribeRuleGroupsByPage.
|
4327
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupsByPageRequest`
|
4328
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleGroupsByPageResponse`
|
4329
|
+
def DescribeRuleGroupsByPage(request)
|
4330
|
+
body = send_request('DescribeRuleGroupsByPage', request.serialize)
|
4331
|
+
response = JSON.parse(body)
|
4332
|
+
if response['Response'].key?('Error') == false
|
4333
|
+
model = DescribeRuleGroupsByPageResponse.new
|
4334
|
+
model.deserialize(response['Response'])
|
4335
|
+
model
|
4336
|
+
else
|
4337
|
+
code = response['Response']['Error']['Code']
|
4338
|
+
message = response['Response']['Error']['Message']
|
4339
|
+
reqid = response['Response']['RequestId']
|
4340
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4341
|
+
end
|
4342
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4343
|
+
raise e
|
4344
|
+
rescue StandardError => e
|
4345
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4346
|
+
end
|
4347
|
+
|
4348
|
+
# 过滤条件【必要字段】{ruleId}
|
4349
|
+
|
4350
|
+
# @param request: Request instance for DescribeRuleHistoryByPage.
|
4351
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleHistoryByPageRequest`
|
4352
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleHistoryByPageResponse`
|
4353
|
+
def DescribeRuleHistoryByPage(request)
|
4354
|
+
body = send_request('DescribeRuleHistoryByPage', request.serialize)
|
4355
|
+
response = JSON.parse(body)
|
4356
|
+
if response['Response'].key?('Error') == false
|
4357
|
+
model = DescribeRuleHistoryByPageResponse.new
|
4358
|
+
model.deserialize(response['Response'])
|
4359
|
+
model
|
4360
|
+
else
|
4361
|
+
code = response['Response']['Error']['Code']
|
4362
|
+
message = response['Response']['Error']['Message']
|
4363
|
+
reqid = response['Response']['RequestId']
|
4364
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4365
|
+
end
|
4366
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4367
|
+
raise e
|
4368
|
+
rescue StandardError => e
|
4369
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4370
|
+
end
|
4371
|
+
|
4372
|
+
# 获取表列表
|
4373
|
+
|
4374
|
+
# @param request: Request instance for DescribeRuleTablesByPage.
|
4375
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTablesByPageRequest`
|
4376
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTablesByPageResponse`
|
4377
|
+
def DescribeRuleTablesByPage(request)
|
4378
|
+
body = send_request('DescribeRuleTablesByPage', request.serialize)
|
4379
|
+
response = JSON.parse(body)
|
4380
|
+
if response['Response'].key?('Error') == false
|
4381
|
+
model = DescribeRuleTablesByPageResponse.new
|
4382
|
+
model.deserialize(response['Response'])
|
4383
|
+
model
|
4384
|
+
else
|
4385
|
+
code = response['Response']['Error']['Code']
|
4386
|
+
message = response['Response']['Error']['Message']
|
4387
|
+
reqid = response['Response']['RequestId']
|
4388
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4389
|
+
end
|
4390
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4391
|
+
raise e
|
4392
|
+
rescue StandardError => e
|
4393
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4394
|
+
end
|
4395
|
+
|
4396
|
+
# 查询模板详情
|
4397
|
+
|
4398
|
+
# @param request: Request instance for DescribeRuleTemplate.
|
4399
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTemplateRequest`
|
4400
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTemplateResponse`
|
4401
|
+
def DescribeRuleTemplate(request)
|
4402
|
+
body = send_request('DescribeRuleTemplate', request.serialize)
|
4403
|
+
response = JSON.parse(body)
|
4404
|
+
if response['Response'].key?('Error') == false
|
4405
|
+
model = DescribeRuleTemplateResponse.new
|
4406
|
+
model.deserialize(response['Response'])
|
4407
|
+
model
|
4408
|
+
else
|
4409
|
+
code = response['Response']['Error']['Code']
|
4410
|
+
message = response['Response']['Error']['Message']
|
4411
|
+
reqid = response['Response']['RequestId']
|
4412
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4413
|
+
end
|
4414
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4415
|
+
raise e
|
4416
|
+
rescue StandardError => e
|
4417
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4418
|
+
end
|
4419
|
+
|
4420
|
+
# 查询规则模版列表
|
4421
|
+
|
4422
|
+
# @param request: Request instance for DescribeRuleTemplates.
|
4423
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTemplatesRequest`
|
4424
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTemplatesResponse`
|
4425
|
+
def DescribeRuleTemplates(request)
|
4426
|
+
body = send_request('DescribeRuleTemplates', request.serialize)
|
4427
|
+
response = JSON.parse(body)
|
4428
|
+
if response['Response'].key?('Error') == false
|
4429
|
+
model = DescribeRuleTemplatesResponse.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
|
+
# 过滤条件】 {模版名称Name,支持模糊匹配} {模版类型type,1.系统模版 2.自定义模版} {质量检测维度QualityDims, 1.准确性 2.唯一性 3.完整性 4.一致性 5.及时性 6.有效性} 【排序字段】 { 引用数排序类型CitationOrderType,根据引用数量排序 ASC DESC}
|
4445
|
+
|
4446
|
+
# @param request: Request instance for DescribeRuleTemplatesByPage.
|
4447
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTemplatesByPageRequest`
|
4448
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRuleTemplatesByPageResponse`
|
4449
|
+
def DescribeRuleTemplatesByPage(request)
|
4450
|
+
body = send_request('DescribeRuleTemplatesByPage', request.serialize)
|
4451
|
+
response = JSON.parse(body)
|
4452
|
+
if response['Response'].key?('Error') == false
|
4453
|
+
model = DescribeRuleTemplatesByPageResponse.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
|
+
# 查询质量规则列表
|
4469
|
+
|
4470
|
+
# @param request: Request instance for DescribeRules.
|
4471
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRulesRequest`
|
4472
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRulesResponse`
|
4473
|
+
def DescribeRules(request)
|
4474
|
+
body = send_request('DescribeRules', request.serialize)
|
4475
|
+
response = JSON.parse(body)
|
4476
|
+
if response['Response'].key?('Error') == false
|
4477
|
+
model = DescribeRulesResponse.new
|
2699
4478
|
model.deserialize(response['Response'])
|
2700
4479
|
model
|
2701
4480
|
else
|
@@ -2710,16 +4489,16 @@ module TencentCloud
|
|
2710
4489
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2711
4490
|
end
|
2712
4491
|
|
2713
|
-
#
|
4492
|
+
# 分页查询质量规则
|
2714
4493
|
|
2715
|
-
# @param request: Request instance for
|
2716
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2717
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2718
|
-
def
|
2719
|
-
body = send_request('
|
4494
|
+
# @param request: Request instance for DescribeRulesByPage.
|
4495
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRulesByPageRequest`
|
4496
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRulesByPageResponse`
|
4497
|
+
def DescribeRulesByPage(request)
|
4498
|
+
body = send_request('DescribeRulesByPage', request.serialize)
|
2720
4499
|
response = JSON.parse(body)
|
2721
4500
|
if response['Response'].key?('Error') == false
|
2722
|
-
model =
|
4501
|
+
model = DescribeRulesByPageResponse.new
|
2723
4502
|
model.deserialize(response['Response'])
|
2724
4503
|
model
|
2725
4504
|
else
|
@@ -2734,16 +4513,16 @@ module TencentCloud
|
|
2734
4513
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2735
4514
|
end
|
2736
4515
|
|
2737
|
-
#
|
4516
|
+
# 在基线系统内查询单个调度任务实例
|
2738
4517
|
|
2739
|
-
# @param request: Request instance for
|
2740
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2741
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2742
|
-
def
|
2743
|
-
body = send_request('
|
4518
|
+
# @param request: Request instance for DescribeScheduleInstance.
|
4519
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeScheduleInstanceRequest`
|
4520
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeScheduleInstanceResponse`
|
4521
|
+
def DescribeScheduleInstance(request)
|
4522
|
+
body = send_request('DescribeScheduleInstance', request.serialize)
|
2744
4523
|
response = JSON.parse(body)
|
2745
4524
|
if response['Response'].key?('Error') == false
|
2746
|
-
model =
|
4525
|
+
model = DescribeScheduleInstanceResponse.new
|
2747
4526
|
model.deserialize(response['Response'])
|
2748
4527
|
model
|
2749
4528
|
else
|
@@ -2758,16 +4537,16 @@ module TencentCloud
|
|
2758
4537
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2759
4538
|
end
|
2760
4539
|
|
2761
|
-
#
|
4540
|
+
# 获取实例列表
|
2762
4541
|
|
2763
|
-
# @param request: Request instance for
|
2764
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2765
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2766
|
-
def
|
2767
|
-
body = send_request('
|
4542
|
+
# @param request: Request instance for DescribeScheduleInstances.
|
4543
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeScheduleInstancesRequest`
|
4544
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeScheduleInstancesResponse`
|
4545
|
+
def DescribeScheduleInstances(request)
|
4546
|
+
body = send_request('DescribeScheduleInstances', request.serialize)
|
2768
4547
|
response = JSON.parse(body)
|
2769
4548
|
if response['Response'].key?('Error') == false
|
2770
|
-
model =
|
4549
|
+
model = DescribeScheduleInstancesResponse.new
|
2771
4550
|
model.deserialize(response['Response'])
|
2772
4551
|
model
|
2773
4552
|
else
|
@@ -2782,16 +4561,16 @@ module TencentCloud
|
|
2782
4561
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2783
4562
|
end
|
2784
4563
|
|
2785
|
-
#
|
4564
|
+
# 运维大屏-实例状态分布
|
2786
4565
|
|
2787
|
-
# @param request: Request instance for
|
2788
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2789
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2790
|
-
def
|
2791
|
-
body = send_request('
|
4566
|
+
# @param request: Request instance for DescribeSchedulerInstanceStatus.
|
4567
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerInstanceStatusRequest`
|
4568
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerInstanceStatusResponse`
|
4569
|
+
def DescribeSchedulerInstanceStatus(request)
|
4570
|
+
body = send_request('DescribeSchedulerInstanceStatus', request.serialize)
|
2792
4571
|
response = JSON.parse(body)
|
2793
4572
|
if response['Response'].key?('Error') == false
|
2794
|
-
model =
|
4573
|
+
model = DescribeSchedulerInstanceStatusResponse.new
|
2795
4574
|
model.deserialize(response['Response'])
|
2796
4575
|
model
|
2797
4576
|
else
|
@@ -2806,16 +4585,16 @@ module TencentCloud
|
|
2806
4585
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2807
4586
|
end
|
2808
4587
|
|
2809
|
-
#
|
4588
|
+
# 运维大屏-实例运行时长排行
|
2810
4589
|
|
2811
|
-
# @param request: Request instance for
|
2812
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2813
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2814
|
-
def
|
2815
|
-
body = send_request('
|
4590
|
+
# @param request: Request instance for DescribeSchedulerRunTimeInstanceCntByStatus.
|
4591
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerRunTimeInstanceCntByStatusRequest`
|
4592
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerRunTimeInstanceCntByStatusResponse`
|
4593
|
+
def DescribeSchedulerRunTimeInstanceCntByStatus(request)
|
4594
|
+
body = send_request('DescribeSchedulerRunTimeInstanceCntByStatus', request.serialize)
|
2816
4595
|
response = JSON.parse(body)
|
2817
4596
|
if response['Response'].key?('Error') == false
|
2818
|
-
model =
|
4597
|
+
model = DescribeSchedulerRunTimeInstanceCntByStatusResponse.new
|
2819
4598
|
model.deserialize(response['Response'])
|
2820
4599
|
model
|
2821
4600
|
else
|
@@ -2830,16 +4609,16 @@ module TencentCloud
|
|
2830
4609
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2831
4610
|
end
|
2832
4611
|
|
2833
|
-
#
|
4612
|
+
# 任务状态统计
|
2834
4613
|
|
2835
|
-
# @param request: Request instance for
|
2836
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2837
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2838
|
-
def
|
2839
|
-
body = send_request('
|
4614
|
+
# @param request: Request instance for DescribeSchedulerTaskCntByStatus.
|
4615
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskCntByStatusRequest`
|
4616
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskCntByStatusResponse`
|
4617
|
+
def DescribeSchedulerTaskCntByStatus(request)
|
4618
|
+
body = send_request('DescribeSchedulerTaskCntByStatus', request.serialize)
|
2840
4619
|
response = JSON.parse(body)
|
2841
4620
|
if response['Response'].key?('Error') == false
|
2842
|
-
model =
|
4621
|
+
model = DescribeSchedulerTaskCntByStatusResponse.new
|
2843
4622
|
model.deserialize(response['Response'])
|
2844
4623
|
model
|
2845
4624
|
else
|
@@ -2854,16 +4633,16 @@ module TencentCloud
|
|
2854
4633
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2855
4634
|
end
|
2856
4635
|
|
2857
|
-
#
|
4636
|
+
# 运维大屏-任务状态分布
|
2858
4637
|
|
2859
|
-
# @param request: Request instance for
|
2860
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2861
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2862
|
-
def
|
2863
|
-
body = send_request('
|
4638
|
+
# @param request: Request instance for DescribeSchedulerTaskTypeCnt.
|
4639
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskTypeCntRequest`
|
4640
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSchedulerTaskTypeCntResponse`
|
4641
|
+
def DescribeSchedulerTaskTypeCnt(request)
|
4642
|
+
body = send_request('DescribeSchedulerTaskTypeCnt', request.serialize)
|
2864
4643
|
response = JSON.parse(body)
|
2865
4644
|
if response['Response'].key?('Error') == false
|
2866
|
-
model =
|
4645
|
+
model = DescribeSchedulerTaskTypeCntResponse.new
|
2867
4646
|
model.deserialize(response['Response'])
|
2868
4647
|
model
|
2869
4648
|
else
|
@@ -2878,16 +4657,16 @@ module TencentCloud
|
|
2878
4657
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2879
4658
|
end
|
2880
4659
|
|
2881
|
-
#
|
4660
|
+
# 获取关联子实例
|
2882
4661
|
|
2883
|
-
# @param request: Request instance for
|
2884
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2885
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2886
|
-
def
|
2887
|
-
body = send_request('
|
4662
|
+
# @param request: Request instance for DescribeSonInstances.
|
4663
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSonInstancesRequest`
|
4664
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSonInstancesResponse`
|
4665
|
+
def DescribeSonInstances(request)
|
4666
|
+
body = send_request('DescribeSonInstances', request.serialize)
|
2888
4667
|
response = JSON.parse(body)
|
2889
4668
|
if response['Response'].key?('Error') == false
|
2890
|
-
model =
|
4669
|
+
model = DescribeSonInstancesResponse.new
|
2891
4670
|
model.deserialize(response['Response'])
|
2892
4671
|
model
|
2893
4672
|
else
|
@@ -2902,16 +4681,16 @@ module TencentCloud
|
|
2902
4681
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2903
4682
|
end
|
2904
4683
|
|
2905
|
-
#
|
4684
|
+
# 获取数据标准规则详情
|
2906
4685
|
|
2907
|
-
# @param request: Request instance for
|
2908
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2909
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2910
|
-
def
|
2911
|
-
body = send_request('
|
4686
|
+
# @param request: Request instance for DescribeStandardRuleDetailInfoList.
|
4687
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeStandardRuleDetailInfoListRequest`
|
4688
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeStandardRuleDetailInfoListResponse`
|
4689
|
+
def DescribeStandardRuleDetailInfoList(request)
|
4690
|
+
body = send_request('DescribeStandardRuleDetailInfoList', request.serialize)
|
2912
4691
|
response = JSON.parse(body)
|
2913
4692
|
if response['Response'].key?('Error') == false
|
2914
|
-
model =
|
4693
|
+
model = DescribeStandardRuleDetailInfoListResponse.new
|
2915
4694
|
model.deserialize(response['Response'])
|
2916
4695
|
model
|
2917
4696
|
else
|
@@ -2926,16 +4705,16 @@ module TencentCloud
|
|
2926
4705
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2927
4706
|
end
|
2928
4707
|
|
2929
|
-
#
|
4708
|
+
# 任务状态趋势
|
2930
4709
|
|
2931
|
-
# @param request: Request instance for
|
2932
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2933
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2934
|
-
def
|
2935
|
-
body = send_request('
|
4710
|
+
# @param request: Request instance for DescribeStatisticInstanceStatusTrendOps.
|
4711
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeStatisticInstanceStatusTrendOpsRequest`
|
4712
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeStatisticInstanceStatusTrendOpsResponse`
|
4713
|
+
def DescribeStatisticInstanceStatusTrendOps(request)
|
4714
|
+
body = send_request('DescribeStatisticInstanceStatusTrendOps', request.serialize)
|
2936
4715
|
response = JSON.parse(body)
|
2937
4716
|
if response['Response'].key?('Error') == false
|
2938
|
-
model =
|
4717
|
+
model = DescribeStatisticInstanceStatusTrendOpsResponse.new
|
2939
4718
|
model.deserialize(response['Response'])
|
2940
4719
|
model
|
2941
4720
|
else
|
@@ -2950,16 +4729,16 @@ module TencentCloud
|
|
2950
4729
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2951
4730
|
end
|
2952
4731
|
|
2953
|
-
#
|
4732
|
+
# 查询实时任务日志列表
|
2954
4733
|
|
2955
|
-
# @param request: Request instance for
|
2956
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2957
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2958
|
-
def
|
2959
|
-
body = send_request('
|
4734
|
+
# @param request: Request instance for DescribeStreamTaskLogList.
|
4735
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeStreamTaskLogListRequest`
|
4736
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeStreamTaskLogListResponse`
|
4737
|
+
def DescribeStreamTaskLogList(request)
|
4738
|
+
body = send_request('DescribeStreamTaskLogList', request.serialize)
|
2960
4739
|
response = JSON.parse(body)
|
2961
4740
|
if response['Response'].key?('Error') == false
|
2962
|
-
model =
|
4741
|
+
model = DescribeStreamTaskLogListResponse.new
|
2963
4742
|
model.deserialize(response['Response'])
|
2964
4743
|
model
|
2965
4744
|
else
|
@@ -2974,16 +4753,16 @@ module TencentCloud
|
|
2974
4753
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2975
4754
|
end
|
2976
4755
|
|
2977
|
-
#
|
4756
|
+
# 获取下游任务信息
|
2978
4757
|
|
2979
|
-
# @param request: Request instance for
|
2980
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
2981
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
2982
|
-
def
|
2983
|
-
body = send_request('
|
4758
|
+
# @param request: Request instance for DescribeSuccessorOpsTaskInfos.
|
4759
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSuccessorOpsTaskInfosRequest`
|
4760
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSuccessorOpsTaskInfosResponse`
|
4761
|
+
def DescribeSuccessorOpsTaskInfos(request)
|
4762
|
+
body = send_request('DescribeSuccessorOpsTaskInfos', request.serialize)
|
2984
4763
|
response = JSON.parse(body)
|
2985
4764
|
if response['Response'].key?('Error') == false
|
2986
|
-
model =
|
4765
|
+
model = DescribeSuccessorOpsTaskInfosResponse.new
|
2987
4766
|
model.deserialize(response['Response'])
|
2988
4767
|
model
|
2989
4768
|
else
|
@@ -2998,16 +4777,16 @@ module TencentCloud
|
|
2998
4777
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2999
4778
|
end
|
3000
4779
|
|
3001
|
-
#
|
4780
|
+
# 获取数据表信息
|
3002
4781
|
|
3003
|
-
# @param request: Request instance for
|
3004
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3005
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3006
|
-
def
|
3007
|
-
body = send_request('
|
4782
|
+
# @param request: Request instance for DescribeTableInfoList.
|
4783
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableInfoListRequest`
|
4784
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableInfoListResponse`
|
4785
|
+
def DescribeTableInfoList(request)
|
4786
|
+
body = send_request('DescribeTableInfoList', request.serialize)
|
3008
4787
|
response = JSON.parse(body)
|
3009
4788
|
if response['Response'].key?('Error') == false
|
3010
|
-
model =
|
4789
|
+
model = DescribeTableInfoListResponse.new
|
3011
4790
|
model.deserialize(response['Response'])
|
3012
4791
|
model
|
3013
4792
|
else
|
@@ -3022,16 +4801,16 @@ module TencentCloud
|
|
3022
4801
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3023
4802
|
end
|
3024
4803
|
|
3025
|
-
#
|
4804
|
+
# 列出表血缘信息
|
3026
4805
|
|
3027
|
-
# @param request: Request instance for
|
3028
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3029
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3030
|
-
def
|
3031
|
-
body = send_request('
|
4806
|
+
# @param request: Request instance for DescribeTableLineage.
|
4807
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableLineageRequest`
|
4808
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableLineageResponse`
|
4809
|
+
def DescribeTableLineage(request)
|
4810
|
+
body = send_request('DescribeTableLineage', request.serialize)
|
3032
4811
|
response = JSON.parse(body)
|
3033
4812
|
if response['Response'].key?('Error') == false
|
3034
|
-
model =
|
4813
|
+
model = DescribeTableLineageResponse.new
|
3035
4814
|
model.deserialize(response['Response'])
|
3036
4815
|
model
|
3037
4816
|
else
|
@@ -3046,16 +4825,16 @@ module TencentCloud
|
|
3046
4825
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3047
4826
|
end
|
3048
4827
|
|
3049
|
-
#
|
4828
|
+
# 质量报告-查询表质量详情
|
3050
4829
|
|
3051
|
-
# @param request: Request instance for
|
3052
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3053
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3054
|
-
def
|
3055
|
-
body = send_request('
|
4830
|
+
# @param request: Request instance for DescribeTableQualityDetails.
|
4831
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableQualityDetailsRequest`
|
4832
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableQualityDetailsResponse`
|
4833
|
+
def DescribeTableQualityDetails(request)
|
4834
|
+
body = send_request('DescribeTableQualityDetails', request.serialize)
|
3056
4835
|
response = JSON.parse(body)
|
3057
4836
|
if response['Response'].key?('Error') == false
|
3058
|
-
model =
|
4837
|
+
model = DescribeTableQualityDetailsResponse.new
|
3059
4838
|
model.deserialize(response['Response'])
|
3060
4839
|
model
|
3061
4840
|
else
|
@@ -3070,16 +4849,16 @@ module TencentCloud
|
|
3070
4849
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3071
4850
|
end
|
3072
4851
|
|
3073
|
-
#
|
4852
|
+
# 获取表schema信息
|
3074
4853
|
|
3075
|
-
# @param request: Request instance for
|
3076
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3077
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3078
|
-
def
|
3079
|
-
body = send_request('
|
4854
|
+
# @param request: Request instance for DescribeTableSchemaInfo.
|
4855
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableSchemaInfoRequest`
|
4856
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableSchemaInfoResponse`
|
4857
|
+
def DescribeTableSchemaInfo(request)
|
4858
|
+
body = send_request('DescribeTableSchemaInfo', request.serialize)
|
3080
4859
|
response = JSON.parse(body)
|
3081
4860
|
if response['Response'].key?('Error') == false
|
3082
|
-
model =
|
4861
|
+
model = DescribeTableSchemaInfoResponse.new
|
3083
4862
|
model.deserialize(response['Response'])
|
3084
4863
|
model
|
3085
4864
|
else
|
@@ -3094,19 +4873,16 @@ module TencentCloud
|
|
3094
4873
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3095
4874
|
end
|
3096
4875
|
|
3097
|
-
#
|
3098
|
-
# {表名称TableName,支持模糊匹配} {表负责人TableOwnerName,支持模糊匹配} {监控方式MonitorTypes,1.未配置 2.关联生产调度 3.离线周期检测,支持多选} {订阅人ReceiverUin}
|
3099
|
-
# 【必要字段】
|
3100
|
-
# {数据来源DatasourceId}
|
4876
|
+
# 查询表得分趋势
|
3101
4877
|
|
3102
|
-
# @param request: Request instance for
|
3103
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3104
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3105
|
-
def
|
3106
|
-
body = send_request('
|
4878
|
+
# @param request: Request instance for DescribeTableScoreTrend.
|
4879
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableScoreTrendRequest`
|
4880
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableScoreTrendResponse`
|
4881
|
+
def DescribeTableScoreTrend(request)
|
4882
|
+
body = send_request('DescribeTableScoreTrend', request.serialize)
|
3107
4883
|
response = JSON.parse(body)
|
3108
4884
|
if response['Response'].key?('Error') == false
|
3109
|
-
model =
|
4885
|
+
model = DescribeTableScoreTrendResponse.new
|
3110
4886
|
model.deserialize(response['Response'])
|
3111
4887
|
model
|
3112
4888
|
else
|
@@ -3121,16 +4897,16 @@ module TencentCloud
|
|
3121
4897
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3122
4898
|
end
|
3123
4899
|
|
3124
|
-
#
|
4900
|
+
# 查询任务告警规则列表
|
3125
4901
|
|
3126
|
-
# @param request: Request instance for
|
3127
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3128
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3129
|
-
def
|
3130
|
-
body = send_request('
|
4902
|
+
# @param request: Request instance for DescribeTaskAlarmRegulations.
|
4903
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskAlarmRegulationsRequest`
|
4904
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskAlarmRegulationsResponse`
|
4905
|
+
def DescribeTaskAlarmRegulations(request)
|
4906
|
+
body = send_request('DescribeTaskAlarmRegulations', request.serialize)
|
3131
4907
|
response = JSON.parse(body)
|
3132
4908
|
if response['Response'].key?('Error') == false
|
3133
|
-
model =
|
4909
|
+
model = DescribeTaskAlarmRegulationsResponse.new
|
3134
4910
|
model.deserialize(response['Response'])
|
3135
4911
|
model
|
3136
4912
|
else
|
@@ -3145,16 +4921,16 @@ module TencentCloud
|
|
3145
4921
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3146
4922
|
end
|
3147
4923
|
|
3148
|
-
#
|
4924
|
+
# 根据周期类型 查询所有任务
|
3149
4925
|
|
3150
|
-
# @param request: Request instance for
|
3151
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3152
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3153
|
-
def
|
3154
|
-
body = send_request('
|
4926
|
+
# @param request: Request instance for DescribeTaskByCycle.
|
4927
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskByCycleRequest`
|
4928
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskByCycleResponse`
|
4929
|
+
def DescribeTaskByCycle(request)
|
4930
|
+
body = send_request('DescribeTaskByCycle', request.serialize)
|
3155
4931
|
response = JSON.parse(body)
|
3156
4932
|
if response['Response'].key?('Error') == false
|
3157
|
-
model =
|
4933
|
+
model = DescribeTaskByCycleResponse.new
|
3158
4934
|
model.deserialize(response['Response'])
|
3159
4935
|
model
|
3160
4936
|
else
|
@@ -3169,16 +4945,16 @@ module TencentCloud
|
|
3169
4945
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3170
4946
|
end
|
3171
4947
|
|
3172
|
-
#
|
4948
|
+
# 任务状态周期增长趋势
|
3173
4949
|
|
3174
|
-
# @param request: Request instance for
|
3175
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3176
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3177
|
-
def
|
3178
|
-
body = send_request('
|
4950
|
+
# @param request: Request instance for DescribeTaskByCycleReport.
|
4951
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskByCycleReportRequest`
|
4952
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskByCycleReportResponse`
|
4953
|
+
def DescribeTaskByCycleReport(request)
|
4954
|
+
body = send_request('DescribeTaskByCycleReport', request.serialize)
|
3179
4955
|
response = JSON.parse(body)
|
3180
4956
|
if response['Response'].key?('Error') == false
|
3181
|
-
model =
|
4957
|
+
model = DescribeTaskByCycleReportResponse.new
|
3182
4958
|
model.deserialize(response['Response'])
|
3183
4959
|
model
|
3184
4960
|
else
|
@@ -3193,16 +4969,16 @@ module TencentCloud
|
|
3193
4969
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3194
4970
|
end
|
3195
4971
|
|
3196
|
-
#
|
4972
|
+
# 任务状态趋势
|
3197
4973
|
|
3198
|
-
# @param request: Request instance for
|
3199
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3200
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3201
|
-
def
|
3202
|
-
body = send_request('
|
4974
|
+
# @param request: Request instance for DescribeTaskByStatusReport.
|
4975
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskByStatusReportRequest`
|
4976
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskByStatusReportResponse`
|
4977
|
+
def DescribeTaskByStatusReport(request)
|
4978
|
+
body = send_request('DescribeTaskByStatusReport', request.serialize)
|
3203
4979
|
response = JSON.parse(body)
|
3204
4980
|
if response['Response'].key?('Error') == false
|
3205
|
-
model =
|
4981
|
+
model = DescribeTaskByStatusReportResponse.new
|
3206
4982
|
model.deserialize(response['Response'])
|
3207
4983
|
model
|
3208
4984
|
else
|
@@ -3217,16 +4993,41 @@ module TencentCloud
|
|
3217
4993
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3218
4994
|
end
|
3219
4995
|
|
3220
|
-
#
|
4996
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
4997
|
+
# 查询任务具体详情
|
4998
|
+
|
4999
|
+
# @param request: Request instance for DescribeTaskDetail.
|
5000
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskDetailRequest`
|
5001
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskDetailResponse`
|
5002
|
+
def DescribeTaskDetail(request)
|
5003
|
+
body = send_request('DescribeTaskDetail', request.serialize)
|
5004
|
+
response = JSON.parse(body)
|
5005
|
+
if response['Response'].key?('Error') == false
|
5006
|
+
model = DescribeTaskDetailResponse.new
|
5007
|
+
model.deserialize(response['Response'])
|
5008
|
+
model
|
5009
|
+
else
|
5010
|
+
code = response['Response']['Error']['Code']
|
5011
|
+
message = response['Response']['Error']['Message']
|
5012
|
+
reqid = response['Response']['RequestId']
|
5013
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5014
|
+
end
|
5015
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5016
|
+
raise e
|
5017
|
+
rescue StandardError => e
|
5018
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5019
|
+
end
|
5020
|
+
|
5021
|
+
# 离线任务实例详情
|
3221
5022
|
|
3222
|
-
# @param request: Request instance for
|
3223
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3224
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3225
|
-
def
|
3226
|
-
body = send_request('
|
5023
|
+
# @param request: Request instance for DescribeTaskInstance.
|
5024
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceRequest`
|
5025
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceResponse`
|
5026
|
+
def DescribeTaskInstance(request)
|
5027
|
+
body = send_request('DescribeTaskInstance', request.serialize)
|
3227
5028
|
response = JSON.parse(body)
|
3228
5029
|
if response['Response'].key?('Error') == false
|
3229
|
-
model =
|
5030
|
+
model = DescribeTaskInstanceResponse.new
|
3230
5031
|
model.deserialize(response['Response'])
|
3231
5032
|
model
|
3232
5033
|
else
|
@@ -3241,16 +5042,16 @@ module TencentCloud
|
|
3241
5042
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3242
5043
|
end
|
3243
5044
|
|
3244
|
-
#
|
5045
|
+
# 离线任务实例统计明细
|
3245
5046
|
|
3246
|
-
# @param request: Request instance for
|
3247
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3248
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3249
|
-
def
|
3250
|
-
body = send_request('
|
5047
|
+
# @param request: Request instance for DescribeTaskInstanceReportDetail.
|
5048
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceReportDetailRequest`
|
5049
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstanceReportDetailResponse`
|
5050
|
+
def DescribeTaskInstanceReportDetail(request)
|
5051
|
+
body = send_request('DescribeTaskInstanceReportDetail', request.serialize)
|
3251
5052
|
response = JSON.parse(body)
|
3252
5053
|
if response['Response'].key?('Error') == false
|
3253
|
-
model =
|
5054
|
+
model = DescribeTaskInstanceReportDetailResponse.new
|
3254
5055
|
model.deserialize(response['Response'])
|
3255
5056
|
model
|
3256
5057
|
else
|
@@ -3265,16 +5066,16 @@ module TencentCloud
|
|
3265
5066
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3266
5067
|
end
|
3267
5068
|
|
3268
|
-
#
|
5069
|
+
# 查询任务实例列表
|
3269
5070
|
|
3270
|
-
# @param request: Request instance for
|
3271
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3272
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3273
|
-
def
|
3274
|
-
body = send_request('
|
5071
|
+
# @param request: Request instance for DescribeTaskInstances.
|
5072
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstancesRequest`
|
5073
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInstancesResponse`
|
5074
|
+
def DescribeTaskInstances(request)
|
5075
|
+
body = send_request('DescribeTaskInstances', request.serialize)
|
3275
5076
|
response = JSON.parse(body)
|
3276
5077
|
if response['Response'].key?('Error') == false
|
3277
|
-
model =
|
5078
|
+
model = DescribeTaskInstancesResponse.new
|
3278
5079
|
model.deserialize(response['Response'])
|
3279
5080
|
model
|
3280
5081
|
else
|
@@ -3289,16 +5090,16 @@ module TencentCloud
|
|
3289
5090
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3290
5091
|
end
|
3291
5092
|
|
3292
|
-
#
|
5093
|
+
# 查看任务锁状态信息
|
3293
5094
|
|
3294
|
-
# @param request: Request instance for
|
3295
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3296
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3297
|
-
def
|
3298
|
-
body = send_request('
|
5095
|
+
# @param request: Request instance for DescribeTaskLockStatus.
|
5096
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskLockStatusRequest`
|
5097
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskLockStatusResponse`
|
5098
|
+
def DescribeTaskLockStatus(request)
|
5099
|
+
body = send_request('DescribeTaskLockStatus', request.serialize)
|
3299
5100
|
response = JSON.parse(body)
|
3300
5101
|
if response['Response'].key?('Error') == false
|
3301
|
-
model =
|
5102
|
+
model = DescribeTaskLockStatusResponse.new
|
3302
5103
|
model.deserialize(response['Response'])
|
3303
5104
|
model
|
3304
5105
|
else
|
@@ -3313,16 +5114,16 @@ module TencentCloud
|
|
3313
5114
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3314
5115
|
end
|
3315
5116
|
|
3316
|
-
#
|
5117
|
+
# 按起止日期统计离线任务的所有实例的运行指标总和
|
3317
5118
|
|
3318
|
-
# @param request: Request instance for
|
3319
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3320
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3321
|
-
def
|
3322
|
-
body = send_request('
|
5119
|
+
# @param request: Request instance for DescribeTaskReport.
|
5120
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportRequest`
|
5121
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportResponse`
|
5122
|
+
def DescribeTaskReport(request)
|
5123
|
+
body = send_request('DescribeTaskReport', request.serialize)
|
3323
5124
|
response = JSON.parse(body)
|
3324
5125
|
if response['Response'].key?('Error') == false
|
3325
|
-
model =
|
5126
|
+
model = DescribeTaskReportResponse.new
|
3326
5127
|
model.deserialize(response['Response'])
|
3327
5128
|
model
|
3328
5129
|
else
|
@@ -3337,16 +5138,16 @@ module TencentCloud
|
|
3337
5138
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3338
5139
|
end
|
3339
5140
|
|
3340
|
-
#
|
5141
|
+
# 离线任务周期统计明细
|
3341
5142
|
|
3342
|
-
# @param request: Request instance for
|
3343
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3344
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3345
|
-
def
|
3346
|
-
body = send_request('
|
5143
|
+
# @param request: Request instance for DescribeTaskReportDetailList.
|
5144
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportDetailListRequest`
|
5145
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskReportDetailListResponse`
|
5146
|
+
def DescribeTaskReportDetailList(request)
|
5147
|
+
body = send_request('DescribeTaskReportDetailList', request.serialize)
|
3347
5148
|
response = JSON.parse(body)
|
3348
5149
|
if response['Response'].key?('Error') == false
|
3349
|
-
model =
|
5150
|
+
model = DescribeTaskReportDetailListResponse.new
|
3350
5151
|
model.deserialize(response['Response'])
|
3351
5152
|
model
|
3352
5153
|
else
|
@@ -3361,16 +5162,16 @@ module TencentCloud
|
|
3361
5162
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3362
5163
|
end
|
3363
5164
|
|
3364
|
-
#
|
5165
|
+
# 分页查询任务运行历史
|
3365
5166
|
|
3366
|
-
# @param request: Request instance for
|
3367
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3368
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3369
|
-
def
|
3370
|
-
body = send_request('
|
5167
|
+
# @param request: Request instance for DescribeTaskRunHistory.
|
5168
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskRunHistoryRequest`
|
5169
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskRunHistoryResponse`
|
5170
|
+
def DescribeTaskRunHistory(request)
|
5171
|
+
body = send_request('DescribeTaskRunHistory', request.serialize)
|
3371
5172
|
response = JSON.parse(body)
|
3372
5173
|
if response['Response'].key?('Error') == false
|
3373
|
-
model =
|
5174
|
+
model = DescribeTaskRunHistoryResponse.new
|
3374
5175
|
model.deserialize(response['Response'])
|
3375
5176
|
model
|
3376
5177
|
else
|
@@ -3385,16 +5186,17 @@ module TencentCloud
|
|
3385
5186
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3386
5187
|
end
|
3387
5188
|
|
3388
|
-
#
|
5189
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5190
|
+
# 查询任务脚本
|
3389
5191
|
|
3390
|
-
# @param request: Request instance for
|
3391
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3392
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3393
|
-
def
|
3394
|
-
body = send_request('
|
5192
|
+
# @param request: Request instance for DescribeTaskScript.
|
5193
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskScriptRequest`
|
5194
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskScriptResponse`
|
5195
|
+
def DescribeTaskScript(request)
|
5196
|
+
body = send_request('DescribeTaskScript', request.serialize)
|
3395
5197
|
response = JSON.parse(body)
|
3396
5198
|
if response['Response'].key?('Error') == false
|
3397
|
-
model =
|
5199
|
+
model = DescribeTaskScriptResponse.new
|
3398
5200
|
model.deserialize(response['Response'])
|
3399
5201
|
model
|
3400
5202
|
else
|
@@ -3409,16 +5211,17 @@ module TencentCloud
|
|
3409
5211
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3410
5212
|
end
|
3411
5213
|
|
3412
|
-
#
|
5214
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5215
|
+
# 根据工作流分页查询任务
|
3413
5216
|
|
3414
|
-
# @param request: Request instance for
|
3415
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3416
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3417
|
-
def
|
3418
|
-
body = send_request('
|
5217
|
+
# @param request: Request instance for DescribeTasksByPage.
|
5218
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTasksByPageRequest`
|
5219
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTasksByPageResponse`
|
5220
|
+
def DescribeTasksByPage(request)
|
5221
|
+
body = send_request('DescribeTasksByPage', request.serialize)
|
3419
5222
|
response = JSON.parse(body)
|
3420
5223
|
if response['Response'].key?('Error') == false
|
3421
|
-
model =
|
5224
|
+
model = DescribeTasksByPageResponse.new
|
3422
5225
|
model.deserialize(response['Response'])
|
3423
5226
|
model
|
3424
5227
|
else
|
@@ -3433,16 +5236,16 @@ module TencentCloud
|
|
3433
5236
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3434
5237
|
end
|
3435
5238
|
|
3436
|
-
#
|
5239
|
+
# 查询规则模版维度分布情况
|
3437
5240
|
|
3438
|
-
# @param request: Request instance for
|
3439
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3440
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3441
|
-
def
|
3442
|
-
body = send_request('
|
5241
|
+
# @param request: Request instance for DescribeTemplateDimCount.
|
5242
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTemplateDimCountRequest`
|
5243
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTemplateDimCountResponse`
|
5244
|
+
def DescribeTemplateDimCount(request)
|
5245
|
+
body = send_request('DescribeTemplateDimCount', request.serialize)
|
3443
5246
|
response = JSON.parse(body)
|
3444
5247
|
if response['Response'].key?('Error') == false
|
3445
|
-
model =
|
5248
|
+
model = DescribeTemplateDimCountResponse.new
|
3446
5249
|
model.deserialize(response['Response'])
|
3447
5250
|
model
|
3448
5251
|
else
|
@@ -3457,16 +5260,16 @@ module TencentCloud
|
|
3457
5260
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3458
5261
|
end
|
3459
5262
|
|
3460
|
-
#
|
5263
|
+
# 查询规则模版操作记录
|
3461
5264
|
|
3462
|
-
# @param request: Request instance for
|
3463
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3464
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3465
|
-
def
|
3466
|
-
body = send_request('
|
5265
|
+
# @param request: Request instance for DescribeTemplateHistory.
|
5266
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTemplateHistoryRequest`
|
5267
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTemplateHistoryResponse`
|
5268
|
+
def DescribeTemplateHistory(request)
|
5269
|
+
body = send_request('DescribeTemplateHistory', request.serialize)
|
3467
5270
|
response = JSON.parse(body)
|
3468
5271
|
if response['Response'].key?('Error') == false
|
3469
|
-
model =
|
5272
|
+
model = DescribeTemplateHistoryResponse.new
|
3470
5273
|
model.deserialize(response['Response'])
|
3471
5274
|
model
|
3472
5275
|
else
|
@@ -3481,17 +5284,16 @@ module TencentCloud
|
|
3481
5284
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3482
5285
|
end
|
3483
5286
|
|
3484
|
-
#
|
3485
|
-
# 查询任务具体详情
|
5287
|
+
# 获取第三方运行日志
|
3486
5288
|
|
3487
|
-
# @param request: Request instance for
|
3488
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3489
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3490
|
-
def
|
3491
|
-
body = send_request('
|
5289
|
+
# @param request: Request instance for DescribeThirdTaskRunLog.
|
5290
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeThirdTaskRunLogRequest`
|
5291
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeThirdTaskRunLogResponse`
|
5292
|
+
def DescribeThirdTaskRunLog(request)
|
5293
|
+
body = send_request('DescribeThirdTaskRunLog', request.serialize)
|
3492
5294
|
response = JSON.parse(body)
|
3493
5295
|
if response['Response'].key?('Error') == false
|
3494
|
-
model =
|
5296
|
+
model = DescribeThirdTaskRunLogResponse.new
|
3495
5297
|
model.deserialize(response['Response'])
|
3496
5298
|
model
|
3497
5299
|
else
|
@@ -3506,16 +5308,16 @@ module TencentCloud
|
|
3506
5308
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3507
5309
|
end
|
3508
5310
|
|
3509
|
-
#
|
5311
|
+
# 数据质量概览页面表排行接口
|
3510
5312
|
|
3511
|
-
# @param request: Request instance for
|
3512
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3513
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3514
|
-
def
|
3515
|
-
body = send_request('
|
5313
|
+
# @param request: Request instance for DescribeTopTableStat.
|
5314
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTopTableStatRequest`
|
5315
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTopTableStatResponse`
|
5316
|
+
def DescribeTopTableStat(request)
|
5317
|
+
body = send_request('DescribeTopTableStat', request.serialize)
|
3516
5318
|
response = JSON.parse(body)
|
3517
5319
|
if response['Response'].key?('Error') == false
|
3518
|
-
model =
|
5320
|
+
model = DescribeTopTableStatResponse.new
|
3519
5321
|
model.deserialize(response['Response'])
|
3520
5322
|
model
|
3521
5323
|
else
|
@@ -3530,16 +5332,16 @@ module TencentCloud
|
|
3530
5332
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3531
5333
|
end
|
3532
5334
|
|
3533
|
-
#
|
5335
|
+
# 数据质量概览页面趋势变化接口
|
3534
5336
|
|
3535
|
-
# @param request: Request instance for
|
3536
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3537
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3538
|
-
def
|
3539
|
-
body = send_request('
|
5337
|
+
# @param request: Request instance for DescribeTrendStat.
|
5338
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTrendStatRequest`
|
5339
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTrendStatResponse`
|
5340
|
+
def DescribeTrendStat(request)
|
5341
|
+
body = send_request('DescribeTrendStat', request.serialize)
|
3540
5342
|
response = JSON.parse(body)
|
3541
5343
|
if response['Response'].key?('Error') == false
|
3542
|
-
model =
|
5344
|
+
model = DescribeTrendStatResponse.new
|
3543
5345
|
model.deserialize(response['Response'])
|
3544
5346
|
model
|
3545
5347
|
else
|
@@ -3554,16 +5356,16 @@ module TencentCloud
|
|
3554
5356
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3555
5357
|
end
|
3556
5358
|
|
3557
|
-
#
|
5359
|
+
# 查询工作流画布
|
3558
5360
|
|
3559
|
-
# @param request: Request instance for
|
3560
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3561
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3562
|
-
def
|
3563
|
-
body = send_request('
|
5361
|
+
# @param request: Request instance for DescribeWorkflowCanvasInfo.
|
5362
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowCanvasInfoRequest`
|
5363
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowCanvasInfoResponse`
|
5364
|
+
def DescribeWorkflowCanvasInfo(request)
|
5365
|
+
body = send_request('DescribeWorkflowCanvasInfo', request.serialize)
|
3564
5366
|
response = JSON.parse(body)
|
3565
5367
|
if response['Response'].key?('Error') == false
|
3566
|
-
model =
|
5368
|
+
model = DescribeWorkflowCanvasInfoResponse.new
|
3567
5369
|
model.deserialize(response['Response'])
|
3568
5370
|
model
|
3569
5371
|
else
|
@@ -3578,16 +5380,16 @@ module TencentCloud
|
|
3578
5380
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3579
5381
|
end
|
3580
5382
|
|
3581
|
-
#
|
5383
|
+
# 查询工作流画布运行起止时间
|
3582
5384
|
|
3583
|
-
# @param request: Request instance for
|
3584
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3585
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3586
|
-
def
|
3587
|
-
body = send_request('
|
5385
|
+
# @param request: Request instance for DescribeWorkflowExecuteById.
|
5386
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowExecuteByIdRequest`
|
5387
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowExecuteByIdResponse`
|
5388
|
+
def DescribeWorkflowExecuteById(request)
|
5389
|
+
body = send_request('DescribeWorkflowExecuteById', request.serialize)
|
3588
5390
|
response = JSON.parse(body)
|
3589
5391
|
if response['Response'].key?('Error') == false
|
3590
|
-
model =
|
5392
|
+
model = DescribeWorkflowExecuteByIdResponse.new
|
3591
5393
|
model.deserialize(response['Response'])
|
3592
5394
|
model
|
3593
5395
|
else
|
@@ -3602,16 +5404,16 @@ module TencentCloud
|
|
3602
5404
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3603
5405
|
end
|
3604
5406
|
|
3605
|
-
#
|
5407
|
+
# 通过工作流id,查询工作流详情
|
3606
5408
|
|
3607
|
-
# @param request: Request instance for
|
3608
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3609
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3610
|
-
def
|
3611
|
-
body = send_request('
|
5409
|
+
# @param request: Request instance for DescribeWorkflowInfoById.
|
5410
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowInfoByIdRequest`
|
5411
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowInfoByIdResponse`
|
5412
|
+
def DescribeWorkflowInfoById(request)
|
5413
|
+
body = send_request('DescribeWorkflowInfoById', request.serialize)
|
3612
5414
|
response = JSON.parse(body)
|
3613
5415
|
if response['Response'].key?('Error') == false
|
3614
|
-
model =
|
5416
|
+
model = DescribeWorkflowInfoByIdResponse.new
|
3615
5417
|
model.deserialize(response['Response'])
|
3616
5418
|
model
|
3617
5419
|
else
|
@@ -3626,16 +5428,16 @@ module TencentCloud
|
|
3626
5428
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3627
5429
|
end
|
3628
5430
|
|
3629
|
-
#
|
5431
|
+
# 根据项目id 获取项目下所有工作流列表
|
3630
5432
|
|
3631
|
-
# @param request: Request instance for
|
3632
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3633
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3634
|
-
def
|
3635
|
-
body = send_request('
|
5433
|
+
# @param request: Request instance for DescribeWorkflowListByProjectId.
|
5434
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowListByProjectIdRequest`
|
5435
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowListByProjectIdResponse`
|
5436
|
+
def DescribeWorkflowListByProjectId(request)
|
5437
|
+
body = send_request('DescribeWorkflowListByProjectId', request.serialize)
|
3636
5438
|
response = JSON.parse(body)
|
3637
5439
|
if response['Response'].key?('Error') == false
|
3638
|
-
model =
|
5440
|
+
model = DescribeWorkflowListByProjectIdResponse.new
|
3639
5441
|
model.deserialize(response['Response'])
|
3640
5442
|
model
|
3641
5443
|
else
|
@@ -3650,17 +5452,16 @@ module TencentCloud
|
|
3650
5452
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3651
5453
|
end
|
3652
5454
|
|
3653
|
-
#
|
3654
|
-
# 查询任务脚本
|
5455
|
+
# 查询运维画布信息,只需要获取边和节点
|
3655
5456
|
|
3656
|
-
# @param request: Request instance for
|
3657
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3658
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3659
|
-
def
|
3660
|
-
body = send_request('
|
5457
|
+
# @param request: Request instance for DescribeWorkflowOpsCanvasInfo.
|
5458
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowOpsCanvasInfoRequest`
|
5459
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowOpsCanvasInfoResponse`
|
5460
|
+
def DescribeWorkflowOpsCanvasInfo(request)
|
5461
|
+
body = send_request('DescribeWorkflowOpsCanvasInfo', request.serialize)
|
3661
5462
|
response = JSON.parse(body)
|
3662
5463
|
if response['Response'].key?('Error') == false
|
3663
|
-
model =
|
5464
|
+
model = DescribeWorkflowOpsCanvasInfoResponse.new
|
3664
5465
|
model.deserialize(response['Response'])
|
3665
5466
|
model
|
3666
5467
|
else
|
@@ -3675,17 +5476,16 @@ module TencentCloud
|
|
3675
5476
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3676
5477
|
end
|
3677
5478
|
|
3678
|
-
#
|
3679
|
-
# 根据工作流分页查询任务
|
5479
|
+
# 查询工作流任务数
|
3680
5480
|
|
3681
|
-
# @param request: Request instance for
|
3682
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3683
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3684
|
-
def
|
3685
|
-
body = send_request('
|
5481
|
+
# @param request: Request instance for DescribeWorkflowTaskCount.
|
5482
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowTaskCountRequest`
|
5483
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowTaskCountResponse`
|
5484
|
+
def DescribeWorkflowTaskCount(request)
|
5485
|
+
body = send_request('DescribeWorkflowTaskCount', request.serialize)
|
3686
5486
|
response = JSON.parse(body)
|
3687
5487
|
if response['Response'].key?('Error') == false
|
3688
|
-
model =
|
5488
|
+
model = DescribeWorkflowTaskCountResponse.new
|
3689
5489
|
model.deserialize(response['Response'])
|
3690
5490
|
model
|
3691
5491
|
else
|
@@ -3700,16 +5500,16 @@ module TencentCloud
|
|
3700
5500
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3701
5501
|
end
|
3702
5502
|
|
3703
|
-
#
|
5503
|
+
# 实例诊断信息
|
3704
5504
|
|
3705
|
-
# @param request: Request instance for
|
3706
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3707
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3708
|
-
def
|
3709
|
-
body = send_request('
|
5505
|
+
# @param request: Request instance for DiagnosePlus.
|
5506
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DiagnosePlusRequest`
|
5507
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DiagnosePlusResponse`
|
5508
|
+
def DiagnosePlus(request)
|
5509
|
+
body = send_request('DiagnosePlus', request.serialize)
|
3710
5510
|
response = JSON.parse(body)
|
3711
5511
|
if response['Response'].key?('Error') == false
|
3712
|
-
model =
|
5512
|
+
model = DiagnosePlusResponse.new
|
3713
5513
|
model.deserialize(response['Response'])
|
3714
5514
|
model
|
3715
5515
|
else
|
@@ -3724,16 +5524,16 @@ module TencentCloud
|
|
3724
5524
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3725
5525
|
end
|
3726
5526
|
|
3727
|
-
#
|
5527
|
+
# 调试运行集成任务
|
3728
5528
|
|
3729
|
-
# @param request: Request instance for
|
3730
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3731
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3732
|
-
def
|
3733
|
-
body = send_request('
|
5529
|
+
# @param request: Request instance for DryRunDIOfflineTask.
|
5530
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DryRunDIOfflineTaskRequest`
|
5531
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DryRunDIOfflineTaskResponse`
|
5532
|
+
def DryRunDIOfflineTask(request)
|
5533
|
+
body = send_request('DryRunDIOfflineTask', request.serialize)
|
3734
5534
|
response = JSON.parse(body)
|
3735
5535
|
if response['Response'].key?('Error') == false
|
3736
|
-
model =
|
5536
|
+
model = DryRunDIOfflineTaskResponse.new
|
3737
5537
|
model.deserialize(response['Response'])
|
3738
5538
|
model
|
3739
5539
|
else
|
@@ -3747,17 +5547,17 @@ module TencentCloud
|
|
3747
5547
|
rescue StandardError => e
|
3748
5548
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3749
5549
|
end
|
3750
|
-
|
3751
|
-
#
|
3752
|
-
|
3753
|
-
# @param request: Request instance for
|
3754
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3755
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3756
|
-
def
|
3757
|
-
body = send_request('
|
5550
|
+
|
5551
|
+
# 编辑基线
|
5552
|
+
|
5553
|
+
# @param request: Request instance for EditBaseline.
|
5554
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::EditBaselineRequest`
|
5555
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::EditBaselineResponse`
|
5556
|
+
def EditBaseline(request)
|
5557
|
+
body = send_request('EditBaseline', request.serialize)
|
3758
5558
|
response = JSON.parse(body)
|
3759
5559
|
if response['Response'].key?('Error') == false
|
3760
|
-
model =
|
5560
|
+
model = EditBaselineResponse.new
|
3761
5561
|
model.deserialize(response['Response'])
|
3762
5562
|
model
|
3763
5563
|
else
|
@@ -3772,16 +5572,17 @@ module TencentCloud
|
|
3772
5572
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3773
5573
|
end
|
3774
5574
|
|
3775
|
-
#
|
5575
|
+
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5576
|
+
# 实例批量置成功
|
3776
5577
|
|
3777
|
-
# @param request: Request instance for
|
3778
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3779
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3780
|
-
def
|
3781
|
-
body = send_request('
|
5578
|
+
# @param request: Request instance for ForceSucInstances.
|
5579
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ForceSucInstancesRequest`
|
5580
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ForceSucInstancesResponse`
|
5581
|
+
def ForceSucInstances(request)
|
5582
|
+
body = send_request('ForceSucInstances', request.serialize)
|
3782
5583
|
response = JSON.parse(body)
|
3783
5584
|
if response['Response'].key?('Error') == false
|
3784
|
-
model =
|
5585
|
+
model = ForceSucInstancesResponse.new
|
3785
5586
|
model.deserialize(response['Response'])
|
3786
5587
|
model
|
3787
5588
|
else
|
@@ -3796,16 +5597,16 @@ module TencentCloud
|
|
3796
5597
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3797
5598
|
end
|
3798
5599
|
|
3799
|
-
#
|
5600
|
+
# 实例强制成功
|
3800
5601
|
|
3801
|
-
# @param request: Request instance for
|
3802
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3803
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3804
|
-
def
|
3805
|
-
body = send_request('
|
5602
|
+
# @param request: Request instance for ForceSucScheduleInstances.
|
5603
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ForceSucScheduleInstancesRequest`
|
5604
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ForceSucScheduleInstancesResponse`
|
5605
|
+
def ForceSucScheduleInstances(request)
|
5606
|
+
body = send_request('ForceSucScheduleInstances', request.serialize)
|
3806
5607
|
response = JSON.parse(body)
|
3807
5608
|
if response['Response'].key?('Error') == false
|
3808
|
-
model =
|
5609
|
+
model = ForceSucScheduleInstancesResponse.new
|
3809
5610
|
model.deserialize(response['Response'])
|
3810
5611
|
model
|
3811
5612
|
else
|
@@ -3820,17 +5621,16 @@ module TencentCloud
|
|
3820
5621
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3821
5622
|
end
|
3822
5623
|
|
3823
|
-
#
|
3824
|
-
# 实例批量置成功
|
5624
|
+
# 任务运维-批量冻结任务
|
3825
5625
|
|
3826
|
-
# @param request: Request instance for
|
3827
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
3828
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
3829
|
-
def
|
3830
|
-
body = send_request('
|
5626
|
+
# @param request: Request instance for FreezeOpsTasks.
|
5627
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksRequest`
|
5628
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::FreezeOpsTasksResponse`
|
5629
|
+
def FreezeOpsTasks(request)
|
5630
|
+
body = send_request('FreezeOpsTasks', request.serialize)
|
3831
5631
|
response = JSON.parse(body)
|
3832
5632
|
if response['Response'].key?('Error') == false
|
3833
|
-
model =
|
5633
|
+
model = FreezeOpsTasksResponse.new
|
3834
5634
|
model.deserialize(response['Response'])
|
3835
5635
|
model
|
3836
5636
|
else
|
@@ -3895,6 +5695,30 @@ module TencentCloud
|
|
3895
5695
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3896
5696
|
end
|
3897
5697
|
|
5698
|
+
# 暂停工作流下的所有任务
|
5699
|
+
|
5700
|
+
# @param request: Request instance for FreezeTasksByWorkflowIds.
|
5701
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::FreezeTasksByWorkflowIdsRequest`
|
5702
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::FreezeTasksByWorkflowIdsResponse`
|
5703
|
+
def FreezeTasksByWorkflowIds(request)
|
5704
|
+
body = send_request('FreezeTasksByWorkflowIds', request.serialize)
|
5705
|
+
response = JSON.parse(body)
|
5706
|
+
if response['Response'].key?('Error') == false
|
5707
|
+
model = FreezeTasksByWorkflowIdsResponse.new
|
5708
|
+
model.deserialize(response['Response'])
|
5709
|
+
model
|
5710
|
+
else
|
5711
|
+
code = response['Response']['Error']['Code']
|
5712
|
+
message = response['Response']['Error']['Message']
|
5713
|
+
reqid = response['Response']['RequestId']
|
5714
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5715
|
+
end
|
5716
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5717
|
+
raise e
|
5718
|
+
rescue StandardError => e
|
5719
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5720
|
+
end
|
5721
|
+
|
3898
5722
|
# 生成建hive表的sql
|
3899
5723
|
|
3900
5724
|
# @param request: Request instance for GenHiveTableDDLSql.
|
@@ -4016,6 +5840,54 @@ module TencentCloud
|
|
4016
5840
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4017
5841
|
end
|
4018
5842
|
|
5843
|
+
# 按补录计划批量终止实例。
|
5844
|
+
|
5845
|
+
# @param request: Request instance for KillOpsMakePlanInstances.
|
5846
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::KillOpsMakePlanInstancesRequest`
|
5847
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::KillOpsMakePlanInstancesResponse`
|
5848
|
+
def KillOpsMakePlanInstances(request)
|
5849
|
+
body = send_request('KillOpsMakePlanInstances', request.serialize)
|
5850
|
+
response = JSON.parse(body)
|
5851
|
+
if response['Response'].key?('Error') == false
|
5852
|
+
model = KillOpsMakePlanInstancesResponse.new
|
5853
|
+
model.deserialize(response['Response'])
|
5854
|
+
model
|
5855
|
+
else
|
5856
|
+
code = response['Response']['Error']['Code']
|
5857
|
+
message = response['Response']['Error']['Message']
|
5858
|
+
reqid = response['Response']['RequestId']
|
5859
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5860
|
+
end
|
5861
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5862
|
+
raise e
|
5863
|
+
rescue StandardError => e
|
5864
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5865
|
+
end
|
5866
|
+
|
5867
|
+
# 批量kill实例
|
5868
|
+
|
5869
|
+
# @param request: Request instance for KillScheduleInstances.
|
5870
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::KillScheduleInstancesRequest`
|
5871
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::KillScheduleInstancesResponse`
|
5872
|
+
def KillScheduleInstances(request)
|
5873
|
+
body = send_request('KillScheduleInstances', request.serialize)
|
5874
|
+
response = JSON.parse(body)
|
5875
|
+
if response['Response'].key?('Error') == false
|
5876
|
+
model = KillScheduleInstancesResponse.new
|
5877
|
+
model.deserialize(response['Response'])
|
5878
|
+
model
|
5879
|
+
else
|
5880
|
+
code = response['Response']['Error']['Code']
|
5881
|
+
message = response['Response']['Error']['Message']
|
5882
|
+
reqid = response['Response']['RequestId']
|
5883
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5884
|
+
end
|
5885
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5886
|
+
raise e
|
5887
|
+
rescue StandardError => e
|
5888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5889
|
+
end
|
5890
|
+
|
4019
5891
|
# 锁定集成任务
|
4020
5892
|
|
4021
5893
|
# @param request: Request instance for LockIntegrationTask.
|
@@ -4040,6 +5912,54 @@ module TencentCloud
|
|
4040
5912
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4041
5913
|
end
|
4042
5914
|
|
5915
|
+
# 任务批量补录,调度状态任务才可以补录;
|
5916
|
+
|
5917
|
+
# @param request: Request instance for MakeUpOpsTasks.
|
5918
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::MakeUpOpsTasksRequest`
|
5919
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::MakeUpOpsTasksResponse`
|
5920
|
+
def MakeUpOpsTasks(request)
|
5921
|
+
body = send_request('MakeUpOpsTasks', request.serialize)
|
5922
|
+
response = JSON.parse(body)
|
5923
|
+
if response['Response'].key?('Error') == false
|
5924
|
+
model = MakeUpOpsTasksResponse.new
|
5925
|
+
model.deserialize(response['Response'])
|
5926
|
+
model
|
5927
|
+
else
|
5928
|
+
code = response['Response']['Error']['Code']
|
5929
|
+
message = response['Response']['Error']['Message']
|
5930
|
+
reqid = response['Response']['RequestId']
|
5931
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5932
|
+
end
|
5933
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5934
|
+
raise e
|
5935
|
+
rescue StandardError => e
|
5936
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5937
|
+
end
|
5938
|
+
|
5939
|
+
# 工作流补数据
|
5940
|
+
|
5941
|
+
# @param request: Request instance for MakeUpTasksByWorkflow.
|
5942
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::MakeUpTasksByWorkflowRequest`
|
5943
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::MakeUpTasksByWorkflowResponse`
|
5944
|
+
def MakeUpTasksByWorkflow(request)
|
5945
|
+
body = send_request('MakeUpTasksByWorkflow', request.serialize)
|
5946
|
+
response = JSON.parse(body)
|
5947
|
+
if response['Response'].key?('Error') == false
|
5948
|
+
model = MakeUpTasksByWorkflowResponse.new
|
5949
|
+
model.deserialize(response['Response'])
|
5950
|
+
model
|
5951
|
+
else
|
5952
|
+
code = response['Response']['Error']['Code']
|
5953
|
+
message = response['Response']['Error']['Message']
|
5954
|
+
reqid = response['Response']['RequestId']
|
5955
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5956
|
+
end
|
5957
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5958
|
+
raise e
|
5959
|
+
rescue StandardError => e
|
5960
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5961
|
+
end
|
5962
|
+
|
4043
5963
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
4044
5964
|
# 任务批量补录,调度状态任务才可以补录;
|
4045
5965
|
|
@@ -4092,6 +6012,54 @@ module TencentCloud
|
|
4092
6012
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4093
6013
|
end
|
4094
6014
|
|
6015
|
+
# 编辑基线告警状态
|
6016
|
+
|
6017
|
+
# @param request: Request instance for ModifyBaselineAlarmStatus.
|
6018
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineAlarmStatusRequest`
|
6019
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineAlarmStatusResponse`
|
6020
|
+
def ModifyBaselineAlarmStatus(request)
|
6021
|
+
body = send_request('ModifyBaselineAlarmStatus', request.serialize)
|
6022
|
+
response = JSON.parse(body)
|
6023
|
+
if response['Response'].key?('Error') == false
|
6024
|
+
model = ModifyBaselineAlarmStatusResponse.new
|
6025
|
+
model.deserialize(response['Response'])
|
6026
|
+
model
|
6027
|
+
else
|
6028
|
+
code = response['Response']['Error']['Code']
|
6029
|
+
message = response['Response']['Error']['Message']
|
6030
|
+
reqid = response['Response']['RequestId']
|
6031
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6032
|
+
end
|
6033
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6034
|
+
raise e
|
6035
|
+
rescue StandardError => e
|
6036
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6037
|
+
end
|
6038
|
+
|
6039
|
+
# 编辑基线实例中任务告警状态
|
6040
|
+
|
6041
|
+
# @param request: Request instance for ModifyBaselineTaskAlarmStatus.
|
6042
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineTaskAlarmStatusRequest`
|
6043
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyBaselineTaskAlarmStatusResponse`
|
6044
|
+
def ModifyBaselineTaskAlarmStatus(request)
|
6045
|
+
body = send_request('ModifyBaselineTaskAlarmStatus', request.serialize)
|
6046
|
+
response = JSON.parse(body)
|
6047
|
+
if response['Response'].key?('Error') == false
|
6048
|
+
model = ModifyBaselineTaskAlarmStatusResponse.new
|
6049
|
+
model.deserialize(response['Response'])
|
6050
|
+
model
|
6051
|
+
else
|
6052
|
+
code = response['Response']['Error']['Code']
|
6053
|
+
message = response['Response']['Error']['Message']
|
6054
|
+
reqid = response['Response']['RequestId']
|
6055
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6056
|
+
end
|
6057
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6058
|
+
raise e
|
6059
|
+
rescue StandardError => e
|
6060
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6061
|
+
end
|
6062
|
+
|
4095
6063
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
4096
6064
|
# 修改数据源
|
4097
6065
|
|
@@ -4606,6 +6574,54 @@ module TencentCloud
|
|
4606
6574
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4607
6575
|
end
|
4608
6576
|
|
6577
|
+
# 按补录计划批量重跑/选择补录计划→补录任务→补录实例,点击重跑
|
6578
|
+
|
6579
|
+
# @param request: Request instance for RerunOpsMakePlanInstances.
|
6580
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RerunOpsMakePlanInstancesRequest`
|
6581
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RerunOpsMakePlanInstancesResponse`
|
6582
|
+
def RerunOpsMakePlanInstances(request)
|
6583
|
+
body = send_request('RerunOpsMakePlanInstances', request.serialize)
|
6584
|
+
response = JSON.parse(body)
|
6585
|
+
if response['Response'].key?('Error') == false
|
6586
|
+
model = RerunOpsMakePlanInstancesResponse.new
|
6587
|
+
model.deserialize(response['Response'])
|
6588
|
+
model
|
6589
|
+
else
|
6590
|
+
code = response['Response']['Error']['Code']
|
6591
|
+
message = response['Response']['Error']['Message']
|
6592
|
+
reqid = response['Response']['RequestId']
|
6593
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6594
|
+
end
|
6595
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6596
|
+
raise e
|
6597
|
+
rescue StandardError => e
|
6598
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6599
|
+
end
|
6600
|
+
|
6601
|
+
# 实例批量重跑
|
6602
|
+
|
6603
|
+
# @param request: Request instance for RerunScheduleInstances.
|
6604
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RerunScheduleInstancesRequest`
|
6605
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RerunScheduleInstancesResponse`
|
6606
|
+
def RerunScheduleInstances(request)
|
6607
|
+
body = send_request('RerunScheduleInstances', request.serialize)
|
6608
|
+
response = JSON.parse(body)
|
6609
|
+
if response['Response'].key?('Error') == false
|
6610
|
+
model = RerunScheduleInstancesResponse.new
|
6611
|
+
model.deserialize(response['Response'])
|
6612
|
+
model
|
6613
|
+
else
|
6614
|
+
code = response['Response']['Error']['Code']
|
6615
|
+
message = response['Response']['Error']['Message']
|
6616
|
+
reqid = response['Response']['RequestId']
|
6617
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6618
|
+
end
|
6619
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6620
|
+
raise e
|
6621
|
+
rescue StandardError => e
|
6622
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6623
|
+
end
|
6624
|
+
|
4609
6625
|
# 重启采集器
|
4610
6626
|
|
4611
6627
|
# @param request: Request instance for RestartInLongAgent.
|
@@ -4703,6 +6719,30 @@ module TencentCloud
|
|
4703
6719
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4704
6720
|
end
|
4705
6721
|
|
6722
|
+
# 批量启动工作流
|
6723
|
+
|
6724
|
+
# @param request: Request instance for RunTasksByMultiWorkflow.
|
6725
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RunTasksByMultiWorkflowRequest`
|
6726
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RunTasksByMultiWorkflowResponse`
|
6727
|
+
def RunTasksByMultiWorkflow(request)
|
6728
|
+
body = send_request('RunTasksByMultiWorkflow', request.serialize)
|
6729
|
+
response = JSON.parse(body)
|
6730
|
+
if response['Response'].key?('Error') == false
|
6731
|
+
model = RunTasksByMultiWorkflowResponse.new
|
6732
|
+
model.deserialize(response['Response'])
|
6733
|
+
model
|
6734
|
+
else
|
6735
|
+
code = response['Response']['Error']['Code']
|
6736
|
+
message = response['Response']['Error']['Message']
|
6737
|
+
reqid = response['Response']['RequestId']
|
6738
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6739
|
+
end
|
6740
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6741
|
+
raise e
|
6742
|
+
rescue StandardError => e
|
6743
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6744
|
+
end
|
6745
|
+
|
4706
6746
|
# 保存用户自定义函数
|
4707
6747
|
|
4708
6748
|
# @param request: Request instance for SaveCustomFunction.
|
@@ -4776,6 +6816,30 @@ module TencentCloud
|
|
4776
6816
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4777
6817
|
end
|
4778
6818
|
|
6819
|
+
# 提交基线
|
6820
|
+
|
6821
|
+
# @param request: Request instance for StopBaseline.
|
6822
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::StopBaselineRequest`
|
6823
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::StopBaselineResponse`
|
6824
|
+
def StopBaseline(request)
|
6825
|
+
body = send_request('StopBaseline', request.serialize)
|
6826
|
+
response = JSON.parse(body)
|
6827
|
+
if response['Response'].key?('Error') == false
|
6828
|
+
model = StopBaselineResponse.new
|
6829
|
+
model.deserialize(response['Response'])
|
6830
|
+
model
|
6831
|
+
else
|
6832
|
+
code = response['Response']['Error']['Code']
|
6833
|
+
message = response['Response']['Error']['Message']
|
6834
|
+
reqid = response['Response']['RequestId']
|
6835
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6836
|
+
end
|
6837
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6838
|
+
raise e
|
6839
|
+
rescue StandardError => e
|
6840
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6841
|
+
end
|
6842
|
+
|
4779
6843
|
# 停止集成任务
|
4780
6844
|
|
4781
6845
|
# @param request: Request instance for StopIntegrationTask.
|
@@ -4800,6 +6864,30 @@ module TencentCloud
|
|
4800
6864
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4801
6865
|
end
|
4802
6866
|
|
6867
|
+
# 提交基线
|
6868
|
+
|
6869
|
+
# @param request: Request instance for SubmitBaseline.
|
6870
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::SubmitBaselineRequest`
|
6871
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitBaselineResponse`
|
6872
|
+
def SubmitBaseline(request)
|
6873
|
+
body = send_request('SubmitBaseline', request.serialize)
|
6874
|
+
response = JSON.parse(body)
|
6875
|
+
if response['Response'].key?('Error') == false
|
6876
|
+
model = SubmitBaselineResponse.new
|
6877
|
+
model.deserialize(response['Response'])
|
6878
|
+
model
|
6879
|
+
else
|
6880
|
+
code = response['Response']['Error']['Code']
|
6881
|
+
message = response['Response']['Error']['Message']
|
6882
|
+
reqid = response['Response']['RequestId']
|
6883
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6884
|
+
end
|
6885
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6886
|
+
raise e
|
6887
|
+
rescue StandardError => e
|
6888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6889
|
+
end
|
6890
|
+
|
4803
6891
|
# 提交自定义函数
|
4804
6892
|
|
4805
6893
|
# @param request: Request instance for SubmitCustomFunction.
|
@@ -5043,6 +7131,30 @@ module TencentCloud
|
|
5043
7131
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5044
7132
|
end
|
5045
7133
|
|
7134
|
+
# 修改工作流责任人
|
7135
|
+
|
7136
|
+
# @param request: Request instance for UpdateWorkflowOwner.
|
7137
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowOwnerRequest`
|
7138
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowOwnerResponse`
|
7139
|
+
def UpdateWorkflowOwner(request)
|
7140
|
+
body = send_request('UpdateWorkflowOwner', request.serialize)
|
7141
|
+
response = JSON.parse(body)
|
7142
|
+
if response['Response'].key?('Error') == false
|
7143
|
+
model = UpdateWorkflowOwnerResponse.new
|
7144
|
+
model.deserialize(response['Response'])
|
7145
|
+
model
|
7146
|
+
else
|
7147
|
+
code = response['Response']['Error']['Code']
|
7148
|
+
message = response['Response']['Error']['Message']
|
7149
|
+
reqid = response['Response']['RequestId']
|
7150
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7151
|
+
end
|
7152
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7153
|
+
raise e
|
7154
|
+
rescue StandardError => e
|
7155
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7156
|
+
end
|
7157
|
+
|
5046
7158
|
# 保存任务信息
|
5047
7159
|
|
5048
7160
|
# @param request: Request instance for UploadContent.
|